]> Dogcows Code - chaz/openbox/blob - otk/appwidget.hh
use otk objects in the ob scripts by importing otk
[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,
15 Cursor cursor = 0, int bevel_width = 1);
16 virtual ~AppWidget();
17
18 virtual void show(void);
19 virtual void hide(void);
20
21 virtual void clientMessageHandler(const XClientMessageEvent &e);
22
23 private:
24
25 Application *_application;
26 };
27
28 }
29
30 #endif // __appwidget_hh
This page took 0.0325 seconds and 4 git commands to generate.