1 /* === S Y N F I G ========================================================= */
5 ** $Id: app.h,v 1.2 2005/01/13 21:11:16 darco Exp $
8 ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
10 ** This package is free software; you can redistribute it and/or
11 ** modify it under the terms of the GNU General Public License as
12 ** published by the Free Software Foundation; either version 2 of
13 ** the License, or (at your option) any later version.
15 ** This package is distributed in the hope that it will be useful,
16 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 ** General Public License for more details.
21 /* ========================================================================= */
23 /* === S T A R T =========================================================== */
25 #ifndef __SYNFIG_STUDIO_APP_H
26 #define __SYNFIG_STUDIO_APP_H
28 /* === H E A D E R S ======================================================= */
30 #include <sigc++/compatibility.h>
31 #include <sigc++/bind.h>
33 #include <gtkmm/main.h>
37 #include <ETL/smart_ptr>
39 #include <synfig/distance.h>
40 #include <synfig/string.h>
41 #include <synfig/time.h>
43 #include <gtkmm/uimanager.h>
45 #include <synfigapp/instance.h>
46 #include "iconcontroler.h"
48 /* === M A C R O S ========================================================= */
50 /* === T Y P E D E F S ===================================================== */
52 /* === C L A S S E S & S T R U C T S ======================================= */
71 typedef Gtk::UIManager UIManager;
77 class Dialog_Gradient;
79 class Dialog_ToolOptions;
95 class Dock_LayerGroups;
103 class App : public Gtk::Main, private IconControler
105 friend class Preferences;
106 friend class Dialog_Setup;
109 -- ** -- P U B L I C T Y P E S ---------------------------------------------
123 -- ** -- P R I V A T E D A T A ---------------------------------------------
127 //static etl::handle<synfigapp::UIInterface> ui_interface_;
128 //static int max_recent_files;
131 static Dock_Keyframes *dock_keyframes;
132 static Dock_Layers *dock_layers;
133 static Dock_Params *dock_params;
134 static Dock_MetaData *dock_meta_data;
135 static Dock_Children *dock_children;
136 static Dock_Info *dock_info;
137 static Dock_Navigator *dock_navigator;
138 static Dock_History *dock_history;
139 static Dock_Canvases *dock_canvases;
140 static Dock_LayerGroups *dock_layer_groups;
145 etl::smart_ptr<synfigapp::Main> synfigapp_main;
148 static etl::handle<Instance> selected_instance;
149 static etl::handle<CanvasView> selected_canvas_view;
151 static Glib::RefPtr<UIManager> ui_manager_;
153 // static std::list< etl::handle< Module > > module_list_;
156 -- ** -- P U B L I C D A T A -----------------------------------------------
160 static Gtk::InputDialog* dialog_input;
162 static DeviceTracker* device_tracker;
163 static AutoRecover* auto_recover;
164 static DockManager* dock_manager;
166 static DockManager* get_dock_manager() { return dock_manager; }
168 static Dialog_Setup* dialog_setup;
169 static Dialog_Gradient* dialog_gradient;
170 static Dialog_Color* dialog_color;
171 // static Dialog_Palette* dialog_palette;
172 static Dialog_ToolOptions *dialog_tool_options;
174 static synfig::Distance::System distance_system;
176 static synfig::Gamma gamma;
178 static Toolbox *toolbox;
180 static std::list<etl::handle<Instance> > instance_list;
182 static bool shutdown_in_progress;
184 static bool use_colorspace_gamma;
187 -- ** -- S I G N A L S -------------------------------------------------------
192 etl::loose_handle<CanvasView>
193 > signal_canvas_view_focus_;
196 etl::handle<Instance>
197 > signal_instance_selected_;
200 etl::handle<Instance>
201 > signal_instance_created_;
204 etl::handle<Instance>
205 > signal_instance_deleted_;
206 static sigc::signal<void> signal_recent_files_changed_;
207 static sigc::signal<void> signal_present_all_;
211 static sigc::signal<void> &signal_present_all();
213 static sigc::signal<void> &signal_recent_files_changed();
217 etl::loose_handle<CanvasView>
218 >& signal_canvas_view_focus();
222 etl::handle<Instance>
223 > &signal_instance_selected();
227 etl::handle<Instance>
228 > &signal_instance_created();
232 etl::handle<Instance>
233 > &signal_instance_deleted();
236 -- ** -- P R I V A T E M E T H O D S ---------------------------------------
242 -- ** -- P U B L I C M E T H O D S -----------------------------------------
247 App(int *argc, char ***argv);
251 -- ** -- S T A T I C P U B L I C M E T H O D S ---------------------------
256 static StateManager* get_state_manager();
258 static Glib::RefPtr<UIManager>& ui_manager() { return ui_manager_; }
260 static void add_recent_file(const std::string &filename);
262 static synfig::String get_base_path();
263 static void save_settings();
264 static void load_settings();
266 static const std::list<std::string>& get_recent_files();
268 static const etl::handle<synfigapp::UIInterface>& get_ui_interface();
271 static void set_selected_instance(etl::loose_handle<Instance> instance);
272 static void set_selected_canvas_view(etl::loose_handle<CanvasView>);
274 static etl::loose_handle<Instance> get_instance(etl::handle<synfig::Canvas> canvas);
276 static etl::loose_handle<Instance> get_selected_instance() { return selected_instance; }
277 static etl::loose_handle<CanvasView> get_selected_canvas_view() { return selected_canvas_view; }
279 static bool open(std::string filename);
281 static bool open_as(std::string filename,std::string as);
283 static void new_instance();
285 static void dialog_open();
287 static void dialog_about();
291 static void show_setup();
296 static int get_max_recent_files();
297 static void set_max_recent_files(int x);
300 static synfig::Time::Format get_time_format();
301 static void set_time_format(synfig::Time::Format x);
303 static bool shutdown_request(GdkEventAny*bleh=NULL);
305 // static bool dialog_file(const std::string &title, std::string &filename);
307 static bool dialog_open_file(const std::string &title, std::string &filename);
308 static bool dialog_save_file(const std::string &title, std::string &filename);
309 static bool dialog_saveas_file(const std::string &title, std::string &filename);
311 static void dialog_error_blocking(const std::string &title, const std::string &message);
313 static void dialog_warning_blocking(const std::string &title, const std::string &message);
315 static bool dialog_entry(const std::string &title, const std::string &message,std::string &text);
317 static bool dialog_yes_no(const std::string &title, const std::string &message);
319 static int dialog_yes_no_cancel(const std::string &title, const std::string &message);
321 static void dialog_not_implemented();
323 static synfig::String get_user_app_directory();
324 static synfig::String get_config_file(const synfig::String& file);
325 }; // END of class App
327 }; // END namespace studio
329 /* === E N D =============================================================== */