Run everything in the same thread.
[synfig.git] / synfig-studio / trunk / 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 #define SINGLE_THREADED
46
47 /* === T Y P E D E F S ===================================================== */
48
49 /* === C L A S S E S & S T R U C T S ======================================= */
50
51 namespace studio {
52
53 class AsyncRenderer : public etl::shared_object, public sigc::trackable
54 {
55         sigc::signal<void> signal_finished_;
56         sigc::signal<void> signal_success_;
57
58         std::list<sigc::connection> activity_connection_list;
59
60         //etl::handle<synfig::Target_Scanline> target_scanline;
61         //etl::handle<synfig::Target_Tile> target_tile;
62         etl::handle<synfig::Target> target;
63
64         bool error;
65         bool success;
66
67         synfig::ProgressCallback *cb;
68
69         sigc::signal<void> signal_stop_;
70
71         Glib::Thread* render_thread;
72         Glib::Dispatcher signal_done_;
73         Glib::Mutex mutex;
74         sigc::connection done_connection;
75
76         /*
77  --     ** -- P A R E N T   M E M B E R S -----------------------------------------
78         */
79 public:
80
81         AsyncRenderer(etl::handle<synfig::Target> target,synfig::ProgressCallback *cb=0);
82         virtual ~AsyncRenderer();
83
84         void start();
85         void stop();
86         void pause();
87         void resume();
88
89         bool has_error()const { return error; }
90         bool has_success()const { return success; }
91 #ifdef SINGLE_THREADED
92         bool updating;
93 #endif // SINGLE_THREADED
94
95         sigc::signal<void>& signal_finished() { return signal_finished_; }
96         sigc::signal<void>& signal_success() { return signal_success_; }
97
98 private:
99
100         void render_target();
101         void start_();
102         void rendering_progress();
103
104         /*
105  --     ** -- C H I L D   M E M B E R S -------------------------------------------
106         */
107
108 protected:
109
110 };
111
112 }; // END of namespace studio
113
114 /* === E N D =============================================================== */
115
116 #endif