Rename Widget_ColorEdit to Widget_CustomColorEdit to prepare for new abstract Widget_...
[synfig.git] / synfig-studio / src / gtkmm / mod_palette / dock_paledit.h
1 /* === S Y N F I G ========================================================= */
2 /*!     \file dock_paledit.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_DOCK_PAL_EDIT_H
26 #define __SYNFIG_STUDIO_DOCK_PAL_EDIT_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 <synfigapp/value_desc.h>
43 #include <synfig/time.h>
44
45 #include "../dockable.h"
46 #include "../widget_color.h"
47 #include <vector>
48 #include <gtkmm/actiongroup.h>
49
50 #include <synfig/palette.h>
51
52 /* === M A C R O S ========================================================= */
53
54 /* === T Y P E D E F S ===================================================== */
55
56 /* === C L A S S E S & S T R U C T S ======================================= */
57
58 namespace synfigapp {
59 class CanvasInterface;
60 };
61
62 namespace studio {
63
64 class Widget_Color;
65 class PaletteSettings;
66
67 class Dock_PalEdit : public Dockable
68 {
69         friend class PaletteSettings;
70
71         Glib::RefPtr<Gtk::ActionGroup> action_group;
72
73         synfig::Palette palette_;
74
75         Gtk::Table table;
76
77         void on_add_pressed();
78
79         void show_menu(int i);
80
81         sigc::signal<void> signal_changed_;
82
83
84 private:
85         int add_color(const synfig::Color& x);
86         void set_color(synfig::Color x, int i);
87         void erase_color(int i);
88
89         void select_color(int i);
90         synfig::Color get_color(int i)const;
91         void edit_color(int i);
92 public:
93         void set_palette(const synfig::Palette& x);
94         const synfig::Palette& get_palette()const { return palette_; }
95
96         int size()const;
97
98         void set_default_palette();
99
100         void refresh();
101
102         const sigc::signal<void>& signal_changed() { return signal_changed_; }
103
104         Dock_PalEdit();
105         ~Dock_PalEdit();
106 }; // END of Dock_PalEdit
107
108 }; // END of namespace studio
109
110 /* === E N D =============================================================== */
111
112 #endif