PolyUIEvent.h 537 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * PolyUIEvent.h
  3. * Poly
  4. *
  5. * Created by Ivan Safrin on 7/30/08.
  6. * Copyright 2008 __MyCompanyName__. All rights reserved.
  7. *
  8. */
  9. // @package UI
  10. #pragma once
  11. #include "PolyGlobals.h"
  12. #include "PolyEvent.h"
  13. namespace Polycode {
  14. class _PolyExport UIEvent : public Event {
  15. public:
  16. UIEvent();
  17. ~UIEvent();
  18. static const int CLICK_EVENT = 0;
  19. static const int CLOSE_EVENT = 1;
  20. static const int OK_EVENT = 2;
  21. static const int CANCEL_EVENT = 3;
  22. static const int CHANGE_EVENT = 4;
  23. protected:
  24. };
  25. }