- add python, missing gui
[vuplus_dvbapp] / lib / gui / ewindowstyle.h
1 #ifndef __lib_gui_ewindowstyle_h
2 #define __lib_gui_ewindowstyle_h
3
4 class eWindow;
5 class eSize;
6
7 #include <lib/base/object.h>
8
9 class eWindowStyle: public iObject
10 {
11 public:
12         virtual void handleNewSize(eWindow *wnd, const eSize &size) = 0;
13 };
14
15 class eWindowStyleSimple: public eWindowStyle
16 {
17         DECLARE_REF;
18 public:
19         eWindowStyleSimple();
20         void handleNewSize(eWindow *wnd, const eSize &size);
21         int m_border_top, m_border_left, m_border_right, m_border_bottom;
22 };
23
24 #endif