X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=otk%2Fappwidget.hh;h=69cca58938d50628801b54d6cc9f14f6588d3683;hb=1eb12ca4ad83229b0c65819a4562bb489ab74163;hp=d33f2caa331ab1bc2408711becca99293e994646;hpb=12a95bfdb31595ec53d72adef4e0fd6bf1ccf218;p=chaz%2Fopenbox diff --git a/otk/appwidget.hh b/otk/appwidget.hh index d33f2caa..69cca589 100644 --- a/otk/appwidget.hh +++ b/otk/appwidget.hh @@ -1,3 +1,4 @@ +// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*- #ifndef __appwidget_hh #define __appwidget_hh @@ -5,14 +6,14 @@ 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, + Cursor cursor = 0, int bevel_width = 1); + virtual ~AppWidget(); virtual void show(void); virtual void hide(void); @@ -21,9 +22,7 @@ public: private: - OtkApplication *_application; - Atom _wm_protocols; - Atom _wm_delete; + Application *_application; }; }