blob: 113998feed5f37d6875a8dac0e63fb9a29134017 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
#include "config.h"
#include "appwidget.hh"
#include "application.hh"
#include "property.hh"
#include "renderstyle.hh"
extern "C" {
#include <X11/Xlib.h>
}
namespace otk {
AppWidget::AppWidget(Application *app, Direction direction, int bevel)
: Widget(app->screen(), app, direction, bevel),
_application(app)
{
assert(app);
// set WM Protocols on the window
Atom protocols[2];
protocols[0] = Property::atoms.wm_protocols;
protocols[1] = Property::atoms.wm_delete_window;
XSetWMProtocols(**display, window(), protocols, 2);
}
AppWidget::~AppWidget()
{
}
void AppWidget::render()
{
XSetWindowBackground(**display, window(),
RenderStyle::style(screen())->
titlebarUnfocusBackground()->color().pixel());
Widget::render();
}
void AppWidget::show()
{
Widget::show(true);
_application->_appwidget_count++;
}
void AppWidget::hide()
{
Widget::hide();
_application->_appwidget_count--;
}
void AppWidget::clientMessageHandler(const XClientMessageEvent &e)
{
EventHandler::clientMessageHandler(e);
if (e.message_type == Property::atoms.wm_protocols &&
static_cast<Atom>(e.data.l[0]) == Property::atoms.wm_delete_window)
hide();
}
}
|