Crazy Eddie's GUI System
0.8.4
|
Base class for the Combobox widget. More...
Public Types | |
typedef RegexMatcher::MatchState | MatchState |
Public Member Functions | |
bool | isHit (const Vector2f &position, const bool allow_disabled=false) const |
check if the given pixel position would hit this window. | |
bool | getSingleClickEnabled (void) const |
returns the mode of operation for the combo box. | |
bool | isDropDownListVisible (void) const |
returns true if the drop down list is visible. | |
Editbox * | getEditbox () const |
Return a pointer to the Editbox component widget for this Combobox. | |
PushButton * | getPushButton () const |
Return a pointer to the PushButton component widget for this Combobox. | |
ComboDropList * | getDropList () const |
Return a pointer to the ComboDropList component widget for this Combobox. | |
bool | getAutoSizeListHeightToContent () const |
return whether the drop-list will vertically auto size to content. | |
bool | getAutoSizeListWidthToContent () const |
return whether the drop-list will horizontally auto size to content. | |
bool | hasInputFocus (void) const |
return true if the Editbox has input focus. | |
bool | isReadOnly (void) const |
return true if the Editbox is read-only. | |
MatchState | getTextMatchState () const |
return the validation MatchState for the current Combobox text, given the currently set validation string. | |
const String & | getValidationString (void) const |
return the currently set validation string | |
size_t | getCaretIndex (void) const |
return the current position of the caret. | |
size_t | getSelectionStartIndex (void) const |
return the current selection start point. | |
size_t | getSelectionEndIndex (void) const |
return the current selection end point. | |
size_t | getSelectionLength (void) const |
return the length of the current selection (in code points / characters). | |
size_t | getMaxTextLength (void) const |
return the maximum text length set for this Editbox. | |
size_t | getItemCount (void) const |
Return number of items attached to the list box. | |
ListboxItem * | getSelectedItem (void) const |
Return a pointer to the currently selected item. | |
ListboxItem * | getListboxItemFromIndex (size_t index) const |
Return the item at index position index. | |
size_t | getItemIndex (const ListboxItem *item) const |
Return the index of ListboxItem item. | |
bool | isSortEnabled (void) const |
return whether list sorting is enabled | |
bool | isItemSelected (size_t index) const |
return whether the string at index position index is selected | |
ListboxItem * | findItemWithText (const String &text, const ListboxItem *start_item) |
Search the list for an item with the specified text. | |
bool | isListboxItemInList (const ListboxItem *item) const |
Return whether the specified ListboxItem is in the List. | |
bool | isVertScrollbarAlwaysShown (void) const |
Return whether the vertical scroll bar is always shown. | |
bool | isHorzScrollbarAlwaysShown (void) const |
Return whether the horizontal scroll bar is always shown. | |
virtual void | initialiseComponents (void) |
Initialise the Window based object ready for use. | |
void | showDropList (void) |
Show the drop-down list. | |
void | hideDropList (void) |
Hide the drop-down list. | |
void | setSingleClickEnabled (bool setting) |
Set the mode of operation for the combo box. | |
void | selectListItemWithEditboxText () |
Select item in list matching editbox text, clear selection if none match. | |
void | setAutoSizeListHeightToContent (bool auto_size) |
Sets whether the Combobox drop-down list will automatically resize it's height according to the total height of items added to the list. | |
void | setAutoSizeListWidthToContent (bool auto_size) |
Sets whether the Combobox drop-down list will automatically resize it's width according to the width of the items added to the list. | |
void | updateAutoSizedDropList () |
update drop list size according to auto-size options. | |
void | setReadOnly (bool setting) |
Specify whether the Editbox is read-only. | |
void | setValidationString (const String &validation_string) |
Set the text validation string. | |
void | setCaretIndex (size_t caret_pos) |
Set the current position of the caret. | |
void | setSelection (size_t start_pos, size_t end_pos) |
Define the current selection for the Editbox. | |
void | setSelectionStart (size_t start_pos) |
Define the current selection start for the Editbox. | |
void | setSelectionLength (size_t length) |
Define the current selection for the Editbox. | |
void | setMaxTextLength (size_t max_len) |
set the maximum text length for this Editbox. | |
void | activateEditbox (void) |
Activate the edit box component of the Combobox. | |
void | resetList (void) |
Remove all items from the list. | |
void | addItem (ListboxItem *item) |
Add the given ListboxItem to the list. | |
void | insertItem (ListboxItem *item, const ListboxItem *position) |
Insert an item into the list box after a specified item already in the list. | |
void | removeItem (const ListboxItem *item) |
Removes the given item from the list box. | |
void | clearAllSelections (void) |
Clear the selected state for all items. | |
void | setSortingEnabled (bool setting) |
Set whether the list should be sorted. | |
void | setShowVertScrollbar (bool setting) |
Set whether the vertical scroll bar should always be shown. | |
void | setShowHorzScrollbar (bool setting) |
Set whether the horizontal scroll bar should always be shown. | |
void | setItemSelectState (ListboxItem *item, bool state) |
Set the select state of an attached ListboxItem. | |
void | setItemSelectState (size_t item_index, bool state) |
Set the select state of an attached ListboxItem. | |
void | handleUpdatedListItemData (void) |
Causes the list box to update it's internal state after changes have been made to one or more attached ListboxItem objects. | |
Combobox (const String &type, const String &name) | |
Constructor for Combobox base class. | |
virtual | ~Combobox (void) |
Destructor for Combobox base class. | |
Static Public Attributes | |
static const String | EventNamespace |
Namespace for global events. | |
static const String | WidgetTypeName |
Window factory name. | |
static const String | EventReadOnlyModeChanged |
static const String | EventValidationStringChanged |
static const String | EventMaximumTextLengthChanged |
static const String | EventTextValidityChanged |
static const String | EventCaretMoved |
static const String | EventTextSelectionChanged |
static const String | EventEditboxFull |
static const String | EventTextAccepted |
static const String | EventListContentsChanged |
static const String | EventListSelectionChanged |
static const String | EventSortModeChanged |
static const String | EventVertScrollbarModeChanged |
static const String | EventHorzScrollbarModeChanged |
static const String | EventDropListDisplayed |
static const String | EventDropListRemoved |
static const String | EventListSelectionAccepted |
static const String | EditboxName |
Widget name for the editbox component. | |
static const String | DropListName |
Widget name for the drop list component. | |
static const String | ButtonName |
Widget suffix for the button component. | |
Protected Member Functions | |
bool | button_PressHandler (const EventArgs &e) |
Handler function for button clicks. | |
bool | droplist_SelectionAcceptedHandler (const EventArgs &e) |
Handler for selections made in the drop-list. | |
bool | droplist_HiddenHandler (const EventArgs &e) |
Handler for when drop-list hides itself. | |
bool | editbox_MouseDownHandler (const EventArgs &e) |
Mouse button down handler attached to edit box. | |
void | itemSelectChangeTextUpdate (const ListboxItem *const item, bool new_state, bool old_state) |
Update the Combobox text to reflect programmatically made changes to selected list item. | |
bool | editbox_ReadOnlyChangedHandler (const EventArgs &e) |
bool | editbox_ValidationStringChangedHandler (const EventArgs &e) |
bool | editbox_MaximumTextLengthChangedHandler (const EventArgs &e) |
bool | editbox_TextValidityChangedHandler (const EventArgs &e) |
bool | editbox_CaretMovedHandler (const EventArgs &e) |
bool | editbox_TextSelectionChangedHandler (const EventArgs &e) |
bool | editbox_EditboxFullEventHandler (const EventArgs &e) |
bool | editbox_TextAcceptedEventHandler (const EventArgs &e) |
bool | editbox_TextChangedEventHandler (const EventArgs &e) |
bool | listbox_ListContentsChangedHandler (const EventArgs &e) |
bool | listbox_ListSelectionChangedHandler (const EventArgs &e) |
bool | listbox_SortModeChangedHandler (const EventArgs &e) |
bool | listbox_VertScrollModeChangedHandler (const EventArgs &e) |
bool | listbox_HorzScrollModeChangedHandler (const EventArgs &e) |
virtual void | onReadOnlyChanged (WindowEventArgs &e) |
Handler called internally when the read only state of the Combobox's Editbox has been changed. | |
virtual void | onValidationStringChanged (WindowEventArgs &e) |
Handler called internally when the Combobox's Editbox validation string has been changed. | |
virtual void | onMaximumTextLengthChanged (WindowEventArgs &e) |
Handler called internally when the Combobox's Editbox maximum text length is changed. | |
virtual void | onTextValidityChanged (RegexMatchStateEventArgs &e) |
Handler called when something has caused the validity state of the current text to change. | |
virtual void | onCaretMoved (WindowEventArgs &e) |
Handler called internally when the caret in the Comboxbox's Editbox moves. | |
virtual void | onTextSelectionChanged (WindowEventArgs &e) |
Handler called internally when the selection within the Combobox's Editbox changes. | |
virtual void | onEditboxFullEvent (WindowEventArgs &e) |
Handler called internally when the maximum length is reached for text in the Combobox's Editbox. | |
virtual void | onTextAcceptedEvent (WindowEventArgs &e) |
Handler called internally when the text in the Combobox's Editbox is accepted (by various means). | |
virtual void | onListContentsChanged (WindowEventArgs &e) |
Handler called internally when the Combobox's Drop-down list contents are changed. | |
virtual void | onListSelectionChanged (WindowEventArgs &e) |
Handler called internally when the selection within the Combobox's drop-down list changes (this is not the 'final' accepted selection, just the currently highlighted item). | |
virtual void | onSortModeChanged (WindowEventArgs &e) |
Handler called fired internally when the sort mode for the Combobox's drop-down list is changed. | |
virtual void | onVertScrollbarModeChanged (WindowEventArgs &e) |
Handler called internally when the 'force' setting for the vertical scrollbar within the Combobox's drop-down list is changed. | |
virtual void | onHorzScrollbarModeChanged (WindowEventArgs &e) |
Handler called internally when the 'force' setting for the horizontal scrollbar within the Combobox's drop-down list is changed. | |
virtual void | onDropListDisplayed (WindowEventArgs &e) |
Handler called internally when the Combobox's drop-down list has been displayed. | |
virtual void | onDroplistRemoved (WindowEventArgs &e) |
Handler called internally when the Combobox's drop-down list has been hidden. | |
virtual void | onListSelectionAccepted (WindowEventArgs &e) |
Handler called internally when the user has confirmed a selection within the Combobox's drop-down list. | |
virtual void | onFontChanged (WindowEventArgs &e) |
Handler called when the window's font is changed. | |
virtual void | onTextChanged (WindowEventArgs &e) |
Handler called when the window's text is changed. | |
virtual void | onActivated (ActivationEventArgs &e) |
Handler called when this window has become the active window. | |
void | onSized (ElementEventArgs &e) |
Handler called when the window's size changes. | |
Protected Attributes | |
bool | d_singleClickOperation |
true if user can show and select from list in a single click. | |
bool | d_autoSizeHeight |
bool | d_autoSizeWidth |
Base class for the Combobox widget.
void CEGUI::Combobox::activateEditbox | ( | void | ) |
Activate the edit box component of the Combobox.
void CEGUI::Combobox::addItem | ( | ListboxItem * | item | ) |
Add the given ListboxItem to the list.
item | Pointer to the ListboxItem to be added to the list. Note that it is the passed object that is added to the list, a copy is not made. If this parameter is NULL, nothing happens. |
void CEGUI::Combobox::clearAllSelections | ( | void | ) |
Clear the selected state for all items.
ListboxItem* CEGUI::Combobox::findItemWithText | ( | const String & | text, |
const ListboxItem * | start_item | ||
) |
Search the list for an item with the specified text.
text | String object containing the text to be searched for. |
start_item | ListboxItem where the search is to begin, the search will not include item. If item is NULL, the search will begin from the first item in the list. |
InvalidRequestException | thrown if item is not attached to this list box. |
size_t CEGUI::Combobox::getCaretIndex | ( | void | ) | const |
return the current position of the caret.
ComboDropList* CEGUI::Combobox::getDropList | ( | ) | const |
Return a pointer to the ComboDropList component widget for this Combobox.
UnknownObjectException | Thrown if the ComboDropList component does not exist. |
Editbox* CEGUI::Combobox::getEditbox | ( | ) | const |
Return a pointer to the Editbox component widget for this Combobox.
UnknownObjectException | Thrown if the Editbox component does not exist. |
size_t CEGUI::Combobox::getItemCount | ( | void | ) | const |
Return number of items attached to the list box.
size_t CEGUI::Combobox::getItemIndex | ( | const ListboxItem * | item | ) | const |
Return the index of ListboxItem item.
item | Pointer to a ListboxItem whos zero based index is to be returned. |
InvalidRequestException | thrown if item is not attached to this list box. |
ListboxItem* CEGUI::Combobox::getListboxItemFromIndex | ( | size_t | index | ) | const |
Return the item at index position index.
index | Zero based index of the item to be returned. |
InvalidRequestException | thrown if index is out of range. |
size_t CEGUI::Combobox::getMaxTextLength | ( | void | ) | const |
return the maximum text length set for this Editbox.
PushButton* CEGUI::Combobox::getPushButton | ( | ) | const |
Return a pointer to the PushButton component widget for this Combobox.
UnknownObjectException | Thrown if the PushButton component does not exist. |
ListboxItem* CEGUI::Combobox::getSelectedItem | ( | void | ) | const |
Return a pointer to the currently selected item.
size_t CEGUI::Combobox::getSelectionEndIndex | ( | void | ) | const |
return the current selection end point.
size_t CEGUI::Combobox::getSelectionLength | ( | void | ) | const |
return the length of the current selection (in code points / characters).
size_t CEGUI::Combobox::getSelectionStartIndex | ( | void | ) | const |
return the current selection start point.
bool CEGUI::Combobox::getSingleClickEnabled | ( | void | ) | const |
returns the mode of operation for the combo box.
MatchState CEGUI::Combobox::getTextMatchState | ( | ) | const |
return the validation MatchState for the current Combobox text, given the currently set validation string.
const String& CEGUI::Combobox::getValidationString | ( | void | ) | const |
return the currently set validation string
void CEGUI::Combobox::handleUpdatedListItemData | ( | void | ) |
Causes the list box to update it's internal state after changes have been made to one or more attached ListboxItem objects.
Client code must call this whenever it has made any changes to ListboxItem objects already attached to the list box. If you are just adding items, or removed items to update them prior to re-adding them, there is no need to call this method.
bool CEGUI::Combobox::hasInputFocus | ( | void | ) | const |
void CEGUI::Combobox::hideDropList | ( | void | ) |
Hide the drop-down list.
virtual void CEGUI::Combobox::initialiseComponents | ( | void | ) | [virtual] |
Initialise the Window based object ready for use.
Reimplemented from CEGUI::Window.
void CEGUI::Combobox::insertItem | ( | ListboxItem * | item, |
const ListboxItem * | position | ||
) |
Insert an item into the list box after a specified item already in the list.
Note that if the list is sorted, the item may not end up in the requested position.
item | Pointer to the ListboxItem to be inserted. Note that it is the passed object that is added to the list, a copy is not made. If this parameter is NULL, nothing happens. |
position | Pointer to a ListboxItem that item is to be inserted after. If this parameter is NULL, the item is inserted at the start of the list. |
bool CEGUI::Combobox::isDropDownListVisible | ( | void | ) | const |
returns true if the drop down list is visible.
bool CEGUI::Combobox::isHit | ( | const Vector2f & | position, |
const bool | allow_disabled = false |
||
) | const [virtual] |
check if the given pixel position would hit this window.
position | Vector2 object describing the position to check. The position describes a pixel offset from the top-left corner of the display. |
allow_disabled |
|
Reimplemented from CEGUI::Window.
bool CEGUI::Combobox::isHorzScrollbarAlwaysShown | ( | void | ) | const |
Return whether the horizontal scroll bar is always shown.
bool CEGUI::Combobox::isItemSelected | ( | size_t | index | ) | const |
return whether the string at index position index is selected
index | Zero based index of the item to be examined. |
InvalidRequestException | thrown if index is out of range. |
bool CEGUI::Combobox::isListboxItemInList | ( | const ListboxItem * | item | ) | const |
Return whether the specified ListboxItem is in the List.
bool CEGUI::Combobox::isReadOnly | ( | void | ) | const |
bool CEGUI::Combobox::isSortEnabled | ( | void | ) | const |
return whether list sorting is enabled
bool CEGUI::Combobox::isVertScrollbarAlwaysShown | ( | void | ) | const |
Return whether the vertical scroll bar is always shown.
virtual void CEGUI::Combobox::onActivated | ( | ActivationEventArgs & | e | ) | [protected, virtual] |
Handler called when this window has become the active window.
e | ActivationEventArgs class whose 'otherWindow' field is set to the window that previously was active, or NULL for none. |
Reimplemented from CEGUI::Window.
virtual void CEGUI::Combobox::onFontChanged | ( | WindowEventArgs & | e | ) | [protected, virtual] |
Handler called when the window's font is changed.
e | WindowEventArgs object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. |
Reimplemented from CEGUI::Window.
void CEGUI::Combobox::onSized | ( | ElementEventArgs & | e | ) | [protected, virtual] |
Handler called when the window's size changes.
e | WindowEventArgs object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. |
Reimplemented from CEGUI::Window.
virtual void CEGUI::Combobox::onTextChanged | ( | WindowEventArgs & | e | ) | [protected, virtual] |
Handler called when the window's text is changed.
e | WindowEventArgs object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. |
Reimplemented from CEGUI::Window.
void CEGUI::Combobox::removeItem | ( | const ListboxItem * | item | ) |
Removes the given item from the list box.
item | Pointer to the ListboxItem that is to be removed. If item is not attached to this list box then nothing will happen. |
void CEGUI::Combobox::resetList | ( | void | ) |
Remove all items from the list.
Note that this will cause 'AutoDelete' items to be deleted.
void CEGUI::Combobox::setCaretIndex | ( | size_t | caret_pos | ) |
Set the current position of the caret.
caret_pos | New index for the insert caret relative to the start of the text. If the value specified is greater than the number of characters in the Editbox, the caret is positioned at the end of the text. |
void CEGUI::Combobox::setItemSelectState | ( | ListboxItem * | item, |
bool | state | ||
) |
Set the select state of an attached ListboxItem.
This is the recommended way of selecting and deselecting items attached to a list box as it respects the multi-select mode setting. It is possible to modify the setting on ListboxItems directly, but that approach does not respect the settings of the list box.
item | The ListboxItem to be affected. This item must be attached to the list box. |
state | true to select the item, false to de-select the item. |
InvalidRequestException | thrown if item is not attached to this list box. |
void CEGUI::Combobox::setItemSelectState | ( | size_t | item_index, |
bool | state | ||
) |
Set the select state of an attached ListboxItem.
This is the recommended way of selecting and deselecting items attached to a list box as it respects the multi-select mode setting. It is possible to modify the setting on ListboxItems directly, but that approach does not respect the settings of the list box.
item_index | The zero based index of the ListboxItem to be affected. This must be a valid index (0 <= index < getItemCount()) |
state | true to select the item, false to de-select the item. |
InvalidRequestException | thrown if item_index is out of range for the list box |
void CEGUI::Combobox::setMaxTextLength | ( | size_t | max_len | ) |
set the maximum text length for this Editbox.
max_len | The maximum number of code points (characters) that can be entered into this Editbox. |
void CEGUI::Combobox::setReadOnly | ( | bool | setting | ) |
void CEGUI::Combobox::setSelection | ( | size_t | start_pos, |
size_t | end_pos | ||
) |
Define the current selection for the Editbox.
start_pos | Index of the starting point for the selection. If this value is greater than the number of characters in the Editbox, the selection start will be set to the end of the text. |
end_pos | Index of the ending point for the selection. If this value is greater than the number of characters in the Editbox, the selection start will be set to the end of the text. |
void CEGUI::Combobox::setSelectionLength | ( | size_t | length | ) |
Define the current selection for the Editbox.
start_pos | Length of the selection. |
void CEGUI::Combobox::setSelectionStart | ( | size_t | start_pos | ) |
void CEGUI::Combobox::setShowHorzScrollbar | ( | bool | setting | ) |
Set whether the horizontal scroll bar should always be shown.
setting | true if the horizontal scroll bar should be shown even when it is not required. false if the horizontal scroll bar should only be shown when it is required. |
void CEGUI::Combobox::setShowVertScrollbar | ( | bool | setting | ) |
Set whether the vertical scroll bar should always be shown.
setting | true if the vertical scroll bar should be shown even when it is not required. false if the vertical scroll bar should only be shown when it is required. |
void CEGUI::Combobox::setSingleClickEnabled | ( | bool | setting | ) |
Set the mode of operation for the combo box.
setting |
|
void CEGUI::Combobox::setSortingEnabled | ( | bool | setting | ) |
Set whether the list should be sorted.
setting | true if the list should be sorted, false if the list should not be sorted. |
void CEGUI::Combobox::setValidationString | ( | const String & | validation_string | ) |
Set the text validation string.
validation_string | String object containing the validation regex data to be used. |
void CEGUI::Combobox::showDropList | ( | void | ) |
Show the drop-down list.
const String CEGUI::Combobox::EventCaretMoved [static] |
Event fired when the edit box text insertion position is changed. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Combobox whose caret position has been changed.
const String CEGUI::Combobox::EventDropListDisplayed [static] |
Event fired when the drop-down list is displayed Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Combobox whose drop down list has been displayed.
const String CEGUI::Combobox::EventDropListRemoved [static] |
Event fired when the drop-down list is removed / hidden. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Combobox whose drop down list has been hidden.
const String CEGUI::Combobox::EventEditboxFull [static] |
Event fired when the number of characters in the edit box has reached the currently set maximum. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Combobox whose edit box has become full.
const String CEGUI::Combobox::EventHorzScrollbarModeChanged [static] |
Event fired when the horizontal scroll bar 'force' setting for the list is changed. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Combobox whose horizontal scroll bar setting has been changed.
const String CEGUI::Combobox::EventListContentsChanged [static] |
Event fired when the contents of the list is changed. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Combobox whose list content has changed.
const String CEGUI::Combobox::EventListSelectionAccepted [static] |
Event fired when the user accepts a selection from the drop-down list Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Combobox in which the user has confirmed a selection from the drop down list.
const String CEGUI::Combobox::EventListSelectionChanged [static] |
Event fired when there is a change to the currently selected item in the list.
const String CEGUI::Combobox::EventMaximumTextLengthChanged [static] |
Event fired when the maximum string length is changed. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Combobox whose maximum edit box string length has been changed.
const String CEGUI::Combobox::EventReadOnlyModeChanged [static] |
Event fired when the read-only mode for the edit box is changed. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Combobox whose read only mode has been changed.
const String CEGUI::Combobox::EventSortModeChanged [static] |
Event fired when the sort mode setting of the list is changed. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Combobox whose list sorting mode has been changed.
const String CEGUI::Combobox::EventTextAccepted [static] |
Event fired when the user accepts the current edit box text by pressing Return, Enter, or Tab. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Combobox whose edit box text has been accepted / confirmed by the user.
const String CEGUI::Combobox::EventTextSelectionChanged [static] |
Event fired when the current edit box text selection is changed. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Combobox whose edit box text selection has been changed.
const String CEGUI::Combobox::EventTextValidityChanged [static] |
Event fired when the validity of the Combobox text (as determined by a RegexMatcher object) has changed. Handlers are passed a const RegexMatchStateEventArgs reference with WindowEventArgs::window set to the Combobox whose text validity has changed and RegexMatchStateEventArgs::matchState set to the new match validity. Handler return is significant, as follows:
const String CEGUI::Combobox::EventValidationStringChanged [static] |
Event fired when the edix box validation string is changed. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Combobox whose validation string was changed.
const String CEGUI::Combobox::EventVertScrollbarModeChanged [static] |
Event fired when the vertical scroll bar 'force' setting for the list is changed. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Combobox whose vertical scroll bar setting is changed.