Cleaned up some of the category management; its still obviously a menu written in...
[pandora-libraries.git] / minimenu / mmui.c
1
2 #include <stdio.h> /* for FILE etc */
3 #include <stdlib.h> /* for malloc */
4 #include <unistd.h> /* for unlink */
5 #include <limits.h> /* for PATH_MAX */
6 #include <sys/types.h>
7 #include <sys/stat.h>
8 #define __USE_GNU /* for strcasestr */
9 #include <string.h> /* for making ftw.h happy */
10 #include <time.h>
11 #include <ftw.h>
12 #include "SDL.h"
13 #include "SDL_audio.h"
14 #include "SDL_image.h"
15 #include "SDL_ttf.h"
16 #include "SDL_gfxPrimitives.h"
17 #include "SDL_rotozoom.h"
18 #include "SDL_thread.h"
19 #include <dirent.h>
20
21 #include "pnd_conf.h"
22 #include "pnd_logger.h"
23 #include "pnd_pxml.h"
24 #include "pnd_container.h"
25 #include "pnd_discovery.h"
26 #include "pnd_apps.h"
27 #include "pnd_device.h"
28 #include "../lib/pnd_pathiter.h"
29 #include "pnd_utility.h"
30 #include "pnd_pndfiles.h"
31
32 #include "mmenu.h"
33 #include "mmcat.h"
34 #include "mmcache.h"
35 #include "mmui.h"
36 #include "mmwrapcmd.h"
37
38 #define CHANGED_NOTHING     (0)
39 #define CHANGED_CATEGORY    (1<<0)  /* changed to different category */
40 #define CHANGED_SELECTION   (1<<1)  /* changed app selection */
41 #define CHANGED_DATAUPDATE  (1<<2)  /* deferred preview pic or icon came in */
42 #define CHANGED_APPRELOAD   (1<<3)  /* new set of applications entirely */
43 #define CHANGED_EVERYTHING  (1<<4)  /* redraw it all! */
44 unsigned int render_mask = CHANGED_EVERYTHING;
45
46 /* SDL
47  */
48 SDL_Surface *sdl_realscreen = NULL;
49 unsigned int sdl_ticks = 0;
50 SDL_Thread *g_preview_thread = NULL;
51
52 enum { sdl_user_ticker = 0,
53        sdl_user_finishedpreview = 1,
54        sdl_user_finishedicon = 2,
55 };
56
57 /* app state
58  */
59 unsigned short int g_scale = 1; // 1 == noscale
60
61 SDL_Surface *g_imgcache [ IMG_MAX ];
62
63 TTF_Font *g_big_font = NULL;
64 TTF_Font *g_grid_font = NULL;
65 TTF_Font *g_detailtext_font = NULL;
66 TTF_Font *g_tab_font = NULL;
67
68 extern pnd_conf_handle g_conf;
69
70 /* current display state
71  */
72 int ui_rows_scrolled_down = 0;          // number of rows that should be missing from top of the display
73 mm_appref_t *ui_selected = NULL;
74 unsigned char ui_category = 0;          // current category
75 unsigned char ui_catshift = 0;          // how many cats are offscreen to the left
76
77 extern mm_category_t *g_categories;
78 extern unsigned char g_categorycount;
79 extern mm_category_t _categories_invis [ MAX_CATS ];
80 extern unsigned char _categories_inviscount;
81
82 static SDL_Surface *ui_scale_image ( SDL_Surface *s, unsigned int maxwidth, int maxheight ); // height -1 means ignore
83 static int ui_selected_index ( void );
84
85 unsigned char ui_setup ( void ) {
86
87   /* set up SDL
88    */
89
90   SDL_Init ( SDL_INIT_EVERYTHING | SDL_INIT_NOPARACHUTE );
91
92   SDL_JoystickOpen ( 0 ); // turn on joy-0
93
94   SDL_WM_SetCaption ( "mmenu", "mmenu" );
95
96   // hide the mouse cursor if we can
97   if ( SDL_ShowCursor ( -1 ) == 1 ) {
98     SDL_ShowCursor ( 0 );
99   }
100
101   atexit ( SDL_Quit );
102
103   // open up a surface
104   unsigned int svm = SDL_SWSURFACE /*| SDL_FULLSCREEN*/ /* 0*/;
105   if ( pnd_conf_get_as_int_d ( g_conf, "display.fullscreen", 0 ) > 0 ) {
106     svm |= SDL_FULLSCREEN;
107   }
108
109   sdl_realscreen =
110     SDL_SetVideoMode ( 800 * g_scale, 480 * g_scale, 16 /*bpp*/, svm );
111
112   if ( ! sdl_realscreen ) {
113     pnd_log ( pndn_error, "ERROR: Couldn't open SDL real screen; dieing." );
114     return ( 0 );
115   }
116
117   pnd_log ( pndn_debug, "Pixel format:" );
118   pnd_log ( pndn_debug, "bpp b: %u\n", sdl_realscreen -> format -> BitsPerPixel );
119   pnd_log ( pndn_debug, "bpp B: %u\n", sdl_realscreen -> format -> BytesPerPixel );
120   pnd_log ( pndn_debug, "R mask: %08x\n", sdl_realscreen -> format -> Rmask );
121   pnd_log ( pndn_debug, "G mask: %08x\n", sdl_realscreen -> format -> Gmask );
122   pnd_log ( pndn_debug, "B mask: %08x\n", sdl_realscreen -> format -> Bmask );
123
124 #if 0 // audio
125   {
126     SDL_AudioSpec fmt;
127
128     /* Set 16-bit stereo audio at 22Khz */
129     fmt.freq = 44100; //22050;
130     fmt.format = AUDIO_S16; //AUDIO_S16;
131     fmt.channels = 1;
132     fmt.samples = 2048;        /* A good value for games */
133     fmt.callback = mixaudio;
134     fmt.userdata = NULL;
135
136     /* Open the audio device and start playing sound! */
137     if ( SDL_OpenAudio ( &fmt, NULL ) < 0 ) {
138       zotlog ( "Unable to open audio: %s\n", SDL_GetError() );
139       exit ( 1 );
140     }
141
142     SDL_PauseAudio ( 0 );
143   }
144 #endif
145
146   // images
147   //IMG_Init ( IMG_INIT_JPG | IMG_INIT_PNG );
148
149   /* fonts
150    */
151
152   // init
153   if ( TTF_Init() == -1 ) {
154     pnd_log ( pndn_error, "ERROR: Couldn't set up SDL TTF lib\n" );
155     return ( 0 ); // couldn't set up SDL TTF
156   }
157
158   char fullpath [ PATH_MAX ];
159   // big font
160   sprintf ( fullpath, "%s/%s", g_skinpath, pnd_conf_get_as_char ( g_conf, "minimenu.font" ) );
161   g_big_font = TTF_OpenFont ( fullpath, pnd_conf_get_as_int_d ( g_conf, "minimenu.font_ptsize", 24 ) );
162   if ( ! g_big_font ) {
163     pnd_log ( pndn_error, "ERROR: Couldn't load font '%s' for size %u\n",
164               pnd_conf_get_as_char ( g_conf, "minimenu.font" ), pnd_conf_get_as_int_d ( g_conf, "minimenu.font_ptsize", 24 ) );
165     return ( 0 ); // couldn't set up SDL TTF
166   }
167
168   // grid font
169   sprintf ( fullpath, "%s/%s", g_skinpath, pnd_conf_get_as_char ( g_conf, "grid.font" ) );
170   g_grid_font = TTF_OpenFont ( fullpath, pnd_conf_get_as_int_d ( g_conf, "grid.font_ptsize", 10 ) );
171   if ( ! g_grid_font ) {
172     pnd_log ( pndn_error, "ERROR: Couldn't load font '%s' for size %u\n",
173               pnd_conf_get_as_char ( g_conf, "grid.font" ), pnd_conf_get_as_int_d ( g_conf, "grid.font_ptsize", 10 ) );
174     return ( 0 ); // couldn't set up SDL TTF
175   }
176
177   // detailtext font
178   sprintf ( fullpath, "%s/%s", g_skinpath, pnd_conf_get_as_char ( g_conf, "detailtext.font" ) );
179   g_detailtext_font = TTF_OpenFont ( fullpath, pnd_conf_get_as_int_d ( g_conf, "detailtext.font_ptsize", 10 ) );
180   if ( ! g_detailtext_font ) {
181     pnd_log ( pndn_error, "ERROR: Couldn't load font '%s' for size %u\n",
182               pnd_conf_get_as_char ( g_conf, "detailtext.font" ), pnd_conf_get_as_int_d ( g_conf, "detailtext.font_ptsize", 10 ) );
183     return ( 0 ); // couldn't set up SDL TTF
184   }
185
186   // tab font
187   sprintf ( fullpath, "%s/%s", g_skinpath, pnd_conf_get_as_char ( g_conf, "tabs.font" ) );
188   g_tab_font = TTF_OpenFont ( fullpath, pnd_conf_get_as_int_d ( g_conf, "tabs.font_ptsize", 10 ) );
189   if ( ! g_tab_font ) {
190     pnd_log ( pndn_error, "ERROR: Couldn't load font '%s' for size %u\n",
191               pnd_conf_get_as_char ( g_conf, "tabs.font" ), pnd_conf_get_as_int_d ( g_conf, "tabs.font_ptsize", 10 ) );
192     return ( 0 ); // couldn't set up SDL TTF
193   }
194
195   return ( 1 );
196 }
197
198 mm_imgcache_t g_imagecache [ IMG_TRUEMAX ] = {
199   { IMG_BACKGROUND_800480,    "graphics.IMG_BACKGROUND_800480" },
200   { IMG_BACKGROUND_TABMASK,   "graphics.IMG_BACKGROUND_TABMASK" },
201   { IMG_DETAIL_PANEL,         "graphics.IMG_DETAIL_PANEL" },
202   { IMG_DETAIL_BG,            "graphics.IMG_DETAIL_BG" },
203   { IMG_SELECTED_ALPHAMASK,   "graphics.IMG_SELECTED_ALPHAMASK" },
204   { IMG_TAB_SEL,              "graphics.IMG_TAB_SEL" },
205   { IMG_TAB_SEL_L,            "graphics.IMG_TAB_SEL_L" },
206   { IMG_TAB_SEL_R,            "graphics.IMG_TAB_SEL_R" },
207   { IMG_TAB_UNSEL,            "graphics.IMG_TAB_UNSEL" },
208   { IMG_TAB_UNSEL_L,          "graphics.IMG_TAB_UNSEL_L" },
209   { IMG_TAB_UNSEL_R,          "graphics.IMG_TAB_UNSEL_R" },
210   { IMG_TAB_LINE,             "graphics.IMG_TAB_LINE" },
211   { IMG_TAB_LINEL,            "graphics.IMG_TAB_LINEL" },
212   { IMG_TAB_LINER,            "graphics.IMG_TAB_LINER" },
213   { IMG_ICON_MISSING,         "graphics.IMG_ICON_MISSING" },
214   { IMG_SELECTED_HILITE,      "graphics.IMG_SELECTED_HILITE" },
215   { IMG_PREVIEW_MISSING,      "graphics.IMG_PREVIEW_MISSING" },
216   { IMG_ARROW_UP,             "graphics.IMG_ARROW_UP", },
217   { IMG_ARROW_DOWN,           "graphics.IMG_ARROW_DOWN", },
218   { IMG_ARROW_SCROLLBAR,      "graphics.IMG_ARROW_SCROLLBAR", },
219   { IMG_HOURGLASS,            "graphics.IMG_HOURGLASS", },
220   { IMG_FOLDER,               "graphics.IMG_FOLDER", },
221   { IMG_EXECBIN,              "graphics.IMG_EXECBIN", },
222   { IMG_MAX,                  NULL },
223 };
224
225 unsigned char ui_imagecache ( char *basepath ) {
226   unsigned int i;
227   char fullpath [ PATH_MAX ];
228
229   // loaded
230
231   for ( i = 0; i < IMG_MAX; i++ ) {
232
233     if ( g_imagecache [ i ].id != i ) {
234       pnd_log ( pndn_error, "ERROR: Internal table mismatch during caching [%u]\n", i );
235       exit ( -1 );
236     }
237
238     char *filename = pnd_conf_get_as_char ( g_conf, g_imagecache [ i ].confname );
239
240     if ( ! filename ) {
241       pnd_log ( pndn_error, "ERROR: Missing filename in conf for key: %s\n", g_imagecache [ i ].confname );
242       return ( 0 );
243     }
244
245     if ( filename [ 0 ] == '/' ) {
246       strncpy ( fullpath, filename, PATH_MAX );
247     } else {
248       sprintf ( fullpath, "%s/%s", basepath, filename );
249     }
250
251     if ( ! ( g_imagecache [ i ].i = IMG_Load ( fullpath ) ) ) {
252       pnd_log ( pndn_error, "ERROR: Couldn't load static cache image: %s\n", fullpath );
253       return ( 0 );
254     }
255
256   } // for
257
258   // generated
259   //g_imagecache [ IMG_SELECTED_ALPHAMASK ].i = SDL_CreateRGBSurface ( SDL_SWSURFACE, 60, 60, 32, 0xFF0000, 0x00FF00, 0xFF, 0xFF000000 );
260   //boxRGBA ( g_imagecache [ IMG_SELECTED_ALPHAMASK ].i, 0, 0, 60, 60, 100, 100, 100, 250 );
261
262   // post processing
263   //
264
265   // scale icons
266   g_imagecache [ IMG_ICON_MISSING ].i = ui_scale_image ( g_imagecache [ IMG_ICON_MISSING ].i, pnd_conf_get_as_int_d ( g_conf, "grid.icon_max_width", 50 ), -1 );
267   // scale text hilight
268   g_imagecache [ IMG_SELECTED_HILITE ].i = ui_scale_image ( g_imagecache [ IMG_SELECTED_HILITE ].i, pnd_conf_get_as_int_d ( g_conf, "grid.text_width", 50 ), -1 );
269   // scale preview no-pic
270   g_imagecache [ IMG_PREVIEW_MISSING ].i = ui_scale_image ( g_imagecache [ IMG_PREVIEW_MISSING ].i,
271                                                             pnd_conf_get_as_int_d ( g_conf, "previewpic.cell_width", 50 ),
272                                                             pnd_conf_get_as_int_d ( g_conf, "previewpic.cell_height", 50 ) );
273
274   // set alpha on detail panel
275   //SDL_SetAlpha ( g_imagecache [ IMG_DETAIL_BG ].i, SDL_SRCALPHA, pnd_conf_get_as_int_d ( g_conf, "display.detail_bg_alpha", 50 ) );
276
277   return ( 1 );
278 } // ui_imagecache
279
280 void ui_render ( void ) {
281
282   // 800x480:
283   // divide width: 550 / 250
284   // divide left side: 5 columns == 110px width
285   //   20px buffer either side == 70px wide icon + 20 + 20?
286
287   // what jobs to do during render?
288   //
289
290 #define R_BG     (1<<0)
291 #define R_TABS   (1<<1)
292 #define R_DETAIL (1<<2)
293 #define R_GRID   (1<<3)
294
295 #define R_ALL (R_BG|R_TABS|R_DETAIL|R_GRID)
296
297   unsigned int render_jobs_b = 0;
298
299   if ( render_mask & CHANGED_EVERYTHING ) {
300     render_jobs_b |= R_ALL;
301   }
302
303   if ( render_mask & CHANGED_SELECTION ) {
304     render_jobs_b |= R_GRID;
305     render_jobs_b |= R_DETAIL;
306   }
307
308   if ( render_mask & CHANGED_CATEGORY ) {
309     render_jobs_b |= R_ALL;
310   }
311
312   render_mask = CHANGED_NOTHING;
313
314   // render everything
315   //
316   unsigned int icon_rows;
317
318 #define MAXRECTS 200
319   SDL_Rect rects [ MAXRECTS ], src;
320   SDL_Rect *dest = rects;
321   bzero ( dest, sizeof(SDL_Rect)*MAXRECTS );
322
323   unsigned int row, displayrow, col;
324   mm_appref_t *appiter;
325
326   unsigned int screen_width = pnd_conf_get_as_int_d ( g_conf, "display.screen_width", 800 );
327
328   unsigned char row_max = pnd_conf_get_as_int_d ( g_conf, "grid.row_max", 4 );
329   unsigned char col_max = pnd_conf_get_as_int_d ( g_conf, "grid.col_max", 5 );
330
331   unsigned int font_rgba_r = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_r", 200 );
332   unsigned int font_rgba_g = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_g", 200 );
333   unsigned int font_rgba_b = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_b", 200 );
334   unsigned int font_rgba_a = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_a", 100 );
335
336   unsigned int grid_offset_x = pnd_conf_get_as_int ( g_conf, "grid.grid_offset_x" );
337   unsigned int grid_offset_y = pnd_conf_get_as_int ( g_conf, "grid.grid_offset_y" );
338
339   unsigned int icon_offset_x = pnd_conf_get_as_int ( g_conf, "grid.icon_offset_x" );
340   unsigned int icon_offset_y = pnd_conf_get_as_int ( g_conf, "grid.icon_offset_y" );
341   unsigned int icon_max_width = pnd_conf_get_as_int ( g_conf, "grid.icon_max_width" );
342   unsigned int icon_max_height = pnd_conf_get_as_int ( g_conf, "grid.icon_max_height" );
343   unsigned int sel_icon_offset_x = pnd_conf_get_as_int_d ( g_conf, "grid.sel_offoffset_x", 0 );
344   unsigned int sel_icon_offset_y = pnd_conf_get_as_int_d ( g_conf, "grid.sel_offoffset_y", 0 );
345
346   unsigned int text_width = pnd_conf_get_as_int ( g_conf, "grid.text_width" );
347   unsigned int text_clip_x = pnd_conf_get_as_int ( g_conf, "grid.text_clip_x" );
348   unsigned int text_offset_x = pnd_conf_get_as_int ( g_conf, "grid.text_offset_x" );
349   unsigned int text_offset_y = pnd_conf_get_as_int ( g_conf, "grid.text_offset_y" );
350
351   unsigned int cell_width = pnd_conf_get_as_int ( g_conf, "grid.cell_width" );
352   unsigned int cell_height = pnd_conf_get_as_int ( g_conf, "grid.cell_height" );
353
354   // how many total rows do we need?
355   icon_rows = g_categories [ ui_category ].refcount / col_max;
356   if ( g_categories [ ui_category ].refcount % col_max > 0 ) {
357     icon_rows++;
358   }
359
360   // if no selected app yet, select the first one
361 #if 0
362   if ( ! ui_selected ) {
363     ui_selected = g_categories [ ui_category ].refs;
364   }
365 #endif
366
367   // reset touchscreen regions
368   ui_register_reset();
369
370   // ensure selection is visible
371   if ( ui_selected ) {
372
373     int index = ui_selected_index();
374     int topleft = col_max * ui_rows_scrolled_down;
375     int botright = ( col_max * ( ui_rows_scrolled_down + row_max ) - 1 );
376
377     if ( index < topleft ) {
378       ui_rows_scrolled_down -= pnd_conf_get_as_int_d ( g_conf, "grid.scroll_increment", 1 );
379       render_jobs_b |= R_ALL;
380     } else if ( index > botright ) {
381       ui_rows_scrolled_down += pnd_conf_get_as_int_d ( g_conf, "grid.scroll_increment", 1 );
382       render_jobs_b |= R_ALL;
383     }
384
385     if ( ui_rows_scrolled_down < 0 ) {
386       ui_rows_scrolled_down = 0;
387     } else if ( ui_rows_scrolled_down > icon_rows ) {
388       ui_rows_scrolled_down = icon_rows;
389     }
390
391   } // ensire visible
392
393   // render background
394   if ( render_jobs_b & R_BG ) {
395
396     if ( g_imagecache [ IMG_BACKGROUND_800480 ].i ) {
397       dest -> x = 0;
398       dest -> y = 0;
399       dest -> w = sdl_realscreen -> w;
400       dest -> h = sdl_realscreen -> h;
401       SDL_BlitSurface ( g_imagecache [ IMG_BACKGROUND_800480 ].i, NULL /* whole image */, sdl_realscreen, dest /* 0,0 */ );
402       dest++;
403     }
404
405     // tabmask
406     if ( g_imagecache [ IMG_BACKGROUND_TABMASK ].i ) {
407       dest -> x = 0;
408       dest -> y = 0;
409       dest -> w = sdl_realscreen -> w;
410       dest -> h = sdl_realscreen -> h;
411       SDL_BlitSurface ( g_imagecache [ IMG_BACKGROUND_TABMASK ].i, NULL /* whole image */, sdl_realscreen, dest /* 0,0 */ );
412       dest++;
413     }
414
415   } // r_bg
416
417   // tabs
418   if ( g_imagecache [ IMG_TAB_SEL ].i && g_imagecache [ IMG_TAB_UNSEL ].i ) {
419     unsigned int tab_width = pnd_conf_get_as_int ( g_conf, "tabs.tab_width" );
420     unsigned int tab_height = pnd_conf_get_as_int ( g_conf, "tabs.tab_height" );
421     //unsigned int tab_selheight = pnd_conf_get_as_int ( g_conf, "tabs.tab_selheight" );
422     unsigned int tab_offset_x = pnd_conf_get_as_int ( g_conf, "tabs.tab_offset_x" );
423     unsigned int tab_offset_y = pnd_conf_get_as_int ( g_conf, "tabs.tab_offset_y" );
424     unsigned int text_offset_x = pnd_conf_get_as_int ( g_conf, "tabs.text_offset_x" );
425     unsigned int text_offset_y = pnd_conf_get_as_int ( g_conf, "tabs.text_offset_y" );
426     unsigned int text_width = pnd_conf_get_as_int ( g_conf, "tabs.text_width" );
427     unsigned int maxtab = ( screen_width / tab_width ) < g_categorycount ? ( screen_width / tab_width ) + ui_catshift : g_categorycount + ui_catshift;
428     unsigned int maxtabspot = ( screen_width / tab_width );
429
430     if ( g_categorycount > 0 ) {
431
432       // draw tabs with categories
433       for ( col = ui_catshift;
434             col < maxtab;
435             col++ )
436       {
437
438         SDL_Surface *s;
439
440         // if this is the first (leftmost) tab, we use different artwork
441         // than if the other tabs (so skinner can link lines up nicely.)
442         if ( col == ui_catshift ) {
443           // leftmost tab, special case
444
445           if ( col == ui_category ) {
446             s = g_imagecache [ IMG_TAB_SEL_L ].i;
447           } else {
448             s = g_imagecache [ IMG_TAB_UNSEL_L ].i;
449           }
450
451         } else if ( col == maxtab - 1 ) {
452           // rightmost tab, special case
453
454           if ( col == ui_category ) {
455             s = g_imagecache [ IMG_TAB_SEL_R ].i;
456           } else {
457             s = g_imagecache [ IMG_TAB_UNSEL_R ].i;
458           }
459
460         } else {
461           // normal (not leftmost) tab
462
463           if ( col == ui_category ) {
464             s = g_imagecache [ IMG_TAB_SEL ].i;
465           } else {
466             s = g_imagecache [ IMG_TAB_UNSEL ].i;
467           }
468
469         } // first col, or not first col?
470
471         // draw tab
472         src.x = 0;
473         src.y = 0;
474 #if 0
475         src.w = tab_width;
476         if ( col == ui_category ) {
477           src.h = tab_selheight;
478         } else {
479           src.h = tab_height;
480         }
481 #else
482         src.w = s -> w;
483         src.h = s -> h;
484 #endif
485         dest -> x = tab_offset_x + ( (col-ui_catshift) * tab_width );
486         dest -> y = tab_offset_y;
487
488         // store touch info
489         ui_register_tab ( col, dest -> x, dest -> y, tab_width, tab_height );
490
491         if ( render_jobs_b & R_TABS ) {
492           //pnd_log ( pndn_debug, "tab %u at %ux%u\n", col, dest.x, dest.y );
493           SDL_BlitSurface ( s, &src, sdl_realscreen, dest );
494           dest++;
495
496           // draw tab line
497           if ( col == ui_category ) {
498             // no line for selected tab
499           } else {
500             if ( col - ui_catshift == 0 ) {
501               s = g_imagecache [ IMG_TAB_LINEL ].i;
502             } else if ( col - ui_catshift == maxtabspot - 1 ) {
503               s = g_imagecache [ IMG_TAB_LINER ].i;
504             } else {
505               s = g_imagecache [ IMG_TAB_LINE ].i;
506             }
507             dest -> x = tab_offset_x + ( (col-ui_catshift) * tab_width );
508             dest -> y = tab_offset_y + tab_height;
509             SDL_BlitSurface ( s, NULL /* whole image */, sdl_realscreen, dest );
510             dest++;
511           }
512
513           // draw text
514           SDL_Surface *rtext;
515           SDL_Color tmpfontcolor = { font_rgba_r, font_rgba_g, font_rgba_b, font_rgba_a };
516           rtext = TTF_RenderText_Blended ( g_tab_font, g_categories [ col ].catname, tmpfontcolor );
517           src.x = 0;
518           src.y = 0;
519           src.w = rtext -> w < text_width ? rtext -> w : text_width;
520           src.h = rtext -> h;
521           dest -> x = tab_offset_x + ( (col-ui_catshift) * tab_width ) + text_offset_x;
522           dest -> y = tab_offset_y + text_offset_y;
523           SDL_BlitSurface ( rtext, &src, sdl_realscreen, dest );
524           SDL_FreeSurface ( rtext );
525           dest++;
526
527         } // r_tabs
528
529       } // for
530
531     } // if we got categories
532
533     if ( render_jobs_b & R_TABS ) {
534
535       // draw tab lines under where tabs would be if we had categories
536       for ( /* foo */; col < maxtabspot; col++ ) {
537         SDL_Surface *s;
538
539         if ( col - ui_catshift == 0 ) {
540           s = g_imagecache [ IMG_TAB_LINEL ].i;
541         } else if ( col - ui_catshift == maxtabspot - 1 ) {
542           s = g_imagecache [ IMG_TAB_LINER ].i;
543         } else {
544           s = g_imagecache [ IMG_TAB_LINE ].i;
545         }
546         dest -> x = tab_offset_x + ( (col-ui_catshift) * tab_width );
547         dest -> y = tab_offset_y + tab_height;
548         SDL_BlitSurface ( s, NULL /* whole image */, sdl_realscreen, dest );
549         dest++;
550
551       } // for
552
553     } // r_tabs
554
555   } // tabs
556
557   // scroll bars and arrows
558   if ( render_jobs_b & R_BG ) {
559     unsigned char show_bar = 0;
560
561     // up?
562     if ( ui_rows_scrolled_down && g_imagecache [ IMG_ARROW_UP ].i ) {
563       dest -> x = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_up_x", 450 );
564       dest -> y = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_up_y", 80 );
565       SDL_BlitSurface ( g_imagecache [ IMG_ARROW_UP ].i, NULL /* whole image */, sdl_realscreen, dest );
566       dest++;
567
568       show_bar = 1;
569     }
570
571     // down?
572     if ( ui_rows_scrolled_down + row_max < icon_rows && g_imagecache [ IMG_ARROW_DOWN ].i ) {
573       dest -> x = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_down_x", 450 );
574       dest -> y = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_down_y", 80 );
575       SDL_BlitSurface ( g_imagecache [ IMG_ARROW_DOWN ].i, NULL /* whole image */, sdl_realscreen, dest );
576       dest++;
577
578       show_bar = 1;
579     }
580
581     if ( show_bar ) {
582       // show scrollbar as well
583       src.x = 0;
584       src.y = 0;
585       src.w = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_bar_clip_w", 10 );
586       src.h = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_bar_clip_h", 100 );
587       dest -> x = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_bar_x", 450 );
588       dest -> y = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_bar_y", 100 );
589       SDL_BlitSurface ( g_imagecache [ IMG_ARROW_SCROLLBAR ].i, &src /* whole image */, sdl_realscreen, dest );
590       dest++;
591     } // bar
592
593   } // r_bg, scroll bars
594
595   // render detail pane bg
596   if ( render_jobs_b & R_DETAIL ) {
597
598     if ( pnd_conf_get_as_int_d ( g_conf, "detailpane.show", 1 ) ) {
599
600       // render detail bg
601       if ( g_imagecache [ IMG_DETAIL_BG ].i ) {
602         src.x = 0; // pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_x", 460 );
603         src.y = 0; // pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_y", 60 );
604         src.w = ((SDL_Surface*)(g_imagecache [ IMG_DETAIL_PANEL ].i)) -> w;
605         src.h = ((SDL_Surface*)(g_imagecache [ IMG_DETAIL_PANEL ].i)) -> h;
606         dest -> x = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_x", 460 );
607         dest -> y = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_y", 60 );
608         SDL_BlitSurface ( g_imagecache [ IMG_DETAIL_BG ].i, &src, sdl_realscreen, dest );
609         dest++;
610       }
611
612       // render detail pane
613       if ( g_imagecache [ IMG_DETAIL_PANEL ].i ) {
614         dest -> x = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_x", 460 );
615         dest -> y = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_y", 60 );
616         SDL_BlitSurface ( g_imagecache [ IMG_DETAIL_PANEL ].i, NULL /* whole image */, sdl_realscreen, dest );
617         dest++;
618       }
619
620     } // detailpane frame/bg
621
622   } // r_details
623
624   // anything to render?
625   if ( render_jobs_b & R_GRID ) {
626
627     // if just rendering grid, and nothing else, better clear it first
628     if ( ! ( render_jobs_b & R_BG ) ) {
629       if ( g_imagecache [ IMG_BACKGROUND_800480 ].i ) {
630         src.x = grid_offset_x;
631         src.y = grid_offset_y + sel_icon_offset_y;
632         src.w = col_max * cell_width;
633         src.h = row_max * cell_height;
634
635         dest -> x = grid_offset_x;
636         dest -> y = grid_offset_y + sel_icon_offset_y;
637
638         SDL_BlitSurface ( g_imagecache [ IMG_BACKGROUND_800480 ].i, &src, sdl_realscreen, dest );
639         dest++;
640
641       }
642     }
643
644     if ( g_categories [ ui_category ].refs ) {
645
646       appiter = g_categories [ ui_category ].refs;
647       row = 0;
648       displayrow = 0;
649
650       // until we run out of apps, or run out of space
651       while ( appiter != NULL ) {
652
653         for ( col = 0; col < col_max && appiter != NULL; col++ ) {
654
655           // do we even need to render it? or are we suppressing it due to rows scrolled off the top?
656           if ( row >= ui_rows_scrolled_down ) {
657
658             // selected? show hilights
659             if ( appiter == ui_selected ) {
660               SDL_Surface *s = g_imagecache [ IMG_SELECTED_ALPHAMASK ].i;
661               // icon
662               //dest -> x = grid_offset_x + ( col * cell_width ) + icon_offset_x + ( ( icon_max_width - s -> w ) / 2 );
663               dest -> x = grid_offset_x + ( col * cell_width ) + icon_offset_x + sel_icon_offset_x;
664               //dest -> y = grid_offset_y + ( displayrow * cell_height ) + icon_offset_y + ( ( icon_max_height - s -> h ) / 2 );
665               dest -> y = grid_offset_y + ( displayrow * cell_height ) + icon_offset_y + sel_icon_offset_y;
666               SDL_BlitSurface ( s, NULL /* all */, sdl_realscreen, dest );
667               dest++;
668               // text
669               dest -> x = grid_offset_x + ( col * cell_width ) + text_clip_x;
670               dest -> y = grid_offset_y + ( displayrow * cell_height ) + pnd_conf_get_as_int ( g_conf, "grid.text_hilite_offset_y" );
671               SDL_BlitSurface ( g_imagecache [ IMG_SELECTED_HILITE ].i, NULL /* all */, sdl_realscreen, dest );
672               dest++;
673             } // selected?
674
675             // show icon
676             mm_cache_t *ic = cache_query_icon ( appiter -> ref -> unique_id );
677             SDL_Surface *iconsurface;
678             if ( ic ) {
679               iconsurface = ic -> i;
680             } else {
681               //pnd_log ( pndn_warning, "WARNING: TBD: Need Missin-icon icon for '%s'\n", IFNULL(appiter -> ref -> title_en,"No Name") );
682
683               // no icon override; was this a pnd-file (show the unknown icon then), or was this generated from
684               // filesystem (file or directory icon)
685               if ( appiter -> ref -> object_flags & PND_DISCO_GENERATED ) {
686                 if ( appiter -> ref -> object_type == pnd_object_type_directory ) {
687                   iconsurface = g_imagecache [ IMG_FOLDER ].i;
688                 } else {
689                   iconsurface = g_imagecache [ IMG_EXECBIN ].i;
690                 }
691               } else {
692                 iconsurface = g_imagecache [ IMG_ICON_MISSING ].i;
693               }
694
695             }
696
697             // got an icon I hope?
698             if ( iconsurface ) {
699               //pnd_log ( pndn_debug, "Got an icon for '%s'\n", IFNULL(appiter -> ref -> title_en,"No Name") );
700
701               src.x = 0;
702               src.y = 0;
703               src.w = 60;
704               src.h = 60;
705               dest -> x = grid_offset_x + ( col * cell_width ) + icon_offset_x + (( icon_max_width - iconsurface -> w ) / 2);
706               dest -> y = grid_offset_y + ( displayrow * cell_height ) + icon_offset_y + (( icon_max_height - iconsurface -> h ) / 2);
707
708               SDL_BlitSurface ( iconsurface, &src, sdl_realscreen, dest );
709
710               // store touch info
711               ui_register_app ( appiter, dest -> x, dest -> y, src.w, src.h );
712
713               dest++;
714
715             }
716
717             // show text
718             if ( appiter -> ref -> title_en ) {
719               SDL_Surface *rtext;
720               SDL_Color tmpfontcolor = { font_rgba_r, font_rgba_g, font_rgba_b, font_rgba_a };
721               rtext = TTF_RenderText_Blended ( g_grid_font, appiter -> ref -> title_en, tmpfontcolor );
722               src.x = 0;
723               src.y = 0;
724               src.w = text_width < rtext -> w ? text_width : rtext -> w;
725               src.h = rtext -> h;
726               if ( rtext -> w > text_width ) {
727                 dest -> x = grid_offset_x + ( col * cell_width ) + text_clip_x;
728               } else {
729                 dest -> x = grid_offset_x + ( col * cell_width ) + text_offset_x - ( rtext -> w / 2 );
730               }
731               dest -> y = grid_offset_y + ( displayrow * cell_height ) + text_offset_y;
732               SDL_BlitSurface ( rtext, &src, sdl_realscreen, dest );
733               SDL_FreeSurface ( rtext );
734               dest++;
735             }
736
737           } // display now? or scrolled away..
738
739           // next
740           appiter = appiter -> next;
741
742         } // for column 1...X
743
744         if ( row >= ui_rows_scrolled_down ) {
745           displayrow++;
746         }
747
748         row ++;
749
750         // are we done displaying rows?
751         if ( displayrow >= row_max ) {
752           break;
753         }
754
755       } // while
756
757     } else {
758       // no apps to render?
759       pnd_log ( pndn_rem, "No applications to render?\n" );
760     } // apps to renser?
761
762   } // r_grid
763
764   // detail panel
765   if ( ui_selected && render_jobs_b & R_DETAIL ) {
766
767     unsigned int cell_offset_x = pnd_conf_get_as_int ( g_conf, "detailtext.cell_offset_x" );
768     unsigned int cell_offset_y = pnd_conf_get_as_int ( g_conf, "detailtext.cell_offset_y" );
769     unsigned int cell_width = pnd_conf_get_as_int ( g_conf, "detailtext.cell_width" );
770
771     unsigned int desty = cell_offset_y;
772
773     char buffer [ 256 ];
774
775     // full name
776     if ( ui_selected -> ref -> title_en ) {
777       SDL_Surface *rtext;
778       SDL_Color tmpfontcolor = { font_rgba_r, font_rgba_g, font_rgba_b, font_rgba_a };
779       rtext = TTF_RenderText_Blended ( g_detailtext_font, ui_selected -> ref -> title_en, tmpfontcolor );
780       src.x = 0;
781       src.y = 0;
782       src.w = rtext -> w < cell_width ? rtext -> w : cell_width;
783       src.h = rtext -> h;
784       dest -> x = cell_offset_x;
785       dest -> y = desty;
786       SDL_BlitSurface ( rtext, &src, sdl_realscreen, dest );
787       SDL_FreeSurface ( rtext );
788       dest++;
789       desty += src.h;
790     }
791
792     // category
793 #if 0
794     if ( ui_selected -> ref -> main_category ) {
795
796       sprintf ( buffer, "Category: %s", ui_selected -> ref -> main_category );
797
798       SDL_Surface *rtext;
799       SDL_Color tmpfontcolor = { font_rgba_r, font_rgba_g, font_rgba_b, font_rgba_a };
800       rtext = TTF_RenderText_Blended ( g_detailtext_font, buffer, tmpfontcolor );
801       src.x = 0;
802       src.y = 0;
803       src.w = rtext -> w < cell_width ? rtext -> w : cell_width;
804       src.h = rtext -> h;
805       dest -> x = cell_offset_x;
806       dest -> y = desty;
807       SDL_BlitSurface ( rtext, &src, sdl_realscreen, dest );
808       SDL_FreeSurface ( rtext );
809       dest++;
810       desty += src.h;
811     }
812 #endif
813
814     // clock
815     if ( ui_selected -> ref -> clockspeed ) {
816
817       sprintf ( buffer, "CPU Clock: %s", ui_selected -> ref -> clockspeed );
818
819       SDL_Surface *rtext;
820       SDL_Color tmpfontcolor = { font_rgba_r, font_rgba_g, font_rgba_b, font_rgba_a };
821       rtext = TTF_RenderText_Blended ( g_detailtext_font, buffer, tmpfontcolor );
822       src.x = 0;
823       src.y = 0;
824       src.w = rtext -> w < cell_width ? rtext -> w : cell_width;
825       src.h = rtext -> h;
826       dest -> x = cell_offset_x;
827       dest -> y = desty;
828       SDL_BlitSurface ( rtext, &src, sdl_realscreen, dest );
829       SDL_FreeSurface ( rtext );
830       dest++;
831       desty += src.h;
832     }
833
834     // show sub-app# on right side of cpu clock?
835     //if ( ui_selected -> ref -> subapp_number )
836     {
837       sprintf ( buffer, "(app#%u)", ui_selected -> ref -> subapp_number );
838
839       SDL_Surface *rtext;
840       SDL_Color tmpfontcolor = { font_rgba_r, font_rgba_g, font_rgba_b, font_rgba_a };
841       rtext = TTF_RenderText_Blended ( g_grid_font, buffer, tmpfontcolor );
842       dest -> x = cell_offset_x + cell_width - rtext -> w;
843       dest -> y = desty - src.h;
844       SDL_BlitSurface ( rtext, NULL /* full src */, sdl_realscreen, dest );
845       SDL_FreeSurface ( rtext );
846       dest++;
847     }
848
849     // info hint
850 #if 0 // merged into hint-line
851     if ( ui_selected -> ref -> info_filename ) {
852
853       sprintf ( buffer, "Documentation - hit Y" );
854
855       SDL_Surface *rtext;
856       SDL_Color tmpfontcolor = { font_rgba_r, font_rgba_g, font_rgba_b, font_rgba_a };
857       rtext = TTF_RenderText_Blended ( g_detailtext_font, buffer, tmpfontcolor );
858       src.x = 0;
859       src.y = 0;
860       src.w = rtext -> w < cell_width ? rtext -> w : cell_width;
861       src.h = rtext -> h;
862       dest -> x = cell_offset_x;
863       dest -> y = desty;
864       SDL_BlitSurface ( rtext, &src, sdl_realscreen, dest );
865       SDL_FreeSurface ( rtext );
866       dest++;
867       desty += src.h;
868     }
869 #endif
870
871     // notes
872     if ( ui_selected -> ovrh ) {
873       char *n;
874       unsigned char i;
875       char buffer [ 50 ];
876
877       desty += 5; // a touch of spacing can't hurt
878
879       for ( i = 1; i < 4; i++ ) {
880         sprintf ( buffer, "Application-%u.note-%u", ui_selected -> ref -> subapp_number, i );
881         n = pnd_conf_get_as_char ( ui_selected -> ovrh, buffer );
882
883         if ( n ) {
884           SDL_Surface *rtext;
885           SDL_Color tmpfontcolor = { font_rgba_r, font_rgba_g, font_rgba_b, font_rgba_a };
886           rtext = TTF_RenderText_Blended ( g_detailtext_font, n, tmpfontcolor );
887           src.x = 0;
888           src.y = 0;
889           src.w = rtext -> w < cell_width ? rtext -> w : cell_width;
890           src.h = rtext -> h;
891           dest -> x = cell_offset_x;
892           dest -> y = desty;
893           SDL_BlitSurface ( rtext, &src, sdl_realscreen, dest );
894           SDL_FreeSurface ( rtext );
895           dest++;
896           desty += rtext -> h;
897         }
898       } // for
899
900     } // r_detail -> notes
901
902     // preview pic
903     mm_cache_t *ic = cache_query_preview ( ui_selected -> ref -> unique_id );
904     SDL_Surface *previewpic;
905
906     if ( ic ) {
907       previewpic = ic -> i;
908     } else {
909       previewpic = g_imagecache [ IMG_PREVIEW_MISSING ].i;
910     }
911
912     if ( previewpic ) {
913       dest -> x = pnd_conf_get_as_int_d ( g_conf, "previewpic.cell_offset_x", 50 ) +
914         ( ( pnd_conf_get_as_int_d ( g_conf, "previewpic.cell_width", 50 ) - previewpic -> w ) / 2 );
915       dest -> y = pnd_conf_get_as_int_d ( g_conf, "previewpic.cell_offset_y", 50 );
916       SDL_BlitSurface ( previewpic, NULL /* whole image */, sdl_realscreen, dest );
917       dest++;
918     }
919
920   } // r_detail && selected?
921
922   // extras
923   //
924
925   // battery
926   if ( render_jobs_b & R_BG ) {
927     static int last_battlevel = 0;
928     static unsigned char batterylevel = 0;
929     char buffer [ 100 ];
930
931     if ( time ( NULL ) - last_battlevel > 60 ) {
932       batterylevel = pnd_device_get_battery_gauge_perc();
933       last_battlevel = time ( NULL );
934     }
935
936     sprintf ( buffer, "Battery: %u%%", batterylevel );
937
938     SDL_Surface *rtext;
939     SDL_Color tmpfontcolor = { font_rgba_r, font_rgba_g, font_rgba_b, font_rgba_a };
940     rtext = TTF_RenderText_Blended ( g_grid_font, buffer, tmpfontcolor );
941     dest -> x = pnd_conf_get_as_int_d ( g_conf, "display.battery_x", 20 );
942     dest -> y = pnd_conf_get_as_int_d ( g_conf, "display.battery_y", 450 );
943     SDL_BlitSurface ( rtext, NULL /* all */, sdl_realscreen, dest );
944     SDL_FreeSurface ( rtext );
945     dest++;
946   }
947
948   // hints
949   if ( pnd_conf_get_as_char ( g_conf, "display.hintline" ) ) {
950     char *buffer;
951     unsigned int hintx, hinty;
952     hintx = pnd_conf_get_as_int_d ( g_conf, "display.hint_x", 40 );
953     hinty = pnd_conf_get_as_int_d ( g_conf, "display.hint_y", 450 );
954     static unsigned int lastwidth = 3000;
955
956     if ( ui_selected && ui_selected -> ref -> info_filename ) {
957       buffer = "Documentation - hit Y";
958     } else {
959       buffer = pnd_conf_get_as_char ( g_conf, "display.hintline" );
960     }
961
962     SDL_Surface *rtext;
963     SDL_Color tmpfontcolor = { font_rgba_r, font_rgba_g, font_rgba_b, font_rgba_a };
964     rtext = TTF_RenderText_Blended ( g_grid_font, buffer, tmpfontcolor );
965
966     // clear bg
967     if ( ! ( render_jobs_b & R_BG ) ) {
968       src.x = hintx;
969       src.y = hinty;
970       src.w = lastwidth;
971       src.h = rtext -> h;
972       dest -> x = hintx;
973       dest -> y = hinty;
974       SDL_BlitSurface ( g_imagecache [ IMG_BACKGROUND_TABMASK ].i, &src, sdl_realscreen, dest );
975       dest++;
976       lastwidth = rtext -> w;
977     }
978
979     // now render text
980     dest -> x = hintx;
981     dest -> y = hinty;
982     SDL_BlitSurface ( rtext, NULL /* all */, sdl_realscreen, dest );
983     SDL_FreeSurface ( rtext );
984     dest++;
985   }
986
987   // clock time
988   if ( render_jobs_b & R_BG &&
989        pnd_conf_get_as_int_d ( g_conf, "display.clock_x", -1 ) != -1 )
990   {
991     char buffer [ 50 ];
992
993     time_t t = time ( NULL );
994     struct tm *tm = localtime ( &t );
995     strftime ( buffer, 50, "%a %H:%M %F", tm );
996
997     SDL_Surface *rtext;
998     SDL_Color tmpfontcolor = { font_rgba_r, font_rgba_g, font_rgba_b, font_rgba_a };
999     rtext = TTF_RenderText_Blended ( g_grid_font, buffer, tmpfontcolor );
1000     dest -> x = pnd_conf_get_as_int_d ( g_conf, "display.clock_x", 700 );
1001     dest -> y = pnd_conf_get_as_int_d ( g_conf, "display.clock_y", 450 );
1002     SDL_BlitSurface ( rtext, NULL /* all */, sdl_realscreen, dest );
1003     SDL_FreeSurface ( rtext );
1004     dest++;
1005   }
1006
1007   // update all the rects and send it all to sdl
1008   // - at this point, we could probably just do 1 rect, of the
1009   //   whole screen, and be faster :/
1010   SDL_UpdateRects ( sdl_realscreen, dest - rects, rects );
1011
1012 } // ui_render
1013
1014 void ui_process_input ( unsigned char block_p ) {
1015   SDL_Event event;
1016
1017   unsigned char ui_event = 0; // if we get a ui event, flip to 1 and break
1018   //static ui_sdl_button_e ui_mask = uisb_none; // current buttons down
1019
1020   while ( ! ui_event &&
1021           block_p ? SDL_WaitEvent ( &event ) : SDL_PollEvent ( &event ) )
1022   {
1023
1024     switch ( event.type ) {
1025
1026     case SDL_USEREVENT:
1027       // update something
1028
1029       if ( event.user.code == sdl_user_ticker ) {
1030
1031         // timer went off, time to load something
1032         if ( pnd_conf_get_as_int_d ( g_conf, "minimenu.load_previews_later", 0 ) ) {
1033
1034           // load the preview pics now!
1035           pnd_disco_t *iter = ui_selected -> ref;
1036
1037           if ( iter -> preview_pic1 ) {
1038
1039             if ( pnd_conf_get_as_int_d ( g_conf, "minimenu.threaded_preview", 0 ) ) {
1040               // load in bg thread, make user experience chuggy
1041
1042               g_preview_thread = SDL_CreateThread ( (void*)ui_threaded_defered_preview, iter );
1043
1044               if ( ! g_preview_thread ) {
1045                 pnd_log ( pndn_error, "ERROR: Couldn't create preview thread\n" );
1046               }
1047
1048             } else {
1049               // load it now, make user wait
1050
1051               if ( ! cache_preview ( iter, pnd_conf_get_as_int_d ( g_conf, "previewpic.cell_width", 200 ),
1052                                      pnd_conf_get_as_int_d ( g_conf, "previewpic.cell_height", 180 ) )
1053                  )
1054               {
1055                 pnd_log ( pndn_debug, "  Couldn't load preview pic: '%s' -> '%s'\n",
1056                           IFNULL(iter->title_en,"No Name"), iter -> preview_pic1 );
1057               }
1058
1059             } // threaded?
1060
1061           } // got a preview at all?
1062
1063           ui_event++;
1064         }
1065
1066       } else if ( event.user.code == sdl_user_finishedpreview ) {
1067
1068         // if we just finished the one we happen to be looking at, better redraw now; otherwise, if
1069         // we finished another, no big woop
1070         if ( ui_selected && event.user.data1 == ui_selected -> ref ) {
1071           ui_event++;
1072         }
1073
1074       } else if ( event.user.code == sdl_user_finishedicon ) {
1075         // redraw, so we can show the newly loaded icon
1076         ui_event++;
1077
1078       }
1079
1080       render_mask |= CHANGED_EVERYTHING;
1081
1082       break;
1083
1084 #if 0 // joystick motion
1085     case SDL_JOYAXISMOTION:
1086
1087       pnd_log ( PND_LOG_DEFAULT, "joystick axis\n" );
1088
1089         if ( event.jaxis.axis == 0 ) {
1090           // horiz
1091           if ( event.jaxis.value < 0 ) {
1092             ui_push_left ( 0 );
1093             pnd_log ( PND_LOG_DEFAULT, "joystick axis - LEFT\n" );
1094           } else if ( event.jaxis.value > 0 ) {
1095             ui_push_right ( 0 );
1096             pnd_log ( PND_LOG_DEFAULT, "joystick axis - RIGHT\n" );
1097           }
1098         } else if ( event.jaxis.axis == 1 ) {
1099           // vert
1100           if ( event.jaxis.value < 0 ) {
1101             ui_push_up();
1102           } else if ( event.jaxis.value > 0 ) {
1103             ui_push_down();
1104           }
1105         }
1106
1107         ui_event++;
1108
1109         break;
1110 #endif
1111
1112 #if 0 // joystick buttons
1113     case SDL_JOYBUTTONDOWN:
1114
1115       pnd_log ( PND_LOG_DEFAULT, "joystick button down %u\n", event.jbutton.button );
1116
1117       if ( event.jbutton.button == 0 ) { // B
1118         ui_mask |= uisb_b;
1119       } else if ( event.jbutton.button == 1 ) { // Y
1120         ui_mask |= uisb_y;
1121       } else if ( event.jbutton.button == 2 ) { // X
1122         ui_mask |= uisb_x;
1123       } else if ( event.jbutton.button == 3 ) { // A
1124         ui_mask |= uisb_a;
1125
1126       } else if ( event.jbutton.button == 4 ) { // Select
1127         ui_mask |= uisb_select;
1128       } else if ( event.jbutton.button == 5 ) { // Start
1129         ui_mask |= uisb_start;
1130
1131       } else if ( event.jbutton.button == 7 ) { // L
1132         ui_mask |= uisb_l;
1133       } else if ( event.jbutton.button == 8 ) { // R
1134         ui_mask |= uisb_r;
1135
1136       }
1137
1138       ui_event++;
1139
1140       break;
1141
1142     case SDL_JOYBUTTONUP:
1143
1144       pnd_log ( PND_LOG_DEFAULT, "joystick button up %u\n", event.jbutton.button );
1145
1146       if ( event.jbutton.button == 0 ) { // B
1147         ui_mask &= ~uisb_b;
1148         ui_push_exec();
1149       } else if ( event.jbutton.button == 1 ) { // Y
1150         ui_mask &= ~uisb_y;
1151       } else if ( event.jbutton.button == 2 ) { // X
1152         ui_mask &= ~uisb_x;
1153       } else if ( event.jbutton.button == 3 ) { // A
1154         ui_mask &= ~uisb_a;
1155
1156       } else if ( event.jbutton.button == 4 ) { // Select
1157         ui_mask &= ~uisb_select;
1158       } else if ( event.jbutton.button == 5 ) { // Start
1159         ui_mask &= ~uisb_start;
1160
1161       } else if ( event.jbutton.button == 7 ) { // L
1162         ui_mask &= ~uisb_l;
1163         ui_push_ltrigger();
1164       } else if ( event.jbutton.button == 8 ) { // R
1165         ui_mask &= ~uisb_r;
1166         ui_push_rtrigger();
1167
1168       }
1169
1170       ui_event++;
1171
1172       break;
1173 #endif
1174
1175 #if 1 // keyboard events
1176     case SDL_KEYUP:
1177
1178       //pnd_log ( pndn_debug, "key up %u\n", event.key.keysym.sym );
1179
1180       // SDLK_LALT -> Start
1181
1182       // directional
1183       if ( event.key.keysym.sym == SDLK_RIGHT ) {
1184         ui_push_right ( 0 );
1185         ui_event++;
1186       } else if ( event.key.keysym.sym == SDLK_LEFT ) {
1187         ui_push_left ( 0 );
1188         ui_event++;
1189       } else if ( event.key.keysym.sym == SDLK_UP ) {
1190         ui_push_up();
1191         ui_event++;
1192       } else if ( event.key.keysym.sym == SDLK_DOWN ) {
1193         ui_push_down();
1194         ui_event++;
1195       } else if ( event.key.keysym.sym == SDLK_SPACE || event.key.keysym.sym == SDLK_END ) {
1196         ui_push_exec();
1197         ui_event++;
1198       } else if ( event.key.keysym.sym == SDLK_z || event.key.keysym.sym == SDLK_RSHIFT ) {
1199         ui_push_ltrigger();
1200         ui_event++;
1201       } else if ( event.key.keysym.sym == SDLK_x || event.key.keysym.sym == SDLK_RCTRL ) {
1202         ui_push_rtrigger();
1203         ui_event++;
1204       } else if ( event.key.keysym.sym == SDLK_y || event.key.keysym.sym == SDLK_PAGEUP ) {
1205         // info
1206         if ( ui_selected ) {
1207           ui_show_info ( pnd_run_script, ui_selected -> ref );
1208           ui_event++;
1209         }
1210
1211       } else if ( event.key.keysym.sym == SDLK_LALT ) { // start button
1212         ui_push_exec();
1213         ui_event++;
1214
1215       } else if ( event.key.keysym.sym == SDLK_LCTRL /*LALT*/ ) { // select button
1216         char *opts [ 20 ] = {
1217           "Reveal hidden category",
1218           "Shutdown Pandora",
1219           "Rescan for applications",
1220           "Cache previews to SD now",
1221           "Run xfce4 from Minimenu",
1222           "Run a terminal/console",
1223           "Switch preferred GUI",
1224           "Quit (<- beware)",
1225           "Select a Minimenu skin",
1226           "About Minimenu"
1227         };
1228         int sel = ui_modal_single_menu ( opts, 10, "Minimenu", "Enter to select; other to return." );
1229
1230         char buffer [ 100 ];
1231         if ( sel == 0 ) {
1232           // do nothing
1233           ui_revealscreen();
1234         } else if ( sel == 1 ) {
1235           // shutdown
1236           sprintf ( buffer, "sudo poweroff" );
1237           system ( buffer );
1238         } else if ( sel == 2 ) {
1239           // rescan apps
1240           pnd_log ( pndn_debug, "Freeing up applications\n" );
1241           applications_free();
1242           pnd_log ( pndn_debug, "Rescanning applications\n" );
1243           applications_scan();
1244           // reset view
1245           ui_selected = NULL;
1246           ui_rows_scrolled_down = 0;
1247           // set back to first tab, to be safe
1248           ui_category = 0;
1249           ui_catshift = 0;
1250         } else if ( sel == 3 ) {
1251           // cache preview to SD now
1252           extern pnd_box_handle g_active_apps;
1253           pnd_box_handle h = g_active_apps;
1254
1255           unsigned int maxwidth, maxheight;
1256           maxwidth = pnd_conf_get_as_int_d ( g_conf, "previewpic.cell_width", 200 );
1257           maxheight = pnd_conf_get_as_int_d ( g_conf, "previewpic.cell_height", 180 );
1258
1259           pnd_disco_t *iter = pnd_box_get_head ( h );
1260
1261           while ( iter ) {
1262
1263             // cache it
1264             if ( ! cache_preview ( iter, maxwidth, maxheight ) ) {
1265               pnd_log ( pndn_debug, "Force cache: Couldn't load preview pic: '%s' -> '%s'\n",
1266                         IFNULL(iter->title_en,"No Name"), iter -> preview_pic1 );
1267             }
1268
1269             // next
1270             iter = pnd_box_get_next ( iter );
1271           } // while
1272
1273         } else if ( sel == 4 ) {
1274           // run xfce
1275           char buffer [ PATH_MAX ];
1276           sprintf ( buffer, "%s %s\n", MM_RUN, "/usr/bin/startxfce4" );
1277           emit_and_quit ( buffer );
1278         } else if ( sel == 5 ) {
1279           // run terminal
1280           char *argv[5];
1281           argv [ 0 ] = pnd_conf_get_as_char ( g_conf, "utility.terminal" );
1282           argv [ 1 ] = NULL;
1283
1284           if ( argv [ 0 ] ) {
1285             ui_forkexec ( argv );
1286           }
1287
1288         } else if ( sel == 6 ) {
1289           char buffer [ PATH_MAX ];
1290           sprintf ( buffer, "%s %s\n", MM_RUN, "/usr/pandora/scripts/op_switchgui.sh" );
1291           emit_and_quit ( buffer );
1292         } else if ( sel == 7 ) {
1293           emit_and_quit ( MM_QUIT );
1294         } else if ( sel == 8 ) {
1295           // select skin
1296           if ( ui_pick_skin() ) {
1297             emit_and_quit ( MM_RESTART );
1298           }
1299         } else if ( sel == 9 ) {
1300           // about
1301           char buffer [ PATH_MAX ];
1302           sprintf ( buffer, "%s/about.txt", g_skinpath );
1303           ui_aboutscreen ( buffer );
1304         }
1305
1306         ui_event++;
1307         render_mask |= CHANGED_EVERYTHING;
1308       }
1309
1310       // extras
1311       if ( event.key.keysym.sym == SDLK_q ) {
1312         emit_and_quit ( MM_QUIT );
1313       }
1314
1315       break;
1316 #endif
1317
1318 #if 1 // mouse / touchscreen
1319 #if 0
1320     case SDL_MOUSEBUTTONDOWN:
1321       if ( event.button.button == SDL_BUTTON_LEFT ) {
1322         cb_pointer_press ( gc, event.button.x / g_scale, event.button.y / g_scale );
1323         ui_event++;
1324       }
1325       break;
1326 #endif
1327
1328     case SDL_MOUSEBUTTONUP:
1329       if ( event.button.button == SDL_BUTTON_LEFT ) {
1330         ui_touch_act ( event.button.x, event.button.y );
1331         ui_event++;
1332       }
1333       break;
1334 #endif
1335
1336     case SDL_QUIT:
1337       exit ( 0 );
1338       break;
1339
1340     default:
1341       break;
1342
1343     } // switch event type
1344
1345   } // while poll
1346
1347   return;
1348 }
1349
1350 void ui_push_left ( unsigned char forcecoil ) {
1351
1352   if ( ! ui_selected ) {
1353     ui_push_right ( 0 );
1354     return;
1355   }
1356
1357   // what column we in?
1358   unsigned int col = ui_determine_screen_col ( ui_selected );
1359
1360   // are we already at first item?
1361   if ( forcecoil == 0 &&
1362        pnd_conf_get_as_int_d ( g_conf, "grid.wrap_horiz_samerow", 0 ) &&
1363        col == 0 )
1364   {
1365     unsigned int i = pnd_conf_get_as_int_d ( g_conf, "grid.col_max", 5 ) - 1;
1366     while ( i && ui_selected -> next ) {
1367       ui_push_right ( 0 );
1368       i--;
1369     }
1370
1371   } else if ( g_categories [ ui_category ].refs == ui_selected ) {
1372     // can't go any more left, we're at the head
1373
1374   } else {
1375     // figure out the previous item; yay for singly linked list :/
1376     mm_appref_t *i = g_categories [ ui_category ].refs;
1377     while ( i ) {
1378       if ( i -> next == ui_selected ) {
1379         ui_selected = i;
1380         break;
1381       }
1382       i = i -> next;
1383     }
1384   }
1385
1386   ui_set_selected ( ui_selected );
1387
1388   return;
1389 }
1390
1391 void ui_push_right ( unsigned char forcecoil ) {
1392
1393   if ( ui_selected ) {
1394
1395     // what column we in?
1396     unsigned int col = ui_determine_screen_col ( ui_selected );
1397
1398     // wrap same or no?
1399     if ( forcecoil == 0 &&
1400          pnd_conf_get_as_int_d ( g_conf, "grid.wrap_horiz_samerow", 0 ) &&
1401          // and selected is far-right, or last icon in category (might not be far right)
1402          ( ( col == pnd_conf_get_as_int_d ( g_conf, "grid.col_max", 5 ) - 1 ) ||
1403            ( ui_selected -> next == NULL ) )
1404        )
1405     {
1406       // same wrap
1407       //unsigned int i = pnd_conf_get_as_int_d ( g_conf, "grid.col_max", 5 ) - 1;
1408       while ( col /*i*/ ) {
1409         ui_push_left ( 0 );
1410         col--; //i--;
1411       }
1412
1413     } else {
1414       // just go to the next
1415
1416       if ( ui_selected -> next ) {
1417         ui_selected = ui_selected -> next;
1418       }
1419
1420     }
1421
1422   } else {
1423     ui_selected = g_categories [ ui_category ].refs;
1424   }
1425
1426   ui_set_selected ( ui_selected );
1427
1428   return;
1429 }
1430
1431 void ui_push_up ( void ) {
1432   unsigned char col_max = pnd_conf_get_as_int ( g_conf, "grid.col_max" );
1433
1434   if ( ! ui_selected ) {
1435     return;
1436   }
1437
1438   // what row we in?
1439   unsigned int row = ui_determine_row ( ui_selected );
1440
1441   if ( row == 0 &&
1442        pnd_conf_get_as_int_d ( g_conf, "grid.wrap_vert_stop", 1 ) == 0 )
1443   {
1444     // wrap around instead
1445
1446     unsigned int col = ui_determine_screen_col ( ui_selected );
1447
1448     // go to end
1449     ui_selected = g_categories [ ui_category ].refs;
1450     while ( ui_selected -> next ) {
1451       ui_selected = ui_selected -> next;
1452     }
1453
1454     // try to move to same column
1455     unsigned int newcol = ui_determine_screen_col ( ui_selected );
1456     if ( newcol > col ) {
1457       col = newcol - col;
1458       while ( col ) {
1459         ui_push_left ( 0 );
1460         col--;
1461       }
1462     }
1463
1464     // scroll down to show it
1465     int r = ui_determine_row ( ui_selected ) - 1;
1466     if ( r - pnd_conf_get_as_int ( g_conf, "grid.row_max" ) > 0 ) {
1467       ui_rows_scrolled_down = (unsigned int) r;
1468     }
1469
1470   } else {
1471     // stop at top/bottom
1472
1473     while ( col_max ) {
1474       ui_push_left ( 1 );
1475       col_max--;
1476     }
1477
1478   }
1479
1480   return;
1481 }
1482
1483 void ui_push_down ( void ) {
1484   unsigned char col_max = pnd_conf_get_as_int ( g_conf, "grid.col_max" );
1485
1486   if ( ui_selected ) {
1487
1488     // what row we in?
1489     unsigned int row = ui_determine_row ( ui_selected );
1490
1491     // max rows?
1492     unsigned int icon_rows = g_categories [ ui_category ].refcount / col_max;
1493     if ( g_categories [ ui_category ].refcount % col_max > 0 ) {
1494       icon_rows++;
1495     }
1496
1497     // we at the end?
1498     if ( row == ( icon_rows - 1 ) &&
1499          pnd_conf_get_as_int_d ( g_conf, "grid.wrap_vert_stop", 1 ) == 0 )
1500     {
1501
1502       unsigned char col = ui_determine_screen_col ( ui_selected );
1503
1504       ui_selected = g_categories [ ui_category ].refs;
1505
1506       while ( col ) {
1507         ui_selected = ui_selected -> next;
1508         col--;
1509       }
1510
1511       ui_rows_scrolled_down = 0;
1512
1513       render_mask |= CHANGED_EVERYTHING;
1514
1515     } else {
1516
1517       while ( col_max ) {
1518         ui_push_right ( 1 );
1519         col_max--;
1520       }
1521
1522     }
1523
1524   } else {
1525     ui_push_right ( 0 );
1526   }
1527
1528   return;
1529 }
1530
1531 void ui_push_exec ( void ) {
1532
1533   if ( ! ui_selected ) {
1534     return;
1535   }
1536
1537   // was this icon generated from filesystem, or from pnd-file?
1538   if ( ui_selected -> ref -> object_flags & PND_DISCO_GENERATED ) {
1539
1540     if ( ! ui_selected -> ref -> title_en ) {
1541       return; // no filename
1542     }
1543
1544     if ( ui_selected -> ref -> object_type == pnd_object_type_directory ) {
1545       // delve up/down the dir tree
1546
1547       if ( strcmp ( ui_selected -> ref -> title_en, ".." ) == 0 ) {
1548         // go up
1549         char *c;
1550
1551         // lop off last word; if the thing ends with /, lop that one, then the next word.
1552         while ( ( c = strrchr ( g_categories [ ui_category].fspath, '/' ) ) ) {
1553           *c = '\0'; // lop off the last hunk
1554           if ( *(c+1) != '\0' ) {
1555             break;
1556           }
1557         } // while
1558
1559         // nothing left?
1560         if ( g_categories [ ui_category].fspath [ 0 ] == '\0' ) {
1561           strcpy ( g_categories [ ui_category].fspath, "/" );
1562         }
1563
1564       } else {
1565         // go down
1566         strcat ( g_categories [ ui_category].fspath, "/" );
1567         strcat ( g_categories [ ui_category].fspath, ui_selected -> ref -> title_en );
1568       }
1569
1570       pnd_log ( pndn_debug, "Cat %s is now in path %s\n", g_categories [ ui_category ].catname, g_categories [ ui_category ].fspath );
1571
1572       // rescan the dir
1573       category_fs_restock ( &(g_categories [ ui_category]) );
1574       // forget the selection, nolonger applies
1575       ui_selected = NULL;
1576       ui_set_selected ( ui_selected );
1577       // redraw the grid
1578       render_mask |= CHANGED_SELECTION;
1579
1580     } else {
1581       // just run it arbitrarily?
1582
1583       // if this a pnd-file, or just some executable?
1584       if ( strcasestr ( ui_selected -> ref -> object_filename, PND_PACKAGE_FILEEXT ) ) {
1585         // looks like a pnd, now what do we do..
1586         pnd_box_handle h = pnd_disco_file ( ui_selected -> ref -> object_path, ui_selected -> ref -> object_filename );
1587
1588         if ( h ) {
1589           pnd_disco_t *d = pnd_box_get_head ( h );
1590           pnd_apps_exec_disco ( pnd_run_script, d, PND_EXEC_OPTION_NORUN, NULL );
1591           char buffer [ PATH_MAX ];
1592           sprintf ( buffer, "%s %s\n", MM_RUN, pnd_apps_exec_runline() );
1593           emit_and_quit ( buffer );
1594         }
1595
1596       } else {
1597         // random bin file
1598 #if 1
1599         char cwd [ PATH_MAX ];
1600         getcwd ( cwd, PATH_MAX );
1601
1602         chdir ( g_categories [ ui_category ].fspath );
1603         pnd_exec_no_wait_1 ( ui_selected -> ref -> title_en, NULL );
1604         chdir ( cwd );
1605 #else
1606         char buffer [ PATH_MAX ];
1607         sprintf ( buffer, "%s %s/%s\n", MM_RUN, g_categories [ ui_category ].fspath, ui_selected -> ref -> title_en );
1608         emit_and_quit ( buffer );
1609 #endif
1610       } // pnd or bin?
1611
1612     } // dir or file?
1613
1614   } else {
1615     pnd_apps_exec_disco ( pnd_run_script, ui_selected -> ref, PND_EXEC_OPTION_NORUN, NULL );
1616     char buffer [ PATH_MAX ];
1617     sprintf ( buffer, "%s %s\n", MM_RUN, pnd_apps_exec_runline() );
1618     emit_and_quit ( buffer );
1619   }
1620
1621   return;
1622 }
1623
1624 void ui_push_ltrigger ( void ) {
1625   unsigned char oldcat = ui_category;
1626   unsigned int screen_width = pnd_conf_get_as_int_d ( g_conf, "display.screen_width", 800 );
1627   unsigned int tab_width = pnd_conf_get_as_int ( g_conf, "tabs.tab_width" );
1628
1629   if ( g_categorycount == 0 ) {
1630     return;
1631   }
1632
1633   if ( ui_category > 0 ) {
1634     ui_category--;
1635     category_fs_restock ( &(g_categories [ ui_category ]) );
1636   } else {
1637     if ( pnd_conf_get_as_int_d ( g_conf, "tabs.wraparound", 0 ) > 0 ) {
1638       ui_category = g_categorycount - 1;
1639       ui_catshift = 0;
1640       if ( ui_category >= ( screen_width / tab_width ) ) {
1641         ui_catshift = ui_category - ( screen_width / tab_width ) + 1;
1642       }
1643       category_fs_restock ( &(g_categories [ ui_category ]) );
1644     }
1645   }
1646
1647   if ( oldcat != ui_category ) {
1648     ui_selected = NULL;
1649     ui_set_selected ( ui_selected );
1650   }
1651
1652   // make tab visible?
1653   if ( ui_catshift > 0 && ui_category == ui_catshift - 1 ) {
1654     ui_catshift--;
1655   }
1656
1657   // unscroll
1658   ui_rows_scrolled_down = 0;
1659
1660   render_mask |= CHANGED_CATEGORY;
1661
1662   return;
1663 }
1664
1665 void ui_push_rtrigger ( void ) {
1666   unsigned char oldcat = ui_category;
1667
1668   if ( g_categorycount == 0 ) {
1669     return;
1670   }
1671
1672   unsigned int screen_width = pnd_conf_get_as_int_d ( g_conf, "display.screen_width", 800 );
1673   unsigned int tab_width = pnd_conf_get_as_int ( g_conf, "tabs.tab_width" );
1674
1675   if ( ui_category < ( g_categorycount - 1 ) ) {
1676     ui_category++;
1677     category_fs_restock ( &(g_categories [ ui_category ]) );
1678   } else {
1679     if ( pnd_conf_get_as_int_d ( g_conf, "tabs.wraparound", 0 ) > 0 ) {
1680       ui_category = 0;
1681       ui_catshift = 0;
1682       category_fs_restock ( &(g_categories [ ui_category ]) );
1683     }
1684   }
1685
1686   if ( oldcat != ui_category ) {
1687     ui_selected = NULL;
1688     ui_set_selected ( ui_selected );
1689   }
1690
1691   // make tab visible?
1692   if ( ui_category > ui_catshift + ( screen_width / tab_width ) - 1 ) {
1693     ui_catshift++;
1694   }
1695
1696   // unscroll
1697   ui_rows_scrolled_down = 0;
1698
1699   render_mask |= CHANGED_CATEGORY;
1700
1701   return;
1702 }
1703
1704 SDL_Surface *ui_scale_image ( SDL_Surface *s, unsigned int maxwidth, int maxheight ) {
1705   double scale = 1000000.0;
1706   double scalex = 1000000.0;
1707   double scaley = 1000000.0;
1708   SDL_Surface *scaled;
1709
1710   scalex = (double)maxwidth / (double)s -> w;
1711
1712   if ( maxheight == -1 ) {
1713     scale = scalex;
1714   } else {
1715     scaley = (double)maxheight / (double)s -> h;
1716
1717     if ( scaley < scalex ) {
1718       scale = scaley;
1719     } else {
1720       scale = scalex;
1721     }
1722
1723   }
1724
1725   scaled = rotozoomSurface ( s, 0 /* angle*/, scale /* scale */, 1 /* smooth==1*/ );
1726   SDL_FreeSurface ( s );
1727   s = scaled;
1728
1729   return ( s );
1730 }
1731
1732 void ui_loadscreen ( void ) {
1733
1734   SDL_Rect dest;
1735
1736   unsigned int font_rgba_r = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_r", 200 );
1737   unsigned int font_rgba_g = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_g", 200 );
1738   unsigned int font_rgba_b = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_b", 200 );
1739   unsigned int font_rgba_a = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_a", 100 );
1740
1741   // clear the screen
1742   SDL_FillRect( SDL_GetVideoSurface(), NULL, 0 );
1743
1744   // render text
1745   SDL_Surface *rtext;
1746   SDL_Color tmpfontcolor = { font_rgba_r, font_rgba_g, font_rgba_b, font_rgba_a };
1747   rtext = TTF_RenderText_Blended ( g_big_font, "Setting up menu...", tmpfontcolor );
1748   dest.x = 20;
1749   dest.y = 20;
1750   SDL_BlitSurface ( rtext, NULL /* full src */, sdl_realscreen, &dest );
1751   SDL_UpdateRects ( sdl_realscreen, 1, &dest );
1752   SDL_FreeSurface ( rtext );
1753
1754   return;
1755 }
1756
1757 void ui_discoverscreen ( unsigned char clearscreen ) {
1758
1759   SDL_Rect dest;
1760
1761   unsigned int font_rgba_r = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_r", 200 );
1762   unsigned int font_rgba_g = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_g", 200 );
1763   unsigned int font_rgba_b = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_b", 200 );
1764   unsigned int font_rgba_a = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_a", 100 );
1765
1766   // clear the screen
1767   if ( clearscreen ) {
1768     SDL_FillRect( SDL_GetVideoSurface(), NULL, 0 );
1769
1770     // render background
1771     if ( g_imagecache [ IMG_BACKGROUND_800480 ].i ) {
1772       dest.x = 0;
1773       dest.y = 0;
1774       dest.w = sdl_realscreen -> w;
1775       dest.h = sdl_realscreen -> h;
1776       SDL_BlitSurface ( g_imagecache [ IMG_BACKGROUND_800480 ].i, NULL /* whole image */, sdl_realscreen, NULL /* 0,0 */ );
1777       SDL_UpdateRects ( sdl_realscreen, 1, &dest );
1778     }
1779
1780   }
1781
1782   // render text
1783   SDL_Surface *rtext;
1784   SDL_Color tmpfontcolor = { font_rgba_r, font_rgba_g, font_rgba_b, font_rgba_a };
1785   rtext = TTF_RenderText_Blended ( g_big_font, "Looking for applications...", tmpfontcolor );
1786   if ( clearscreen ) {
1787     dest.x = 20;
1788     dest.y = 20;
1789   } else {
1790     dest.x = 20;
1791     dest.y = 40;
1792   }
1793   SDL_BlitSurface ( rtext, NULL /* full src */, sdl_realscreen, &dest );
1794   SDL_UpdateRects ( sdl_realscreen, 1, &dest );
1795   SDL_FreeSurface ( rtext );
1796
1797   // render icon
1798   if ( g_imagecache [ IMG_ICON_MISSING ].i ) {
1799     dest.x = rtext -> w + 30;
1800     dest.y = 20;
1801     SDL_BlitSurface ( g_imagecache [ IMG_ICON_MISSING ].i, NULL, sdl_realscreen, &dest );
1802     SDL_UpdateRects ( sdl_realscreen, 1, &dest );
1803   }
1804
1805   return;
1806 }
1807
1808 void ui_cachescreen ( unsigned char clearscreen, char *filename ) {
1809
1810   SDL_Rect rects [ 4 ];
1811   SDL_Rect *dest = rects;
1812   SDL_Rect src;
1813   bzero ( dest, sizeof(SDL_Rect)* 4 );
1814
1815   unsigned int font_rgba_r = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_r", 200 );
1816   unsigned int font_rgba_g = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_g", 200 );
1817   unsigned int font_rgba_b = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_b", 200 );
1818   unsigned int font_rgba_a = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_a", 100 );
1819
1820   static unsigned int stepx = 0;
1821
1822   // clear the screen
1823   if ( clearscreen ) {
1824     SDL_FillRect( SDL_GetVideoSurface(), NULL, 0 );
1825
1826     // render background
1827     if ( g_imagecache [ IMG_BACKGROUND_800480 ].i ) {
1828       dest -> x = 0;
1829       dest -> y = 0;
1830       dest -> w = sdl_realscreen -> w;
1831       dest -> h = sdl_realscreen -> h;
1832       SDL_BlitSurface ( g_imagecache [ IMG_BACKGROUND_800480 ].i, NULL /* whole image */, sdl_realscreen, NULL /* 0,0 */ );
1833       dest++;
1834     }
1835
1836   } else {
1837
1838     // render background
1839     if ( g_imagecache [ IMG_BACKGROUND_800480 ].i ) {
1840       src.x = 0;
1841       src.y = 0;
1842       src.w = sdl_realscreen -> w;
1843       src.h = 100;
1844       dest -> x = 0;
1845       dest -> y = 0;
1846       dest -> w = sdl_realscreen -> w;
1847       dest -> h = sdl_realscreen -> h;
1848       SDL_BlitSurface ( g_imagecache [ IMG_BACKGROUND_800480 ].i, &src, sdl_realscreen, dest );
1849       dest++;
1850     }
1851
1852   } // clear it
1853
1854   // render text
1855   SDL_Surface *rtext;
1856   SDL_Color tmpfontcolor = { font_rgba_r, font_rgba_g, font_rgba_b, font_rgba_a };
1857   rtext = TTF_RenderText_Blended ( g_big_font, "Caching applications artwork...", tmpfontcolor );
1858   dest -> x = 20;
1859   dest -> y = 20;
1860   SDL_BlitSurface ( rtext, NULL /* full src */, sdl_realscreen, dest );
1861   SDL_FreeSurface ( rtext );
1862   dest++;
1863
1864   // render icon
1865   if ( g_imagecache [ IMG_ICON_MISSING ].i ) {
1866     dest -> x = rtext -> w + 30 + stepx;
1867     dest -> y = 20;
1868     SDL_BlitSurface ( g_imagecache [ IMG_ICON_MISSING ].i, NULL, sdl_realscreen, dest );
1869     dest++;
1870   }
1871
1872   // filename
1873   if ( filename ) {
1874     rtext = TTF_RenderText_Blended ( g_tab_font, filename, tmpfontcolor );
1875     dest -> x = 20;
1876     dest -> y = 50;
1877     SDL_BlitSurface ( rtext, NULL /* full src */, sdl_realscreen, dest );
1878     SDL_FreeSurface ( rtext );
1879     dest++;
1880   }
1881
1882   // move across
1883   stepx += 20;
1884
1885   if ( stepx > 350 ) {
1886     stepx = 0;
1887   }
1888
1889   SDL_UpdateRects ( sdl_realscreen, dest - rects, rects );
1890
1891   return;
1892 }
1893
1894 int ui_selected_index ( void ) {
1895
1896   if ( ! ui_selected ) {
1897     return ( -1 ); // no index
1898   }
1899
1900   mm_appref_t *r = g_categories [ ui_category ].refs;
1901   int counter = 0;
1902   while ( r ) {
1903     if ( r == ui_selected ) {
1904       return ( counter );
1905     }
1906     r = r -> next;
1907     counter++;
1908   }
1909
1910   return ( -1 );
1911 }
1912
1913 static mm_appref_t *timer_ref = NULL;
1914 void ui_set_selected ( mm_appref_t *r ) {
1915
1916   render_mask |= CHANGED_SELECTION;
1917
1918   if ( ! pnd_conf_get_as_int_d ( g_conf, "minimenu.load_previews_later", 0 ) ) {
1919     return; // no desire to defer anything
1920   }
1921
1922   if ( ! r ) {
1923     // cancel timer
1924     SDL_SetTimer ( 0, NULL );
1925     timer_ref = NULL;
1926     return;
1927   }
1928
1929   SDL_SetTimer ( pnd_conf_get_as_int_d ( g_conf, "previewpic.defer_timer_ms", 1000 ), ui_callback_f );
1930   timer_ref = r;
1931
1932   return;
1933 }
1934
1935 unsigned int ui_callback_f ( unsigned int t ) {
1936
1937   if ( ui_selected != timer_ref ) {
1938     return ( 0 ); // user has moved it, who cares
1939   }
1940
1941   SDL_Event e;
1942   bzero ( &e, sizeof(SDL_Event) );
1943   e.type = SDL_USEREVENT;
1944   e.user.code = sdl_user_ticker;
1945   SDL_PushEvent ( &e );
1946
1947   return ( 0 );
1948 }
1949
1950 int ui_modal_single_menu ( char *argv[], unsigned int argc, char *title, char *footer ) {
1951   SDL_Rect rects [ 40 ];
1952   SDL_Rect *dest = rects;
1953   SDL_Rect src;
1954   SDL_Surface *rtext;
1955   unsigned char max_visible = pnd_conf_get_as_int_d ( g_conf, "detailtext.max_visible" , 11 );
1956   unsigned char first_visible = 0;
1957
1958   bzero ( rects, sizeof(SDL_Rect) * 40 );
1959
1960   unsigned int sel = 0;
1961
1962   unsigned int font_rgba_r = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_r", 200 );
1963   unsigned int font_rgba_g = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_g", 200 );
1964   unsigned int font_rgba_b = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_b", 200 );
1965   unsigned int font_rgba_a = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_a", 100 );
1966
1967   SDL_Color tmpfontcolor = { font_rgba_r, font_rgba_g, font_rgba_b, font_rgba_a };
1968
1969   SDL_Color selfontcolor = { 0/*font_rgba_r*/, font_rgba_g, font_rgba_b, font_rgba_a };
1970
1971   unsigned int i;
1972   SDL_Event event;
1973
1974   while ( 1 ) {
1975
1976     // clear
1977     dest -> x = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_x", 460 );
1978     dest -> y = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_y", 60 );
1979     dest -> w = ((SDL_Surface*) g_imagecache [ IMG_DETAIL_PANEL ].i) -> w;
1980     dest -> h = ((SDL_Surface*) g_imagecache [ IMG_DETAIL_PANEL ].i) -> h;
1981     SDL_FillRect( sdl_realscreen, dest, 0 );
1982
1983     // show dialog background
1984     if ( g_imagecache [ IMG_DETAIL_BG ].i ) {
1985       src.x = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_x", 460 );
1986       src.y = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_y", 60 );
1987       src.w = ((SDL_Surface*)(g_imagecache [ IMG_DETAIL_PANEL ].i)) -> w;
1988       src.h = ((SDL_Surface*)(g_imagecache [ IMG_DETAIL_PANEL ].i)) -> h;
1989       dest -> x = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_x", 460 );
1990       dest -> y = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_y", 60 );
1991       SDL_BlitSurface ( g_imagecache [ IMG_DETAIL_BG ].i, &src, sdl_realscreen, dest );
1992       // repeat for darken?
1993       SDL_BlitSurface ( g_imagecache [ IMG_DETAIL_BG ].i, &src, sdl_realscreen, dest );
1994       SDL_BlitSurface ( g_imagecache [ IMG_DETAIL_BG ].i, &src, sdl_realscreen, dest );
1995       //SDL_UpdateRects ( sdl_realscreen, 1, &dest );
1996       dest++;
1997     }
1998
1999     // show dialog frame
2000     if ( g_imagecache [ IMG_DETAIL_PANEL ].i ) {
2001       dest -> x = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_x", 460 );
2002       dest -> y = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_y", 60 );
2003       SDL_BlitSurface ( g_imagecache [ IMG_DETAIL_PANEL ].i, NULL /* whole image */, sdl_realscreen, dest );
2004       //SDL_UpdateRects ( sdl_realscreen, 1, &dest );
2005       dest++;
2006     }
2007
2008     // show header
2009     if ( title ) {
2010       rtext = TTF_RenderText_Blended ( g_tab_font, title, tmpfontcolor );
2011       dest -> x = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_x", 460 ) + 20;
2012       dest -> y = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_y", 60 ) + 20;
2013       SDL_BlitSurface ( rtext, NULL /* full src */, sdl_realscreen, dest );
2014       SDL_FreeSurface ( rtext );
2015       dest++;
2016     }
2017
2018     // show footer
2019     if ( footer ) {
2020       rtext = TTF_RenderText_Blended ( g_tab_font, footer, tmpfontcolor );
2021       dest -> x = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_x", 460 ) + 20;
2022       dest -> y = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_y", 60 ) +
2023         ((SDL_Surface*) g_imagecache [ IMG_DETAIL_PANEL ].i) -> h
2024         - 60;
2025       SDL_BlitSurface ( rtext, NULL /* full src */, sdl_realscreen, dest );
2026       SDL_FreeSurface ( rtext );
2027       dest++;
2028     }
2029
2030     // show options
2031     for ( i = first_visible; i < first_visible + max_visible && i < argc; i++ ) {
2032
2033       // show options
2034       if ( sel == i ) {
2035         rtext = TTF_RenderText_Blended ( g_tab_font, argv [ i ], selfontcolor );
2036       } else {
2037         rtext = TTF_RenderText_Blended ( g_tab_font, argv [ i ], tmpfontcolor );
2038       }
2039       dest -> x = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_x", 460 ) + 20;
2040       dest -> y = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_y", 60 ) + 40 + ( 20 * ( i + 1 - first_visible ) );
2041       SDL_BlitSurface ( rtext, NULL /* full src */, sdl_realscreen, dest );
2042       SDL_FreeSurface ( rtext );
2043       dest++;
2044
2045     } // for
2046
2047     // update all the rects and send it all to sdl
2048     SDL_UpdateRects ( sdl_realscreen, dest - rects, rects );
2049     dest = rects;
2050
2051     // check for input
2052     while ( SDL_WaitEvent ( &event ) ) {
2053
2054       switch ( event.type ) {
2055
2056       case SDL_KEYUP:
2057
2058         if ( event.key.keysym.sym == SDLK_UP ) {
2059           if ( sel ) {
2060             sel--;
2061
2062             if ( sel < first_visible ) {
2063               first_visible--;
2064             }
2065
2066           }
2067         } else if ( event.key.keysym.sym == SDLK_DOWN ) {
2068
2069           if ( sel < argc - 1 ) {
2070             sel++;
2071
2072             // ensure visibility
2073             if ( sel >= first_visible + max_visible ) {
2074               first_visible++;
2075             }
2076
2077           }
2078
2079         } else if ( event.key.keysym.sym == SDLK_RETURN ) {
2080           return ( sel );
2081
2082         } else if ( event.key.keysym.sym == SDLK_q ) {
2083           exit ( 0 );
2084
2085         } else {
2086           return ( -1 ); // nada
2087         }
2088
2089         break;
2090
2091       } // switch
2092
2093       break;
2094     } // while
2095
2096   } // while
2097
2098   return ( -1 );
2099 }
2100
2101 unsigned char ui_determine_row ( mm_appref_t *a ) {
2102   unsigned int row = 0;
2103
2104   mm_appref_t *i = g_categories [ ui_category ].refs;
2105   while ( i != a ) {
2106     i = i -> next;
2107     row++;
2108   } // while
2109   row /= pnd_conf_get_as_int_d ( g_conf, "grid.col_max", 5 );
2110
2111   return ( row );
2112 }
2113
2114 unsigned char ui_determine_screen_row ( mm_appref_t *a ) {
2115   return ( ui_determine_row ( a ) % pnd_conf_get_as_int_d ( g_conf, "grid.row_max", 5 ) );
2116 }
2117
2118 unsigned char ui_determine_screen_col ( mm_appref_t *a ) {
2119   unsigned int col = 0;
2120
2121   mm_appref_t *i = g_categories [ ui_category ].refs;
2122   while ( i != a ) {
2123     i = i -> next;
2124     col++;
2125   } // while
2126   col %= pnd_conf_get_as_int_d ( g_conf, "grid.col_max", 5 );
2127
2128   return ( col );
2129 }
2130
2131 unsigned char ui_show_info ( char *pndrun, pnd_disco_t *p ) {
2132   char *viewer, *searchpath;
2133   pnd_conf_handle desktoph;
2134
2135   // viewer
2136   searchpath = pnd_conf_query_searchpath();
2137
2138   desktoph = pnd_conf_fetch_by_id ( pnd_conf_desktop, searchpath );
2139
2140   if ( ! desktoph ) {
2141     return ( 0 );
2142   }
2143
2144   viewer = pnd_conf_get_as_char ( desktoph, "info.viewer" );
2145
2146   if ( ! viewer ) {
2147     return ( 0 ); // no way to view the file
2148   }
2149
2150   // etc
2151   if ( ! p -> unique_id ) {
2152     return ( 0 );
2153   }
2154
2155   if ( ! p -> info_filename ) {
2156     return ( 0 );
2157   }
2158
2159   if ( ! p -> info_name ) {
2160     return ( 0 );
2161   }
2162
2163   if ( ! pndrun ) {
2164     return ( 0 );
2165   }
2166
2167   // exec line
2168   char args [ 1001 ];
2169   char *pargs = args;
2170   if ( pnd_conf_get_as_char ( desktoph, "info.viewer_args" ) ) {
2171     snprintf ( pargs, 1001, "%s %s",
2172                pnd_conf_get_as_char ( desktoph, "info.viewer_args" ), p -> info_filename );
2173   } else {
2174     pargs = NULL;
2175   }
2176
2177   char pndfile [ 1024 ];
2178   if ( p -> object_type == pnd_object_type_directory ) {
2179     // for PXML-app-dir, pnd_run.sh doesn't want the PXML.xml.. it just wants the dir-name
2180     strncpy ( pndfile, p -> object_path, 1000 );
2181   } else if ( p -> object_type == pnd_object_type_pnd ) {
2182     // pnd_run.sh wants the full path and filename for the .pnd file
2183     snprintf ( pndfile, 1020, "%s/%s", p -> object_path, p -> object_filename );
2184   }
2185
2186   if ( ! pnd_apps_exec ( pndrun, pndfile, p -> unique_id, viewer, p -> startdir, pargs,
2187                          p -> clockspeed ? atoi ( p -> clockspeed ) : 0, PND_EXEC_OPTION_NORUN ) )
2188   {
2189     return ( 0 );
2190   }
2191
2192   pnd_log ( pndn_debug, "Info Exec=%s\n", pnd_apps_exec_runline() );
2193
2194   // try running it
2195   int x;
2196   if ( ( x = fork() ) < 0 ) {
2197     pnd_log ( pndn_error, "ERROR: Couldn't fork()\n" );
2198     return ( 0 );
2199   }
2200
2201   if ( x == 0 ) {
2202     execl ( "/bin/sh", "/bin/sh", "-c", pnd_apps_exec_runline(), (char*)NULL );
2203     pnd_log ( pndn_error, "ERROR: Couldn't exec(%s)\n", pnd_apps_exec_runline() );
2204     return ( 0 );
2205   }
2206
2207   return ( 1 );
2208 }
2209
2210 typedef struct {
2211   SDL_Rect r;
2212   int catnum;
2213   mm_appref_t *ref;
2214 } ui_touch_t;
2215 #define MAXTOUCH 100
2216 ui_touch_t ui_touchrects [ MAXTOUCH ];
2217 unsigned char ui_touchrect_count = 0;
2218
2219 void ui_register_reset ( void ) {
2220   bzero ( ui_touchrects, sizeof(ui_touch_t)*MAXTOUCH );
2221   ui_touchrect_count = 0;
2222   return;
2223 }
2224
2225 void ui_register_tab ( unsigned char catnum, unsigned int x, unsigned int y, unsigned int w, unsigned int h ) {
2226
2227   if ( ui_touchrect_count == MAXTOUCH ) {
2228     return;
2229   }
2230
2231   ui_touchrects [ ui_touchrect_count ].r.x = x;
2232   ui_touchrects [ ui_touchrect_count ].r.y = y;
2233   ui_touchrects [ ui_touchrect_count ].r.w = w;
2234   ui_touchrects [ ui_touchrect_count ].r.h = h;
2235   ui_touchrects [ ui_touchrect_count ].catnum = catnum;
2236   ui_touchrect_count++;
2237
2238   return;
2239 }
2240
2241 void ui_register_app ( mm_appref_t *app, unsigned int x, unsigned int y, unsigned int w, unsigned int h ) {
2242
2243   if ( ui_touchrect_count == MAXTOUCH ) {
2244     return;
2245   }
2246
2247   ui_touchrects [ ui_touchrect_count ].r.x = x;
2248   ui_touchrects [ ui_touchrect_count ].r.y = y;
2249   ui_touchrects [ ui_touchrect_count ].r.w = w;
2250   ui_touchrects [ ui_touchrect_count ].r.h = h;
2251   ui_touchrects [ ui_touchrect_count ].ref = app;
2252   ui_touchrect_count++;
2253
2254   return;
2255 }
2256
2257 void ui_touch_act ( unsigned int x, unsigned int y ) {
2258
2259   unsigned char i;
2260   ui_touch_t *t;
2261
2262   for ( i = 0; i < ui_touchrect_count; i++ ) {
2263     t = &(ui_touchrects [ i ]);
2264
2265     if ( x >= t -> r.x &&
2266          x <= t -> r.x + t -> r.w &&
2267          y >= t -> r.y &&
2268          y <= t -> r.y + t -> r.h
2269        )
2270     {
2271
2272       if ( t -> ref ) {
2273         ui_selected = t -> ref;
2274         ui_push_exec();
2275       } else {
2276         if ( ui_category != t -> catnum ) {
2277           ui_selected = NULL;
2278         }
2279         ui_category = t -> catnum;
2280         render_mask |= CHANGED_CATEGORY;
2281       }
2282
2283       break;
2284     }
2285
2286   } // for
2287
2288   return;
2289 }
2290
2291 unsigned char ui_forkexec ( char *argv[] ) {
2292   char *fooby = argv[0];
2293   int x;
2294
2295   if ( ( x = fork() ) < 0 ) {
2296     pnd_log ( pndn_error, "ERROR: Couldn't fork() for '%s'\n", fooby );
2297     return ( 0 );
2298   }
2299
2300   if ( x == 0 ) { // child
2301     execv ( fooby, argv );
2302     pnd_log ( pndn_error, "ERROR: Couldn't exec(%s)\n", fooby );
2303     return ( 0 );
2304   }
2305
2306   // parent, success
2307   return ( 1 );
2308 }
2309
2310 unsigned char ui_threaded_defered_preview ( pnd_disco_t *p ) {
2311
2312   if ( ! cache_preview ( p, pnd_conf_get_as_int_d ( g_conf, "previewpic.cell_width", 200 ),
2313                          pnd_conf_get_as_int_d ( g_conf, "previewpic.cell_height", 180 ) )
2314      )
2315   {
2316     pnd_log ( pndn_debug, "THREAD: Couldn't load preview pic: '%s' -> '%s'\n",
2317               IFNULL(p->title_en,"No Name"), p -> preview_pic1 );
2318   }
2319
2320   // trigger that we completed
2321   SDL_Event e;
2322   bzero ( &e, sizeof(SDL_Event) );
2323   e.type = SDL_USEREVENT;
2324   e.user.code = sdl_user_finishedpreview;
2325   e.user.data1 = p;
2326   SDL_PushEvent ( &e );
2327
2328   return ( 0 );
2329 }
2330
2331 SDL_Thread *g_icon_thread = NULL;
2332 void ui_post_scan ( void ) {
2333
2334   // if deferred icon load, kick off the thread now
2335   if ( pnd_conf_get_as_int_d ( g_conf, "minimenu.load_icons_later", 0 ) == 1 ) {
2336
2337     g_icon_thread = SDL_CreateThread ( (void*)ui_threaded_defered_icon, NULL );
2338
2339     if ( ! g_icon_thread ) {
2340       pnd_log ( pndn_error, "ERROR: Couldn't create icon thread\n" );
2341     }
2342
2343   } // deferred icon load
2344
2345   return;
2346 }
2347
2348 unsigned char ui_threaded_defered_icon ( void *p ) {
2349   extern pnd_box_handle g_active_apps;
2350   pnd_box_handle h = g_active_apps;
2351
2352   unsigned char maxwidth, maxheight;
2353   maxwidth = pnd_conf_get_as_int_d ( g_conf, "grid.icon_max_width", 50 );
2354   maxheight = pnd_conf_get_as_int_d ( g_conf, "grid.icon_max_height", 50 );
2355
2356   pnd_disco_t *iter = pnd_box_get_head ( h );
2357
2358   while ( iter ) {
2359
2360     // cache it
2361     if ( iter -> pnd_icon_pos &&
2362          ! cache_icon ( iter, maxwidth, maxheight ) )
2363     {
2364       pnd_log ( pndn_warning, "  Couldn't load icon: '%s'\n", IFNULL(iter->title_en,"No Name") );
2365     } else {
2366
2367       // trigger that we completed
2368       SDL_Event e;
2369       bzero ( &e, sizeof(SDL_Event) );
2370       e.type = SDL_USEREVENT;
2371       e.user.code = sdl_user_finishedicon;
2372       SDL_PushEvent ( &e );
2373
2374       //pnd_log ( pndn_warning, "  Finished deferred load icon: '%s'\n", IFNULL(iter->title_en,"No Name") );
2375       usleep ( pnd_conf_get_as_int_d ( g_conf, "minimenu.defer_icon_us", 50000 ) );
2376
2377     }
2378
2379     // next
2380     iter = pnd_box_get_next ( iter );
2381   } // while
2382
2383   return ( 0 );
2384 }
2385
2386 void ui_show_hourglass ( unsigned char updaterect ) {
2387
2388   SDL_Rect dest;
2389   SDL_Surface *s = g_imagecache [ IMG_HOURGLASS ].i;
2390
2391   dest.x = ( 800 - s -> w ) / 2;
2392   dest.y = ( 480 - s -> h ) / 2;
2393
2394   SDL_BlitSurface ( s, NULL /* whole image */, sdl_realscreen, &dest );
2395
2396   if ( updaterect ) {
2397     SDL_UpdateRects ( sdl_realscreen, 1, &dest );
2398   }
2399
2400   return;
2401 }
2402
2403 unsigned char ui_pick_skin ( void ) {
2404 #define MAXSKINS 10
2405   char *skins [ MAXSKINS ];
2406   unsigned char iter;
2407
2408   char *searchpath = pnd_conf_get_as_char ( g_conf, "minimenu.skin_searchpath" );
2409   char tempname [ 100 ];
2410
2411   iter = 0;
2412
2413   skins [ iter++ ] = "No skin change";
2414
2415   SEARCHPATH_PRE
2416   {
2417     DIR *d = opendir ( buffer );
2418
2419     if ( d ) {
2420       struct dirent *dd;
2421
2422       while ( ( dd = readdir ( d ) ) ) {
2423
2424         if ( dd -> d_name [ 0 ] == '.' ) {
2425           // ignore
2426         } else if ( ( dd -> d_type == DT_DIR || dd -> d_type == DT_UNKNOWN ) &&
2427                     iter < MAXSKINS )
2428         {
2429           snprintf ( tempname, 100, "Skin: %s", dd -> d_name );
2430           skins [ iter++ ] = strdup ( tempname );
2431         }
2432
2433       }
2434
2435       closedir ( d );
2436     }
2437
2438   }
2439   SEARCHPATH_POST
2440
2441   int sel = ui_modal_single_menu ( skins, iter, "Skins", "Enter to select; other to return." );
2442
2443   // did they pick one?
2444   if ( sel > 0 ) {
2445     FILE *f;
2446
2447     char *s = strdup ( pnd_conf_get_as_char ( g_conf, "minimenu.skin_selected" ) );
2448     s = pnd_expand_tilde ( s );
2449
2450     f = fopen ( s, "w" );
2451
2452     free ( s );
2453
2454     if ( f ) {
2455       fprintf ( f, "%s\n", skins [ sel ] + 6 );
2456       fclose ( f );
2457     }
2458
2459     return ( 1 );
2460   }
2461
2462   return ( 0 );
2463 }
2464
2465 void ui_aboutscreen ( char *textpath ) {
2466 #define PIXELW 7
2467 #define PIXELH 7
2468 #define MARGINW 3
2469 #define MARGINH 3
2470 #define SCRW 800
2471 #define SCRH 480
2472 #define ROWS SCRH / ( PIXELH + MARGINH )
2473 #define COLS SCRW / ( PIXELW + MARGINW )
2474
2475   unsigned char pixelboard [ ROWS * COLS ]; // pixel heat
2476   bzero ( pixelboard, ROWS * COLS );
2477
2478   SDL_Surface *rtext;
2479   SDL_Rect r;
2480
2481   SDL_Color rtextc = { 200, 200, 200, 100 };
2482
2483   // pixel scroller
2484   char *textloop [ 500 ];
2485   unsigned int textmax = 0;
2486   bzero ( textloop, 500 * sizeof(char*) );
2487
2488   // cursor scroller
2489   char cbuffer [ 50000 ];
2490   bzero ( cbuffer, 50000 );
2491   unsigned int crevealed = 0;
2492
2493   FILE *f = fopen ( textpath, "r" );
2494
2495   if ( ! f ) {
2496     pnd_log ( pndn_error, "ERROR: Couldn't open about text: %s\n", textpath );
2497     return;
2498   }
2499
2500   char textbuf [ 100 ];
2501   while ( fgets ( textbuf, 100, f ) ) {
2502
2503     // add to full buffer
2504     strncat ( cbuffer, textbuf, 50000 );
2505
2506     // chomp
2507     if ( strchr ( textbuf, '\n' ) ) {
2508       * strchr ( textbuf, '\n' ) = '\0';
2509     }
2510
2511     // add to pixel loop
2512     if ( 1||textbuf [ 0 ] ) {
2513       textloop [ textmax ] = strdup ( textbuf );
2514       textmax++;
2515     }
2516
2517   } // while fgets
2518
2519   fclose ( f );
2520
2521   unsigned int textiter = 0;
2522   while ( textiter < textmax ) {
2523     char *text = textloop [ textiter ];
2524
2525     rtext = NULL;
2526     if ( text [ 0 ] ) {
2527       // render to surface
2528       rtext = TTF_RenderText_Blended ( g_grid_font, text, rtextc );
2529
2530       // render font to pixelboard
2531       unsigned int px, py;
2532       unsigned char *ph;
2533       unsigned int *pixels = rtext -> pixels;
2534       unsigned char cr, cg, cb, ca;
2535       for ( py = 0; py < rtext -> h; py ++ ) {
2536         for ( px = 0; px < ( rtext -> w > COLS ? COLS : rtext -> w ); px++ ) {
2537
2538           SDL_GetRGBA ( pixels [ ( py * rtext -> pitch / 4 ) + px ],
2539                         rtext -> format, &cr, &cg, &cb, &ca );
2540
2541           if ( ca != 0 ) {
2542
2543             ph = pixelboard + ( /*y offset */ 30 * COLS ) + ( py * COLS ) + px /* / 2 */;
2544
2545             if ( *ph < 100 ) {
2546               *ph = 100;
2547             }
2548
2549             ca /= 5;
2550             if ( *ph + ca < 250 ) {
2551               *ph += ca;
2552             }
2553
2554           } // got a pixel?
2555
2556         } // x
2557       } // y
2558
2559     } // got text?
2560
2561     unsigned int runcount = 10;
2562     while ( runcount-- ) {
2563
2564       // clear display
2565       SDL_FillRect( sdl_realscreen, NULL /* whole */, 0 );
2566
2567       // render pixelboard
2568       unsigned int x, y;
2569       unsigned int c;
2570       for ( y = 0; y < ROWS; y++ ) {
2571         for ( x = 0; x < COLS; x++ ) {
2572
2573           if ( 1||pixelboard [ ( y * COLS ) + x ] ) {
2574
2575             // position
2576             r.x = x * ( PIXELW + MARGINW );
2577             r.y = y * ( PIXELH + MARGINH );
2578             r.w = PIXELW;
2579             r.h = PIXELH;
2580             // heat -> colour
2581             c = SDL_MapRGB ( sdl_realscreen -> format, 100 /* r */, 0 /* g */, pixelboard [ ( y * COLS ) + x ] );
2582             // render
2583             SDL_FillRect( sdl_realscreen, &r /* whole */, c );
2584
2585           }
2586
2587         } // x
2588       } // y
2589
2590       // cool pixels
2591       unsigned char *pc = pixelboard;
2592       for ( y = 0; y < ROWS; y++ ) {
2593         for ( x = 0; x < COLS; x++ ) {
2594
2595           if ( *pc > 10 ) {
2596             (*pc) -= 3;
2597           }
2598
2599           pc++;
2600         } // x
2601       } // y
2602
2603       // slide pixels upwards
2604       memmove ( pixelboard, pixelboard + COLS, ( COLS * ROWS ) - COLS );
2605
2606       // render actual readable text
2607       {
2608
2609         // display up to cursor
2610         SDL_Rect dest;
2611         unsigned int cdraw = 0;
2612         SDL_Surface *cs;
2613         char ctb [ 2 ];
2614
2615         if ( crevealed > 200 ) {
2616           cdraw = crevealed - 200;
2617         }
2618
2619         dest.x = 400;
2620         dest.y = 20;
2621
2622         for ( ; cdraw < crevealed; cdraw++ ) {
2623           ctb [ 0 ] = cbuffer [ cdraw ];
2624           ctb [ 1 ] = '\0';
2625           // move over or down
2626           if ( cbuffer [ cdraw ] == '\n' ) {
2627             // EOL
2628             dest.x = 400;
2629             dest.y += 14;
2630
2631             if ( dest.y > 450 ) {
2632               dest.y = 450;
2633             }
2634
2635           } else {
2636             // draw the char
2637             cs = TTF_RenderText_Blended ( g_tab_font, ctb, rtextc );
2638             if ( cs ) {
2639               SDL_BlitSurface ( cs, NULL /* all */, sdl_realscreen, &dest );
2640               SDL_FreeSurface ( cs );
2641               // over
2642               dest.x += cs -> w;
2643             }
2644           }
2645
2646         }
2647
2648         dest.w = 10;
2649         dest.h = 20;
2650         SDL_FillRect ( sdl_realscreen, &dest /* whole */, 220 );
2651
2652         // increment cursor to next character
2653         if ( cbuffer [ crevealed ] != '\0' ) {
2654           crevealed++;
2655         }
2656
2657       } // draw cursor text
2658
2659       // reveal
2660       //
2661       SDL_UpdateRect ( sdl_realscreen, 0, 0, 0, 0 ); // whole screen
2662
2663       usleep ( 50000 );
2664
2665       // any button? if so, about
2666       {
2667         SDL_PumpEvents();
2668
2669         SDL_Event e;
2670
2671         if ( SDL_PeepEvents ( &e, 1, SDL_GETEVENT, SDL_EVENTMASK(SDL_KEYUP) ) > 0 ) {
2672           return;
2673         }
2674
2675       }
2676
2677     } // while cooling
2678
2679     if ( rtext ) {
2680       SDL_FreeSurface ( rtext );
2681     }
2682
2683     textiter++;
2684   } // while more text
2685
2686   // free up
2687   unsigned int i;
2688   for ( i = 0; i < textmax; i++ ) {
2689     if ( textloop [ i ] ) {
2690       free ( textloop [ i ] );
2691       textloop [ i ] = 0;
2692     }
2693   }
2694
2695   return;
2696 }
2697
2698 void ui_revealscreen ( void ) {
2699   char *labels [ 500 ];
2700   unsigned int labelmax = 0;
2701   unsigned int i;
2702
2703   if ( ! _categories_inviscount ) {
2704     return; // nothing to do
2705   }
2706
2707   for ( i = 0; i < _categories_inviscount; i++ ) {
2708     labels [ labelmax++ ] = _categories_invis [ i ].catname;
2709   }
2710
2711   int sel = ui_modal_single_menu ( labels, labelmax, "Temporary Category Reveal",
2712                                    "Enter to select; other to return." );
2713
2714   if ( sel >= 0 ) {
2715
2716     if ( category_query ( _categories_invis [ sel ].catname ) ) {
2717       // already present
2718       return;
2719     }
2720
2721     // fix up category name, if its been hacked
2722     if ( strchr ( _categories_invis [ sel ].catname, '.' ) ) {
2723       char *t = _categories_invis [ sel ].catname;
2724       _categories_invis [ sel ].catname = strdup ( strchr ( _categories_invis [ sel ].catname, '.' ) + 1 );
2725       free ( t );
2726     }
2727     // copy invisi-cat into live-cat
2728     memmove ( &(g_categories [ g_categorycount ]), &(_categories_invis [ sel ]), sizeof(mm_category_t) );
2729     g_categorycount++;
2730     // move subsequent invisi-cats up, so the selected invisi-cat is nolonger existing in invisi-list at
2731     // all (avoid double-free() later)
2732     memmove ( &(_categories_invis [ sel ]), &(_categories_invis [ sel + 1 ]), sizeof(mm_category_t) * ( _categories_inviscount - sel - 1 ) );
2733     _categories_inviscount--;
2734
2735     // switch to the new category
2736     ui_category = g_categorycount - 1;
2737
2738     // ensure visibility
2739     unsigned int screen_width = pnd_conf_get_as_int_d ( g_conf, "display.screen_width", 800 );
2740     unsigned int tab_width = pnd_conf_get_as_int ( g_conf, "tabs.tab_width" );
2741     if ( ui_category > ui_catshift + ( screen_width / tab_width ) - 1 ) {
2742       ui_catshift = ui_category - ( screen_width / tab_width ) + 1;
2743     }
2744
2745     // redraw tabs
2746     render_mask |= CHANGED_CATEGORY;
2747   }
2748
2749   return;
2750 }