X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-studio%2Ftags%2Fstable%2Fsrc%2Fgtkmm%2Fworkarea.h;h=6e5ab7f746e234c28bf61526559c0eb8fa3ff13c;hb=c33037508a9f5a0607b14f3feed692a0d364d68a;hp=3b6ecaee08676708c9827b43ffe11474609cd35f;hpb=9b5810cef039c7f25e924ce2cf2fc80e76e59972;p=synfig.git diff --git a/synfig-studio/tags/stable/src/gtkmm/workarea.h b/synfig-studio/tags/stable/src/gtkmm/workarea.h index 3b6ecae..6e5ab7f 100644 --- a/synfig-studio/tags/stable/src/gtkmm/workarea.h +++ b/synfig-studio/tags/stable/src/gtkmm/workarea.h @@ -6,7 +6,7 @@ ** ** \legal ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley -** Copyright (c) 2007 Chris Moore +** Copyright (c) 2007, 2008 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 @@ -227,6 +227,7 @@ private: bool canceled_; int quality; + int low_res_pixel_size; bool dirty_trap_enabled; @@ -258,6 +259,10 @@ public: bool get_canceled()const { return canceled_; } bool get_queued()const { return queued; } bool get_rendering()const { return rendering; } +#ifdef SINGLE_THREADED + bool get_updating()const; + void stop_updating(bool cancel = false); +#endif bool get_full_frame()const { return full_frame; } //int get_w()const { return w; } //int get_h()const { return h; } @@ -404,8 +409,10 @@ public: void popup_menu(); int get_quality()const { return quality; } + int get_low_res_pixel_size()const { return low_res_pixel_size; } void set_quality(int x); + void set_low_res_pixel_size(int x); int get_w()const { return w; }