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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
#include "openbox/actions.h"
#include "openbox/openbox.h"
#include "openbox/prompt.h"
#include "openbox/session.h"
#include "gettext.h"
typedef struct {
gboolean prompt;
} Options;
static gpointer setup_func(xmlNodePtr node);
static void free_func(gpointer o);
static gboolean run_func(ObActionsData *data, gpointer options);
void action_exit_startup(void)
{
actions_register("Exit", setup_func, free_func, run_func);
actions_register("SessionLogout", setup_func, free_func, run_func);
}
static gpointer setup_func(xmlNodePtr node)
{
xmlNodePtr n;
Options *o;
o = g_slice_new0(Options);
o->prompt = TRUE;
if ((n = obt_xml_find_node(node, "prompt")))
o->prompt = obt_xml_node_bool(n);
return o;
}
static void free_func(gpointer o)
{
g_slice_free(Options, o);
}
static void do_exit(void)
{
if (session_connected())
session_request_logout(FALSE);
else
ob_exit(0);
}
static gboolean prompt_cb(ObPrompt *p, gint result, gpointer data)
{
if (result)
do_exit();
return TRUE; /* call the cleanup func */
}
static void prompt_cleanup(ObPrompt *p, gpointer data)
{
prompt_unref(p);
}
/* Always return FALSE because its not interactive */
static gboolean run_func(ObActionsData *data, gpointer options)
{
Options *o = options;
if (o->prompt) {
ObPrompt *p;
ObPromptAnswer answers[] = {
{ _("Cancel"), 0 },
{ _("Exit"), 1 }
};
if (session_connected())
p = prompt_new(_("Are you sure you want to log out?"),
_("Log Out"),
answers, 2, 0, 0, prompt_cb, prompt_cleanup, NULL);
else
p = prompt_new(_("Are you sure you want to exit Openbox?"),
_("Exit Openbox"),
answers, 2, 0, 0, prompt_cb, prompt_cleanup, NULL);
prompt_show(p, NULL, FALSE);
}
else
do_exit();
return FALSE;
}
|