openbox/openbox/actions/showmenu.c
Dana Jansens fdabb69f4f update openbox to use the current parser interface in libobt
there is also some random bug fixes for other libobt stuff in here.
2008-01-20 01:36:55 -05:00

48 lines
1.1 KiB
C

#include "openbox/actions.h"
#include "openbox/menu.h"
#include <glib.h>
typedef struct {
gchar *name;
} Options;
static gpointer setup_func(xmlNodePtr node);
static void free_func(gpointer options);
static gboolean run_func(ObActionsData *data, gpointer options);
void action_showmenu_startup(void)
{
actions_register("ShowMenu", setup_func, free_func, run_func,
NULL, NULL);
}
static gpointer setup_func(xmlNodePtr node)
{
xmlNodePtr n;
Options *o;
o = g_new0(Options, 1);
if ((n = obt_parse_find_node(node, "menu")))
o->name = obt_parse_node_string(n);
return o;
}
static void free_func(gpointer options)
{
Options *o = options;
g_free(o->name);
g_free(o);
}
/* Always return FALSE because its not interactive */
static gboolean run_func(ObActionsData *data, gpointer options)
{
Options *o = options;
/* you cannot call ShowMenu from inside a menu */
if (data->uact != OB_USER_ACTION_MENU_SELECTION && o->name)
menu_show(o->name, data->x, data->y, data->button != 0, data->client);
return FALSE;
}