7 struct git_data
*git_data
;
11 struct git_data
*git_data
;
15 struct git_data
*git_data
;
22 * flags to match the selection
24 #define MENU_ITEM_ALWAYS 0 /* always insert the menu item */
25 #define MENU_ITEM_CLEANUP (1 << 31) /* menu item requires free() of
26 string and helptext */
27 #define MENU_ITEM_LAST -1 /* the last menu item */
31 typedef unsigned int selection_to_mask(struct git_data
*);
32 typedef void menu_item_handler(struct git_data
*, unsigned int);
34 * if platform-specific builder returns TRUE, the menu item
35 * is added to the active menu and can be passed to menu_item_handler
36 * later, e.g. when a user selects the item
38 typedef BOOL
menu_item_builder(struct git_data
*, const struct menu_item
*, void *);
41 unsigned int selection
;
44 menu_item_builder
*builder
;
45 menu_item_handler
*handler
;
48 extern struct menu_item
*active_menu
;
49 extern unsigned int next_active_item
;
52 * The main entry point of the menu engine.
54 * Important things to note:
55 * - it resets the active menu;
56 * - it walks menu_def until MENU_ITEM_LAST is found or
57 * menu_def_count times, whatever is earlier.
59 void build_menu_items(struct git_data
*data
,
60 selection_to_mask
*mask_builder
,
61 const struct menu_item menu_def
[],
62 const unsigned int menu_def_count
,
65 void reset_active_menu();
67 char *get_menu_item_text(unsigned int id
);
68 void handle_menu_item(void *data
, unsigned int id
);
70 #endif /* MENUENGINE_H */