Changeset 198:d6cc0579b94b in glemon-0.x for nbtab.cc
- Timestamp:
- 03/01/07 17:28:13 (18 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/glemon/trunk@3211
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
nbtab.cc
r197 r198 224 224 mapwin->registerNewNodeMap(mapname); 225 225 } 226 if(epswinexists) 227 { 228 epswin->registerNewNodeMap(mapname); 229 } 226 230 } 227 231 … … 241 245 if(!epswinexists) 242 246 { 243 epswin=new EpsWin("Export to EPS - "+name );247 epswin=new EpsWin("Export to EPS - "+name, mapstorage->getNodeMapList()); 244 248 epswin->show(); 245 249 epswinexists=true; 246 250 epswin->signal_eps_details_ch().connect(sigc::mem_fun(*this, &NoteBookTab::exportGraphToEPS)); 247 251 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)); 248 253 } 249 254 } … … 321 326 } 322 327 323 void NoteBookTab::exportGraphToEPS(std::vector<bool> options, std::string filename )324 { 325 mapstorage->exportGraphToEPS(options, filename );328 void NoteBookTab::exportGraphToEPS(std::vector<bool> options, std::string filename, std::string shapemap) 329 { 330 mapstorage->exportGraphToEPS(options, filename, shapemap); 326 331 } 327 332
Note: See TracChangeset
for help on using the changeset viewer.