COIN-OR::LEMON - Graph Library

Changeset 198:d6cc0579b94b in glemon-0.x for eps_win.h


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
  • eps_win.h

    r196 r198  
    1919#ifndef EPS_WIN_H
    2020#define EPS_WIN_H
     21
     22class MapSelector;
    2123
    2224#include <all_include.h>
     
    5052  Gtk::Entry name;
    5153
     54  MapSelector * mapselector;
    5255public:
    5356  ///Constructor
     
    5962  ///\param nml nodemap list
    6063  ///\param mw the owner \ref NoteBookTab (\ref mytab)
    61   EpsWin(const std::string& title);
     64  EpsWin(const std::string& title, std::vector<std::string>);
    6265
    6366  ///Deregistrates \ref EpsWin in its \ref NoteBookTab (\ref mytab)
     
    7679
    7780  ///indicates that user is ready to export EPS file
    78   sigc::signal<void, std::vector<bool>, std::string > signal_eps_details;
     81  sigc::signal<void, std::vector<bool>, std::string, std::string > signal_eps_details;
    7982
    8083  ///returns \ref signal_eps_details
    81   sigc::signal<void, std::vector<bool>, std::string > signal_eps_details_ch(){return signal_eps_details;};
     84  sigc::signal<void, std::vector<bool>, std::string, std::string > signal_eps_details_ch(){return signal_eps_details;};
    8285
    8386  ///indicates that the windows can be closed
     
    8790  sigc::signal<void> signal_eps_close_ch(){return signal_eps_close;};
    8891 
     92  ///indicates that the windows can be closed
     93  sigc::signal<void, bool> signal_new_map;
    8994
     95  ///returns \ref signal_eps_close
     96  sigc::signal<void, bool> signal_new_map_ch(){return signal_new_map;};
     97
     98  ///Function is called when new map is required.
     99  void newMapWinNeeded(bool);
     100
     101  ///This function inserts name of the new nodemap in the name list in \ref MapSelector s
     102
     103  ///\param new_name
     104  ///name of new map
     105  void registerNewNodeMap(std::string new_name);
    90106};
    91107
Note: See TracChangeset for help on using the changeset viewer.