#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: }; }