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_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 #endif
49
50 /* === U S I N G =========================================================== */
51
52 using namespace std;
53 using namespace etl;
54 using namespace synfig;
55 using namespace studio;
56
57 /* === M A C R O S ========================================================= */
58
59 /* === G L O B A L S ======================================================= */
60
61 /* === P R O C E D U R E S ================================================= */
62
63 /* === M E T H O D S ======================================================= */
64
65 Dialog_Color::Dialog_Color():
66         Dialog(_("Colors"),false,true),
67         dialog_settings(this,"color"),
68         busy_(false)
69 //      adjustment_pos(0,0.0,1.0,0.001,0.001,0.001)
70 {
71         set_type_hint(Gdk::WINDOW_TYPE_HINT_UTILITY);
72         // Setup the buttons
73         //Gtk::Button *ok_button(manage(new class Gtk::Button(Gtk::StockID("gtk-ok"))));
74         //ok_button->show();
75         //add_action_widget(*ok_button,2);
76         //ok_button->signal_clicked().connect(sigc::mem_fun(*this, &Dialog_Color::on_ok_pressed));
77
78         //Gtk::Button *apply_button(manage(new class Gtk::Button(Gtk::StockID("gtk-apply"))));
79         //apply_button->show();
80         //add_action_widget(*apply_button,1);
81         //apply_button->signal_clicked().connect(sigc::mem_fun(*this, &Dialog_Color::on_apply_pressed));
82
83         Gtk::Button *cancel_button(manage(new class Gtk::Button(Gtk::StockID("gtk-close"))));
84         cancel_button->show();
85         add_action_widget(*cancel_button,0);
86         cancel_button->signal_clicked().connect(sigc::hide_return(sigc::mem_fun(*this, &Dialog_Color::on_close_pressed)));
87         signal_delete_event().connect(sigc::hide(sigc::mem_fun(*this, &Dialog_Color::on_close_pressed)));
88
89         Gtk::Table* table(manage(new Gtk::Table(2,2,false)));
90         get_vbox()->pack_start(*table);
91
92         widget_color=manage(new Widget_ColorEdit());
93         widget_color->signal_value_changed().connect(sigc::mem_fun(*this,&studio::Dialog_Color::on_color_changed));
94         //widget_color->signal_activate().connect(sigc::mem_fun(*this,&studio::Dialog_Color::on_color_changed));
95         table->attach(*widget_color, 0, 1, 0, 1, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
96
97         add_accel_group(App::ui_manager()->get_accel_group());
98
99         show_all_children();
100 }
101
102 Dialog_Color::~Dialog_Color()
103 {
104 }
105
106 void
107 Dialog_Color::reset()
108 {
109         signal_edited_.clear();
110 }
111
112 bool
113 Dialog_Color::on_close_pressed()
114 {
115 //      signal_edited_(get_color());
116         busy_=false;
117         grab_focus();
118         reset();
119         hide();
120         return true;
121 }
122
123 void
124 Dialog_Color::on_apply_pressed()
125 {
126         busy_=true;
127         signal_edited_(get_color());
128         busy_=false;
129 }
130
131 void
132 Dialog_Color::on_color_changed()
133 {
134         busy_=true;
135         signal_edited_(get_color());
136         busy_=false;
137 }