Invert the logic to check the cmp return value cmp to avoid using the ! operator.
[mplayer/greg.git] / libmenu / menu_list.c
blob511ca8e912bdff15a8535d1e16196223c0f543a4
2 #include <stdlib.h>
3 #include <stdio.h>
4 #include <ctype.h>
5 #include <string.h>
7 #include "config.h"
9 #include "libmpcodecs/img_format.h"
10 #include "libmpcodecs/mp_image.h"
12 #include "m_struct.h"
13 #include "menu.h"
15 #include "libvo/font_load.h"
16 #include "osdep/keycodes.h"
18 #define IMPL 1
19 #include "menu_list.h"
21 #define mpriv (menu->priv)
23 void menu_list_draw(menu_t* menu,mp_image_t* mpi) {
24 int x = mpriv->x;
25 int y = mpriv->y;
26 int i;
27 int h = mpriv->h;
28 int w = mpriv->w;
29 int dh = 0,dw = 0;
30 int dy = 0;
31 int need_h = 0,need_w = 0,ptr_l,sidx = 0;
32 int th,count = 0;
33 int bg_w;
34 list_entry_t* m;
36 if(mpriv->count < 1)
37 return;
39 if(h <= 0) h = mpi->height;
40 if(w <= 0) w = mpi->width;
41 dh = h - 2*mpriv->minb;
42 dw = w - 2*mpriv->minb;
43 ptr_l = mpriv->ptr ? menu_text_length(mpriv->ptr) : 0;
44 // mpi is too small
45 if(h - vo_font->height <= 0 || w - ptr_l <= 0 || dw <= 0 || dh <= 0)
46 return;
48 th = menu_text_num_lines(mpriv->title,dw) * (mpriv->vspace + vo_font->height) + mpriv->vspace;
50 // the selected item is hidden, find a visible one
51 if(mpriv->current->hide) {
52 // try the next
53 for(m = mpriv->current->next ; m ; m = m->next)
54 if(!m->hide) break;
55 if(!m) // or the previous
56 for(m = mpriv->current->prev ; m ; m = m->prev)
57 if(!m->hide) break;
58 if(m) mpriv->current = m;
59 else ptr_l = 0;
62 for(i = 0, m = mpriv->menu ; m ; m = m->next, i++) {
63 int ll;
64 if(m->hide) continue;
65 ll = menu_text_length(m->txt);
66 if(ptr_l + ll > need_w) need_w = ptr_l + ll;
67 if(m == mpriv->current) sidx = i;
68 count++;
70 if(need_w > dw) need_w = dw;
71 if(x > 0)
72 x += mpriv->minb;
73 if(y > 0)
74 y += mpriv->minb;
75 else
76 y = mpriv->minb;
78 need_h = count * (mpriv->vspace + vo_font->height) - mpriv->vspace;
79 if( need_h + th > dh) {
80 int start,end;
81 mpriv->disp_lines = (dh + mpriv->vspace - th) / (mpriv->vspace + vo_font->height);
82 if(mpriv->disp_lines < 4) {
83 th = 0;
84 mpriv->disp_lines = (dh + mpriv->vspace) / ( vo_font->height + mpriv->vspace);
86 // Too smoll
87 if(mpriv->disp_lines < 1) return;
88 need_h = mpriv->disp_lines*(mpriv->vspace + vo_font->height) - mpriv->vspace;
90 start = sidx - (mpriv->disp_lines/2);
91 if(start < 0) start = 0;
92 end = start + mpriv->disp_lines;
93 if(end > count) {
94 end = count;
95 if(end - start < mpriv->disp_lines)
96 start = end - mpriv->disp_lines < 0 ? 0 : end - mpriv->disp_lines;
98 m = mpriv->menu;
99 for(i = 0 ; m->next && i < start ; ) {
100 if(!m->hide) i++;
101 m = m->next;
103 } else {
104 m = mpriv->menu;
105 mpriv->disp_lines = count;
108 bg_w = need_w+2*mpriv->minb;
109 if(th > 0) {
110 if(mpriv->title_bg >= 0) {
111 int tw,th2;
112 menu_text_size(mpriv->title,dw,mpriv->vspace,1,&tw,&th2);
113 if(tw+2*mpriv->minb > bg_w) bg_w = tw+2*mpriv->minb;
114 menu_draw_box(mpi,mpriv->title_bg,mpriv->title_bg_alpha,
115 x < 0 ? (mpi->w-bg_w)/2 : x-mpriv->minb,dy+y-mpriv->vspace/2,bg_w,th);
117 menu_draw_text_full(mpi,mpriv->title,
118 x < 0 ? mpi->w / 2 : x,
119 dy+y,dw,0,
120 mpriv->vspace,1,
121 MENU_TEXT_TOP|MENU_TEXT_HCENTER,
122 MENU_TEXT_TOP|(x < 0 ? MENU_TEXT_HCENTER :MENU_TEXT_LEFT));
123 dy += th;
126 for( ; m != NULL && dy + vo_font->height < dh ; m = m->next ) {
127 if(m->hide) continue;
128 if(m == mpriv->current) {
129 if(mpriv->ptr_bg >= 0)
130 menu_draw_box(mpi,mpriv->ptr_bg,mpriv->ptr_bg_alpha,
131 x < 0 ? (mpi->w-bg_w)/2 : x-mpriv->minb,dy+y-mpriv->vspace/2,
132 bg_w,vo_font->height + mpriv->vspace);
133 if(ptr_l > 0)
134 menu_draw_text_full(mpi,mpriv->ptr,
135 x < 0 ? (mpi->w - need_w) / 2 + ptr_l : x,
136 dy+y,dw,dh - dy,
137 mpriv->vspace,0,
138 MENU_TEXT_TOP|(x < 0 ? MENU_TEXT_RIGHT :MENU_TEXT_LEFT) ,
139 MENU_TEXT_TOP|(x < 0 ? MENU_TEXT_RIGHT :MENU_TEXT_LEFT));
140 } else if(mpriv->item_bg >= 0)
141 menu_draw_box(mpi,mpriv->item_bg,mpriv->item_bg_alpha,
142 x < 0 ? (mpi->w-bg_w)/2 : x-mpriv->minb,dy+y-mpriv->vspace/2,
143 bg_w,vo_font->height + mpriv->vspace);
144 menu_draw_text_full(mpi,m->txt,
145 x < 0 ? (mpi->w - need_w) / 2 + ptr_l : x + ptr_l,
146 dy+y,dw-ptr_l,dh - dy,
147 mpriv->vspace,0,
148 MENU_TEXT_TOP|MENU_TEXT_LEFT,
149 MENU_TEXT_TOP|MENU_TEXT_LEFT);
150 dy += vo_font->height + mpriv->vspace;
155 void menu_list_read_cmd(menu_t* menu,int cmd) {
156 switch(cmd) {
157 case MENU_CMD_UP:
158 while(mpriv->current->prev) {
159 mpriv->current = mpriv->current->prev;
160 if(!mpriv->current->hide) return;
162 for( ; mpriv->current->next != NULL ; mpriv->current = mpriv->current->next)
163 /* NOTHING */;
164 if(!mpriv->current->hide) return;
165 while(mpriv->current->prev) {
166 mpriv->current = mpriv->current->prev;
167 if(!mpriv->current->hide) return;
169 break;
170 case MENU_CMD_DOWN:
171 while(mpriv->current->next) {
172 mpriv->current = mpriv->current->next;
173 if(!mpriv->current->hide) return;
175 mpriv->current = mpriv->menu;
176 if(!mpriv->current->hide) return;
177 while(mpriv->current->next) {
178 mpriv->current = mpriv->current->next;
179 if(!mpriv->current->hide) return;
181 break;
182 case MENU_CMD_LEFT:
183 case MENU_CMD_CANCEL:
184 menu->show = 0;
185 menu->cl = 1;
186 break;
190 void menu_list_jump_to_key(menu_t* menu,int c) {
191 if(c < 256 && isalnum(c)) {
192 list_entry_t* e = mpriv->current;
193 if(e->txt[0] == c) e = e->next;
194 for( ; e ; e = e->next) {
195 if(e->txt[0] == c) {
196 mpriv->current = e;
197 return;
200 for(e = mpriv->menu ; e ; e = e->next) {
201 if(e->txt[0] == c) {
202 mpriv->current = e;
203 return;
206 } else
207 menu_dflt_read_key(menu,c);
210 void menu_list_read_key(menu_t* menu,int c,int jump_to) {
211 list_entry_t* m;
212 int i;
213 switch(c) {
214 case KEY_HOME:
215 mpriv->current = mpriv->menu;
216 break;
217 case KEY_END:
218 for(m = mpriv->current ; m && m->next ; m = m->next)
219 /**/;
220 if(m)
221 mpriv->current = m;
222 break;
223 case KEY_PAGE_UP:
224 for(i = 0, m = mpriv->current ; m && m->prev && i < mpriv->disp_lines ; m = m->prev, i++)
225 /**/;
226 if(m)
227 mpriv->current = m;
228 break;
229 case KEY_PAGE_DOWN:
230 for(i = 0, m = mpriv->current ; m && m->next && i < mpriv->disp_lines ; m = m->next, i++)
231 /**/;
232 if(m)
233 mpriv->current = m;
234 break;
235 default:
236 if(jump_to)
237 menu_list_jump_to_key(menu,c);
238 else
239 menu_dflt_read_key(menu,c);
243 void menu_list_add_entry(menu_t* menu,list_entry_t* entry) {
244 list_entry_t* l;
245 mpriv->count++;
247 if(mpriv->menu == NULL) {
248 mpriv->menu = mpriv->current = entry;
249 return;
252 for(l = mpriv->menu ; l->next != NULL ; l = l->next)
253 /* NOP */;
254 l->next = entry;
255 entry->prev = l;
258 void menu_list_init(menu_t* menu) {
259 if(!mpriv)
260 mpriv = calloc(1,sizeof(struct menu_priv_s));
264 void menu_list_uninit(menu_t* menu,free_entry_t free_func) {
265 list_entry_t *i,*j;
267 if(!free_func) free_func = (free_entry_t)free;
269 for(i = mpriv->menu ; i != NULL ; ) {
270 j = i->next;
271 free_func(i);
272 i = j;
275 mpriv->menu = mpriv->current = NULL;