Clone of Akilla's ac2d @ https://github.com/deregtd/AC2D

IFocusEvents.h 244B

12345678910111213
  1. #ifndef IFOCUSEVENTS_H
  2. #define IFOCUSEVENTS_H
  3. class IWindow;
  4. class IFocusEvents
  5. {
  6. public:
  7. virtual bool OnGotFocus( IWindow &Window, IWindow *FromWindow ) = 0;
  8. virtual bool OnLostFocus( IWindow &Window, IWindow *ToWindow ) = 0;
  9. };
  10. #endif