COIN-OR::LEMON - Graph Library

Changeset 196:c220f9de6545 in glemon-0.x for eps_win.h


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

EpsWin? and DesignWin? does not need to know NoteBookTab?.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • eps_win.h

    r194 r196  
    2020#define EPS_WIN_H
    2121
    22 class NoteBookTab;
    23 
    2422#include <all_include.h>
    2523#include <libgnomecanvasmm.h>
     
    3432{
    3533protected:
    36   ///\ref NoteBookTab to that the \ref EpsWin belongs to.
    37   NoteBookTab & mytab;
    38 
    3934  ///Designing element
    4035  Gtk::Table * table;
     
    6459  ///\param nml nodemap list
    6560  ///\param mw the owner \ref NoteBookTab (\ref mytab)
    66   EpsWin(const std::string& title, NoteBookTab & mw);
     61  EpsWin(const std::string& title);
    6762
    6863  ///Deregistrates \ref EpsWin in its \ref NoteBookTab (\ref mytab)
     
    8075  virtual void on_response(int response_id);
    8176
     77  ///indicates that user is ready to export EPS file
     78  sigc::signal<void, std::vector<bool>, std::string > signal_eps_details;
     79
     80  ///returns \ref signal_eps_details
     81  sigc::signal<void, std::vector<bool>, std::string > signal_eps_details_ch(){return signal_eps_details;};
     82
     83  ///indicates that the windows can be closed
     84  sigc::signal<void> signal_eps_close;
     85
     86  ///returns \ref signal_eps_close
     87  sigc::signal<void> signal_eps_close_ch(){return signal_eps_close;};
     88 
     89
    8290};
    8391
Note: See TracChangeset for help on using the changeset viewer.