diff options
author | corvid <corvid@lavabit.com> | 2009-10-15 19:31:06 +0000 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2009-10-15 19:31:06 +0000 |
commit | 42b823675277e31dd2772a0d4bdb9bf1ff0b5df4 (patch) | |
tree | 1bd876228620bbb658c17df0a68ac6ec4b1f0300 /dw/fltkui.hh | |
parent | 214f4d073de54ed1d7960210b41b1e9d0dc538da (diff) |
remove multiple views capability from dw
It was complicated, we don't use it, and we currently had no plans to use it.
Diffstat (limited to 'dw/fltkui.hh')
-rw-r--r-- | dw/fltkui.hh | 20 |
1 files changed, 3 insertions, 17 deletions
diff --git a/dw/fltkui.hh b/dw/fltkui.hh index c8bc8de4..add46589 100644 --- a/dw/fltkui.hh +++ b/dw/fltkui.hh @@ -178,14 +178,8 @@ private: bool enabled; protected: - class ViewAndWidget: public lout::object::Object - { - public: - FltkView *view; - ::fltk::Widget *widget; - }; - - lout::container::typed::List <ViewAndWidget> *viewsAndWidgets; + FltkView *view; + ::fltk::Widget *widget; core::Allocation allocation; FltkPlatform *platform; @@ -260,15 +254,7 @@ private: static void widgetCallback (::fltk::Widget *widget, void *data); protected: - class ViewAndView: public lout::object::Object - { - public: - FltkView *topView, *flatView; - }; - - FltkView *lastFlatView; - - lout::container::typed::List <ViewAndView> *viewsAndViews; + FltkView *topView, *flatView; void attachView (FltkView *view); void detachView (FltkView *view); |