diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-01-22 22:46:16 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-01-22 22:46:16 +0000 |
| commit | 033e9843bcec8340c9e657fe0f0519f86075424b (patch) | |
| tree | 6bebf966b56fac4bf36f8060abfd77119e584c60 /otk/application.hh | |
| parent | 75e8fc2705d9c606a702eb7057e9e503be90618b (diff) | |
otk using new render shit.. supposedly
Diffstat (limited to 'otk/application.hh')
| -rw-r--r-- | otk/application.hh | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/otk/application.hh b/otk/application.hh index 4d7b0d89..6f1cebc6 100644 --- a/otk/application.hh +++ b/otk/application.hh @@ -4,9 +4,7 @@ #include "eventdispatcher.hh" #include "display.hh" -#include "configuration.hh" -#include "image.hh" -#include "style.hh" +#include "renderstyle.hh" namespace otk { @@ -25,16 +23,14 @@ public: void setDockable(bool dockable) { _dockable = dockable; } inline bool isDockable(void) const { return _dockable; } - inline Style *getStyle(void) const { return _style; } + inline RenderStyle *getStyle(void) const { return _style; } // more accessors private: void loadStyle(void); Display _display; - ImageControl *_img_ctrl; - Configuration *_style_conf; - Style *_style; + RenderStyle *_style; bool _dockable; int _appwidget_count; |
