]> Dogcows Code - chaz/openbox/blob - otk/appwidget.cc
8b157225fd09031477d6e5a5965c9157ab6d1941
[chaz/openbox] / otk / appwidget.cc
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2
3 #include "config.h"
4
5 #include "appwidget.hh"
6 #include "application.hh"
7 #include "property.hh"
8 #include "renderstyle.hh"
9
10 extern "C" {
11 #include <X11/Xlib.h>
12 }
13
14 namespace otk {
15
16 AppWidget::AppWidget(Application *app, Direction direction, int bevel)
17 : Widget(app->screen(), app, direction, bevel),
18 _application(app)
19 {
20 assert(app);
21
22 // set WM Protocols on the window
23 Atom protocols[2];
24 protocols[0] = Property::atoms.wm_protocols;
25 protocols[1] = Property::atoms.wm_delete_window;
26 XSetWMProtocols(**display, window(), protocols, 2);
27 }
28
29 AppWidget::~AppWidget()
30 {
31 }
32
33 void AppWidget::show()
34 {
35 if (!visible())
36 _application->_appwidget_count++;
37 Widget::show(true);
38 }
39
40 void AppWidget::hide()
41 {
42 if (visible())
43 _application->_appwidget_count--;
44 Widget::hide();
45 }
46
47 void AppWidget::clientMessageHandler(const XClientMessageEvent &e)
48 {
49 EventHandler::clientMessageHandler(e);
50 if (e.message_type == Property::atoms.wm_protocols &&
51 static_cast<Atom>(e.data.l[0]) == Property::atoms.wm_delete_window)
52 hide();
53 }
54
55 }
This page took 0.033519 seconds and 3 git commands to generate.