COIN-OR::LEMON - Graph Library

Changeset 66:4ca5a537ef07 in glemon-0.x for map_win.cc


Ignore:
Timestamp:
08/26/05 09:35:23 (19 years ago)
Author:
Akos Ladanyi
Branch:
gui
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk/gui@2161
Message:
  • use Gtk::Dialog to set the new values of edge and node maps
  • update all edges/nodes when editing a map so that edge widths and node sizes change properly
  • coordinate maps are no longer selectable in the maps window
File:
1 edited

Legend:

Unmodified
Added
Removed
  • map_win.cc

    r62 r66  
    8282    for(;emsi!=ms.endOfNodeMaps();emsi++)
    8383    {
    84       listStrings.push_back(emsi->first);
     84      if ((emsi->first != "coordinates_x") && (emsi->first != "coordinates_y"))
     85      {
     86        listStrings.push_back(emsi->first);
     87      }
    8588    }
    8689
     
    149152    for(;emsi!=ms.endOfNodeMaps();emsi++)
    150153    {
    151       listStrings.push_back(emsi->first);
     154      if ((emsi->first != "coordinates_x") && (emsi->first != "coordinates_y"))
     155      {
     156        listStrings.push_back(emsi->first);
     157      }
    152158    }
    153159
Note: See TracChangeset for help on using the changeset viewer.