X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-studio%2Ftags%2Fstable%2Fsrc%2Fgtkmm%2Fworkarea.h;h=3b6ecaee08676708c9827b43ffe11474609cd35f;hb=a42ee14a3397a3fbb31d14e6eece4236620ae2db;hp=fd04cc5e45937582e1ad281e31689a53c66f2282;hpb=f6184c2a9c2245aae802c31c8f3300e1b744359c;p=synfig.git diff --git a/synfig-studio/tags/stable/src/gtkmm/workarea.h b/synfig-studio/tags/stable/src/gtkmm/workarea.h index fd04cc5..3b6ecae 100644 --- a/synfig-studio/tags/stable/src/gtkmm/workarea.h +++ b/synfig-studio/tags/stable/src/gtkmm/workarea.h @@ -6,6 +6,7 @@ ** ** \legal ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley +** Copyright (c) 2007 Chris Moore ** ** This package is free software; you can redistribute it and/or ** modify it under the terms of the GNU General Public License as @@ -105,6 +106,7 @@ class WorkArea : public Gtk::Table, public Duckmatic friend class WorkAreaTarget_Full; friend class DirtyTrap; friend class WorkAreaRenderer; + friend class WorkAreaProgress; /* -- ** -- P U B L I C T Y P E S --------------------------------------------- @@ -235,6 +237,13 @@ private: etl::loose_handle selected_value_node_; + bool allow_duck_clicks; + bool allow_layer_clicks; + bool cancel; + bool curr_guide_is_x; + bool dirty; + bool queued; + bool rendering; /* -- ** -- P U B L I C D A T A ----------------------------------------------- @@ -256,16 +265,20 @@ public: int get_tile_w()const { return tile_w; } int get_tile_h()const { return tile_h; } + bool get_allow_layer_clicks() { return allow_layer_clicks; } + void set_allow_layer_clicks(bool value) { allow_layer_clicks=value; } + + bool get_allow_duck_clicks() { return allow_duck_clicks; } + void set_allow_duck_clicks(bool value) { allow_duck_clicks=value; } + + // used in renderer_ducks.cpp bool solid_lines; - bool rendering; - bool dirty; - bool queued; - bool cancel; - bool allow_layer_clicks; - bool allow_duck_clicks; + // used in renderer_guides.cpp GuideList::iterator curr_guide; - bool curr_guide_is_x; + + // used in renderer_timecode.cpp + int timecode_width, timecode_height; /* -- ** -- P R I V A T E M E T H O D S ---------------------------------------