Fix bugs in previous commit that caused FTBFS in synfig and ETL FTBFS with older...
[synfig.git] / synfig-studio / tags / 0.61.08 / src / gtkmm / dialog_color.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file dialog_color.cpp
3 **      \brief Template File
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 /* === H E A D E R S ======================================================= */
24
25 #ifdef USING_PCH
26 #       include "pch.h"
27 #else
28 #ifdef HAVE_CONFIG_H
29 #       include <config.h>
30 #endif
31
32 #include "dialog_color.h"
33 #include "widget_color.h"
34 #include <gtkmm/frame.h>
35 #include <gtkmm/table.h>
36 #include <gtkmm/label.h>
37 #include <synfig/general.h>
38 #include <synfigapp/canvasinterface.h>
39 #include <synfigapp/value_desc.h>
40 #include "widget_color.h"
41 #include <gtkmm/spinbutton.h>
42 #include <synfigapp/main.h>
43 #include <sigc++/retype_return.h>
44 #include <sigc++/retype.h>
45 #include <sigc++/hide.h>
46 #include "app.h"
47
48 #include "general.h"
49
50 #endif
51
52 /* === U S I N G =========================================================== */
53
54 using namespace std;
55 using namespace etl;
56 using namespace synfig;
57 using namespace studio;
58
59 /* === M A C R O S ========================================================= */
60
61 /* === G L O B A L S ======================================================= */
62
63 /* === P R O C E D U R E S ================================================= */
64
65 /* === M E T H O D S ======================================================= */
66
67 Dialog_Color::Dialog_Color():
68         Dialog(_("Colors"),false,true),
69         dialog_settings(this,"color"),
70         busy_(false)
71 //      adjustment_pos(0,0.0,1.0,0.001,0.001,0.001)
72 {
73         set_type_hint(Gdk::WINDOW_TYPE_HINT_UTILITY);
74         // Setup the buttons
75         //Gtk::Button *ok_button(manage(new class Gtk::Button(Gtk::StockID("gtk-ok"))));
76         //ok_button->show();
77         //add_action_widget(*ok_button,2);
78         //ok_button->signal_clicked().connect(sigc::mem_fun(*this, &Dialog_Color::on_ok_pressed));
79
80         //Gtk::Button *apply_button(manage(new class Gtk::Button(Gtk::StockID("gtk-apply"))));
81         //apply_button->show();
82         //add_action_widget(*apply_button,1);
83         //apply_button->signal_clicked().connect(sigc::mem_fun(*this, &Dialog_Color::on_apply_pressed));
84
85         Gtk::Button *cancel_button(manage(new class Gtk::Button(Gtk::StockID("gtk-close"))));
86         cancel_button->show();
87         add_action_widget(*cancel_button,0);
88         cancel_button->signal_clicked().connect(sigc::hide_return(sigc::mem_fun(*this, &Dialog_Color::on_close_pressed)));
89         signal_delete_event().connect(sigc::hide(sigc::mem_fun(*this, &Dialog_Color::on_close_pressed)));
90
91         Gtk::Table* table(manage(new Gtk::Table(2,2,false)));
92         get_vbox()->pack_start(*table);
93
94         widget_color=manage(new Widget_ColorEdit());
95         widget_color->signal_value_changed().connect(sigc::mem_fun(*this,&studio::Dialog_Color::on_color_changed));
96         //widget_color->signal_activate().connect(sigc::mem_fun(*this,&studio::Dialog_Color::on_color_changed));
97         table->attach(*widget_color, 0, 1, 0, 1, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
98
99         add_accel_group(App::ui_manager()->get_accel_group());
100
101         show_all_children();
102 }
103
104 Dialog_Color::~Dialog_Color()
105 {
106 }
107
108 void
109 Dialog_Color::reset()
110 {
111         signal_edited_.clear();
112 }
113
114 bool
115 Dialog_Color::on_close_pressed()
116 {
117 //      signal_edited_(get_color());
118         busy_=false;
119         grab_focus();
120         reset();
121         hide();
122         return true;
123 }
124
125 void
126 Dialog_Color::on_apply_pressed()
127 {
128         busy_=true;
129         signal_edited_(get_color());
130         busy_=false;
131 }
132
133 void
134 Dialog_Color::on_color_changed()
135 {
136         busy_=true;
137         signal_edited_(get_color());
138         busy_=false;
139 }