Mercurial > mplayer.hg
annotate libmenu/menu_list.h @ 24954:a4cf3ff9b70e
Fix the prevent system idle code. Original code also works, but not as expected.
The update function was always called, but it should only be called every 30
seconds.
author | ulion |
---|---|
date | Tue, 06 Nov 2007 12:52:54 +0000 |
parents | 9ad9b0a4db27 |
children | 476d4922566a |
rev | line source |
---|---|
8197 | 1 |
2 typedef struct list_entry_s list_entry_t; | |
3 | |
4 | |
5 #ifdef IMPL | |
6 struct list_entry_s { | |
7 #else | |
8 struct list_entry { | |
9 #endif | |
10 list_entry_t* prev; | |
11 list_entry_t* next; | |
12 | |
13 char* txt; | |
17946
0afe12256464
Allow hiding list elements and disableing the pointer.
albeu
parents:
8197
diff
changeset
|
14 char hide; |
8197 | 15 }; |
16 | |
17 | |
18 #ifndef IMPL | |
19 typedef struct menu_list_priv_s { | |
20 #else | |
21 typedef struct menu_priv_s { | |
22 #endif | |
23 list_entry_t* menu; | |
24 list_entry_t* current; | |
25 int count; | |
26 | |
27 char* title; | |
28 int x,y; | |
29 int w,h; | |
30 int vspace, minb; | |
31 char* ptr; | |
17993
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17946
diff
changeset
|
32 int title_bg,title_bg_alpha; |
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17946
diff
changeset
|
33 int item_bg,item_bg_alpha; |
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17946
diff
changeset
|
34 int ptr_bg,ptr_bg_alpha; |
8197 | 35 } menu_list_priv_t; |
36 | |
37 typedef void (*free_entry_t)(list_entry_t* entry); | |
38 | |
39 void menu_list_read_cmd(menu_t* menu,int cmd); | |
40 void menu_list_read_key(menu_t* menu,int c,int jump_to); | |
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 void menu_list_jump_to_key(menu_t* menu,int c); | |
46 | |
47 extern const menu_list_priv_t menu_list_priv_dflt; | |
48 | |
49 #define MENU_LIST_PRIV_DFLT { \ | |
50 NULL, \ | |
51 NULL, \ | |
52 0, \ | |
53 \ | |
54 "MPlayer", \ | |
55 -1,-1, \ | |
56 0,0, \ | |
57 5, 3, \ | |
17993
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17946
diff
changeset
|
58 NULL, \ |
19759
9ad9b0a4db27
better readability on selected menu item by tweaking alpha channel properties
ben
parents:
18193
diff
changeset
|
59 0xFF, 0xFF, \ |
9ad9b0a4db27
better readability on selected menu item by tweaking alpha channel properties
ben
parents:
18193
diff
changeset
|
60 0xFF, 0xFF, \ |
9ad9b0a4db27
better readability on selected menu item by tweaking alpha channel properties
ben
parents:
18193
diff
changeset
|
61 0xA4, 0x50 \ |
8197 | 62 } |
63 | |
64 | |
65 #define MENU_LIST_PRIV_FIELDS \ | |
66 { "minbor", M_ST_OFF(menu_list_priv_t,minb), CONF_TYPE_INT, M_OPT_MIN, 0, 0, NULL }, \ | |
67 { "vspace", M_ST_OFF(menu_list_priv_t,vspace), CONF_TYPE_INT, M_OPT_MIN, 0, 0, NULL }, \ | |
68 { "x", M_ST_OFF(menu_list_priv_t,x), CONF_TYPE_INT, M_OPT_MIN, 0, 0, NULL }, \ | |
69 { "y", M_ST_OFF(menu_list_priv_t,y), CONF_TYPE_INT, M_OPT_MIN, 0, 0, NULL }, \ | |
70 { "w", M_ST_OFF(menu_list_priv_t,w), CONF_TYPE_INT, M_OPT_MIN, 0, 0, NULL }, \ | |
71 { "h", M_ST_OFF(menu_list_priv_t,h), CONF_TYPE_INT, M_OPT_MIN, 0, 0, NULL }, \ | |
17993
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17946
diff
changeset
|
72 { "ptr", M_ST_OFF(menu_list_priv_t,ptr), CONF_TYPE_STRING, 0, 0, 0, NULL }, \ |
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17946
diff
changeset
|
73 { "title-bg", M_ST_OFF(menu_list_priv_t,title_bg), CONF_TYPE_INT, M_OPT_RANGE, -1, 255, NULL }, \ |
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17946
diff
changeset
|
74 { "title-bg-alpha", M_ST_OFF(menu_list_priv_t,title_bg_alpha), \ |
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17946
diff
changeset
|
75 CONF_TYPE_INT, M_OPT_RANGE, 0, 255, NULL }, \ |
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17946
diff
changeset
|
76 { "item-bg", M_ST_OFF(menu_list_priv_t,item_bg), CONF_TYPE_INT, M_OPT_RANGE, -1, 255, NULL }, \ |
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17946
diff
changeset
|
77 { "item-bg-alpha", M_ST_OFF(menu_list_priv_t,item_bg_alpha), \ |
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17946
diff
changeset
|
78 CONF_TYPE_INT, M_OPT_RANGE, 0, 255, NULL }, \ |
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17946
diff
changeset
|
79 { "ptr-bg", M_ST_OFF(menu_list_priv_t,ptr_bg), CONF_TYPE_INT, M_OPT_RANGE, -1, 255, NULL }, \ |
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17946
diff
changeset
|
80 { "ptr-bg-alpha", M_ST_OFF(menu_list_priv_t,ptr_bg_alpha), \ |
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17946
diff
changeset
|
81 CONF_TYPE_INT, M_OPT_RANGE, 0, 255, NULL } \ |
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17946
diff
changeset
|
82 |
8197 | 83 |