equal
deleted
inserted
replaced
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 } |