diff -r ffab98e94909 -r fc1e478697d3 design_win.h --- a/design_win.h Tue Oct 24 07:31:31 2006 +0000 +++ b/design_win.h Wed Oct 25 13:21:24 2006 +0000 @@ -3,13 +3,19 @@ #ifndef DESWIN_H #define DESWIN_H +class DesignWin; + #include +#include #include #include class DesignWin : public Gtk::Window { private: + ///\ref NoteBookTab to that the \ref MapWin belongs to. + NoteBookTab & mytab; + Gtk::SpinButton * attraction; Gtk::SpinButton * propulsation; Gtk::SpinButton * iteration; @@ -33,11 +39,13 @@ ///Constructor ///It builds the window. - DesignWin(const std::string&, double, double, int); + DesignWin(const std::string&, double, double, int, NoteBookTab & mw); sigc::signal signal_attraction(){return signal_attraction_ch;}; sigc::signal signal_propulsation(){return signal_propulsation_ch;}; sigc::signal signal_iteration(){return signal_iteration_ch;}; sigc::signal close_run(){return close_run_pr;}; + + void set_title(std::string); }; #endif //DESWIN_H