x
Yes
No
Do you want to visit DriveHQ English website?
首页
产品服务
价格
免费试用
下载客户端
关于我们
云文件服务
|
云备份服务
|
FTP服务
|
企业邮箱服务
|
网站托管
|
客户端软件
云文件服务
云备份服务
FTP服务
企业级邮箱服务
网站托管
客户端软件
CEGUISpinner.h - Hosted on DriveHQ Cloud IT Platform
返回上层目录
上传
下载
共享
发布
新建文件夹
新建文件
复制
剪切
删除
粘贴
评论
升级服务
路径: \\game3dprogramming\materials\GameFactory\GameFactoryDemo\references\ogre\include\CEGUI\elements\CEGUISpinner.h
旋转
特效
属性
历史版本
/*********************************************************************** 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
网页地址
文件地址
上一页
55/65
下一页
下载
( 15 KB )
Comments
Total ratings:
0
Average rating:
无评论
of 10
Would you like to comment?
Join now
, or
Logon
if you are already a member.