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: CEGUISpinner.h created: 3/2/2005 author: Paul D Turner *************************************************************************/ /*************************************************************************** * 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 _CEGUISpinner_h_ #define _CEGUISpinner_h_ #include "CEGUIBase.h" #include "CEGUIWindow.h" #include "elements/CEGUISpinnerProperties.h" #if defined(_MSC_VER) # pragma warning(push) # pragma warning(disable : 4251) #endif // Start of CEGUI namespace section namespace CEGUI { /*! \brief Base class for the Spinner widget. The spinner widget has a text area where numbers may be entered and two buttons which may be used to increase or decrease the value in the text area by a user specified amount. \note While the Spinner widget has support for floating point values, the results of using this support in its current state may not be satisfactory. The general advice, for the moment, is to avoid very large or very small values in floating point mode, and to perform as little manipulation of the values as possible. The various issues you may see range from scientific notation appearing in the box, to complete breakdown of 'expected' values upon manipulation. This is something that we intend to address for a future release. */ class CEGUIEXPORT Spinner : public Window { public: /*! \brief Enumerated type specifying possible input and/or display modes for the spinner. */ enum TextInputMode { FloatingPoint, //!< Floating point decimal. Integer, //!< Integer decimal. Hexadecimal, //!< Hexadecimal. Octal //!< Octal }; /************************************************************************* Events system constants *************************************************************************/ static const String WidgetTypeName; //!< Window factory name static const String EventNamespace; //!< Namespace for global events static const String EventValueChanged; //!< Event fired when the spinner value changes. static const String EventStepChanged; //!< Event fired when the step value changes. static const String EventMaximumValueChanged; //!< Event fired when the maximum spinner value changes. static const String EventMinimumValueChanged; //!< Event fired when the minimum spinner value changes. static const String EventTextInputModeChanged; //!< Event fired when the input/display mode is changed. /************************************************************************* Component widget name suffix strings *************************************************************************/ static const String EditboxNameSuffix; //!< Widget name suffix for the editbox thumb component. static const String IncreaseButtonNameSuffix; //!< Widget name suffix for the increase button component. static const String DecreaseButtonNameSuffix; //!< Widget name suffix for the decrease button component. /************************************************************************* Object Construction and Destruction *************************************************************************/ /*! \brief Constructor for Spinner objects */ Spinner(const String& type, const String& name); /*! \brief Destructor for Spinner objects */ virtual ~Spinner(void); /*! \brief Initialises the Window based object ready for use. \note This must be called for every window created. Normally this is handled automatically by the WindowFactory for each Window type. \return Nothing */ void initialiseComponents(void); /************************************************************************* Accessors *************************************************************************/ /*! \brief Return the current spinner value. \return current float value of the Spinner. */ float getCurrentValue(void) const; /*! \brief Return the current step value. \return float step value. This is the value added to the spinner vaue when the up / down buttons are clicked. */ float getStepSize(void) const; /*! \brief Return the current maximum limit value for the Spinner. \return Maximum value that is allowed for the spinner. */ float getMaximumValue(void) const; /*! \brief Return the current minimum limit value for the Spinner. \return Minimum value that is allowed for the spinner. */ float getMinimumValue(void) const; /*! \brief Return the current text input / display mode setting. \return One of the TextInputMode enumerated values indicating the current text input and display mode. */ TextInputMode getTextInputMode(void) const; /************************************************************************* Manipulators *************************************************************************/ /*! \brief Set the current spinner value. \param value value to be assigned to the Spinner. \return Nothing. */ void setCurrentValue(float value); /*! \brief Set the current step value. \param step The value added to be the spinner value when the up / down buttons are clicked. \return Nothing. */ void setStepSize(float step); /*! \brief Set the spinner maximum value. \param maxValue The maximum value to be allowed by the spinner. \return Nothing. */ void setMaximumValue(float maxValue); /*! \brief Set the spinner minimum value. \param minVaue The minimum value to be allowed by the spinner. \return Nothing. */ void setMinimumValue(float minVaue); /*! \brief Set the spinner input / display mode. \param mode One of the TextInputMode enumerated values indicating the text input / display mode to be used by the spinner. \return Nothing. */ void setTextInputMode(TextInputMode mode); protected: /************************************************************************* Constants *************************************************************************/ static const String FloatValidator; //!< Validator regex used for floating point mode. static const String IntegerValidator; //!< Validator regex used for decimal integer mode. static const String HexValidator; //!< Validator regex used for hexadecimal mode. static const String OctalValidator; //!< Validator regex used for octal mode. /************************************************************************* Protected Implementation Methods *************************************************************************/ /*! \brief Returns the numerical representation of the current editbox text. \return float value that is the numerical equivalent of the editbox text. \exception InvalidRequestException thrown if the text can not be converted. */ virtual float getValueFromText(void) const; /*! \brief Returns the textual representation of the current spinner value. \return String object that is equivalent to the the numerical value of the spinner. */ virtual String getTextFromValue(void) const; /*! \brief Return whether this window was inherited from the given class name at some point in the inheritance hierarchy. \param class_name The class name that is to be checked. \return true if this window was inherited from \a class_name. false if not. */ virtual bool testClassName_impl(const String& class_name) const { if (class_name=="Spinner") return true; return Window::testClassName_impl(class_name); } /*! \brief Return a pointer to the 'increase' PushButtoncomponent widget for this Spinner. \return Pointer to a PushButton object. \exception UnknownObjectException Thrown if the increase PushButton component does not exist. */ PushButton* getIncreaseButton() const; /*! \brief Return a pointer to the 'decrease' PushButton component widget for this Spinner. \return Pointer to a PushButton object. \exception UnknownObjectException Thrown if the 'decrease' PushButton component does not exist. */ PushButton* getDecreaseButton() const; /*! \brief Return a pointer to the Editbox component widget for this Spinner. \return Pointer to a Editbox object. \exception UnknownObjectException Thrown if the Editbox component does not exist. */ Editbox* getEditbox() const; /************************************************************************* Overrides for Event handler methods *************************************************************************/ virtual void onFontChanged(WindowEventArgs& e); virtual void onTextChanged(WindowEventArgs& e); virtual void onActivated(ActivationEventArgs& e); /************************************************************************* New Event handler methods *************************************************************************/ /*! \brief Method called when the spinner value changes. \param e WindowEventArgs object containing any relevant data. \return Nothing. */ virtual void onValueChanged(WindowEventArgs& e); /*! \brief Method called when the step value changes. \param e WindowEventArgs object containing any relevant data. \return Nothing. */ virtual void onStepChanged(WindowEventArgs& e); /*! \brief Method called when the maximum value setting changes. \param e WindowEventArgs object containing any relevant data. \return Nothing. */ virtual void onMaximumValueChanged(WindowEventArgs& e); /*! \brief Method called when the minimum value setting changes. \param e WindowEventArgs object containing any relevant data. \return Nothing. */ virtual void onMinimumValueChanged(WindowEventArgs& e); /*! \brief Method called when the text input/display mode is changed. \param e WindowEventArgs object containing any relevant data. \return Nothing. */ virtual void onTextInputModeChanged(WindowEventArgs& e); /************************************************************************* Internal event listener methods *************************************************************************/ bool handleIncreaseButton(const EventArgs& e); bool handleDecreaseButton(const EventArgs& e); bool handleEditTextChange(const EventArgs& e); /************************************************************************* Data Fields *************************************************************************/ float d_stepSize; //!< Step size value used y the increase & decrease buttons. float d_currentValue; //!< Numerical copy of the text in d_editbox. float d_maxValue; //!< Maximum value for spinner. float d_minValue; //!< Minimum value for spinner. TextInputMode d_inputMode; //!< Current text display/input mode. private: /************************************************************************* Static properties for the Spinner widget *************************************************************************/ static SpinnerProperties::CurrentValue d_currentValueProperty; static SpinnerProperties::StepSize d_stepSizeProperty; static SpinnerProperties::MaximumValue d_maxValueProperty; static SpinnerProperties::MinimumValue d_minValueProperty; static SpinnerProperties::TextInputMode d_textInputModeProperty; /************************************************************************* Private Implementation Methods *************************************************************************/ /*! \brief Adds properties supported by the Spinner class. \return Nothing. */ void addSpinnerProperties(void); }; } // End of CEGUI namespace section #endif // end of guard _CEGUISpinner_h_
CEGUISpinner.h
Page URL
File URL
Prev
55/65
Next
Download
( 15 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.