]> Dogcows Code - chaz/openbox/blobdiff - otk/application.hh
set the log domain for each plugin properly
[chaz/openbox] / otk / application.hh
index 220185ad49198a0d2dfb0d50f83c86699b843992..6da36d28e40764f0963f446ee7d1982e27a22303 100644 (file)
@@ -3,11 +3,6 @@
 #define __application_hh
 
 #include "eventdispatcher.hh"
-#include "display.hh"
-#include "configuration.hh"
-#include "timerqueuemanager.hh"
-#include "image.hh"
-#include "style.hh"
 
 namespace otk {
 
@@ -20,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);
 
-  TimerQueueManager *_timer_manager;
-  ImageControl *_img_ctrl;
-  Configuration *_style_conf;
-  Style *_style;
+  int _screen;
   bool _dockable;
 
   int _appwidget_count;
This page took 0.021876 seconds and 4 git commands to generate.