Move widgets into subfolder
[synfig.git] / synfig-studio / src / gui / dialogs / dialog_gradient.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file dialog_gradient.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 "dialogs/dialog_gradient.h"
33 #include "widgets/widget_gradient.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 <synfigapp/main.h>
41 #include "widgets/widget_color.h"
42 #include <gtkmm/spinbutton.h>
43 #include "app.h"
44
45 #include "general.h"
46
47 #endif
48
49 /* === U S I N G =========================================================== */
50
51 using namespace std;
52 using namespace etl;
53 using namespace synfig;
54 using namespace studio;
55
56 /* === M A C R O S ========================================================= */
57
58 /* === G L O B A L S ======================================================= */
59
60 /* === P R O C E D U R E S ================================================= */
61
62 /* === M E T H O D S ======================================================= */
63
64 Dialog_Gradient::Dialog_Gradient():
65         Dialog(_("Gradient Editor"),false,true),
66         dialog_settings(this,"gradient"),
67         adjustment_pos(0,0.0,1.0,0.001,0.001,0)
68 {
69         set_type_hint(Gdk::WINDOW_TYPE_HINT_DIALOG);
70         set_keep_above(false);
71
72         set_role("gradient_editor");
73
74         // Setup the buttons
75         set_default_button = manage(new class Gtk::Button(Gtk::StockID(_("Set as Default"))));
76         set_default_button->show();
77         add_action_widget(*set_default_button,2);
78         set_default_button->signal_clicked().connect(sigc::mem_fun(*this, &Dialog_Gradient::on_set_default_pressed));
79
80         Gtk::Button *cancel_button(manage(new class Gtk::Button(Gtk::StockID("gtk-close"))));
81         cancel_button->show();
82         add_action_widget(*cancel_button,0);
83         cancel_button->signal_clicked().connect(sigc::mem_fun(*this, &Dialog_Gradient::hide));
84
85         Gtk::Table* table(manage(new Gtk::Table(2,2,false)));
86         get_vbox()->pack_start(*table);
87
88         widget_gradient=manage(new Widget_Gradient());
89         widget_gradient->set_editable();
90         widget_gradient->signal_cpoint_selected().connect(sigc::mem_fun(*this,&studio::Dialog_Gradient::on_cpoint_selected));
91         widget_gradient->signal_value_changed().connect(sigc::mem_fun(*this,&studio::Dialog_Gradient::on_changed));
92         //table->attach(*manage(new Gtk::Label(_("Not yet fully implemented"))), 0, 1, 0, 1, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
93         table->attach(*widget_gradient, 0, 1, 2, 3, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
94
95         widget_color=manage(new Widget_ColorEdit());
96         widget_color->signal_value_changed().connect(sigc::mem_fun(*this,&studio::Dialog_Gradient::on_values_adjusted));
97         widget_color->signal_value_changed().connect(sigc::mem_fun(*this,&studio::Dialog_Gradient::on_changed));
98         widget_color->signal_activated().connect(sigc::mem_fun(*this,&studio::Dialog_Gradient::on_values_adjusted));
99         table->attach(*widget_color, 0, 1, 0, 1, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
100
101
102         spinbutton_pos=manage(new class Gtk::SpinButton(adjustment_pos,0.0001,4));
103         spinbutton_pos->set_update_policy(Gtk::UPDATE_ALWAYS);
104         adjustment_pos.signal_value_changed().connect(sigc::mem_fun(*this,&studio::Dialog_Gradient::on_values_adjusted));
105         adjustment_pos.signal_value_changed().connect(sigc::mem_fun(*this,&studio::Dialog_Gradient::on_changed));
106         table->attach(*spinbutton_pos, 0, 1, 1, 2, Gtk::SHRINK|Gtk::FILL, Gtk::SHRINK|Gtk::FILL, 0, 0);
107
108
109         add_accel_group(App::ui_manager()->get_accel_group());
110
111         show_all_children();
112 }
113
114 Dialog_Gradient::~Dialog_Gradient()
115 {
116 }
117
118 void
119 Dialog_Gradient::set_gradient(const synfig::Gradient& x)
120 {
121         widget_gradient->set_value(x);
122 }
123
124 void
125 Dialog_Gradient::reset()
126 {
127         value_changed_connection.disconnect();
128         signal_edited_.clear();
129 }
130
131 void
132 Dialog_Gradient::on_set_default_pressed()
133 {
134         synfigapp::Main::set_gradient(get_gradient());
135 }
136
137 void
138 Dialog_Gradient::on_changed()
139 {
140         signal_edited_(get_gradient());
141 }
142
143 void
144 Dialog_Gradient::on_cpoint_selected(synfig::Gradient::CPoint x)
145 {
146         widget_color->set_value(x.color);
147         adjustment_pos.set_value(x.pos);
148 }
149
150 void
151 Dialog_Gradient::on_values_adjusted()
152 {
153         synfig::Gradient::CPoint x(widget_gradient->get_selected_cpoint());
154         x.color=widget_color->get_value();
155         x.pos=adjustment_pos.get_value();
156         widget_gradient->update_cpoint(x);
157 }
158
159 static void
160 dialog_gradient_value_desc_edit(synfig::Gradient /*g*/,synfigapp::ValueDesc /*x*/,handle<synfigapp::CanvasInterface> /*canvas_interface*/)
161 {
162 //      canvas_interface->connect_value(x,ValueBase(g));
163 }
164
165 void
166 Dialog_Gradient::edit(const synfigapp::ValueDesc &x, etl::handle<synfigapp::CanvasInterface> canvas_interface, synfig::Time time)
167 {
168         reset();
169         if(x.is_const())
170                 set_gradient(x.get_value().get(Gradient()));
171         else if(x.is_value_node())
172                 set_gradient((*x.get_value_node())(time).get(Gradient()));
173
174         signal_edited().connect(
175                 sigc::bind(
176                         sigc::bind(
177                                 sigc::ptr_fun(dialog_gradient_value_desc_edit),
178                                 canvas_interface
179                         ),
180                         x
181                 )
182         );
183
184         present();
185 }