]> Dogcows Code - chaz/openbox/blobdiff - otk/appwidget.hh
kill some whitespace
[chaz/openbox] / otk / appwidget.hh
index d33f2caa331ab1bc2408711becca99293e994646..5595e88e3a71a25c1c9319944758d0503e59afce 100644 (file)
@@ -1,3 +1,4 @@
+// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
 #ifndef __appwidget_hh
 #define __appwidget_hh
 
@@ -5,25 +6,22 @@
 
 namespace otk {
 
-class OtkApplication;
+class Application;
 
-class OtkAppWidget : public OtkWidget {
+class AppWidget : public Widget {
 
 public:
-  OtkAppWidget(OtkApplication *app, Direction direction = Horizontal,
-               Cursor cursor = 0, int bevel_width = 1);
-  virtual ~OtkAppWidget();
+  AppWidget(Application *app, Direction direction = Horizontal, int bevel = 0);
+  virtual ~AppWidget();
 
-  virtual void show(void);
-  virtual void hide(void);
+  virtual void show();
+  virtual void hide();
 
   virtual void clientMessageHandler(const XClientMessageEvent &e);
   
 private:
 
-  OtkApplication *_application;
-  Atom _wm_protocols;
-  Atom _wm_delete;
+  Application *_application;
 };
 
 }
This page took 0.024314 seconds and 4 git commands to generate.