]>
Dogcows Code - chaz/openbox/blob - openbox/actions/session.c
1 #include "openbox/actions.h"
2 #include "openbox/prompt.h"
3 #include "openbox/session.h"
11 static gpointer
setup_func(xmlNodePtr node
);
12 static gboolean
logout_func(ObActionsData
*data
, gpointer options
);
14 void action_session_startup(void)
16 actions_register("SessionLogout", setup_func
, NULL
, logout_func
,
20 static gpointer
setup_func(xmlNodePtr node
)
25 o
= g_new0(Options
, 1);
28 if ((n
= obt_parse_find_node(node
, "prompt")))
29 o
->prompt
= obt_parse_node_bool(n
);
34 static gboolean
prompt_cb(ObPrompt
*p
, gint result
, gpointer data
)
39 session_request_logout(o
->silent
);
41 /* TRANSLATORS: Don't translate the word "SessionLogout" as it's the
42 name of the action you write in rc.xml */
43 g_message(_("The SessionLogout action is not available since Openbox was built without session management support"));
46 return TRUE
; /* call cleanup func */
49 static void prompt_cleanup(ObPrompt
*p
, gpointer data
)
55 /* Always return FALSE because its not interactive */
56 static gboolean
logout_func(ObActionsData
*data
, gpointer options
)
63 ObPromptAnswer answers
[] = {
68 o2
= g_memdup(o
, sizeof(Options
));
69 p
= prompt_new(_("Are you sure you want to log out?"),
71 answers
, 2, 0, 0, prompt_cb
, prompt_cleanup
, o2
);
72 prompt_show(p
, NULL
, FALSE
);
75 prompt_cb(NULL
, 1, o
);
This page took 0.037201 seconds and 5 git commands to generate.