]> Dogcows Code - chaz/openbox/blobdiff - otk/application.hh
set the log domain for each plugin properly
[chaz/openbox] / otk / application.hh
index 4d7b0d894cc04307fa2f2f7bb421d5b5cfe1963f..6da36d28e40764f0963f446ee7d1982e27a22303 100644 (file)
@@ -3,10 +3,6 @@
 #define __application_hh
 
 #include "eventdispatcher.hh"
-#include "display.hh"
-#include "configuration.hh"
-#include "image.hh"
-#include "style.hh"
 
 namespace otk {
 
@@ -19,22 +15,18 @@ public:
   Application(int argc, char **argv);
   virtual ~Application();
 
+  inline int screen() const { return _screen; }
+  
   virtual void run(void);
   // more bummy cool functionality
 
   void setDockable(bool dockable) { _dockable = dockable; }
   inline bool isDockable(void) const { return _dockable; }
 
-  inline Style *getStyle(void) const { return _style; }
-  // more accessors
-
 private:
   void loadStyle(void);
 
-  Display _display;
-  ImageControl *_img_ctrl;
-  Configuration *_style_conf;
-  Style *_style;
+  int _screen;
   bool _dockable;
 
   int _appwidget_count;
This page took 0.024393 seconds and 4 git commands to generate.