2 typedef struct list_entry_s list_entry_t
;
19 typedef struct menu_list_priv_s
{
21 typedef struct menu_priv_s
{
24 list_entry_t
* current
;
33 int title_bg
,title_bg_alpha
;
34 int item_bg
,item_bg_alpha
;
35 int ptr_bg
,ptr_bg_alpha
;
38 typedef void (*free_entry_t
)(list_entry_t
* entry
);
40 void menu_list_read_cmd(menu_t
* menu
,int cmd
);
41 void menu_list_draw(menu_t
* menu
,mp_image_t
* mpi
);
42 void menu_list_add_entry(menu_t
* menu
,list_entry_t
* entry
);
43 void menu_list_init(menu_t
* menu
);
44 void menu_list_uninit(menu_t
* menu
,free_entry_t free_func
);
45 int menu_list_jump_to_key(menu_t
* menu
,int c
);
47 extern const menu_list_priv_t menu_list_priv_dflt
;
49 #define MENU_LIST_PRIV_DFLT { \
66 #define MENU_LIST_PRIV_FIELDS \
67 { "minbor", M_ST_OFF(menu_list_priv_t,minb), CONF_TYPE_INT, M_OPT_MIN, 0, 0, NULL }, \
68 { "vspace", M_ST_OFF(menu_list_priv_t,vspace), CONF_TYPE_INT, M_OPT_MIN, 0, 0, NULL }, \
69 { "x", M_ST_OFF(menu_list_priv_t,x), CONF_TYPE_INT, M_OPT_MIN, 0, 0, NULL }, \
70 { "y", M_ST_OFF(menu_list_priv_t,y), CONF_TYPE_INT, M_OPT_MIN, 0, 0, NULL }, \
71 { "w", M_ST_OFF(menu_list_priv_t,w), CONF_TYPE_INT, M_OPT_MIN, 0, 0, NULL }, \
72 { "h", M_ST_OFF(menu_list_priv_t,h), CONF_TYPE_INT, M_OPT_MIN, 0, 0, NULL }, \
73 { "ptr", M_ST_OFF(menu_list_priv_t,ptr), CONF_TYPE_STRING, 0, 0, 0, NULL }, \
74 { "title-bg", M_ST_OFF(menu_list_priv_t,title_bg), CONF_TYPE_INT, M_OPT_RANGE, -1, 255, NULL }, \
75 { "title-bg-alpha", M_ST_OFF(menu_list_priv_t,title_bg_alpha), \
76 CONF_TYPE_INT, M_OPT_RANGE, 0, 255, NULL }, \
77 { "item-bg", M_ST_OFF(menu_list_priv_t,item_bg), CONF_TYPE_INT, M_OPT_RANGE, -1, 255, NULL }, \
78 { "item-bg-alpha", M_ST_OFF(menu_list_priv_t,item_bg_alpha), \
79 CONF_TYPE_INT, M_OPT_RANGE, 0, 255, NULL }, \
80 { "ptr-bg", M_ST_OFF(menu_list_priv_t,ptr_bg), CONF_TYPE_INT, M_OPT_RANGE, -1, 255, NULL }, \
81 { "ptr-bg-alpha", M_ST_OFF(menu_list_priv_t,ptr_bg_alpha), \
82 CONF_TYPE_INT, M_OPT_RANGE, 0, 255, NULL } \