Remove obsolete includes.
[synfig.git] / synfig-studio / src / gtkmm / dialog_color.h
1 /* === S Y N F I G ========================================================= */
2 /*!     \file dialog_color.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_COLOR_H
26 #define __SYNFIG_STUDIO_DIALOG_COLOR_H
27
28 /* === H E A D E R S ======================================================= */
29
30 #include <gtkmm/dialog.h>
31 #include <gtkmm/tooltips.h>
32 #include <sigc++/functors/slot.h>
33
34 #include "widget_coloredit.h"
35 #include "dialogsettings.h"
36
37 /* === M A C R O S ========================================================= */
38
39 /* === T Y P E D E F S ===================================================== */
40
41 /* === C L A S S E S & S T R U C T S ======================================= */
42
43 namespace studio {
44
45 class Widget_Color;
46
47 class Dialog_Color : public Gtk::Dialog
48 {
49         DialogSettings dialog_settings;
50         Gtk::Tooltips tooltips;
51
52         Widget_ColorEdit* color_edit_widget;
53
54         sigc::signal<void,synfig::Color> signal_edited_;
55
56         bool busy_;
57
58         void create_color_edit_widget();
59         void create_set_color_button(const char *stock_id,
60                         const Glib::ustring& tip_text, int index,
61                         const sigc::slot0<void>& callback);
62         void create_close_button();
63
64         void on_color_changed();
65         void on_set_oc_pressed();
66         void on_set_fc_pressed();
67         bool on_close_pressed();
68
69 public:
70         Dialog_Color();
71         ~Dialog_Color();
72
73         sigc::signal<void,synfig::Color>& signal_edited() { return signal_edited_; }
74
75         void set_color(const synfig::Color& x) { color_edit_widget->set_value(x); }
76         synfig::Color get_color() const { return color_edit_widget->get_value(); }
77         void reset();
78
79         bool busy() const { return busy_; }
80
81 }; // END of Dialog_Color
82
83 }; // END of namespace studio
84
85 /* === E N D =============================================================== */
86
87 #endif