UIAbout.h 545 B

1234567891011121314151617181920212223242526272829303132
  1. // Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved
  2. // Please see LICENSE.md in repository root for license information
  3. // https://github.com/AtomicGameEngine/AtomicGameEngine
  4. #pragma once
  5. #include "UI/Modal/UIModalOps.h"
  6. #include <TurboBadger/tb_widgets_common.h>
  7. namespace AtomicEditor
  8. {
  9. class UIAbout: public UIModalOpWindow
  10. {
  11. OBJECT(UIAbout);
  12. public:
  13. UIAbout(Context* context);
  14. virtual ~UIAbout();
  15. bool OnEvent(const TBWidgetEvent &ev);
  16. private:
  17. void GenerateAboutText(String& text);
  18. };
  19. }