diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-12-04 13:14:11 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-12-04 13:14:11 +0000 |
| commit | c187fbdf60956f3bf6392bfd132ba960e43ef4ec (patch) | |
| tree | 148051657fc524432525a0ec8ff6da5a42e51490 /otk/widget.hh | |
| parent | 301adc8bc20dff10093f3c0df44e30acbbddab67 (diff) | |
move event handling into basewidget again <FLINCH>
add the basewidget class
Diffstat (limited to 'otk/widget.hh')
| -rw-r--r-- | otk/widget.hh | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/otk/widget.hh b/otk/widget.hh index 5c008e18..207de86c 100644 --- a/otk/widget.hh +++ b/otk/widget.hh @@ -2,7 +2,6 @@ #define __widget_hh #include "basewidget.hh" -#include "eventdispatcher.hh" extern "C" { #include <assert.h> @@ -10,7 +9,7 @@ extern "C" { namespace otk { -class OtkWidget : public OtkBaseWidget, public OtkEventHandler { +class OtkWidget : public OtkBaseWidget { public: @@ -25,9 +24,6 @@ public: virtual void update(void); - void exposeHandler(const XExposeEvent &e); - void configureHandler(const XConfigureEvent &e); - inline bool isStretchableHorz(void) const { return _stretchable_horz; } void setStretchableHorz(bool s_horz = true) { _stretchable_horz = s_horz; } |
