1 /* === S Y N F I G ========================================================= */
3 ** \brief General macros, classes, and procedure declarations
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_GENERAL_H
26 #define __SYNFIG_GENERAL_H
28 /* === H E A D E R S ======================================================= */
30 #include <ETL/stringf>
38 /* === M A C R O S ========================================================= */
41 #define _(x) dgettext("synfig",x)
42 #define gettext_noop(x) x
43 #define N_(x) gettext_noop(x)
45 #define dgettext(a,x) (x)
50 #define SYNFIG_COPYRIGHT "Copyright (c) 2001-2005 Robert B. Quattlebaum Jr., Adrian Bentley"
55 #define DEBUGPOINT() synfig::warning(etl::strprintf(__FILE__":"__FUNC__":%d DEBUGPOINT",__LINE__))
56 #define DEBUGINFO(x) synfig::warning(etl::strprintf(__FILE__":"__FUNC__":%d:DEBUGINFO:",__LINE__)+x)
58 #define DEBUGPOINT() synfig::warning(etl::strprintf(__FILE__":%d DEBUGPOINT",__LINE__))
59 #define DEBUGINFO(x) synfig::warning(etl::strprintf(__FILE__":%d:DEBUGINFO:",__LINE__)+x)
67 /* === C L A S S E S & S T R U C T S ======================================= */
72 const String previous;
75 ChangeLocale(int category, const char *locale):
76 previous(setlocale(category,locale)),category(category)
80 setlocale(category,previous.c_str());
84 /*! \class ProgressCallback
87 class ProgressCallback
91 virtual ~ProgressCallback() { }
92 virtual bool task(const String &/*task*/) { return true; }
93 virtual bool error(const String &/*task*/) { return true; }
94 virtual bool warning(const String &/*task*/) { return true; }
95 virtual bool amount_complete(int /*current*/, int /*total*/) { return true; }
97 virtual bool valid() const { return true; }
100 typedef ProgressCallback ProgressManager;
102 /*! \class SuperCallback
105 class SuperCallback : public ProgressCallback
107 ProgressCallback *cb;
112 SuperCallback() { cb=NULL; }
113 SuperCallback(ProgressCallback *cb,int start, int end, int total):cb(cb),start(start),end(end),tot(total)
115 //make sure we don't "inherit" if our subcallback is invalid
116 if(!cb || !cb->valid())
120 virtual bool task(const String &task) { if(cb)return cb->task(task); return true; }
121 virtual bool error(const String &task) { if(cb)return cb->error(task); return true; }
122 virtual bool warning(const String &task) { if(cb)return cb->warning(task); return true; }
123 virtual bool amount_complete(int cur, int total) { if(cb)return cb->amount_complete(start+cur*w/total,tot); return true; }
125 virtual bool valid() const { return cb != 0; }
130 extern bool add_to_module_search_path(const std:string &path);
131 extern bool add_to_config_search_path(const std:string &path);
134 //! Shutdown the synfig environment
135 extern void shutdown();
138 /*! Call this when an error occurs, describing what happened */
139 extern void error(const char *format,...);
140 extern void error(const String &str);
142 //! Reports a warning
143 /*! Call this when something questionable occurs, describing what happened */
144 extern void warning(const char *format,...);
145 extern void warning(const String &str);
147 //! Reports some information
148 /*! Call this to report various information. Please be sparse... */
149 extern void info(const char *format,...);
150 extern void info(const String &str);
152 }; // END of namespace synfig
154 /* === E N D =============================================================== */