UISection.h 297 B

123456789101112131415161718192021222324252627
  1. #pragma once
  2. #include "UIWidget.h"
  3. namespace Atomic
  4. {
  5. class UISection : public UIWidget
  6. {
  7. OBJECT(UISection)
  8. public:
  9. UISection(Context* context, bool createWidget = true);
  10. virtual ~UISection();
  11. protected:
  12. virtual bool OnEvent(const tb::TBWidgetEvent &ev);
  13. private:
  14. };
  15. }