DriveHQ Start Menu
Cloud Drive Mapping
Folder Sync
Cloud Backup
True Drop Box
FTP/SFTP Hosting
Group Account
DriveHQ Start Menu
Online File Server
My Storage
|
Manage Shares
|
Publishes
|
Drop Boxes
|
Group Account
WebDAV Drive Mapping
Cloud Drive Home
|
WebDAV Guide
|
Drive Mapping Tool
|
Drive Mapping URL
Complete Data Backup
Backup Guide
|
Online Backup Tool
|
Cloud-to-Cloud Backup
FTP, Email & Web Service
FTP Home
|
FTP Hosting FAQ
|
Email Hosting
|
EmailManager
|
Web Hosting
Help & Resources
About
|
Enterprise Service
|
Partnership
|
Comparisons
|
Support
Quick Links
Security and Privacy
Download Software
Service Manual
Use Cases
Group Account
Online Help
Blog
Contact
Cloud Surveillance
Sign Up
Login
Features
Business Features
Online File Server
FTP Hosting
Cloud Drive Mapping
Cloud File Backup
Email Backup & Hosting
Cloud File Sharing
Folder Synchronization
Group Management
True Drop Box
Full-text Search
AD Integration/SSO
Mobile Access
IP Camera & DVR Solution
More...
Personal Features
Personal Cloud Drive
Backup All Devices
Mobile APPs
Personal Web Hosting
Sub-Account (for Kids)
Home/PC/Kids Monitoring
More...
Software
DriveHQ Drive Mapping Tool
DriveHQ FileManager
DriveHQ Online Backup
DriveHQ Mobile Apps
Pricing
Business Plans & Pricing
Personal Plans & Pricing
Price Comparison with Others
Feature Comparison with Others
Install Mobile App
Sign up
Creating account...
Invalid character in username! Only 0-9, a-z, A-Z, _, -, . allowed.
Username is required!
Invalid email address!
E-mail is required!
Password is required!
Password is invalid!
Password and confirmation do not match.
Confirm password is required!
I accept
Membership Agreement
Please read the Membership Agreement and check "I accept"!
Free Quick Sign-up
Sign-up Page
Log in
Signing in...
Username or e-mail address is required!
Password is required!
Keep me logged in
Quick Login
Forgot Password
Up
Upload
Download
Share
Publish
New Folder
New File
Copy
Cut
Delete
Paste
Rate
Upgrade
Rotate
Effect
Edit
Slide
History
/*********************************************************************** filename: CEGUIComboboxProperties.h created: 11/7/2004 author: Paul D Turner purpose: Interface to Combobox property classes *************************************************************************/ /*************************************************************************** * Copyright (C) 2004 - 2006 Paul D Turner & The CEGUI Development Team * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. ***************************************************************************/ #ifndef _CEGUIComboboxProperties_h_ #define _CEGUIComboboxProperties_h_ #include "CEGUIProperty.h" // Start of CEGUI namespace section namespace CEGUI { // Start of ComboboxProperties namespace section /*! \brief Namespace containing all classes that make up the properties interface for the Combobox class */ namespace ComboboxProperties { /*! \brief Property to access the read-only setting of the edit box. \par Usage: - Name: ReadOnly - Format: "[text]" \par Where [Text] is: - "True" to indicate the edit box is read-only. - "False" to indicate the edit box is not read-only (text may be edited by user). */ class ReadOnly : public Property { public: ReadOnly() : Property( "ReadOnly", "Property to get/set the read-only setting for the Editbox. Value is either \"True\" or \"False\".", "False") {} String get(const PropertyReceiver* receiver) const; void set(PropertyReceiver* receiver, const String& value); }; /*! \brief Property to access the string used for regular expression validation of the edit box text. \par Usage: - Name: ValidationString - Format: "[text]" \par Where: - [Text] is the string used for validating text entry. */ class ValidationString : public Property { public: ValidationString() : Property( "ValidationString", "Property to get/set the validation string Editbox. Value is a text string.", ".*") {} String get(const PropertyReceiver* receiver) const; void set(PropertyReceiver* receiver, const String& value); }; /*! \brief Property to access the current carat index. \par Usage: - Name: CaratIndex - Format: "[uint]" \par Where: - [uint] is the zero based index of the carat position within the text. */ class CaratIndex : public Property { public: CaratIndex() : Property( "CaratIndex", "Property to get/set the current carat index. Value is \"[uint]\".", "0") {} String get(const PropertyReceiver* receiver) const; void set(PropertyReceiver* receiver, const String& value); }; /*! \brief Property to access the current selection start index. \par Usage: - Name: EditSelectionStart - Format: "[uint]" \par Where: - [uint] is the zero based index of the selection start position within the text. */ class EditSelectionStart : public Property { public: EditSelectionStart() : Property( "EditSelectionStart", "Property to get/set the zero based index of the selection start position within the text. Value is \"[uint]\".", "0") {} String get(const PropertyReceiver* receiver) const; void set(PropertyReceiver* receiver, const String& value); }; /*! \brief Property to access the current selection length. \par Usage: - Name: EditSelectionLength - Format: "[uint]" \par Where: - [uint] is the length of the selection (as a count of the number of code points selected). */ class EditSelectionLength : public Property { public: EditSelectionLength() : Property( "EditSelectionLength", "Property to get/set the length of the selection (as a count of the number of code points selected). Value is \"[uint]\".", "0") {} String get(const PropertyReceiver* receiver) const; void set(PropertyReceiver* receiver, const String& value); }; /*! \brief Property to access the maximum text length for the edit box. \par Usage: - Name: MaxEditTextLength - Format: "[uint]" \par Where: - [uint] is the maximum allowed text length (as a count of code points). */ class MaxEditTextLength : public Property { public: MaxEditTextLength() : Property( "MaxEditTextLength", "Property to get/set the the maximum allowed text length (as a count of code points). Value is \"[uint]\".", "1073741824") {} String get(const PropertyReceiver* receiver) const; void set(PropertyReceiver* receiver, const String& value); }; /*! \brief Property to access the sort setting of the list box. \par Usage: - Name: SortList - Format: "[text]" \par Where [Text] is: - "True" to indicate the list items should be sorted. - "False" to indicate the list items should not be sorted. */ class SortList : public Property { public: SortList() : Property( "SortList", "Property to get/set the sort setting of the list box. Value is either \"True\" or \"False\".", "False") {} String get(const PropertyReceiver* receiver) const; void set(PropertyReceiver* receiver, const String& value); }; /*! \brief Property to access the 'always show' setting for the vertical scroll bar of the list box. \par Usage: - Name: ForceVertScrollbar - Format: "[text]" \par Where [Text] is: - "True" to indicate that the vertical scroll bar will always be shown. - "False" to indicate that the vertical scroll bar will only be shown when it is needed. */ class ForceVertScrollbar : public Property { public: ForceVertScrollbar() : Property( "ForceVertScrollbar", "Property to get/set the 'always show' setting for the vertical scroll bar of the list box. Value is either \"True\" or \"False\".", "False") {} String get(const PropertyReceiver* receiver) const; void set(PropertyReceiver* receiver, const String& value); }; /*! \brief Property to access the 'always show' setting for the horizontal scroll bar of the list box. \par Usage: - Name: ForceHorzScrollbar - Format: "[text]" \par Where [Text] is: - "True" to indicate that the horizontal scroll bar will always be shown. - "False" to indicate that the horizontal scroll bar will only be shown when it is needed. */ class ForceHorzScrollbar : public Property { public: ForceHorzScrollbar() : Property( "ForceHorzScrollbar", "Property to get/set the 'always show' setting for the horizontal scroll bar of the list box. Value is either \"True\" or \"False\".", "False") {} String get(const PropertyReceiver* receiver) const; void set(PropertyReceiver* receiver, const String& value); }; /*! \brief Property to access the 'single click mode' setting for the combo box. \par Usage: - Name: SingleClickMode - Format: "[text]" \par Where [Text] is: - "True" to indicate that the box will operate in single click mode - "False" to indicate that the box will not operate in single click mode */ class SingleClickMode : public Property { public: SingleClickMode() : Property( "SingleClickMode", "Property to get/set the 'single click mode' setting for the combo box. Value is either \"True\" or \"False\".", "False") {} String get(const PropertyReceiver* receiver) const; void set(PropertyReceiver* receiver, const String& value); }; } // End of ComboboxProperties namespace section } // End of CEGUI namespace section #endif // end of guard _CEGUIComboboxProperties_h_
CEGUIComboboxProperties.h
Page URL
File URL
Prev
7/65
Next
Download
( 8 KB )
Note: The DriveHQ service banners will NOT be displayed if the file owner is a paid member.
Comments
Total ratings:
0
Average rating:
Not Rated
Would you like to comment?
Join DriveHQ
for a free account, or
Logon
if you are already a member.