gui/edit_win.cc
changeset 1485 3a1c6678fa23
parent 1478 bc7ae573d77d
child 1494 ae55ba000ebb
equal deleted inserted replaced
1:6cf536708537 2:ae5cb20864c6
    66       0
    66       0
    67       )
    67       )
    68      );
    68      );
    69   table.attach(*buttons[MOVE],0,1,1,2);
    69   table.attach(*buttons[MOVE],0,1,1,2);
    70       
    70       
       
    71   //New edge button
       
    72   buttons[ERASER]=new Gtk::RadioButton("Erase Item");
       
    73   buttons[ERASER]->set_mode(false);
       
    74   buttons[ERASER]->set_group(group);
       
    75   buttons[ERASER]->signal_clicked().connect
       
    76     (
       
    77      sigc::bind
       
    78      (
       
    79       sigc::mem_fun(*this, &EditWin::makeEditorialToolChanged),
       
    80       3
       
    81       )
       
    82      );
       
    83   table.attach(*buttons[ERASER],1,2,1,2);
       
    84     
    71   add(table);
    85   add(table);
    72 
    86 
    73   show_all_children();
    87   show_all_children();
    74 
    88 
    75 }
    89 }