]> Dogcows Code - chaz/openbox/blobdiff - otk/application.hh
set the log domain for each plugin properly
[chaz/openbox] / otk / application.hh
index 6f1cebc6087100194e71ddb91e3ea6b4d3b750ba..6da36d28e40764f0963f446ee7d1982e27a22303 100644 (file)
@@ -3,8 +3,6 @@
 #define __application_hh
 
 #include "eventdispatcher.hh"
-#include "display.hh"
-#include "renderstyle.hh"
 
 namespace otk {
 
@@ -17,20 +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 RenderStyle *getStyle(void) const { return _style; }
-  // more accessors
-
 private:
   void loadStyle(void);
 
-  Display _display;
-  RenderStyle *_style;
+  int _screen;
   bool _dockable;
 
   int _appwidget_count;
This page took 0.023694 seconds and 4 git commands to generate.