Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members

CEGUIThumbProperties.h

Go to the documentation of this file.
00001 /************************************************************************
00002         filename:       CEGUIThumbProperties.h
00003         created:        10/7/2004
00004         author:         Paul D Turner
00005         
00006         purpose:        Interface for Thumb properties
00007 *************************************************************************/
00008 /*************************************************************************
00009     Crazy Eddie's GUI System (http://www.cegui.org.uk)
00010     Copyright (C)2004 - 2005 Paul D Turner (paul@cegui.org.uk)
00011 
00012     This library is free software; you can redistribute it and/or
00013     modify it under the terms of the GNU Lesser General Public
00014     License as published by the Free Software Foundation; either
00015     version 2.1 of the License, or (at your option) any later version.
00016 
00017     This library is distributed in the hope that it will be useful,
00018     but WITHOUT ANY WARRANTY; without even the implied warranty of
00019     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00020     Lesser General Public License for more details.
00021 
00022     You should have received a copy of the GNU Lesser General Public
00023     License along with this library; if not, write to the Free Software
00024     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00025 *************************************************************************/
00026 #ifndef _CEGUIThumbProperties_h_
00027 #define _CEGUIThumbProperties_h_
00028 
00029 #include "CEGUIProperty.h"
00030 
00031 
00032 // Start of CEGUI namespace section
00033 namespace CEGUI
00034 {
00035 
00036 // Start of ThumbProperties namespace section
00041 namespace ThumbProperties
00042 {
00055 class HotTracked : public Property
00056 {
00057 public:
00058         HotTracked() : Property(
00059                 "HotTracked",
00060                 "Property to get/set the state of the state of the 'hot-tracked' setting for the thumb.  Value is either \"True\" or \"False\".",
00061                 "True")
00062         {}
00063 
00064         String  get(const PropertyReceiver* receiver) const;
00065         void    set(PropertyReceiver* receiver, const String& value);
00066 };
00067 
00068 
00081 class VertFree : public Property
00082 {
00083 public:
00084         VertFree() : Property(
00085                 "VertFree",
00086                 "Property to get/set the state the setting to free the thumb vertically.  Value is either \"True\" or \"False\".",
00087                 "False")
00088         {}
00089 
00090         String  get(const PropertyReceiver* receiver) const;
00091         void    set(PropertyReceiver* receiver, const String& value);
00092 };
00093 
00094 
00107 class HorzFree : public Property
00108 {
00109 public:
00110         HorzFree() : Property(
00111                 "HorzFree", 
00112                 "Property to get/set the state the setting to free the thumb horizontally.  Value is either \"True\" or \"False\".",
00113                 "False")
00114         {}
00115 
00116         String  get(const PropertyReceiver* receiver) const;
00117         void    set(PropertyReceiver* receiver, const String& value);
00118 };
00119 
00120 
00133 class VertRange : public Property
00134 {
00135 public:
00136         VertRange() : Property(
00137                 "VertRange",
00138                 "Property to get/set the vertical movement range for the thumb.  Value is \"min:[float] max:[float]\".",
00139                 "min:0.000000 max:1.000000")
00140         {}
00141 
00142         String  get(const PropertyReceiver* receiver) const;
00143         void    set(PropertyReceiver* receiver, const String& value);
00144 };
00145 
00146 
00159 class HorzRange : public Property
00160 {
00161 public:
00162         HorzRange() : Property(
00163                 "HorzRange",
00164                 "Property to get/set the horizontal movement range for the thumb.  Value is \"min:[float] max:[float]\".",
00165                 "min:0.000000 max:1.000000")
00166         {}
00167 
00168         String  get(const PropertyReceiver* receiver) const;
00169         void    set(PropertyReceiver* receiver, const String& value);
00170 };
00171 
00172 
00173 } // End of  ThumbProperties namespace section
00174 
00175 } // End of  CEGUI namespace section
00176 
00177 
00178 #endif  // end of guard _CEGUIThumbProperties_h_

Generated on Wed Feb 16 12:41:07 2005 for Crazy Eddies GUI System by  doxygen 1.3.9.1