Crazy Eddies GUI System  0.7.2
CEGUIScrollbarProperties.h
1 /***********************************************************************
2  filename: CEGUIScrollbarProperties.h
3  created: 10/7/2004
4  author: Paul D Turner
5 
6  purpose: Interface for Scrollbar properties
7 *************************************************************************/
8 /***************************************************************************
9  * Copyright (C) 2004 - 2006 Paul D Turner & The CEGUI Development Team
10  *
11  * Permission is hereby granted, free of charge, to any person obtaining
12  * a copy of this software and associated documentation files (the
13  * "Software"), to deal in the Software without restriction, including
14  * without limitation the rights to use, copy, modify, merge, publish,
15  * distribute, sublicense, and/or sell copies of the Software, and to
16  * permit persons to whom the Software is furnished to do so, subject to
17  * the following conditions:
18  *
19  * The above copyright notice and this permission notice shall be
20  * included in all copies or substantial portions of the Software.
21  *
22  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
25  * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
26  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
27  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
28  * OTHER DEALINGS IN THE SOFTWARE.
29  ***************************************************************************/
30 #ifndef _CEGUIScrollbarProperties_h_
31 #define _CEGUIScrollbarProperties_h_
32 
33 #include "../CEGUIProperty.h"
34 
35 
36 // Start of CEGUI namespace section
37 namespace CEGUI
38 {
39 
40 // Start of ScrollbarProperties namespace section
45 namespace ScrollbarProperties
46 {
58 class DocumentSize : public Property
59 {
60 public:
62  "DocumentSize",
63  "Property to get/set the document size for the Scrollbar. Value is a float.",
64  "1.000000")
65  {}
66 
67  String get(const PropertyReceiver* receiver) const;
68  void set(PropertyReceiver* receiver, const String& value);
69 };
70 
71 
83 class PageSize : public Property
84 {
85 public:
86  PageSize() : Property(
87  "PageSize",
88  "Property to get/set the page size for the Scrollbar. Value is a float.",
89  "0.000000")
90  {}
91 
92  String get(const PropertyReceiver* receiver) const;
93  void set(PropertyReceiver* receiver, const String& value);
94 };
95 
96 
108 class StepSize : public Property
109 {
110 public:
111  StepSize() : Property(
112  "StepSize",
113  "Property to get/set the step size for the Scrollbar. Value is a float.",
114  "1.000000")
115  {}
116 
117  String get(const PropertyReceiver* receiver) const;
118  void set(PropertyReceiver* receiver, const String& value);
119 };
120 
121 
133 class OverlapSize : public Property
134 {
135 public:
136  OverlapSize() : Property(
137  "OverlapSize",
138  "Property to get/set the overlap size for the Scrollbar. Value is a float.",
139  "0.000000")
140  {}
141 
142  String get(const PropertyReceiver* receiver) const;
143  void set(PropertyReceiver* receiver, const String& value);
144 };
145 
157 class ScrollPosition : public Property
158 {
159 public:
161  "ScrollPosition",
162  "Property to get/set the scroll position of the Scrollbar. Value is a float.",
163  "0.000000")
164  {}
165 
166  String get(const PropertyReceiver* receiver) const;
167  void set(PropertyReceiver* receiver, const String& value);
168 };
169 
182 class EndLockEnabled : public Property
183 {
184 public:
186  "EndLockEnabled",
187  "Property to get/set the 'end lock' mode setting for the Scrollbar. "
188  "Value is either \"True\" or \"False\".",
189  "False")
190  {}
191 
192  String get(const PropertyReceiver* receiver) const;
193  void set(PropertyReceiver* receiver, const String& value);
194 };
195 
196 } // End of ScrollbarProperties namespace section
197 
198 } // End of CEGUI namespace section
199 
200 
201 #endif // end of guard _CEGUIScrollbarProperties_h_