Fix bugs in previous commit that caused FTBFS in synfig and ETL FTBFS with older...
[synfig.git] / synfig-studio / tags / synfigstudio_0_61_06 / src / gtkmm / dialog_gradient.h
1 /* === S Y N F I G ========================================================= */
2 /*!     \file dialog_gradient.h
3 **      \brief Template Header
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **
10 **      This package is free software; you can redistribute it and/or
11 **      modify it under the terms of the GNU General Public License as
12 **      published by the Free Software Foundation; either version 2 of
13 **      the License, or (at your option) any later version.
14 **
15 **      This package is distributed in the hope that it will be useful,
16 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
17 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 **      General Public License for more details.
19 **      \endlegal
20 */
21 /* ========================================================================= */
22
23 /* === S T A R T =========================================================== */
24
25 #ifndef __SYNFIG_STUDIO_DIALOG_GRADIENT_H
26 #define __SYNFIG_STUDIO_DIALOG_GRADIENT_H
27
28 /* === H E A D E R S ======================================================= */
29
30 #include <gtk/gtk.h>
31 #include <gtkmm/adjustment.h>
32 #include <gtkmm/table.h>
33 #include <gtkmm/button.h>
34 #include <gtkmm/dialog.h>
35 #include <gtkmm/drawingarea.h>
36 #include <gtkmm/optionmenu.h>
37 #include <gtkmm/checkbutton.h>
38
39 #include <synfig/gamma.h>
40 #include <synfig/time.h>
41
42 #include "widget_gradient.h"
43 #include "widget_coloredit.h"
44
45 #include <synfigapp/value_desc.h>
46 #include <synfig/time.h>
47
48 #include "dialogsettings.h"
49
50 /* === M A C R O S ========================================================= */
51
52 /* === T Y P E D E F S ===================================================== */
53
54 /* === C L A S S E S & S T R U C T S ======================================= */
55
56 namespace Gtk { class Menu; class SpinButton; class Adjustment; };
57
58 namespace synfigapp {
59 class CanvasInterface;
60 };
61
62 namespace studio {
63
64 class Widget_Gradient;
65 class Widget_ColorEdit;
66
67 class Dialog_Gradient : public Gtk::Dialog
68 {
69         DialogSettings dialog_settings;
70
71         Gtk::SpinButton *spinbutton_pos;
72
73         Gtk::Adjustment adjustment_pos;
74
75
76         sigc::signal<void,synfig::Gradient> signal_edited_;
77
78         sigc::connection value_changed_connection;
79
80         void on_ok_pressed();
81         void on_apply_pressed();
82         void on_grab_pressed();
83
84         void on_cpoint_selected(synfig::Gradient::CPoint x);
85         void on_values_adjusted();
86
87         Widget_Gradient* widget_gradient;
88         Widget_ColorEdit* widget_color;
89
90         void on_changed();
91
92 public:
93
94         sigc::signal<void,synfig::Gradient>& signal_edited() { return signal_edited_; }
95
96         void set_gradient(const synfig::Gradient& x);
97
98         const synfig::Gradient& get_gradient()const { return widget_gradient->get_value(); }
99
100         void reset();
101
102
103         Dialog_Gradient();
104         ~Dialog_Gradient();
105
106         void edit(const synfigapp::ValueDesc &x, etl::handle<synfigapp::CanvasInterface> canvas_interface, synfig::Time x=0);
107 }; // END of Dialog_Gradient
108
109 }; // END of namespace studio
110
111 /* === E N D =============================================================== */
112
113 #endif