design_win.h
author hegyi
Mon, 30 Oct 2006 14:57:48 +0000
changeset 177 40f3006fba2e
parent 174 95872af46fc4
child 194 6b2b718420eb
permissions -rw-r--r--
Redesign parameters can now be saved and loaded.
     1 /* -*- C++ -*-
     2  *
     3  * This file is a part of LEMON, a generic C++ optimization library
     4  *
     5  * Copyright (C) 2003-2006
     6  * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
     7  * (Egervary Research Group on Combinatorial Optimization, EGRES).
     8  *
     9  * Permission to use, modify and distribute this software is granted
    10  * provided that this copyright notice appears in all copies. For
    11  * precise terms see the accompanying LICENSE file.
    12  *
    13  * This software is provided "AS IS" with no warranty of any kind,
    14  * express or implied, and with no claim as to its suitability for any
    15  * purpose.
    16  *
    17  */
    18 
    19 #ifndef DESWIN_H
    20 #define DESWIN_H
    21 
    22 class DesignWin;
    23 
    24 #include <all_include.h>
    25 #include <nbtab.h>
    26 #include <libgnomecanvasmm.h>
    27 #include <libgnomecanvasmm/polygon.h>
    28 
    29 class DesignWin : public Gtk::Window
    30 {
    31 private:
    32   ///\ref NoteBookTab to that the \ref MapWin belongs to.
    33   NoteBookTab & mytab;
    34 
    35   Gtk::SpinButton * attraction;
    36   Gtk::SpinButton * propulsation;
    37   Gtk::SpinButton * iteration;
    38   Gtk::Table table;
    39   Gtk::Button * close_button;
    40 
    41   sigc::signal<void, double> signal_attraction_ch;
    42   sigc::signal<void, double> signal_propulsation_ch;
    43   sigc::signal<void, int> signal_iteration_ch;
    44   sigc::signal<void> close_run_pr;
    45 
    46   void emit_attraction();
    47   void emit_propulsation();
    48   void emit_iteration();
    49   void emit_closerun(){close_run_pr.emit();};
    50 
    51 public:
    52   ///Close window if escape key is pressed.
    53   bool closeIfEscapeIsPressed(GdkEventKey* e);
    54 
    55   ///Constructor
    56 
    57   ///It builds the window.
    58   DesignWin(const std::string&, double, double, int, NoteBookTab & mw);
    59 
    60   sigc::signal<void, double> signal_attraction(){return signal_attraction_ch;};
    61   sigc::signal<void, double> signal_propulsation(){return signal_propulsation_ch;};
    62   sigc::signal<void, int> signal_iteration(){return signal_iteration_ch;};
    63   sigc::signal<void> close_run(){return close_run_pr;};
    64 
    65   void set_title(std::string);
    66 
    67   void set_data(double, double, int);
    68 };
    69 #endif //DESWIN_H