X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;ds=sidebyside;f=openbox%2Factions%2Fexecute.c;h=fa66a484a8b4828f0ab5ead4487f827163046c1a;hb=8bd02bf4b883fa369dd68df2053974407024ddaf;hp=6b84ce405b3681c3c5cec770acda46f3c9ac7fc1;hpb=6653c9db22f47affbe5a189abcbde7786afe9413;p=chaz%2Fopenbox diff --git a/openbox/actions/execute.c b/openbox/actions/execute.c index 6b84ce40..fa66a484 100644 --- a/openbox/actions/execute.c +++ b/openbox/actions/execute.c @@ -1,15 +1,22 @@ #include "openbox/actions.h" #include "openbox/event.h" #include "openbox/startupnotify.h" +#include "openbox/prompt.h" #include "openbox/screen.h" +#include "obt/paths.h" #include "gettext.h" +#ifdef HAVE_STDLIB_H +# include +#endif + typedef struct { gchar *cmd; gboolean sn; gchar *sn_name; gchar *sn_icon; gchar *sn_wmclass; + gchar *prompt; } Options; static gpointer setup_func(xmlNodePtr node); @@ -39,10 +46,13 @@ static gpointer setup_func(xmlNodePtr node) (n = obt_parse_find_node(node, "execute"))) { gchar *s = obt_parse_node_string(n); - o->cmd = parse_expand_tilde(s); + o->cmd = obt_paths_expand_tilde(s); g_free(s); } + if ((n = obt_parse_find_node(node, "prompt"))) + o->prompt = obt_parse_node_string(n); + if ((n = obt_parse_find_node(node, "startupnotify"))) { xmlNodePtr m; if ((m = obt_parse_find_node(n->children, "enabled"))) @@ -70,6 +80,36 @@ static void free_func(gpointer options) } } +static Options* dup_options(Options *in) +{ + Options *o = g_new(Options, 1); + o->cmd = g_strdup(in->cmd); + o->sn = in->sn; + o->sn_name = g_strdup(in->sn_name); + o->sn_icon = g_strdup(in->sn_icon); + o->sn_wmclass = g_strdup(in->sn_wmclass); + o->prompt = NULL; + return o; +} + +static gboolean run_func(ObActionsData *data, gpointer options); + +static void prompt_cb(ObPrompt *p, gint result, gpointer data) +{ + Options *options = data; + + if (result) + run_func(NULL, options); + + prompt_unref(p); + + g_free(options->cmd); + g_free(options->sn_name); + g_free(options->sn_icon); + g_free(options->sn_wmclass); + g_free(options); +} + /* Always return FALSE because its not interactive */ static gboolean run_func(ObActionsData *data, gpointer options) { @@ -79,9 +119,25 @@ static gboolean run_func(ObActionsData *data, gpointer options) Options *o = options; if (!o->cmd) return FALSE; + + if (o->prompt) { + ObPrompt *p; + Options *ocp; + ObPromptAnswer answers[] = { + { _("No"), 0 }, + { _("Yes"), 1 } + }; + + ocp = dup_options(options); + p = prompt_new(o->prompt, answers, 2, 0, 0, prompt_cb, ocp); + prompt_show(p, NULL, FALSE); + + return FALSE; + } + cmd = g_filename_from_utf8(o->cmd, -1, NULL, NULL, NULL); if (!cmd) { - g_message(_("Failed to convert the path '%s' from utf8"), o->cmd); + g_message(_("Failed to convert the path \"%s\" from utf8"), o->cmd); return FALSE; } @@ -90,7 +146,7 @@ static gboolean run_func(ObActionsData *data, gpointer options) event_cancel_all_key_grabs(); if (!g_shell_parse_argv(cmd, NULL, &argv, &e)) { - g_message(_("Failed to execute '%s': %s"), o->cmd, e->message); + g_message(_("Failed to execute \"%s\": %s"), o->cmd, e->message); g_error_free(e); } else { @@ -100,6 +156,7 @@ static gboolean run_func(ObActionsData *data, gpointer options) program = g_path_get_basename(argv[0]); /* sets up the environment */ sn_setup_spawn_environment(program, o->sn_name, o->sn_icon, + o->sn_wmclass, /* launch it on the current desktop */ screen_desktop); } @@ -108,7 +165,7 @@ static gboolean run_func(ObActionsData *data, gpointer options) G_SPAWN_SEARCH_PATH | G_SPAWN_DO_NOT_REAP_CHILD, NULL, NULL, NULL, &e)) { - g_message(_("Failed to execute '%s': %s"), o->cmd, e->message); + g_message(_("Failed to execute \"%s\": %s"), o->cmd, e->message); g_error_free(e); if (o->sn)