1 /* === S Y N F I G ========================================================= */
2 /*! \file asyncrenderer.h
3 ** \brief Template Header
8 ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 ** Copyright (c) 2007 Chris Moore
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.
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.
22 /* ========================================================================= */
24 /* === S T A R T =========================================================== */
26 #ifndef __SYNFIG_ASYNCRENDERER_H
27 #define __SYNFIG_ASYNCRENDERER_H
29 /* === H E A D E R S ======================================================= */
32 #include <sigc++/signal.h>
33 #include <sigc++/trackable.h>
34 #include <sigc++/connection.h>
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>
44 /* === M A C R O S ========================================================= */
46 // uncomment define SINGLE_THREADED to use a single thread, and hopefully get more stability (dooglus) - changed to be default if using windows (Nov 2009 pixelgeek)
48 #define SINGLE_THREADED
50 #ifdef SINGLE_THREADED
51 # define single_threaded() App::single_threaded
54 /* === T Y P E D E F S ===================================================== */
56 /* === C L A S S E S & S T R U C T S ======================================= */
60 class AsyncRenderer : public etl::shared_object, public sigc::trackable
62 sigc::signal<void> signal_finished_;
63 sigc::signal<void> signal_success_;
65 std::list<sigc::connection> activity_connection_list;
67 //etl::handle<synfig::Target_Scanline> target_scanline;
68 //etl::handle<synfig::Target_Tile> target_tile;
69 etl::handle<synfig::Target> target;
74 synfig::ProgressCallback *cb;
76 sigc::signal<void> signal_stop_;
78 Glib::Thread* render_thread;
79 Glib::Dispatcher signal_done_;
81 sigc::connection done_connection;
84 -- ** -- P A R E N T M E M B E R S -----------------------------------------
88 AsyncRenderer(etl::handle<synfig::Target> target,synfig::ProgressCallback *cb=0);
89 virtual ~AsyncRenderer();
95 #ifdef SINGLE_THREADED
96 void rendering_progress();
100 bool has_error()const { return error; }
101 bool has_success()const { return success; }
103 sigc::signal<void>& signal_finished() { return signal_finished_; }
104 sigc::signal<void>& signal_success() { return signal_success_; }
108 void render_target();
112 -- ** -- C H I L D M E M B E R S -------------------------------------------
119 }; // END of namespace studio
121 /* === E N D =============================================================== */