X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-studio%2Ftrunk%2Fsrc%2Fgtkmm%2Fworkarea.h;h=872d5fdc40aea8a65b51d25bdf6604e6a01100ef;hb=756c0d29ac1742f231e6615f9a577e574e35a4af;hp=fa9ef0fbf693362557aa7de6e50a1b5c8d38b014;hpb=11c0abb278300f2c4439b538b300433078a19a78;p=synfig.git diff --git a/synfig-studio/trunk/src/gtkmm/workarea.h b/synfig-studio/trunk/src/gtkmm/workarea.h index fa9ef0f..872d5fd 100644 --- a/synfig-studio/trunk/src/gtkmm/workarea.h +++ b/synfig-studio/trunk/src/gtkmm/workarea.h @@ -6,6 +6,7 @@ ** ** \legal ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley +** 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 @@ -226,6 +227,7 @@ private: bool canceled_; int quality; + int low_res_pixel_size; bool dirty_trap_enabled; @@ -257,6 +259,8 @@ public: bool get_canceled()const { return canceled_; } bool get_queued()const { return queued; } bool get_rendering()const { return rendering; } + bool get_updating()const; + void stop_updating(bool cancel = false); bool get_full_frame()const { return full_frame; } //int get_w()const { return w; } //int get_h()const { return h; } @@ -276,6 +280,9 @@ public: // used in renderer_guides.cpp GuideList::iterator curr_guide; + // used in renderer_timecode.cpp + int timecode_width, timecode_height; + /* -- ** -- P R I V A T E M E T H O D S --------------------------------------- */ @@ -400,8 +407,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; }