aboutsummaryrefslogtreecommitdiff
path: root/lib/gui/ewindowstyle.h
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2004-10-01 13:21:35 +0000
committerFelix Domke <tmbinc@elitedvb.net>2004-10-01 13:21:35 +0000
commitddc3964ed95d01e72229dc9af968a327cd84e56c (patch)
tree93e6694c639db3d188f5b2868f6b2b2951d21d60 /lib/gui/ewindowstyle.h
parent1aeefd997cc362c3b37c1587c5f08891b35c3a75 (diff)
downloadenigma2-ddc3964ed95d01e72229dc9af968a327cd84e56c.tar.gz
enigma2-ddc3964ed95d01e72229dc9af968a327cd84e56c.zip
- add python, missing gui
- remove console (needs to be rewritten anyway) - eString -> std::string
Diffstat (limited to 'lib/gui/ewindowstyle.h')
-rw-r--r--lib/gui/ewindowstyle.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/gui/ewindowstyle.h b/lib/gui/ewindowstyle.h
new file mode 100644
index 00000000..02f155af
--- /dev/null
+++ b/lib/gui/ewindowstyle.h
@@ -0,0 +1,24 @@
+#ifndef __lib_gui_ewindowstyle_h
+#define __lib_gui_ewindowstyle_h
+
+class eWindow;
+class eSize;
+
+#include <lib/base/object.h>
+
+class eWindowStyle: public iObject
+{
+public:
+ virtual void handleNewSize(eWindow *wnd, const eSize &size) = 0;
+};
+
+class eWindowStyleSimple: public eWindowStyle
+{
+ DECLARE_REF;
+public:
+ eWindowStyleSimple();
+ void handleNewSize(eWindow *wnd, const eSize &size);
+ int m_border_top, m_border_left, m_border_right, m_border_bottom;
+};
+
+#endif