summaryrefslogtreecommitdiff
path: root/otk/appwidget.hh
diff options
context:
space:
mode:
Diffstat (limited to 'otk/appwidget.hh')
-rw-r--r--otk/appwidget.hh29
1 files changed, 0 insertions, 29 deletions
diff --git a/otk/appwidget.hh b/otk/appwidget.hh
deleted file mode 100644
index 5595e88e..00000000
--- a/otk/appwidget.hh
+++ /dev/null
@@ -1,29 +0,0 @@
-// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
-#ifndef __appwidget_hh
-#define __appwidget_hh
-
-#include "widget.hh"
-
-namespace otk {
-
-class Application;
-
-class AppWidget : public Widget {
-
-public:
- AppWidget(Application *app, Direction direction = Horizontal, int bevel = 0);
- virtual ~AppWidget();
-
- virtual void show();
- virtual void hide();
-
- virtual void clientMessageHandler(const XClientMessageEvent &e);
-
-private:
-
- Application *_application;
-};
-
-}
-
-#endif // __appwidget_hh