mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-08-18 06:55:48 +03:00
Implemented a basic PopUpMenu, still lack of some features. Moved events as protected. Fixed ChildAddAt. Some other minor fixes.
24 lines
395 B
C++
24 lines
395 B
C++
#ifndef EE_UICUILISTBOXCONTAINER_HPP
|
|
#define EE_UICUILISTBOXCONTAINER_HPP
|
|
|
|
#include "cuicontrol.hpp"
|
|
|
|
namespace EE { namespace UI {
|
|
|
|
class cUIListBoxContainer : public cUIControl {
|
|
public:
|
|
cUIListBoxContainer( cUIControl::CreateParams& Params );
|
|
|
|
~cUIListBoxContainer();
|
|
|
|
void Update();
|
|
|
|
void DrawChilds();
|
|
protected:
|
|
cUIControl * OverFind( const eeVector2f& Point );
|
|
};
|
|
|
|
}}
|
|
|
|
#endif
|