1 /* === S Y N F I G ========================================================= */
2 /*! \file dock_paledit.h
3 ** \brief Template Header
8 ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
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.
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.
21 /* ========================================================================= */
23 /* === S T A R T =========================================================== */
25 #ifndef __SYNFIG_STUDIO_DOCK_PAL_EDIT_H
26 #define __SYNFIG_STUDIO_DOCK_PAL_EDIT_H
28 /* === H E A D E R S ======================================================= */
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>
39 #include <synfig/gamma.h>
40 #include <synfig/time.h>
42 #include "../widget_coloredit.h"
44 #include <synfigapp/value_desc.h>
45 #include <synfig/time.h>
47 #include "../dockable.h"
49 #include <gtkmm/actiongroup.h>
51 #include <synfig/palette.h>
53 /* === M A C R O S ========================================================= */
55 /* === T Y P E D E F S ===================================================== */
57 /* === C L A S S E S & S T R U C T S ======================================= */
60 class CanvasInterface;
66 class PaletteSettings;
68 class Dock_PalEdit : public Dockable
70 friend class PaletteSettings;
72 Glib::RefPtr<Gtk::ActionGroup> action_group;
74 synfig::Palette palette_;
78 void on_add_pressed();
80 void show_menu(int i);
82 sigc::signal<void> signal_changed_;
86 int add_color(const synfig::Color& x);
87 void set_color(synfig::Color x, int i);
88 void erase_color(int i);
90 void select_color(int i);
91 synfig::Color get_color(int i)const;
92 void edit_color(int i);
94 void set_palette(const synfig::Palette& x);
95 const synfig::Palette& get_palette()const { return palette_; }
99 void set_default_palette();
103 const sigc::signal<void>& signal_changed() { return signal_changed_; }
107 }; // END of Dock_PalEdit
109 }; // END of namespace studio
111 /* === E N D =============================================================== */