X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=openbox%2Fmenu.h;h=f4368229ba9964cdb313292acae3ab2590fe3218;hb=6c5f6ed1f5d501c79977a55c0f2430ebdd32ef6c;hp=591dfb65eb67df1b3f0d824c2f79dfaccc08d828;hpb=b0aa29db6973d3a052980459c413c1c193bcc671;p=chaz%2Fopenbox diff --git a/openbox/menu.h b/openbox/menu.h index 591dfb65..f4368229 100644 --- a/openbox/menu.h +++ b/openbox/menu.h @@ -44,7 +44,7 @@ typedef gboolean (*ObMenuUpdateFunc)(struct _ObMenuFrame *frame, typedef void (*ObMenuExecuteFunc)(struct _ObMenuEntry *entry, struct _ObMenuFrame *frame, struct _ObClient *client, - guint state, gpointer data, Time time); + guint state, gpointer data); typedef void (*ObMenuDestroyFunc)(struct _ObMenu *menu, gpointer data); /*! @param x is the mouse x coordinate. on return it should be the x coordinate for the menu @@ -52,7 +52,7 @@ typedef void (*ObMenuDestroyFunc)(struct _ObMenu *menu, gpointer data); for the menu */ typedef void (*ObMenuPlaceFunc)(struct _ObMenuFrame *frame, gint *x, gint *y, - gint button, gpointer data); + gboolean mouse, gpointer data); struct _ObMenu { @@ -125,6 +125,8 @@ struct _ObNormalMenuEntry { RrColor *mask_selected_color; RrColor *mask_disabled_color; RrColor *mask_disabled_selected_color; + + gpointer data; }; struct _ObSubmenuMenuEntry { @@ -165,12 +167,14 @@ ObMenu* menu_new(const gchar *name, const gchar *title, gboolean allow_shortcut_selection, gpointer data); void menu_free(ObMenu *menu); -/* Repopulate a pipe-menu by running its command */ +/*! Repopulate a pipe-menu by running its command */ void menu_pipe_execute(ObMenu *self); +/*! Clear a pipe-menu's entries */ +void menu_clear_pipe_caches(); void menu_show_all_shortcuts(ObMenu *self, gboolean show); -void menu_show(gchar *name, gint x, gint y, gint button, +void menu_show(gchar *name, gint x, gint y, gboolean mouse, struct _ObClient *client); gboolean menu_hide_delay_reached();