X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-studio%2Ftags%2Fstable%2Fsrc%2Fgtkmm%2Fapp.h;h=adeef35d95767e5be502b9a4e53d0977fca0320b;hb=a42ee14a3397a3fbb31d14e6eece4236620ae2db;hp=decaaf8bf2636aacb46c65fa5bb2951725eb8820;hpb=7c6d5426922cb3cda793f688dcd4d534b02765c8;p=synfig.git diff --git a/synfig-studio/tags/stable/src/gtkmm/app.h b/synfig-studio/tags/stable/src/gtkmm/app.h index decaaf8..adeef35 100644 --- a/synfig-studio/tags/stable/src/gtkmm/app.h +++ b/synfig-studio/tags/stable/src/gtkmm/app.h @@ -1,28 +1,30 @@ -/* === S I N F G =========================================================== */ +/* === S Y N F I G ========================================================= */ /*! \file app.h ** \brief writeme ** -** $Id: app.h,v 1.2 2005/01/13 21:11:16 darco Exp $ +** $Id$ ** ** \legal -** Copyright (c) 2002 Robert B. Quattlebaum Jr. +** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley +** Copyright (c) 2007 Chris Moore ** -** This software and associated documentation -** are CONFIDENTIAL and PROPRIETARY property of -** the above-mentioned copyright holder. +** This package is free software; you can redistribute it and/or +** modify it under the terms of the GNU General Public License as +** published by the Free Software Foundation; either version 2 of +** the License, or (at your option) any later version. ** -** You may not copy, print, publish, or in any -** other way distribute this software without -** a prior written agreement with -** the copyright holder. +** This package is distributed in the hope that it will be useful, +** but WITHOUT ANY WARRANTY; without even the implied warranty of +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +** General Public License for more details. ** \endlegal */ /* ========================================================================= */ /* === S T A R T =========================================================== */ -#ifndef __SINFG_STUDIO_APP_H -#define __SINFG_STUDIO_APP_H +#ifndef __SYNFIG_STUDIO_APP_H +#define __SYNFIG_STUDIO_APP_H /* === H E A D E R S ======================================================= */ @@ -35,13 +37,13 @@ #include -#include -#include -#include +#include +#include +#include #include -#include +#include #include "iconcontroler.h" /* === M A C R O S ========================================================= */ @@ -57,14 +59,14 @@ namespace Gtk class ActionGroup; }; -namespace sinfgapp +namespace synfigapp { class UIInterface; class Main; }; class Preferences; - + namespace studio { typedef Gtk::UIManager UIManager; @@ -93,17 +95,17 @@ class Dock_Info; class Dock_Navigator; class Dock_LayerGroups; class IPC; - + class Module; class StateManager; class IconControler; - + class App : public Gtk::Main, private IconControler { friend class Preferences; friend class Dialog_Setup; - + /* -- ** -- P U B L I C T Y P E S --------------------------------------------- */ @@ -123,7 +125,7 @@ public: */ private: - //static etl::handle ui_interface_; + //static etl::handle ui_interface_; //static int max_recent_files; /* @@ -141,14 +143,14 @@ private: static IPC *ipc; */ - etl::smart_ptr sinfgapp_main; + etl::smart_ptr synfigapp_main; static etl::handle selected_instance; static etl::handle selected_canvas_view; static Glib::RefPtr ui_manager_; - + // static std::list< etl::handle< Module > > module_list_; /* @@ -170,15 +172,15 @@ public: // static Dialog_Palette* dialog_palette; static Dialog_ToolOptions *dialog_tool_options; - static sinfg::Distance::System distance_system; + static synfig::Distance::System distance_system; - static sinfg::Gamma gamma; + static synfig::Gamma gamma; static Toolbox *toolbox; static std::list > instance_list; - static bool shutdown_in_progress; + static bool shutdown_in_progress; static bool use_colorspace_gamma; @@ -258,19 +260,20 @@ public: static void add_recent_file(const std::string &filename); - static sinfg::String get_base_path(); + static synfig::String get_base_path(); static void save_settings(); static void load_settings(); + static void reset_initial_window_configuration(); static const std::list& get_recent_files(); - static const etl::handle& get_ui_interface(); + static const etl::handle& get_ui_interface(); static void set_selected_instance(etl::loose_handle instance); static void set_selected_canvas_view(etl::loose_handle); - static etl::loose_handle get_instance(etl::handle canvas); + static etl::loose_handle get_instance(etl::handle canvas); static etl::loose_handle get_selected_instance() { return selected_instance; } static etl::loose_handle get_selected_canvas_view() { return selected_canvas_view; } @@ -284,28 +287,27 @@ public: static void dialog_open(); static void dialog_about(); - + static void quit(); - + static void show_setup(); static void undo(); static void redo(); - + static int get_max_recent_files(); static void set_max_recent_files(int x); - static sinfg::Time::Format get_time_format(); - static void set_time_format(sinfg::Time::Format x); + static synfig::Time::Format get_time_format(); + static void set_time_format(synfig::Time::Format x); static bool shutdown_request(GdkEventAny*bleh=NULL); - + // static bool dialog_file(const std::string &title, std::string &filename); static bool dialog_open_file(const std::string &title, std::string &filename); static bool dialog_save_file(const std::string &title, std::string &filename); - static bool dialog_saveas_file(const std::string &title, std::string &filename); static void dialog_error_blocking(const std::string &title, const std::string &message); @@ -316,11 +318,11 @@ public: static bool dialog_yes_no(const std::string &title, const std::string &message); static int dialog_yes_no_cancel(const std::string &title, const std::string &message); - + static void dialog_not_implemented(); - static sinfg::String get_user_app_directory(); - static sinfg::String get_config_file(const sinfg::String& file); + static synfig::String get_user_app_directory(); + static synfig::String get_config_file(const synfig::String& file); }; // END of class App }; // END namespace studio