747514f623dde81dbbc0ee0ae7f764818dadb79b
[mikachu/openbox.git] / openbox / actions / exit.c
1 #include "openbox/actions.h"
2 #include "openbox/openbox.h"
3 #include "openbox/prompt.h"
4 #include "gettext.h"
5
6 typedef struct {
7     gboolean prompt;
8 } Options;
9
10 static gpointer setup_func(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node);
11 static gboolean run_func(ObActionsData *data, gpointer options);
12
13 void action_exit_startup(void)
14 {
15     actions_register("Exit", setup_func, NULL, run_func, NULL, NULL);
16 }
17
18 static gpointer setup_func(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node)
19 {
20     xmlNodePtr n;
21     Options *o;
22
23     o = g_new0(Options, 1);
24     o->prompt = TRUE;
25
26     if ((n = parse_find_node("prompt", node)))
27         o->prompt = parse_bool(doc, n);
28
29     return o;
30 }
31
32 static void prompt_cb(ObPrompt *p, gint result, gpointer data)
33 {
34     if (result)
35         ob_exit(0);
36     prompt_unref(p);
37 }
38
39 /* Always return FALSE because its not interactive */
40 static gboolean run_func(ObActionsData *data, gpointer options)
41 {
42     Options *o = options;
43
44     if (o->prompt) {
45         ObPrompt *p;
46         ObPromptAnswer answers[] = {
47             { _("Cancel"), 0 },
48             { _("Exit"), 1 }
49         };
50
51         p = prompt_new(_("Are you sure you want to exit Openbox?"),
52                        answers, 2, 0, 0, prompt_cb, NULL);
53         prompt_show(p, NULL, FALSE);
54     }
55     else
56         ob_exit(0);
57
58     return FALSE;
59 }