7 #include "render/render.h"
8 #include "parser/parse.h"
14 struct _ObMenuEntryFrame
;
16 typedef struct _ObMenu ObMenu
;
17 typedef struct _ObMenuEntry ObMenuEntry
;
18 typedef struct _ObNormalMenuEntry ObNormalMenuEntry
;
19 typedef struct _ObSubmenuMenuEntry ObSubmenuMenuEntry
;
20 typedef struct _ObSeparatorMenuEntry ObSeparatorMenuEntry
;
22 typedef void (*ObMenuUpdateFunc
)(struct _ObMenuFrame
*frame
, gpointer data
);
23 typedef void (*ObMenuExecuteFunc
)(struct _ObMenuEntry
*entry
,
24 guint state
, gpointer data
);
25 typedef void (*ObMenuDestroyFunc
)(struct _ObMenu
*menu
, gpointer data
);
29 /* Name of the menu. Used in the showmenu action. */
34 /* Command to execute to rebuild the menu */
37 /* ObMenuEntry list */
43 ObMenuUpdateFunc update_func
;
44 ObMenuExecuteFunc execute_func
;
45 ObMenuDestroyFunc destroy_func
;
47 /* Pipe-menu parent, we get destroyed when it is destroyed */
53 OB_MENU_ENTRY_TYPE_NORMAL
,
54 OB_MENU_ENTRY_TYPE_SUBMENU
,
55 OB_MENU_ENTRY_TYPE_SEPARATOR
58 struct _ObNormalMenuEntry
{
64 /* List of ObActions */
74 RrColor
*mask_normal_color
;
75 RrColor
*mask_disabled_color
;
76 RrColor
*mask_selected_color
;
79 struct _ObSubmenuMenuEntry
{
84 struct _ObSeparatorMenuEntry
{
85 gchar foo
; /* placeholder */
96 ObNormalMenuEntry normal
;
97 ObSubmenuMenuEntry submenu
;
98 ObSeparatorMenuEntry separator
;
102 void menu_startup(gboolean reconfig
);
103 void menu_shutdown(gboolean reconfig
);
105 ObMenu
* menu_new(gchar
*name
, gchar
*title
, gpointer data
);
106 void menu_free(ObMenu
*menu
);
108 /* Repopulate a pipe-menu by running its command */
109 void menu_pipe_execute(ObMenu
*self
);
111 void menu_show(gchar
*name
, gint x
, gint y
, struct _ObClient
*client
);
113 void menu_set_update_func(ObMenu
*menu
, ObMenuUpdateFunc func
);
114 void menu_set_execute_func(ObMenu
*menu
, ObMenuExecuteFunc func
);
115 void menu_set_destroy_func(ObMenu
*menu
, ObMenuDestroyFunc func
);
117 /* functions for building menus */
118 ObMenuEntry
* menu_add_normal(ObMenu
*menu
, gint id
, gchar
*label
,
120 ObMenuEntry
* menu_add_submenu(ObMenu
*menu
, gint id
, gchar
*submenu
);
121 ObMenuEntry
* menu_add_separator(ObMenu
*menu
, gint id
);
123 void menu_clear_entries(ObMenu
*menu
);
124 void menu_entry_remove(ObMenuEntry
*self
);
126 ObMenuEntry
* menu_find_entry_id(ObMenu
*self
, gint id
);
128 /* fills in the submenus, for use when a menu is being shown */
129 void menu_find_submenus(ObMenu
*self
);