diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-09-28 17:47:49 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-09-28 17:47:49 +0200 |
commit | f7bdf8448c3ea0fcb07a1dffb14c5811d4e91079 (patch) | |
tree | 0c7a29816d2e565e625a701dad37fa78febf8171 /plugingui/widget.h | |
parent | 9d3d6b7c4ee891e28280af1651d8edb9357df643 (diff) |
Add Layout machanism.
Diffstat (limited to 'plugingui/widget.h')
-rw-r--r-- | plugingui/widget.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugingui/widget.h b/plugingui/widget.h index 10b221a..32acd5c 100644 --- a/plugingui/widget.h +++ b/plugingui/widget.h @@ -29,6 +29,7 @@ #include "guievent.h" #include "pixelbuffer.h" #include "notifier.h" +#include "layout.h" #include <vector> @@ -36,7 +37,7 @@ namespace GUI { class Window; -class Widget : public Listener { +class Widget : public Listener, LayoutItem { public: Widget(Widget *parent); virtual ~Widget(); |