Zoom is now available with mouse-wheel.
3 * This file is a part of LEMON, a generic C++ optimization library
5 * Copyright (C) 2003-2006
6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
7 * (Egervary Research Group on Combinatorial Optimization, EGRES).
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.
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
24 #include <all_include.h>
26 #include <libgnomecanvasmm.h>
27 #include <libgnomecanvasmm/polygon.h>
29 class DesignWin : public Gtk::Window
32 ///\ref NoteBookTab to that the \ref MapWin belongs to.
35 Gtk::SpinButton * attraction;
36 Gtk::SpinButton * propulsation;
37 Gtk::SpinButton * iteration;
39 Gtk::Button * close_button;
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;
46 void emit_attraction();
47 void emit_propulsation();
48 void emit_iteration();
49 void emit_closerun(){close_run_pr.emit();};
52 ///Close window if escape key is pressed.
53 bool closeIfEscapeIsPressed(GdkEventKey* e);
57 ///It builds the window.
58 DesignWin(const std::string&, double, double, int, NoteBookTab & mw);
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;};
65 void set_title(std::string);
67 void set_data(double, double, int);