Added my "Copyright (c) 2007" notices, for files I edited in 2007.
[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 **      Copyright (c) 2007 Chris Moore
10 **
11 **      This package is free software; you can redistribute it and/or
12 **      modify it under the terms of the GNU General Public License as
13 **      published by the Free Software Foundation; either version 2 of
14 **      the License, or (at your option) any later version.
15 **
16 **      This package is distributed in the hope that it will be useful,
17 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
18 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 **      General Public License for more details.
20 **      \endlegal
21 */
22 /* ========================================================================= */
23
24 /* === S T A R T =========================================================== */
25
26 #ifndef __SYNFIG_ASYNCRENDERER_H
27 #define __SYNFIG_ASYNCRENDERER_H
28
29 /* === H E A D E R S ======================================================= */
30
31 #include <ETL/handle>
32 #include <sigc++/signal.h>
33 #include <sigc++/trackable.h>
34 #include <sigc++/connection.h>
35
36 #include <synfig/target_scanline.h>
37 #include <synfig/target_tile.h>
38 #include <synfig/surface.h>
39 #include <glibmm/main.h>
40 #include <ETL/ref_count>
41 #include <glibmm/thread.h>
42 #include <glibmm/dispatcher.h>
43
44 /* === M A C R O S ========================================================= */
45
46 #define single_threaded()       App::single_threaded
47 #define NotLock Glib::NOT_LOCK
48
49 /* === T Y P E D E F S ===================================================== */
50
51 /* === C L A S S E S & S T R U C T S ======================================= */
52
53 namespace studio {
54
55 class AsyncRenderer : public etl::shared_object, public sigc::trackable
56 {
57         sigc::signal<void> signal_finished_;
58         sigc::signal<void> signal_success_;
59
60         std::list<sigc::connection> activity_connection_list;
61
62         //etl::handle<synfig::Target_Scanline> target_scanline;
63         //etl::handle<synfig::Target_Tile> target_tile;
64         etl::handle<synfig::Target> target;
65
66         bool error;
67         bool success;
68
69         synfig::ProgressCallback *cb;
70
71         sigc::signal<void> signal_stop_;
72
73         Glib::Thread* render_thread;
74         Glib::Dispatcher signal_done_;
75         Glib::Mutex mutex;
76         sigc::connection done_connection;
77
78         /*
79  --     ** -- P A R E N T   M E M B E R S -----------------------------------------
80         */
81 public:
82
83         AsyncRenderer(etl::handle<synfig::Target> target,synfig::ProgressCallback *cb=0);
84         virtual ~AsyncRenderer();
85
86         void start();
87         void stop();
88         void pause();
89         void resume();
90         void rendering_progress();
91
92         bool has_error()const { return error; }
93         bool has_success()const { return success; }
94
95         bool updating;
96
97         sigc::signal<void>& signal_finished() { return signal_finished_; }
98         sigc::signal<void>& signal_success() { return signal_success_; }
99
100 private:
101
102         void render_target();
103         void start_();
104
105         /*
106  --     ** -- C H I L D   M E M B E R S -------------------------------------------
107         */
108
109 protected:
110
111 };
112
113 }; // END of namespace studio
114
115 /* === E N D =============================================================== */
116
117 #endif