1
0

oswnd.h 329 B

12345678910111213141516171819
  1. #ifndef __OSWND_H
  2. #define __OSWND_H
  3. #include <api/wnd/wndclass/guiobjwnd.h>
  4. #define OSWND_PARENT GuiObjectWnd
  5. class OSWnd : public OSWND_PARENT
  6. {
  7. public:
  8. virtual int onInit();
  9. virtual void onSetVisible(int show);
  10. virtual int onResize();
  11. virtual int handleRatio() { return 0; }
  12. virtual HWND getOSHandle() = 0;
  13. };
  14. #endif