| 12345678910111213141516171819202122232425262728293031 |
- #pragma once
- #include "UIWidget.h"
- namespace Atomic
- {
- class UITabContainer : public UIWidget
- {
- OBJECT(UITabContainer)
- public:
- UITabContainer(Context* context, bool createWidget = true);
- virtual ~UITabContainer();
- int GetNumPages();
- void SetCurrentPage(int page);
- UIWidget* GetCurrentPageWidget();
- protected:
- virtual bool OnEvent(const tb::TBWidgetEvent &ev);
- private:
- };
- }
|