|
MyGUI
3.0.1
|
#include <MyGUI_ComboBox.h>
Inheritance diagram for MyGUI::ComboBox:Public Types | |
| typedef RTTIBase | Base |
| typedef ComboBox | RTTIBase |
Public Types inherited from MyGUI::Edit | |
| typedef RTTIBase | Base |
| typedef Edit | RTTIBase |
Public Types inherited from MyGUI::StaticText | |
| typedef RTTIBase | Base |
| typedef StaticText | RTTIBase |
Public Types inherited from MyGUI::Widget | |
| typedef Widget | RTTIBase |
Public Types inherited from MyGUI::IObject | |
| typedef IObject | RTTIBase |
Public Member Functions | |
| virtual const std::string & | getTypeName () const |
| virtual bool | isType (const std::type_info &_type) const |
| template<typename Type > | |
| bool | isType () const |
| ComboBox () | |
| size_t | getItemCount () const |
| Get number of items. | |
| void | insertItemAt (size_t _index, const UString &_name, Any _data=Any::Null) |
| Insert an item into a array at a specified position. | |
| void | addItem (const UString &_name, Any _data=Any::Null) |
| Add an item to the end of a array. | |
| void | removeItemAt (size_t _index) |
| Remove item at a specified position. | |
| void | removeAllItems () |
| Remove all items. | |
| size_t | findItemIndexWith (const UString &_name) |
| Search item, returns the position of the first occurrence in array or ITEM_NONE if item not found. | |
| size_t | getIndexSelected () |
| Get index of selected item (ITEM_NONE if none selected) | |
| void | setIndexSelected (size_t _index) |
| Select specified _index. | |
| void | clearIndexSelected () |
| Clear item selection. | |
| void | setItemDataAt (size_t _index, Any _data) |
| Replace an item data at a specified position. | |
| void | clearItemDataAt (size_t _index) |
| Clear an item data at a specified position. | |
| template<typename ValueType > | |
| ValueType * | getItemDataAt (size_t _index, bool _throw=true) |
| Get item data from specified position. | |
| void | setItemNameAt (size_t _index, const UString &_name) |
| Replace an item name at a specified position. | |
| const UString & | getItemNameAt (size_t _index) |
| Get item name from specified position. | |
| void | beginToItemAt (size_t _index) |
| Move all elements so specified becomes visible. | |
| void | beginToItemFirst () |
| Move all elements so first becomes visible. | |
| void | beginToItemLast () |
| Move all elements so last becomes visible. | |
| void | beginToItemSelected () |
| Move all elements so selected becomes visible. | |
| void | setComboModeDrop (bool _value) |
| Set drop list mode (text can not be edited) | |
| bool | getComboModeDrop () |
| Get drop list mode flag. | |
| void | setSmoothShow (bool _value) |
| Set smooth show of list. | |
| bool | getSmoothShow () |
| Get smooth show of list flag. | |
| void | setMaxListHeight (int _value) |
| Get max list height. | |
| int | getMaxListHeight () |
| Set max list height. | |
| virtual void | setProperty (const std::string &_key, const std::string &_value) |
| | |
| virtual void | _initialise (WidgetStyle _style, const IntCoord &_coord, Align _align, ResourceSkin *_info, Widget *_parent, ICroppedRectangle *_croppedParent, IWidgetCreator *_creator, const std::string &_name) |
| size_t | getItemIndexSelected () |
| void | setItemSelectedAt (size_t _index) |
| void | clearItemSelected () |
| void | insertItem (size_t _index, const UString &_name) |
| void | setItem (size_t _index, const UString &_item) |
| const UString & | getItem (size_t _index) |
| void | deleteItem (size_t _index) |
| void | deleteAllItems () |
| size_t | getItemSelect () |
| void | resetItemSelect () |
| void | setItemSelect (size_t _index) |
Public Member Functions inherited from MyGUI::Edit | |
| Edit () | |
| void | setTextIntervalColour (size_t _start, size_t _count, const Colour &_colour) |
| size_t | getTextSelectionStart () |
| size_t | getTextSelectionEnd () |
| size_t | getTextSelectionLength () |
| UString | getTextInterval (size_t _start, size_t _count) |
| void | setTextSelection (size_t _start, size_t _end) |
| void | deleteTextSelection () |
| UString | getTextSelection () |
| bool | isTextSelection () |
| void | setTextSelectionColour (const Colour &_value) |
| void | setTextCursor (size_t _index) |
| size_t | getTextCursor () |
| virtual void | setCaption (const UString &_value) |
| virtual const UString & | getCaption () |
| void | setOnlyText (const UString &_value) |
| UString | getOnlyText () |
| size_t | getTextLength () const |
| void | setOverflowToTheLeft (bool _value) |
| Sets if surplus characters should push characters off the left side rather than ignored. | |
| bool | getOverflowToTheLeft () |
| Returns true if surplus characters will be pushed off the left rather than ignored. | |
| void | setMaxTextLength (size_t _value) |
| Sets the max amount of text allowed in the edit field. | |
| size_t | getMaxTextLength () |
| Gets the max amount of text allowed in the edit field. | |
| void | insertText (const UString &_text, size_t _index=ITEM_NONE) |
| void | addText (const UString &_text) |
| void | eraseText (size_t _start, size_t _count=1) |
| void | setEditReadOnly (bool _value) |
| bool | getEditReadOnly () |
| void | setEditPassword (bool _value) |
| bool | getEditPassword () |
| void | setEditMultiLine (bool _value) |
| bool | getEditMultiLine () |
| void | setEditStatic (bool _value) |
| bool | getEditStatic () |
| void | setPasswordChar (Char _value) |
| void | setPasswordChar (const UString &_char) |
| Char | getPasswordChar () |
| void | setEditWordWrap (bool _value) |
| bool | getEditWordWrap () |
| void | setTabPrinting (bool _value) |
| bool | getTabPrinting () |
| bool | getInvertSelected () |
| void | setInvertSelected (bool _value) |
| virtual void | setPosition (const IntPoint &_value) |
| | |
| virtual void | setSize (const IntSize &_value) |
| | |
| virtual void | setCoord (const IntCoord &_value) |
| | |
| void | setPosition (int _left, int _top) |
| | |
| void | setSize (int _width, int _height) |
| | |
| void | setCoord (int _left, int _top, int _width, int _height) |
| | |
| void | setVisibleVScroll (bool _value) |
| bool | isVisibleVScroll () |
| size_t | getVScrollRange () |
| size_t | getVScrollPosition () |
| void | setVScrollPosition (size_t _index) |
| void | setVisibleHScroll (bool _value) |
| bool | isVisibleHScroll () |
| size_t | getHScrollRange () |
| size_t | getHScrollPosition () |
| void | setHScrollPosition (size_t _index) |
| virtual void | setFontName (const std::string &_value) |
| | |
| virtual void | setFontHeight (int _value) |
| | |
| virtual void | setTextAlign (Align _value) |
| | |
| void | showVScroll (bool _visible) |
| bool | isShowVScroll () |
| void | showHScroll (bool _visible) |
| bool | isShowHScroll () |
| void | setPosition (const IntCoord &_coord) |
| void | setPosition (int _left, int _top, int _width, int _height) |
| virtual void | setTextColour (const Colour &_colour) |
| void | setTextColour (size_t _start, size_t _count, const Colour &_colour) |
| void | getTextSelect (size_t &_start, size_t &_end) |
| UString | getText (size_t _start, size_t _count) |
| void | setTextSelect (size_t _start, size_t _end) |
| void | deleteTextSelect () |
| UString | getSelectedText () |
| bool | isTextSelect () |
| void | setTextSelectColour (const Colour &_colour) |
Public Member Functions inherited from MyGUI::StaticText | |
| StaticText () | |
| IntCoord | getTextRegion () |
| IntSize | getTextSize () |
| const std::string & | getFontName () |
| int | getFontHeight () |
| Align | getTextAlign () |
| const Colour & | getTextColour () |
Public Member Functions inherited from MyGUI::Widget | |
| template<typename Type > | |
| Type * | castType (bool _throw=true) |
| template<typename Type > | |
| const Type * | castType (bool _throw=true) const |
| Widget () | |
| Widget * | createWidgetT (const std::string &_type, const std::string &_skin, const IntCoord &_coord, Align _align, const std::string &_name="") |
| Widget * | createWidgetT (const std::string &_type, const std::string &_skin, int _left, int _top, int _width, int _height, Align _align, const std::string &_name="") |
| Widget * | createWidgetRealT (const std::string &_type, const std::string &_skin, const FloatCoord &_coord, Align _align, const std::string &_name="") |
| Widget * | createWidgetRealT (const std::string &_type, const std::string &_skin, float _left, float _top, float _width, float _height, Align _align, const std::string &_name="") |
| template<typename T > | |
| T * | createWidget (const std::string &_skin, const IntCoord &_coord, Align _align, const std::string &_name="") |
| template<typename T > | |
| T * | createWidget (const std::string &_skin, int _left, int _top, int _width, int _height, Align _align, const std::string &_name="") |
| template<typename T > | |
| T * | createWidgetReal (const std::string &_skin, const FloatCoord &_coord, Align _align, const std::string &_name="") |
| template<typename T > | |
| T * | createWidgetReal (const std::string &_skin, float _left, float _top, float _width, float _height, Align _align, const std::string &_name="") |
| Widget * | createWidgetT (WidgetStyle _style, const std::string &_type, const std::string &_skin, const IntCoord &_coord, Align _align, const std::string &_layer="", const std::string &_name="") |
| template<typename T > | |
| T * | createWidget (WidgetStyle _style, const std::string &_skin, const IntCoord &_coord, Align _align, const std::string &_layer="", const std::string &_name="") |
| const std::string & | getName () const |
| Get name of widget. | |
| void | setRealPosition (const FloatPoint &_value) |
| void | setRealSize (const FloatSize &_value) |
| void | setRealCoord (const FloatCoord &_value) |
| void | setRealPosition (float _left, float _top) |
| void | setRealSize (float _width, float _height) |
| void | setRealCoord (float _left, float _top, float _width, float _height) |
| virtual void | setVisible (bool _value) |
| virtual void | setAlign (Align _value) |
| void | setAlpha (float _value) |
| float | getAlpha () |
| void | setInheritsAlpha (bool _value) |
| bool | isInheritsAlpha () |
| bool | setState (const std::string &_value) |
| void | setColour (const Colour &_value) |
| bool | isRootWidget () |
| Widget * | getParent () |
| EnumeratorWidgetPtr | getEnumerator () |
| size_t | getChildCount () |
| Widget * | getChildAt (size_t _index) |
| Widget * | findWidget (const std::string &_name) |
| void | setNeedKeyFocus (bool _value) |
| bool | isNeedKeyFocus () |
| void | setNeedMouseFocus (bool _value) |
| bool | isNeedMouseFocus () |
| void | setInheritsPick (bool _value) |
| bool | isInheritsPick () |
| void | setMaskPick (const std::string &_filename) |
| virtual void | setEnabled (bool _value) |
| void | setEnabledSilent (bool _value) |
| bool | isEnabled () |
| void | setPointer (const std::string &_value) |
| const std::string & | getPointer () |
| const std::string & | getLayerName () |
| IntCoord | getClientCoord () |
| Widget * | getClientWidget () |
| ISubWidgetText * | getSubWidgetText () |
| ISubWidgetRect * | getSubWidgetMain () |
| void | setNeedToolTip (bool _value) |
| bool | getNeedToolTip () |
| void | setEnableToolTip (bool _value) |
| bool | getEnableToolTip () |
| void | detachFromWidget (const std::string &_layer="") |
| void | attachToWidget (Widget *_parent, WidgetStyle _style=WidgetStyle::Child, const std::string &_layer="") |
| void | changeWidgetSkin (const std::string &_skinname) |
| void | setWidgetStyle (WidgetStyle _style, const std::string &_layer="") |
| WidgetStyle | getWidgetStyle () |
| virtual void | _getContainer (Widget *&_container, size_t &_index) |
| void | _forcePeek (Widget *_widget) |
| void | _setUVSet (const FloatRect &_rect) |
| virtual void | _setTextureName (const std::string &_texture) |
| virtual const std::string & | _getTextureName () |
| IWidgetCreator * | _getIWidgetCreator () |
| IntCoord | _getTextRegion () |
| IntSize | _getTextSize () |
| void | _setFontName (const std::string &_font) |
| const std::string & | _getFontName () |
| void | _setFontHeight (int _height) |
| int | _getFontHeight () |
| void | _setTextAlign (Align _align) |
| Align | _getTextAlign () |
| void | _setTextColour (const Colour &_colour) |
| const Colour & | _getTextColour () |
| void | setCaptionWithNewLine (const std::string &_value) |
| void | enableToolTip (bool _enable) |
| void | setInheritsPeek (bool _inherits) |
| bool | isInheritsPeek () |
| void | setMaskPeek (const std::string &_filename) |
| IntCoord | getTextCoord () |
Public Member Functions inherited from MyGUI::IObject | |
| virtual | ~IObject () |
Public Member Functions inherited from MyGUI::ICroppedRectangle | |
| ICroppedRectangle () | |
| virtual | ~ICroppedRectangle () |
| ICroppedRectangle * | getCroppedParent () |
| const IntCoord & | getCoord () const |
| IntPoint | getPosition () const |
| IntSize | getSize () const |
| bool | isVisible () const |
| const IntPoint & | getAbsolutePosition () const |
| IntRect | getAbsoluteRect () const |
| IntCoord | getAbsoluteCoord () const |
| int | getAbsoluteLeft () const |
| int | getAbsoluteTop () const |
| Align | getAlign () const |
| int | getLeft () const |
| int | getRight () const |
| int | getTop () const |
| int | getBottom () const |
| int | getWidth () const |
| int | getHeight () const |
| bool | _isMargin () const |
| int | _getViewLeft () const |
| int | _getViewRight () const |
| int | _getViewTop () const |
| int | _getViewBottom () const |
| int | _getViewWidth () const |
| int | _getViewHeight () const |
| virtual void | _correctView () |
| void | _setCroppedParent (ICroppedRectangle *_parent) |
| const IntRect & | _getMargin () const |
| int | _getMarginLeft () const |
| int | _getMarginRight () const |
| int | _getMarginTop () const |
| int | _getMarginBottom () const |
| void | show () |
| void | hide () |
| bool | isShow () |
Public Member Functions inherited from MyGUI::LayerItem | |
| LayerItem () | |
| virtual | ~LayerItem () |
| ILayer * | getLayer () |
| virtual void | attachItemToNode (ILayer *_layer, ILayerNode *_node) |
| virtual void | detachFromLayer () |
| virtual void | upLayerItem () |
| void | setRenderItemTexture (ITexture *_texture) |
| void | addChildItem (LayerItem *_item) |
| void | removeChildItem (LayerItem *_item) |
| void | addChildNode (LayerItem *_item) |
| void | removeChildNode (LayerItem *_item) |
| void | addRenderItem (ISubWidget *_item) |
| void | removeAllRenderItems () |
| void | saveLayerItem () |
| void | restoreLayerItem () |
Public Member Functions inherited from MyGUI::ILayerItem | |
| virtual | ~ILayerItem () |
Public Member Functions inherited from MyGUI::UserData | |
| UserData () | |
| virtual | ~UserData () |
| void | setUserString (const std::string &_key, const std::string &_value) |
| const std::string & | getUserString (const std::string &_key) |
| bool | clearUserString (const std::string &_key) |
| bool | isUserString (const std::string &_key) |
| void | clearUserStrings () |
| void | setUserData (Any _data) |
| template<typename ValueType > | |
| ValueType * | getUserData (bool _throw=true) |
| void | _setInternalData (Any _data) |
| template<typename ValueType > | |
| ValueType * | _getInternalData (bool _throw=true) |
| void * | getUserData () |
Public Member Functions inherited from MyGUI::WidgetEvent | |
| virtual | ~WidgetEvent () |
Public Member Functions inherited from MyGUI::IWidgetCreator | |
| virtual | ~IWidgetCreator () |
| virtual void | _linkChildWidget (Widget *_widget) |
| virtual void | _unlinkChildWidget (Widget *_widget) |
Public Member Functions inherited from MyGUI::delegates::IDelegateUnlink | |
| virtual | ~IDelegateUnlink () |
| IDelegateUnlink () | |
| bool | compare (IDelegateUnlink *_unlink) const |
Static Public Member Functions | |
| static const std::string & | getClassTypeName () |
Protected Member Functions | |
| virtual | ~ComboBox () |
| virtual void | onKeyButtonPressed (KeyCode _key, Char _char) |
| virtual void | baseChangeWidgetSkin (ResourceSkin *_info) |
Protected Member Functions inherited from MyGUI::Edit | |
| virtual | ~Edit () |
| virtual void | onMouseDrag (int _left, int _top) |
| virtual void | onKeyLostFocus (Widget *_new) |
| virtual void | onKeySetFocus (Widget *_old) |
| void | notifyMouseSetFocus (Widget *_sender, Widget *_old) |
| void | notifyMouseLostFocus (Widget *_sender, Widget *_new) |
| void | notifyMousePressed (Widget *_sender, int _left, int _top, MouseButton _id) |
| void | notifyMouseReleased (Widget *_sender, int _left, int _top, MouseButton _id) |
| void | notifyMouseDrag (Widget *_sender, int _left, int _top) |
| void | notifyMouseButtonDoubleClick (Widget *_sender) |
| void | notifyScrollChangePosition (VScroll *_sender, size_t _position) |
| void | notifyMouseWheel (Widget *_sender, int _rel) |
| void | updateView () |
| void | updateViewWithCursor () |
| void | eraseView () |
Protected Member Functions inherited from MyGUI::StaticText | |
| virtual | ~StaticText () |
Protected Member Functions inherited from MyGUI::Widget | |
| Widget (WidgetStyle _style, const IntCoord &_coord, Align _align, ResourceSkin *_info, Widget *_parent, ICroppedRectangle *_croppedParent, IWidgetCreator *_creator, const std::string &_name) | |
| virtual | ~Widget () |
| void | _updateView () |
| void | _setAlign (const IntSize &_oldsize, bool _update) |
| void | _setAlign (const IntCoord &_oldcoord, bool _update) |
| virtual Widget * | baseCreateWidget (WidgetStyle _style, const std::string &_type, const std::string &_skin, const IntCoord &_coord, Align _align, const std::string &_layer, const std::string &_name) |
| virtual void | _destroyChildWidget (Widget *_widget) |
| virtual void | _destroyAllChildWidget () |
| virtual size_t | _getContainerIndex (const IntPoint &_point) |
| virtual void | _resetContainer (bool _update) |
| virtual void | baseUpdateEnable () |
| virtual ILayerItem * | getLayerItemByPoint (int _left, int _top) |
| virtual const IntCoord & | getLayerItemCoord () |
Protected Member Functions inherited from MyGUI::ICroppedRectangle | |
| bool | _checkPoint (int _left, int _top) |
| bool | _checkMargin () |
| bool | _checkOutside () |
Protected Member Functions inherited from MyGUI::LayerItem | |
| void | attachToLayerItemNode (ILayerNode *_node, bool _deep) |
| void | detachFromLayerItemNode (bool _deep) |
Protected Member Functions inherited from MyGUI::WidgetEvent | |
| WidgetEvent () | |
| virtual void | onMouseLostFocus (Widget *_new) |
| virtual void | onMouseSetFocus (Widget *_old) |
| virtual void | onMouseMove (int _left, int _top) |
| virtual void | onMouseWheel (int _rel) |
| virtual void | onMouseButtonPressed (int _left, int _top, MouseButton _id) |
| virtual void | onMouseButtonReleased (int _left, int _top, MouseButton _id) |
| virtual void | onMouseButtonClick () |
| virtual void | onMouseButtonDoubleClick () |
| virtual void | onKeyButtonReleased (KeyCode _key) |
| virtual void | onMouseChangeRootFocus (bool _focus) |
| virtual void | onKeyChangeRootFocus (bool _focus) |
Protected Member Functions inherited from MyGUI::IWidgetCreator | |
| void | _deleteWidget (Widget *_widget) |
Protected Member Functions inherited from MyGUI::ScrollViewBase | |
| ScrollViewBase () | |
| virtual | ~ScrollViewBase () |
| void | updateScrollSize () |
| void | updateScrollPosition () |
| virtual IntSize | getContentSize () |
| virtual IntPoint | getContentPosition () |
| virtual void | setContentPosition (const IntPoint &_value) |
| virtual IntSize | getViewSize () const |
| virtual size_t | getHScrollPage () |
| virtual size_t | getVScrollPage () |
| virtual Align | getContentAlign () |
| virtual void | eraseContent () |
Additional Inherited Members | |
Protected Attributes inherited from MyGUI::Edit | |
| bool | mIsPressed |
| bool | mIsFocus |
| bool | mCursorActive |
| float | mCursorTimer |
| float | mActionMouseTimer |
| size_t | mCursorPosition |
| size_t | mTextLength |
| size_t | mStartSelect |
| size_t | mEndSelect |
| DequeUndoRedoInfo | mVectorUndoChangeInfo |
| DequeUndoRedoInfo | mVectorRedoChangeInfo |
| bool | mMouseLeftPressed |
| bool | mModeReadOnly |
| bool | mModePassword |
| bool | mModeMultiline |
| bool | mModeStatic |
| bool | mModeWordWrap |
| bool | mTabPrinting |
| UString | mPasswordText |
| std::string | mOriginalPointer |
| Char | mCharPassword |
| bool | mOverflowToTheLeft |
| size_t | mMaxTextLength |
Definition at line 38 of file MyGUI_ComboBox.h.
| typedef RTTIBase MyGUI::ComboBox::Base |
Definition at line 41 of file MyGUI_ComboBox.h.
| typedef ComboBox MyGUI::ComboBox::RTTIBase |
Definition at line 41 of file MyGUI_ComboBox.h.
| MyGUI::ComboBox::ComboBox | ( | ) |
Definition at line 41 of file MyGUI_ComboBox.cpp.
|
protectedvirtual |
Definition at line 61 of file MyGUI_ComboBox.cpp.
|
virtual |
Reimplemented from MyGUI::Edit.
Definition at line 54 of file MyGUI_ComboBox.cpp.
Add an item to the end of a array.
Definition at line 56 of file MyGUI_ComboBox.h.
|
protectedvirtual |
Reimplemented from MyGUI::Edit.
Definition at line 66 of file MyGUI_ComboBox.cpp.
|
inline |
Move all elements so specified becomes visible.
Definition at line 113 of file MyGUI_ComboBox.h.
|
inline |
Move all elements so first becomes visible.
Definition at line 116 of file MyGUI_ComboBox.h.
|
inline |
Move all elements so last becomes visible.
Definition at line 119 of file MyGUI_ComboBox.h.
|
inline |
Move all elements so selected becomes visible.
Definition at line 122 of file MyGUI_ComboBox.h.
|
inline |
Clear item selection.
Definition at line 79 of file MyGUI_ComboBox.h.
|
inline |
Clear an item data at a specified position.
Definition at line 89 of file MyGUI_ComboBox.h.
|
inline |
Definition at line 173 of file MyGUI_ComboBox.h.
|
inline |
Definition at line 184 of file MyGUI_ComboBox.h.
|
inline |
Definition at line 182 of file MyGUI_ComboBox.h.
| size_t MyGUI::ComboBox::findItemIndexWith | ( | const UString & | _name | ) |
Search item, returns the position of the first occurrence in array or ITEM_NONE if item not found.
Definition at line 421 of file MyGUI_ComboBox.cpp.
|
inlinestatic |
Reimplemented from MyGUI::Edit.
Definition at line 41 of file MyGUI_ComboBox.h.
|
inline |
Get drop list mode flag.
Definition at line 131 of file MyGUI_ComboBox.h.
|
inline |
Get index of selected item (ITEM_NONE if none selected)
Definition at line 73 of file MyGUI_ComboBox.h.
|
inline |
Definition at line 180 of file MyGUI_ComboBox.h.
|
inline |
Get number of items.
Definition at line 50 of file MyGUI_ComboBox.h.
|
inline |
Get item data from specified position.
Definition at line 93 of file MyGUI_ComboBox.h.
|
inline |
Definition at line 169 of file MyGUI_ComboBox.h.
|
inline |
Get item name from specified position.
Definition at line 106 of file MyGUI_ComboBox.h.
|
inline |
Definition at line 186 of file MyGUI_ComboBox.h.
|
inline |
Set max list height.
Definition at line 141 of file MyGUI_ComboBox.h.
|
inline |
Get smooth show of list flag.
Definition at line 136 of file MyGUI_ComboBox.h.
|
inlinevirtual |
Get type name as string
Reimplemented from MyGUI::Edit.
Definition at line 41 of file MyGUI_ComboBox.h.
|
inline |
Definition at line 176 of file MyGUI_ComboBox.h.
Insert an item into a array at a specified position.
Definition at line 383 of file MyGUI_ComboBox.cpp.
|
inline |
Compare with selected type
Reimplemented from MyGUI::Edit.
Definition at line 41 of file MyGUI_ComboBox.h.
|
inlinevirtual |
Compare with selected type
Reimplemented from MyGUI::Edit.
Definition at line 41 of file MyGUI_ComboBox.h.
Reimplemented from MyGUI::Edit.
Definition at line 202 of file MyGUI_ComboBox.cpp.
| void MyGUI::ComboBox::removeAllItems | ( | ) |
Remove all items.
Definition at line 397 of file MyGUI_ComboBox.cpp.
| void MyGUI::ComboBox::removeItemAt | ( | size_t | _index | ) |
Remove item at a specified position.
Definition at line 390 of file MyGUI_ComboBox.cpp.
|
inline |
Definition at line 188 of file MyGUI_ComboBox.h.
| void MyGUI::ComboBox::setComboModeDrop | ( | bool | _value | ) |
Set drop list mode (text can not be edited)
Definition at line 403 of file MyGUI_ComboBox.cpp.
| void MyGUI::ComboBox::setIndexSelected | ( | size_t | _index | ) |
Select specified _index.
Definition at line 355 of file MyGUI_ComboBox.cpp.
|
inline |
Definition at line 178 of file MyGUI_ComboBox.h.
| void MyGUI::ComboBox::setItemDataAt | ( | size_t | _index, |
| Any | _data | ||
| ) |
Replace an item data at a specified position.
Definition at line 376 of file MyGUI_ComboBox.cpp.
| void MyGUI::ComboBox::setItemNameAt | ( | size_t | _index, |
| const UString & | _name | ||
| ) |
Replace an item name at a specified position.
Definition at line 369 of file MyGUI_ComboBox.cpp.
|
inline |
Definition at line 190 of file MyGUI_ComboBox.h.
|
inline |
Definition at line 171 of file MyGUI_ComboBox.h.
|
inline |
Get max list height.
Definition at line 139 of file MyGUI_ComboBox.h.
|
virtual |
Set any widget property
| _key | Property name (for example Widget_Alpha or Edit_MultiLine) |
| _value | Value converted to string |
Reimplemented from MyGUI::Edit.
Definition at line 426 of file MyGUI_ComboBox.cpp.
|
inline |
Set smooth show of list.
Definition at line 134 of file MyGUI_ComboBox.h.
| EventPair<EventHandle_WidgetVoid, EventHandle_ComboBoxPtrSizeT> MyGUI::ComboBox::eventComboAccept |
Event : Enter pressed in combo mode or item selected in drop.
signature : void method(MyGUI::ComboBox* _sender, size_t _index)
| _sender | widget that called this event |
| _index | item |
Definition at line 152 of file MyGUI_ComboBox.h.
| EventPair<EventHandle_WidgetSizeT, EventHandle_ComboBoxPtrSizeT> MyGUI::ComboBox::eventComboChangePosition |
Event : Position changed.
signature : void method(MyGUI::ComboBox* _sender, size_t _index)
| _sender | widget that called this event |
| _index | of new position |
Definition at line 159 of file MyGUI_ComboBox.h.
1.8.1.2