mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-08-18 06:55:48 +03:00
31 lines
551 B
C++
31 lines
551 B
C++
#ifndef EE_UICUICOMBOBOX_HPP
|
|
#define EE_UICUICOMBOBOX_HPP
|
|
|
|
#include "cuidropdownlist.hpp"
|
|
|
|
namespace EE { namespace UI {
|
|
|
|
class EE_API cUIComboBox : public cUIDropDownList {
|
|
public:
|
|
cUIComboBox( cUIComboBox::CreateParams& Params );
|
|
|
|
~cUIComboBox();
|
|
|
|
virtual void SetTheme( cUITheme * Theme );
|
|
protected:
|
|
cUIControl * mButton;
|
|
|
|
void OnButtonClick( const cUIEvent * Event );
|
|
|
|
Uint32 OnMouseClick( const eeVector2i& Pos, const Uint32 Flags );
|
|
|
|
void CreateButton();
|
|
|
|
virtual void OnControlClear( const cUIEvent *Event );
|
|
};
|
|
|
|
}}
|
|
|
|
#endif
|
|
|