Crazy Eddie's GUI System
0.8.7
|
29 #ifndef _CEGUIComboDropList_h_
30 #define _CEGUIComboDropList_h_
32 #include "./Listbox.h"
36 # pragma warning(push)
37 # pragma warning(disable : 4251)
48 class CEGUIEXPORT ComboDropList :
public Listbox
51 static const String EventNamespace;
52 static const String WidgetTypeName;
64 static const String EventListSelectionAccepted;
77 virtual void initialiseComponents(
void);
98 void setArmed(
bool setting) { d_armed = setting; }
111 bool isArmed(
void)
const {
return d_armed; }
125 void setAutoArmEnabled(
bool setting) { d_autoArm = setting; }
136 bool isAutoArmEnabled(
void)
const {
return d_autoArm; }
139 void resizeToContent(
bool fit_width,
bool fit_height);
190 #if defined(_MSC_VER)
191 # pragma warning(pop)
194 #endif // end of guard _CEGUIComboDropList_h_
Main namespace for Crazy Eddie's GUI Library.
Definition: arch_overview.dox:1
EventArgs based class that is used for objects passed to input event handlers concerning mouse input.
Definition: InputEvent.h:302
EventArgs based class that is used for objects passed to handlers triggered for events concerning som...
Definition: InputEvent.h:273
EventArgs based class that is used for Activated and Deactivated window events.
Definition: InputEvent.h:351
String class used within the GUI system.
Definition: String.h:83
Base class for the combo box drop down list. This is a specialisation of the Listbox class.
Definition: ComboDropList.h:70
Base class for list box items.
Definition: ListboxItem.h:73