COIN-OR::LEMON - Graph Library

Changeset 198:d6cc0579b94b in glemon-0.x for nbtab.cc


Ignore:
Timestamp:
03/01/07 17:28:13 (17 years ago)
Author:
Hegyi Péter
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/glemon/trunk@3211
Message:

Shape feature of EPS can be used.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • nbtab.cc

    r197 r198  
    224224      mapwin->registerNewNodeMap(mapname);
    225225    }
     226  if(epswinexists)
     227    {
     228      epswin->registerNewNodeMap(mapname);
     229    }
    226230}
    227231
     
    241245  if(!epswinexists)
    242246    {
    243       epswin=new EpsWin("Export to EPS - "+name);
     247      epswin=new EpsWin("Export to EPS - "+name, mapstorage->getNodeMapList());
    244248      epswin->show();
    245249      epswinexists=true;
    246250      epswin->signal_eps_details_ch().connect(sigc::mem_fun(*this, &NoteBookTab::exportGraphToEPS));
    247251      epswin->signal_eps_close_ch().connect(sigc::mem_fun(*this, &NoteBookTab::closeEpsWin));
     252      epswin->signal_new_map_ch().connect(sigc::mem_fun(*this, &NoteBookTab::popupNewMapWin));
    248253    }
    249254}
     
    321326}
    322327
    323 void NoteBookTab::exportGraphToEPS(std::vector<bool> options, std::string filename)
    324 {
    325   mapstorage->exportGraphToEPS(options, filename);
     328void NoteBookTab::exportGraphToEPS(std::vector<bool> options, std::string filename, std::string shapemap)
     329{
     330  mapstorage->exportGraphToEPS(options, filename, shapemap);
    326331}
    327332
Note: See TracChangeset for help on using the changeset viewer.