1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #ifndef _BLANKWND_H
- #define _BLANKWND_H
- #include <bfc/common.h>
- #include <api/wnd/virtualwnd.h>
- #define BLANKWND_PARENT VirtualWnd
- class BlankWnd : public BLANKWND_PARENT {
- public:
-
- BlankWnd(RGB32 color=RGB(0,0,0));
-
-
- virtual int onPaint(Canvas *canvas);
- private:
- RGB32 color;
- };
- #endif
|