X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-studio%2Ftrunk%2Fsrc%2Fgtkmm%2Fapp.h;h=89cd528229c5e4f58fe3d773342902089a68e30b;hb=9459638ad6797b8139f1e9f0715c96076dbf0890;hp=d1ff2740c595bba0f6d114783079b02530b24f6f;hpb=415526d5dabad4301dc8f38c77536cdb5d3a2df8;p=synfig.git diff --git a/synfig-studio/trunk/src/gtkmm/app.h b/synfig-studio/trunk/src/gtkmm/app.h index d1ff274..89cd528 100644 --- a/synfig-studio/trunk/src/gtkmm/app.h +++ b/synfig-studio/trunk/src/gtkmm/app.h @@ -6,7 +6,8 @@ ** ** \legal ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley -** Copyright (c) 2007 Chris Moore +** 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 @@ -191,10 +192,20 @@ public: static bool use_colorspace_gamma; +#ifdef SINGLE_THREADED static bool single_threaded; +#endif static bool restrict_radius_ducks; - + static bool resize_imported_images; + + static synfig::String browser_command; + static synfig::String custom_filename_prefix; + static int preferred_x_size; + static int preferred_y_size; + static synfig::String predefined_size; + static synfig::String predefined_fps; + static float preferred_fps; /* -- ** -- S I G N A L S ------------------------------------------------------- */ @@ -249,6 +260,7 @@ public: */ private: + static void add_recent_file(const std::string &filename, const std::string &window_size = std::string()); /* -- ** -- P U B L I C M E T H O D S ----------------------------------------- @@ -269,7 +281,8 @@ public: static Glib::RefPtr& ui_manager() { return ui_manager_; } - static void add_recent_file(const std::string &filename); + static void set_recent_file_window_size(etl::handle instance); + static void add_recent_file(const etl::handle instance); static synfig::String get_base_path(); static void save_settings(); @@ -295,7 +308,7 @@ public: static void new_instance(); - static void dialog_open(); + static void dialog_open(std::string filename = ""); static void dialog_about(); @@ -325,6 +338,7 @@ public: static void dialog_warning_blocking(const std::string &title, const std::string &message); static bool dialog_entry(const std::string &title, const std::string &message,std::string &text); + static bool dialog_paragraph(const std::string &title, const std::string &message,std::string &text); static bool dialog_yes_no(const std::string &title, const std::string &message); @@ -332,6 +346,10 @@ public: static void dialog_not_implemented(); + static void dialog_help(); + + static void open_url(const std::string &url); + static synfig::String get_user_app_directory(); static synfig::String get_config_file(const synfig::String& file); }; // END of class App