Remove obsolete includes.
[synfig.git] / synfig-studio / src / gtkmm / dialog_setup.h
1 /* === S Y N F I G ========================================================= */
2 /*!     \file dialog_setup.h
3 **      \brief Template Header
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **      Copyright (c) 2007, 2008 Chris Moore
10 **      Copyright (c) 2008, 2009 Carlos López
11 **
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.
16 **
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.
21 **      \endlegal
22 */
23 /* ========================================================================= */
24
25 /* === S T A R T =========================================================== */
26
27 #ifndef __SYNFIG_STUDIO_DIALOG_SETUP_H
28 #define __SYNFIG_STUDIO_DIALOG_SETUP_H
29
30 /* === H E A D E R S ======================================================= */
31
32 #include <gtkmm/adjustment.h>
33 #include <gtkmm/table.h>
34 #include <gtkmm/button.h>
35 #include <gtkmm/dialog.h>
36 #include <gtkmm/drawingarea.h>
37 #include <gtkmm/optionmenu.h>
38 #include <gtkmm/checkbutton.h>
39 #include <gtkmm/widget_time.h>
40 #include <gtkmm/tooltips.h>
41 #include <gtkmm/comboboxtext.h>
42 #include <gtkmm/spinbutton.h>
43
44 #include <synfig/gamma.h>
45 #include <synfig/time.h>
46 #include <algorithm>
47
48 /* === M A C R O S ========================================================= */
49 #ifndef DEFAULT_PREDEFINED_SIZE
50 #define DEFAULT_PREDEFINED_SIZE _("Custom Size")
51 #endif
52 #ifndef DEFAULT_PREDEFINED_FPS
53 #define DEFAULT_PREDEFINED_FPS _("Custom fps")
54 #endif
55
56 /* === T Y P E D E F S ===================================================== */
57
58 /* === C L A S S E S & S T R U C T S ======================================= */
59
60 namespace Gtk { class Menu; };
61
62 namespace studio {
63
64 class GammaPattern : public Gtk::DrawingArea
65 {
66         float gamma_r;
67         float gamma_g;
68         float gamma_b;
69         float black_level;
70         float red_blue_level;
71
72         int tile_w, tile_h;
73
74         Gdk::Color black[4],white[4],gray50[4],gray25[4];
75
76         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; }
77         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; }
78         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; }
79
80 public:
81
82         void refresh();
83
84         void set_gamma_r(float x) { gamma_r=x; }
85         void set_gamma_g(float x) { gamma_g=x; };
86         void set_gamma_b(float x) { gamma_b=x; };
87         void set_black_level(float x) { black_level=x; };
88         void set_red_blue_level(float x) { red_blue_level=x; };
89
90         float get_gamma_r()const { return gamma_r; }
91         float get_gamma_g()const { return gamma_g; }
92         float get_gamma_b()const { return gamma_b; }
93         float get_black_level()const { return black_level; }
94         float get_red_blue_level()const { return red_blue_level; }
95
96         GammaPattern();
97
98         ~GammaPattern();
99
100         bool redraw(GdkEventExpose*bleh=NULL);
101 }; // END of class GammaPattern
102
103 class BlackLevelSelector : public Gtk::DrawingArea
104 {
105         float level;
106
107         sigc::signal<void> signal_value_changed_;
108
109 public:
110
111         BlackLevelSelector();
112
113         ~BlackLevelSelector();
114
115         sigc::signal<void>& signal_value_changed() { return signal_value_changed_; }
116
117         void set_value(float x) { level=x; queue_draw(); }
118
119         const float &get_value()const { return level; }
120
121         bool redraw(GdkEventExpose*bleh=NULL);
122
123         bool on_event(GdkEvent *event);
124 }; // END of class BlackLevelSelector
125
126 class RedBlueLevelSelector : public Gtk::DrawingArea
127 {
128         float level;
129
130         sigc::signal<void> signal_value_changed_;
131
132 public:
133
134         RedBlueLevelSelector();
135
136         ~RedBlueLevelSelector();
137
138         sigc::signal<void>& signal_value_changed() { return signal_value_changed_; }
139
140         void set_value(float x) { level=x; queue_draw(); }
141
142         const float &get_value()const { return level; }
143
144         bool redraw(GdkEventExpose*bleh=NULL);
145
146         bool on_event(GdkEvent *event);
147 }; // END of class RedBlueSelector
148
149 class Widget_Enum;
150
151 class Dialog_Setup : public Gtk::Dialog
152 {
153
154         void on_ok_pressed();
155         void on_apply_pressed();
156
157         void on_gamma_r_change();
158         void on_gamma_g_change();
159         void on_gamma_b_change();
160         void on_black_level_change();
161         void on_red_blue_level_change();
162         void on_size_template_combo_change();
163         void on_fps_template_combo_change();
164
165         GammaPattern gamma_pattern;
166         BlackLevelSelector black_level_selector;
167         RedBlueLevelSelector red_blue_level_selector;
168         Gtk::OptionMenu timestamp_optionmenu;
169
170         Gtk::Adjustment adj_gamma_r;
171         Gtk::Adjustment adj_gamma_g;
172         Gtk::Adjustment adj_gamma_b;
173
174         Gtk::Adjustment adj_recent_files;
175         Gtk::Adjustment adj_undo_depth;
176
177         Gtk::CheckButton toggle_use_colorspace_gamma;
178 #ifdef SINGLE_THREADED
179         Gtk::CheckButton toggle_single_threaded;
180 #endif
181
182         synfig::Time::Format time_format;
183
184         Gtk::Menu *timestamp_menu;
185         Widget_Enum *widget_enum;
186
187         Widget_Time auto_backup_interval;
188
189         Gtk::CheckButton toggle_restrict_radius_ducks;
190         Gtk::CheckButton toggle_resize_imported_images;
191
192         Gtk::Entry textbox_browser_command;
193
194         Gtk::ComboBoxText* size_template_combo;
195         Gtk::ComboBoxText* fps_template_combo;
196         Gtk::Entry textbox_custom_filename_prefix;
197         Gtk::Adjustment adj_pref_x_size;
198         Gtk::Adjustment adj_pref_y_size;
199         Gtk::Adjustment adj_pref_fps;
200         Gtk::SpinButton* pref_fps_spinbutton;
201         Gtk::SpinButton* pref_y_size_spinbutton;
202         Gtk::SpinButton* pref_x_size_spinbutton;
203         Gtk::Tooltips tooltips_;
204 public:
205
206         void set_time_format(synfig::Time::Format time_format);
207
208         const synfig::Time::Format& get_time_format()const { return time_format; }
209
210         Dialog_Setup();
211         ~Dialog_Setup();
212
213     void refresh();
214
215 }; // END of Dialog_Waypoint
216
217 }; // END of namespace studio
218
219 /* === E N D =============================================================== */
220
221 #endif