COIN-OR::LEMON - Graph Library

Changeset 30:f70bbee5350a in glemon-0.x for map_win.cc


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

Function names are corrected according to naming conventions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • map_win.cc

    r28 r30  
    22#include <set>
    33
    4 bool MapWin::close_if_escape_is_pressed(GdkEventKey* e)
     4bool MapWin::closeIfEscapeIsPressed(GdkEventKey* e)
    55{
    66  if(e->keyval==GDK_Escape)
     
    1616  set_default_size(200, 50);
    1717
    18   signal_key_press_event().connect(sigc::mem_fun(*this, &MapWin::close_if_escape_is_pressed));
     18  signal_key_press_event().connect(sigc::mem_fun(*this, &MapWin::closeIfEscapeIsPressed));
    1919
    2020  e_combo_array=new Gtk::Combo [EDGE_PROPERTY_NUM];
     
    7575     sigc::bind
    7676     (
    77       sigc::mem_fun(*this, &MapWin::e_combo_changed),
     77      sigc::mem_fun(*this, &MapWin::eComboChanged),
    7878      i
    7979     )
     
    154154     sigc::bind
    155155     (
    156       sigc::mem_fun(*this, &MapWin::n_combo_changed),
     156      sigc::mem_fun(*this, &MapWin::nComboChanged),
    157157      i
    158158     )
     
    180180}
    181181
    182 void MapWin::e_combo_changed(int prop)
     182void MapWin::eComboChanged(int prop)
    183183{
    184184  Gtk::Entry* entry = e_combo_array[prop].get_entry();
     
    215215};
    216216
    217 void MapWin::n_combo_changed(int prop)
     217void MapWin::nComboChanged(int prop)
    218218{
    219219
     
    251251};
    252252
    253 void MapWin::update_node(Graph::Node node)
     253void MapWin::updateNode(Graph::Node node)
    254254{
    255255  for(int i=0;i<NODE_PROPERTY_NUM;i++)
     
    290290}
    291291
    292 void MapWin::update_edge(Graph::Edge edge)
     292void MapWin::updateEdge(Graph::Edge edge)
    293293{
    294294  for(int i=0;i<EDGE_PROPERTY_NUM;i++)
Note: See TracChangeset for help on using the changeset viewer.