X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-studio%2Ftrunk%2Fsrc%2Fgtkmm%2Fdialog_setup.h;h=b9c8c9881cce3db1364b12d51f2814fd5d8c3427;hb=01ac0bd92a2342a4cdc10ad5e8300a1bf79a0f4b;hp=22dd5126f92d10a38bec3276fe459d60d0a0722f;hpb=e2d2732c368b92259bba1bef890223831d997b5b;p=synfig.git diff --git a/synfig-studio/trunk/src/gtkmm/dialog_setup.h b/synfig-studio/trunk/src/gtkmm/dialog_setup.h index 22dd512..b9c8c98 100644 --- a/synfig-studio/trunk/src/gtkmm/dialog_setup.h +++ b/synfig-studio/trunk/src/gtkmm/dialog_setup.h @@ -7,6 +7,7 @@ ** \legal ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley ** Copyright (c) 2007, 2008 Chris Moore +** Copyright (c) 2008 Carlos López ** ** This package is free software; you can redistribute it and/or ** modify it under the terms of the GNU General Public License as @@ -37,12 +38,20 @@ #include #include #include +#include +#include #include #include #include /* === M A C R O S ========================================================= */ +#ifndef DEFAULT_PREDEFINED_SIZE +#define DEFAULT_PREDEFINED_SIZE _("Custom Size") +#endif +#ifndef DEFAULT_PREDEFINED_FPS +#define DEFAULT_PREDEFINED_FPS _("Custom fps") +#endif /* === T Y P E D E F S ===================================================== */ @@ -150,6 +159,8 @@ class Dialog_Setup : public Gtk::Dialog void on_gamma_b_change(); void on_black_level_change(); void on_red_blue_level_change(); + void on_size_template_combo_change(); + void on_fps_template_combo_change(); GammaPattern gamma_pattern; BlackLevelSelector black_level_selector; @@ -176,8 +187,17 @@ class Dialog_Setup : public Gtk::Dialog Widget_Time auto_backup_interval; Gtk::CheckButton toggle_restrict_radius_ducks; + Gtk::CheckButton toggle_resize_imported_images; Gtk::Entry textbox_browser_command; + + Gtk::ComboBoxText* size_template_combo; + Gtk::ComboBoxText* fps_template_combo; + Gtk::Entry textbox_custom_filename_prefix; + Gtk::Adjustment adj_pref_x_size; + Gtk::Adjustment adj_pref_y_size; + Gtk::Adjustment adj_pref_fps; + Gtk::Tooltips tooltips_; public: void set_time_format(synfig::Time::Format time_format);