1 /* === S Y N F I G ========================================================= */
2 /*! \file dialog_setup.h
3 ** \brief Template Header
8 ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 ** Copyright (c) 2007, 2008 Chris Moore
10 ** Copyright (c) 2008 Carlos López
12 ** This package is free software; you can redistribute it and/or
13 ** modify it under the terms of the GNU General Public License as
14 ** published by the Free Software Foundation; either version 2 of
15 ** the License, or (at your option) any later version.
17 ** This package is distributed in the hope that it will be useful,
18 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 ** General Public License for more details.
23 /* ========================================================================= */
25 /* === S T A R T =========================================================== */
27 #ifndef __SYNFIG_STUDIO_DIALOG_SETUP_H
28 #define __SYNFIG_STUDIO_DIALOG_SETUP_H
30 /* === H E A D E R S ======================================================= */
33 #include <gtkmm/adjustment.h>
34 #include <gtkmm/table.h>
35 #include <gtkmm/button.h>
36 #include <gtkmm/dialog.h>
37 #include <gtkmm/drawingarea.h>
38 #include <gtkmm/optionmenu.h>
39 #include <gtkmm/checkbutton.h>
40 #include <gtkmm/widget_time.h>
41 #include <gtkmm/tooltips.h>
42 #include <gtkmm/comboboxtext.h>
44 #include <synfig/gamma.h>
45 #include <synfig/time.h>
48 /* === M A C R O S ========================================================= */
49 #ifndef DEFAULT_PREDEFINED_SIZE
50 #define DEFAULT_PREDEFINED_SIZE _("Custom Size")
52 /* === T Y P E D E F S ===================================================== */
54 /* === C L A S S E S & S T R U C T S ======================================= */
56 namespace Gtk { class Menu; };
60 class GammaPattern : public Gtk::DrawingArea
70 Gdk::Color black[4],white[4],gray50[4],gray25[4];
72 float r_F32_to_F32(float x)const { float f((pow(x,gamma_r)*std::min(red_blue_level,1.0f)*(1.0f-black_level)+black_level)); if(f<0)f=0; if(f>1)f=1; return f; }
73 float g_F32_to_F32(float x)const { float f((pow(x,gamma_g)*sqrt(std::min(2.0f-red_blue_level,red_blue_level))*(1.0f-black_level)+black_level)); if(f<0)f=0; if(f>1)f=1; return f; }
74 float b_F32_to_F32(float x)const { float f((pow(x,gamma_b)*std::min(2.0f-red_blue_level,1.0f)*(1.0f-black_level)+black_level)); if(f<0)f=0; if(f>1)f=1; return f; }
80 void set_gamma_r(float x) { gamma_r=x; }
81 void set_gamma_g(float x) { gamma_g=x; };
82 void set_gamma_b(float x) { gamma_b=x; };
83 void set_black_level(float x) { black_level=x; };
84 void set_red_blue_level(float x) { red_blue_level=x; };
86 float get_gamma_r()const { return gamma_r; }
87 float get_gamma_g()const { return gamma_g; }
88 float get_gamma_b()const { return gamma_b; }
89 float get_black_level()const { return black_level; }
90 float get_red_blue_level()const { return red_blue_level; }
96 bool redraw(GdkEventExpose*bleh=NULL);
97 }; // END of class GammaPattern
99 class BlackLevelSelector : public Gtk::DrawingArea
103 sigc::signal<void> signal_value_changed_;
107 BlackLevelSelector();
109 ~BlackLevelSelector();
111 sigc::signal<void>& signal_value_changed() { return signal_value_changed_; }
113 void set_value(float x) { level=x; queue_draw(); }
115 const float &get_value()const { return level; }
117 bool redraw(GdkEventExpose*bleh=NULL);
119 bool on_event(GdkEvent *event);
120 }; // END of class BlackLevelSelector
122 class RedBlueLevelSelector : public Gtk::DrawingArea
126 sigc::signal<void> signal_value_changed_;
130 RedBlueLevelSelector();
132 ~RedBlueLevelSelector();
134 sigc::signal<void>& signal_value_changed() { return signal_value_changed_; }
136 void set_value(float x) { level=x; queue_draw(); }
138 const float &get_value()const { return level; }
140 bool redraw(GdkEventExpose*bleh=NULL);
142 bool on_event(GdkEvent *event);
143 }; // END of class RedBlueSelector
147 class Dialog_Setup : public Gtk::Dialog
150 void on_ok_pressed();
151 void on_apply_pressed();
153 void on_gamma_r_change();
154 void on_gamma_g_change();
155 void on_gamma_b_change();
156 void on_black_level_change();
157 void on_red_blue_level_change();
158 void on_size_template_combo_change();
160 GammaPattern gamma_pattern;
161 BlackLevelSelector black_level_selector;
162 RedBlueLevelSelector red_blue_level_selector;
163 Gtk::OptionMenu timestamp_optionmenu;
165 Gtk::Adjustment adj_gamma_r;
166 Gtk::Adjustment adj_gamma_g;
167 Gtk::Adjustment adj_gamma_b;
169 Gtk::Adjustment adj_recent_files;
170 Gtk::Adjustment adj_undo_depth;
172 Gtk::CheckButton toggle_use_colorspace_gamma;
173 #ifdef SINGLE_THREADED
174 Gtk::CheckButton toggle_single_threaded;
177 synfig::Time::Format time_format;
179 Gtk::Menu *timestamp_menu;
180 Widget_Enum *widget_enum;
182 Widget_Time auto_backup_interval;
184 Gtk::CheckButton toggle_restrict_radius_ducks;
185 Gtk::CheckButton toggle_resize_imported_images;
187 Gtk::Entry textbox_browser_command;
189 Gtk::ComboBoxText* size_template_combo;
190 Gtk::Entry textbox_custom_filename_prefix;
191 Gtk::Adjustment adj_pref_x_size;
192 Gtk::Adjustment adj_pref_y_size;
193 Gtk::Tooltips tooltips_;
196 void set_time_format(synfig::Time::Format time_format);
198 const synfig::Time::Format& get_time_format()const { return time_format; }
205 }; // END of Dialog_Waypoint
207 }; // END of namespace studio
209 /* === E N D =============================================================== */