UIImageWidget.h 313 B

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