COIN-OR::LEMON - Graph Library

Changeset 13:0b2281cc1e32 in glemon-0.x for edit_win.cc


Ignore:
Timestamp:
06/14/05 17:58:12 (19 years ago)
Author:
Hegyi Péter
Branch:
gui
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk/gui@1966
Message:

Erasing from graph would be possible, if erasing from graph would be possible... (Afternoon has become timewasting...)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • edit_win.cc

    r12 r13  
    6969  table.attach(*buttons[MOVE],0,1,1,2);
    7070     
     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   
    7185  add(table);
    7286
Note: See TracChangeset for help on using the changeset viewer.