COIN-OR::LEMON - Graph Library

Changeset 201:879e47e5b731 in glemon-0.x for eps_win.cc


Ignore:
Timestamp:
01/02/08 22:03:09 (16 years ago)
Author:
Akos Ladanyi
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/glemon/trunk@3431
Message:

Merge branches/akos to trunk.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • eps_win.cc

    r198 r201  
    3232}
    3333
    34 EpsWin::EpsWin(const std::string& title, std::vector<std::string> nml):Gtk::Dialog(title, true, true)
     34EpsWin::EpsWin(const std::string& title, std::vector<std::string> n_nml, std::vector<std::string> s_nml):Gtk::Dialog(title, true, true)
    3535{
    3636  set_default_size(200, 50);
     
    5858    }
    5959
    60   mapselector=new MapSelector(nml, "", "Nodeshapes", false);
     60  mapselector=new MapSelector(n_nml, s_nml, "", "Nodeshapes", false, true, NUM);
    6161  mapselector->signal_newmapwin_needed().connect(sigc::mem_fun(*this, &EpsWin::newMapWinNeeded));
    6262
     
    105105}
    106106
    107 void EpsWin::registerNewNodeMap(std::string newmapname)
     107void EpsWin::registerNewNodeMap(std::string newmapname, MapValue::Type type)
    108108{
    109     mapselector->append_text((Glib::ustring)newmapname);
     109    mapselector->append_text((Glib::ustring)newmapname, type);
    110110}
Note: See TracChangeset for help on using the changeset viewer.