Crazy Eddies GUI System  0.6.2
CEGUIScrolledItemListBaseProperties.h
1 /************************************************************************
2  filename: CEGUIScrolledItemListBaseProperties.h
3  created: Tue Nov 1 2005
4  author: Tomas Lindquist Olsen
5 *************************************************************************/
6 /*************************************************************************
7  Crazy Eddie's GUI System (http://www.cegui.org.uk)
8  Copyright (C)2004 - 2005 Paul D Turner (paul@cegui.org.uk)
9 
10  This library is free software; you can redistribute it and/or
11  modify it under the terms of the GNU Lesser General Public
12  License as published by the Free Software Foundation; either
13  version 2.1 of the License, or (at your option) any later version.
14 
15  This library is distributed in the hope that it will be useful,
16  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18  Lesser General Public License for more details.
19 
20  You should have received a copy of the GNU Lesser General Public
21  License along with this library; if not, write to the Free Software
22  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 *************************************************************************/
24 #ifndef _CEGUIScrolledItemListBaseProperties_h_
25 #define _CEGUIScrolledItemListBaseProperties_h_
26 
27 #include "CEGUIProperty.h"
28 
29 // Start of CEGUI namespace section
30 namespace CEGUI
31 {
32 
33 // Start of ItemListboxProperties namespace section
38 namespace ScrolledItemListBaseProperties
39 {
53  {
54  public:
56  "ForceVertScrollbar",
57  "Property to get/set the state of the force vertical scrollbar setting for the ScrolledItemListBase. Value is either \"True\" or \"False\".",
58  "False")
59  {}
60 
61  String get(const PropertyReceiver* receiver) const;
62  void set(PropertyReceiver* receiver, const String& value);
63  };
64 
78  {
79  public:
81  "ForceHorzScrollbar",
82  "Property to get/set the state of the force horizontal scrollbar setting for the ScrolledItemListBase. Value is either \"True\" or \"False\".",
83  "False")
84  {}
85 
86  String get(const PropertyReceiver* receiver) const;
87  void set(PropertyReceiver* receiver, const String& value);
88  };
89 
90 } // End of ScrolledItemListBaseProperties namespace section
91 
92 } // End of CEGUI namespace section
93 
94 #endif // end of guard _CEGUScrolledItemListBaseProperties_h_