]> Dogcows Code - chaz/openbox/blob - otk/appwidget.hh
offsets in planar surfaces
[chaz/openbox] / otk / appwidget.hh
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2 #ifndef __appwidget_hh
3 #define __appwidget_hh
4
5 #include "widget.hh"
6
7 namespace otk {
8
9 class Application;
10
11 class AppWidget : public Widget {
12
13 public:
14 AppWidget(Application *app, Direction direction = Horizontal, int bevel = 0);
15 virtual ~AppWidget();
16
17 virtual void show();
18 virtual void hide();
19
20 virtual void clientMessageHandler(const XClientMessageEvent &e);
21
22 private:
23
24 Application *_application;
25 };
26
27 }
28
29 #endif // __appwidget_hh
This page took 0.032886 seconds and 4 git commands to generate.