X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fsynfig%2Frenddesc.h;h=cce4fd32bfa5df29ce8c3adeb6f6b90aa822bc7b;hb=9459638ad6797b8139f1e9f0715c96076dbf0890;hp=79d8718f13e787a0603e956b0e7f3805fce2ba87;hpb=5ddcf36f04cfbd10fabda4e3c5633cb27cdd4c0a;p=synfig.git diff --git a/synfig-core/trunk/src/synfig/renddesc.h b/synfig-core/trunk/src/synfig/renddesc.h index 79d8718..cce4fd3 100644 --- a/synfig-core/trunk/src/synfig/renddesc.h +++ b/synfig-core/trunk/src/synfig/renddesc.h @@ -1,11 +1,12 @@ /* === S Y N F I G ========================================================= */ -/*! \file renddesc.h +/*! \file synfig/renddesc.h ** \brief Template Header ** -** $Id: renddesc.h,v 1.1.1.1 2005/01/04 01:23:14 darco Exp $ +** $Id$ ** ** \legal ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley +** Copyright (c) 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 @@ -54,23 +55,23 @@ class RendDesc public: enum Lock { - PX_ASPECT=(1<<0), - PX_AREA=(1<<1), - PX_W=(1<<2), - PX_H=(1<<3), - - IM_ASPECT=(1<<4), - IM_SPAN=(1<<5), - IM_W=(1<<6), - IM_H=(1<<7), - IM_ZOOMIN=(1<<8), - IM_ZOOMOUT=(1<<9), - - LINK_PX_ASPECT=(1<<10), - LINK_PX_AREA=(1<<11), - LINK_IM_ASPECT=(1<<12), - LINK_IM_SPAN=(1<<13), - LINK_IM_CENTER=(1<<14) + PX_ASPECT=(1<<0), // "Pixel Aspect" in Locks and Links + PX_AREA=(1<<1), // not used + PX_W=(1<<2), // "Pixel Width" in Locks and Links - not used + PX_H=(1<<3), // "Pixel Height" in Locks and Links - not used + + IM_ASPECT=(1<<4), // "Image Aspect" in Locks and Links + IM_SPAN=(1<<5), // "Image Span" in Locks and Links + IM_W=(1<<6), // "Image Width" in Locks and Links + IM_H=(1<<7), // "Image Height" in Locks and Links + IM_ZOOMIN=(1<<8), // not used + IM_ZOOMOUT=(1<<9), // not used + + LINK_PX_ASPECT=(1<<10), // not used + LINK_PX_AREA=(1<<11), // not used + LINK_IM_ASPECT=(1<<12), // not used + LINK_IM_SPAN=(1<<13), // not used + LINK_IM_CENTER=(1<<14) // not used }; private: @@ -241,7 +242,7 @@ public: //! Return the antialias amount const int &get_antialias()const; - //! Set the antilaias amount + //! Set the antialias amount RendDesc &set_antialias(const int &x); //! Return the distance from the bottom-right to the top-left @@ -278,7 +279,7 @@ public: //! Returns the height of one pixel Real get_ph()const; - //! Sets viewport to represent the screen at the give pixel coordinates + //! Sets viewport to represent the screen at the given pixel coordinates RendDesc &set_subwindow(int x, int y, int w, int h); }; // END of class RendDesc @@ -303,16 +304,6 @@ inline RendDesc::Lock operator~(RendDesc::Lock rhs) return static_cast(~(int)rhs); } -//! This operator is for checking RendDesc::Lock flags. -/*! Don't think of it as "less then or equal to", but think of it -** like an arrow. Is \a rhs inside of \a lhs ? -** \see RendDesc::Lock, RendDesc */ -inline bool operator<=(RendDesc::Lock lhs, RendDesc::Lock rhs) -{ - return static_cast(lhs) & static_cast(rhs)==static_cast(rhs); -} - - }; /* end namespace synfig */ /* === E N D =============================================================== */