Fix bugs in previous commit that caused FTBFS in synfig and ETL FTBFS with older...
[synfig.git] / synfig-studio / tags / synfigstudio_0_61_07_rc2 / src / gtkmm / asyncrenderer.h
1 /* === S Y N F I G ========================================================= */
2 /*!     \file asyncrenderer.h
3 **      \brief Template Header
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **
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.
14 **
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.
19 **      \endlegal
20 */
21 /* ========================================================================= */
22
23 /* === S T A R T =========================================================== */
24
25 #ifndef __SYNFIG_ASYNCRENDERER_H
26 #define __SYNFIG_ASYNCRENDERER_H
27
28 /* === H E A D E R S ======================================================= */
29
30 #include <ETL/handle>
31 #include <sigc++/signal.h>
32 #include <sigc++/trackable.h>
33 #include <sigc++/connection.h>
34
35 #include <synfig/target_scanline.h>
36 #include <synfig/target_tile.h>
37 #include <synfig/surface.h>
38 #include <glibmm/main.h>
39 #include <ETL/ref_count>
40 #include <glibmm/thread.h>
41 #include <glibmm/dispatcher.h>
42
43 /* === M A C R O S ========================================================= */
44
45 /* === T Y P E D E F S ===================================================== */
46
47 /* === C L A S S E S & S T R U C T S ======================================= */
48
49 namespace studio {
50
51 class AsyncRenderer : public etl::shared_object, public sigc::trackable
52 {
53         sigc::signal<void> signal_finished_;
54         sigc::signal<void> signal_success_;
55
56         std::list<sigc::connection> activity_connection_list;
57
58         //etl::handle<synfig::Target_Scanline> target_scanline;
59         //etl::handle<synfig::Target_Tile> target_tile;
60         etl::handle<synfig::Target> target;
61
62         bool error;
63         bool success;
64
65         synfig::ProgressCallback *cb;
66
67         sigc::signal<void> signal_stop_;
68
69         Glib::Thread* render_thread;
70         Glib::Dispatcher signal_done_;
71         Glib::Mutex mutex;
72         sigc::connection done_connection;
73
74         /*
75  --     ** -- P A R E N T   M E M B E R S -----------------------------------------
76         */
77 public:
78
79         AsyncRenderer(etl::handle<synfig::Target> target,synfig::ProgressCallback *cb=0);
80         virtual ~AsyncRenderer();
81
82         void start();
83         void stop();
84         void pause();
85         void resume();
86
87         bool has_error()const { return error; }
88         bool has_success()const { return success; }
89
90         sigc::signal<void>& signal_finished() { return signal_finished_; }
91         sigc::signal<void>& signal_success() { return signal_success_; }
92
93 private:
94
95         void render_target();
96         void start_();
97
98         /*
99  --     ** -- C H I L D   M E M B E R S -------------------------------------------
100         */
101
102 protected:
103
104 };
105
106 }; // END of namespace studio
107
108 /* === E N D =============================================================== */
109
110 #endif