1 /* === S Y N F I G ========================================================= */
2 /*! \file dialog_color.cpp
3 ** \brief Template File
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 /* === H E A D E R S ======================================================= */
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>
52 /* === U S I N G =========================================================== */
56 using namespace synfig;
57 using namespace studio;
59 /* === M A C R O S ========================================================= */
61 /* === G L O B A L S ======================================================= */
63 /* === P R O C E D U R E S ================================================= */
65 /* === M E T H O D S ======================================================= */
67 Dialog_Color::Dialog_Color():
68 Dialog(_("Colors"),false,true),
69 dialog_settings(this,"color"),
71 // adjustment_pos(0,0.0,1.0,0.001,0.001,0.001)
73 set_type_hint(Gdk::WINDOW_TYPE_HINT_UTILITY);
75 //Gtk::Button *ok_button(manage(new class Gtk::Button(Gtk::StockID("gtk-ok"))));
77 //add_action_widget(*ok_button,2);
78 //ok_button->signal_clicked().connect(sigc::mem_fun(*this, &Dialog_Color::on_ok_pressed));
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));
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)));
91 Gtk::Table* table(manage(new Gtk::Table(2,2,false)));
92 get_vbox()->pack_start(*table);
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);
99 add_accel_group(App::ui_manager()->get_accel_group());
104 Dialog_Color::~Dialog_Color()
109 Dialog_Color::reset()
111 signal_edited_.clear();
115 Dialog_Color::on_close_pressed()
117 // signal_edited_(get_color());
126 Dialog_Color::on_apply_pressed()
129 signal_edited_(get_color());
134 Dialog_Color::on_color_changed()
137 signal_edited_(get_color());