58ee9f9cab4ec97b764eb5a5cf61bb7152daabbe
[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 a terminal/console",
1222           "Run another GUI (xfce, etc)",
1223           "Quit (<- beware)",
1224           "Select a Minimenu skin",
1225           "About Minimenu"
1226         };
1227         int sel = ui_modal_single_menu ( opts, 9, "Minimenu", "Enter to select; other to return." );
1228
1229         char buffer [ 100 ];
1230         if ( sel == 0 ) {
1231           // do nothing
1232           ui_revealscreen();
1233         } else if ( sel == 1 ) {
1234           // shutdown
1235           sprintf ( buffer, "sudo poweroff" );
1236           system ( buffer );
1237         } else if ( sel == 2 ) {
1238           // rescan apps
1239           pnd_log ( pndn_debug, "Freeing up applications\n" );
1240           applications_free();
1241           pnd_log ( pndn_debug, "Rescanning applications\n" );
1242           applications_scan();
1243         } else if ( sel == 3 ) {
1244           // cache preview to SD now
1245           extern pnd_box_handle g_active_apps;
1246           pnd_box_handle h = g_active_apps;
1247
1248           unsigned int maxwidth, maxheight;
1249           maxwidth = pnd_conf_get_as_int_d ( g_conf, "previewpic.cell_width", 200 );
1250           maxheight = pnd_conf_get_as_int_d ( g_conf, "previewpic.cell_height", 180 );
1251
1252           pnd_disco_t *iter = pnd_box_get_head ( h );
1253
1254           while ( iter ) {
1255
1256             // cache it
1257             if ( ! cache_preview ( iter, maxwidth, maxheight ) ) {
1258               pnd_log ( pndn_debug, "Force cache: Couldn't load preview pic: '%s' -> '%s'\n",
1259                         IFNULL(iter->title_en,"No Name"), iter -> preview_pic1 );
1260             }
1261
1262             // next
1263             iter = pnd_box_get_next ( iter );
1264           } // while
1265
1266         } else if ( sel == 4 ) {
1267           // run terminal
1268           char *argv[5];
1269           argv [ 0 ] = pnd_conf_get_as_char ( g_conf, "utility.terminal" );
1270           argv [ 1 ] = NULL;
1271
1272           if ( argv [ 0 ] ) {
1273             ui_forkexec ( argv );
1274           }
1275
1276         } else if ( sel == 5 ) {
1277           char buffer [ PATH_MAX ];
1278           sprintf ( buffer, "%s %s\n", MM_RUN, "/usr/pandora/scripts/op_switchgui.sh" );
1279           emit_and_quit ( buffer );
1280         } else if ( sel == 6 ) {
1281           emit_and_quit ( MM_QUIT );
1282         } else if ( sel == 7 ) {
1283           // select skin
1284           if ( ui_pick_skin() ) {
1285             emit_and_quit ( MM_RESTART );
1286           }
1287         } else if ( sel == 8 ) {
1288           // about
1289           char buffer [ PATH_MAX ];
1290           sprintf ( buffer, "%s/about.txt", g_skinpath );
1291           ui_aboutscreen ( buffer );
1292         }
1293
1294         ui_event++;
1295         render_mask |= CHANGED_EVERYTHING;
1296       }
1297
1298       // extras
1299       if ( event.key.keysym.sym == SDLK_q ) {
1300         emit_and_quit ( MM_QUIT );
1301       }
1302
1303       break;
1304 #endif
1305
1306 #if 1 // mouse / touchscreen
1307 #if 0
1308     case SDL_MOUSEBUTTONDOWN:
1309       if ( event.button.button == SDL_BUTTON_LEFT ) {
1310         cb_pointer_press ( gc, event.button.x / g_scale, event.button.y / g_scale );
1311         ui_event++;
1312       }
1313       break;
1314 #endif
1315
1316     case SDL_MOUSEBUTTONUP:
1317       if ( event.button.button == SDL_BUTTON_LEFT ) {
1318         ui_touch_act ( event.button.x, event.button.y );
1319         ui_event++;
1320       }
1321       break;
1322 #endif
1323
1324     case SDL_QUIT:
1325       exit ( 0 );
1326       break;
1327
1328     default:
1329       break;
1330
1331     } // switch event type
1332
1333   } // while poll
1334
1335   return;
1336 }
1337
1338 void ui_push_left ( unsigned char forcecoil ) {
1339
1340   if ( ! ui_selected ) {
1341     ui_push_right ( 0 );
1342     return;
1343   }
1344
1345   // what column we in?
1346   unsigned int col = ui_determine_screen_col ( ui_selected );
1347
1348   // are we already at first item?
1349   if ( forcecoil == 0 &&
1350        pnd_conf_get_as_int_d ( g_conf, "grid.wrap_horiz_samerow", 0 ) &&
1351        col == 0 )
1352   {
1353     unsigned int i = pnd_conf_get_as_int_d ( g_conf, "grid.col_max", 5 ) - 1;
1354     while ( i && ui_selected -> next ) {
1355       ui_push_right ( 0 );
1356       i--;
1357     }
1358
1359   } else if ( g_categories [ ui_category ].refs == ui_selected ) {
1360     // can't go any more left, we're at the head
1361
1362   } else {
1363     // figure out the previous item; yay for singly linked list :/
1364     mm_appref_t *i = g_categories [ ui_category ].refs;
1365     while ( i ) {
1366       if ( i -> next == ui_selected ) {
1367         ui_selected = i;
1368         break;
1369       }
1370       i = i -> next;
1371     }
1372   }
1373
1374   ui_set_selected ( ui_selected );
1375
1376   return;
1377 }
1378
1379 void ui_push_right ( unsigned char forcecoil ) {
1380
1381   if ( ui_selected ) {
1382
1383     // what column we in?
1384     unsigned int col = ui_determine_screen_col ( ui_selected );
1385
1386     // wrap same or no?
1387     if ( forcecoil == 0 &&
1388          pnd_conf_get_as_int_d ( g_conf, "grid.wrap_horiz_samerow", 0 ) &&
1389          // and selected is far-right, or last icon in category (might not be far right)
1390          ( ( col == pnd_conf_get_as_int_d ( g_conf, "grid.col_max", 5 ) - 1 ) ||
1391            ( ui_selected -> next == NULL ) )
1392        )
1393     {
1394       // same wrap
1395       //unsigned int i = pnd_conf_get_as_int_d ( g_conf, "grid.col_max", 5 ) - 1;
1396       while ( col /*i*/ ) {
1397         ui_push_left ( 0 );
1398         col--; //i--;
1399       }
1400
1401     } else {
1402       // just go to the next
1403
1404       if ( ui_selected -> next ) {
1405         ui_selected = ui_selected -> next;
1406       }
1407
1408     }
1409
1410   } else {
1411     ui_selected = g_categories [ ui_category ].refs;
1412   }
1413
1414   ui_set_selected ( ui_selected );
1415
1416   return;
1417 }
1418
1419 void ui_push_up ( void ) {
1420   unsigned char col_max = pnd_conf_get_as_int ( g_conf, "grid.col_max" );
1421
1422   if ( ! ui_selected ) {
1423     return;
1424   }
1425
1426   // what row we in?
1427   unsigned int row = ui_determine_row ( ui_selected );
1428
1429   if ( row == 0 &&
1430        pnd_conf_get_as_int_d ( g_conf, "grid.wrap_vert_stop", 1 ) == 0 )
1431   {
1432     // wrap around instead
1433
1434     unsigned int col = ui_determine_screen_col ( ui_selected );
1435
1436     // go to end
1437     ui_selected = g_categories [ ui_category ].refs;
1438     while ( ui_selected -> next ) {
1439       ui_selected = ui_selected -> next;
1440     }
1441
1442     // try to move to same column
1443     unsigned int newcol = ui_determine_screen_col ( ui_selected );
1444     if ( newcol > col ) {
1445       col = newcol - col;
1446       while ( col ) {
1447         ui_push_left ( 0 );
1448         col--;
1449       }
1450     }
1451
1452     // scroll down to show it
1453     int r = ui_determine_row ( ui_selected ) - 1;
1454     if ( r - pnd_conf_get_as_int ( g_conf, "grid.row_max" ) > 0 ) {
1455       ui_rows_scrolled_down = (unsigned int) r;
1456     }
1457
1458   } else {
1459     // stop at top/bottom
1460
1461     while ( col_max ) {
1462       ui_push_left ( 1 );
1463       col_max--;
1464     }
1465
1466   }
1467
1468   return;
1469 }
1470
1471 void ui_push_down ( void ) {
1472   unsigned char col_max = pnd_conf_get_as_int ( g_conf, "grid.col_max" );
1473
1474   if ( ui_selected ) {
1475
1476     // what row we in?
1477     unsigned int row = ui_determine_row ( ui_selected );
1478
1479     // max rows?
1480     unsigned int icon_rows = g_categories [ ui_category ].refcount / col_max;
1481     if ( g_categories [ ui_category ].refcount % col_max > 0 ) {
1482       icon_rows++;
1483     }
1484
1485     // we at the end?
1486     if ( row == ( icon_rows - 1 ) &&
1487          pnd_conf_get_as_int_d ( g_conf, "grid.wrap_vert_stop", 1 ) == 0 )
1488     {
1489
1490       unsigned char col = ui_determine_screen_col ( ui_selected );
1491
1492       ui_selected = g_categories [ ui_category ].refs;
1493
1494       while ( col ) {
1495         ui_selected = ui_selected -> next;
1496         col--;
1497       }
1498
1499       ui_rows_scrolled_down = 0;
1500
1501       render_mask |= CHANGED_EVERYTHING;
1502
1503     } else {
1504
1505       while ( col_max ) {
1506         ui_push_right ( 1 );
1507         col_max--;
1508       }
1509
1510     }
1511
1512   } else {
1513     ui_push_right ( 0 );
1514   }
1515
1516   return;
1517 }
1518
1519 void ui_push_exec ( void ) {
1520
1521   if ( ! ui_selected ) {
1522     return;
1523   }
1524
1525   // was this icon generated from filesystem, or from pnd-file?
1526   if ( ui_selected -> ref -> object_flags & PND_DISCO_GENERATED ) {
1527
1528     if ( ! ui_selected -> ref -> title_en ) {
1529       return; // no filename
1530     }
1531
1532     if ( ui_selected -> ref -> object_type == pnd_object_type_directory ) {
1533       // delve up/down the dir tree
1534
1535       if ( strcmp ( ui_selected -> ref -> title_en, ".." ) == 0 ) {
1536         // go up
1537         char *c;
1538
1539         // lop off last word; if the thing ends with /, lop that one, then the next word.
1540         while ( ( c = strrchr ( g_categories [ ui_category].fspath, '/' ) ) ) {
1541           *c = '\0'; // lop off the last hunk
1542           if ( *(c+1) != '\0' ) {
1543             break;
1544           }
1545         } // while
1546
1547         // nothing left?
1548         if ( g_categories [ ui_category].fspath [ 0 ] == '\0' ) {
1549           strcpy ( g_categories [ ui_category].fspath, "/" );
1550         }
1551
1552       } else {
1553         // go down
1554         strcat ( g_categories [ ui_category].fspath, "/" );
1555         strcat ( g_categories [ ui_category].fspath, ui_selected -> ref -> title_en );
1556       }
1557
1558       pnd_log ( pndn_debug, "Cat %s is now in path %s\n", g_categories [ ui_category ].catname, g_categories [ ui_category ].fspath );
1559
1560       // rescan the dir
1561       category_fs_restock ( &(g_categories [ ui_category]) );
1562       // forget the selection, nolonger applies
1563       ui_selected = NULL;
1564       ui_set_selected ( ui_selected );
1565       // redraw the grid
1566       render_mask |= CHANGED_SELECTION;
1567
1568     } else {
1569       // just run it arbitrarily?
1570
1571       // if this a pnd-file, or just some executable?
1572       if ( strcasestr ( ui_selected -> ref -> object_filename, PND_PACKAGE_FILEEXT ) ) {
1573         // looks like a pnd, now what do we do..
1574         pnd_box_handle h = pnd_disco_file ( ui_selected -> ref -> object_path, ui_selected -> ref -> object_filename );
1575
1576         if ( h ) {
1577           pnd_disco_t *d = pnd_box_get_head ( h );
1578           pnd_apps_exec_disco ( pnd_run_script, d, PND_EXEC_OPTION_NORUN, NULL );
1579           char buffer [ PATH_MAX ];
1580           sprintf ( buffer, "%s %s\n", MM_RUN, pnd_apps_exec_runline() );
1581           emit_and_quit ( buffer );
1582         }
1583
1584       } else {
1585         // random bin file
1586 #if 1
1587         char cwd [ PATH_MAX ];
1588         getcwd ( cwd, PATH_MAX );
1589
1590         chdir ( g_categories [ ui_category ].fspath );
1591         pnd_exec_no_wait_1 ( ui_selected -> ref -> title_en, NULL );
1592         chdir ( cwd );
1593 #else
1594         char buffer [ PATH_MAX ];
1595         sprintf ( buffer, "%s %s/%s\n", MM_RUN, g_categories [ ui_category ].fspath, ui_selected -> ref -> title_en );
1596         emit_and_quit ( buffer );
1597 #endif
1598       } // pnd or bin?
1599
1600     } // dir or file?
1601
1602   } else {
1603     pnd_apps_exec_disco ( pnd_run_script, ui_selected -> ref, PND_EXEC_OPTION_NORUN, NULL );
1604     char buffer [ PATH_MAX ];
1605     sprintf ( buffer, "%s %s\n", MM_RUN, pnd_apps_exec_runline() );
1606     emit_and_quit ( buffer );
1607   }
1608
1609   return;
1610 }
1611
1612 void ui_push_ltrigger ( void ) {
1613   unsigned char oldcat = ui_category;
1614   unsigned int screen_width = pnd_conf_get_as_int_d ( g_conf, "display.screen_width", 800 );
1615   unsigned int tab_width = pnd_conf_get_as_int ( g_conf, "tabs.tab_width" );
1616
1617   if ( g_categorycount == 0 ) {
1618     return;
1619   }
1620
1621   if ( ui_category > 0 ) {
1622     ui_category--;
1623     category_fs_restock ( &(g_categories [ ui_category ]) );
1624   } else {
1625     if ( pnd_conf_get_as_int_d ( g_conf, "tabs.wraparound", 0 ) > 0 ) {
1626       ui_category = g_categorycount - 1;
1627       ui_catshift = 0;
1628       if ( ui_category >= ( screen_width / tab_width ) ) {
1629         ui_catshift = ui_category - ( screen_width / tab_width ) + 1;
1630       }
1631       category_fs_restock ( &(g_categories [ ui_category ]) );
1632     }
1633   }
1634
1635   if ( oldcat != ui_category ) {
1636     ui_selected = NULL;
1637     ui_set_selected ( ui_selected );
1638   }
1639
1640   // make tab visible?
1641   if ( ui_catshift > 0 && ui_category == ui_catshift - 1 ) {
1642     ui_catshift--;
1643   }
1644
1645   // unscroll
1646   ui_rows_scrolled_down = 0;
1647
1648   render_mask |= CHANGED_CATEGORY;
1649
1650   return;
1651 }
1652
1653 void ui_push_rtrigger ( void ) {
1654   unsigned char oldcat = ui_category;
1655
1656   if ( g_categorycount == 0 ) {
1657     return;
1658   }
1659
1660   unsigned int screen_width = pnd_conf_get_as_int_d ( g_conf, "display.screen_width", 800 );
1661   unsigned int tab_width = pnd_conf_get_as_int ( g_conf, "tabs.tab_width" );
1662
1663   if ( ui_category < ( g_categorycount - 1 ) ) {
1664     ui_category++;
1665     category_fs_restock ( &(g_categories [ ui_category ]) );
1666   } else {
1667     if ( pnd_conf_get_as_int_d ( g_conf, "tabs.wraparound", 0 ) > 0 ) {
1668       ui_category = 0;
1669       ui_catshift = 0;
1670       category_fs_restock ( &(g_categories [ ui_category ]) );
1671     }
1672   }
1673
1674   if ( oldcat != ui_category ) {
1675     ui_selected = NULL;
1676     ui_set_selected ( ui_selected );
1677   }
1678
1679   // make tab visible?
1680   if ( ui_category > ui_catshift + ( screen_width / tab_width ) - 1 ) {
1681     ui_catshift++;
1682   }
1683
1684   // unscroll
1685   ui_rows_scrolled_down = 0;
1686
1687   render_mask |= CHANGED_CATEGORY;
1688
1689   return;
1690 }
1691
1692 SDL_Surface *ui_scale_image ( SDL_Surface *s, unsigned int maxwidth, int maxheight ) {
1693   double scale = 1000000.0;
1694   double scalex = 1000000.0;
1695   double scaley = 1000000.0;
1696   SDL_Surface *scaled;
1697
1698   scalex = (double)maxwidth / (double)s -> w;
1699
1700   if ( maxheight == -1 ) {
1701     scale = scalex;
1702   } else {
1703     scaley = (double)maxheight / (double)s -> h;
1704
1705     if ( scaley < scalex ) {
1706       scale = scaley;
1707     } else {
1708       scale = scalex;
1709     }
1710
1711   }
1712
1713   scaled = rotozoomSurface ( s, 0 /* angle*/, scale /* scale */, 1 /* smooth==1*/ );
1714   SDL_FreeSurface ( s );
1715   s = scaled;
1716
1717   return ( s );
1718 }
1719
1720 void ui_loadscreen ( void ) {
1721
1722   SDL_Rect dest;
1723
1724   unsigned int font_rgba_r = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_r", 200 );
1725   unsigned int font_rgba_g = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_g", 200 );
1726   unsigned int font_rgba_b = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_b", 200 );
1727   unsigned int font_rgba_a = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_a", 100 );
1728
1729   // clear the screen
1730   SDL_FillRect( SDL_GetVideoSurface(), NULL, 0 );
1731
1732   // render text
1733   SDL_Surface *rtext;
1734   SDL_Color tmpfontcolor = { font_rgba_r, font_rgba_g, font_rgba_b, font_rgba_a };
1735   rtext = TTF_RenderText_Blended ( g_big_font, "Setting up menu...", tmpfontcolor );
1736   dest.x = 20;
1737   dest.y = 20;
1738   SDL_BlitSurface ( rtext, NULL /* full src */, sdl_realscreen, &dest );
1739   SDL_UpdateRects ( sdl_realscreen, 1, &dest );
1740   SDL_FreeSurface ( rtext );
1741
1742   return;
1743 }
1744
1745 void ui_discoverscreen ( unsigned char clearscreen ) {
1746
1747   SDL_Rect dest;
1748
1749   unsigned int font_rgba_r = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_r", 200 );
1750   unsigned int font_rgba_g = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_g", 200 );
1751   unsigned int font_rgba_b = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_b", 200 );
1752   unsigned int font_rgba_a = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_a", 100 );
1753
1754   // clear the screen
1755   if ( clearscreen ) {
1756     SDL_FillRect( SDL_GetVideoSurface(), NULL, 0 );
1757
1758     // render background
1759     if ( g_imagecache [ IMG_BACKGROUND_800480 ].i ) {
1760       dest.x = 0;
1761       dest.y = 0;
1762       dest.w = sdl_realscreen -> w;
1763       dest.h = sdl_realscreen -> h;
1764       SDL_BlitSurface ( g_imagecache [ IMG_BACKGROUND_800480 ].i, NULL /* whole image */, sdl_realscreen, NULL /* 0,0 */ );
1765       SDL_UpdateRects ( sdl_realscreen, 1, &dest );
1766     }
1767
1768   }
1769
1770   // render text
1771   SDL_Surface *rtext;
1772   SDL_Color tmpfontcolor = { font_rgba_r, font_rgba_g, font_rgba_b, font_rgba_a };
1773   rtext = TTF_RenderText_Blended ( g_big_font, "Looking for applications...", tmpfontcolor );
1774   if ( clearscreen ) {
1775     dest.x = 20;
1776     dest.y = 20;
1777   } else {
1778     dest.x = 20;
1779     dest.y = 40;
1780   }
1781   SDL_BlitSurface ( rtext, NULL /* full src */, sdl_realscreen, &dest );
1782   SDL_UpdateRects ( sdl_realscreen, 1, &dest );
1783   SDL_FreeSurface ( rtext );
1784
1785   // render icon
1786   if ( g_imagecache [ IMG_ICON_MISSING ].i ) {
1787     dest.x = rtext -> w + 30;
1788     dest.y = 20;
1789     SDL_BlitSurface ( g_imagecache [ IMG_ICON_MISSING ].i, NULL, sdl_realscreen, &dest );
1790     SDL_UpdateRects ( sdl_realscreen, 1, &dest );
1791   }
1792
1793   return;
1794 }
1795
1796 void ui_cachescreen ( unsigned char clearscreen, char *filename ) {
1797
1798   SDL_Rect rects [ 4 ];
1799   SDL_Rect *dest = rects;
1800   SDL_Rect src;
1801   bzero ( dest, sizeof(SDL_Rect)* 4 );
1802
1803   unsigned int font_rgba_r = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_r", 200 );
1804   unsigned int font_rgba_g = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_g", 200 );
1805   unsigned int font_rgba_b = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_b", 200 );
1806   unsigned int font_rgba_a = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_a", 100 );
1807
1808   static unsigned int stepx = 0;
1809
1810   // clear the screen
1811   if ( clearscreen ) {
1812     SDL_FillRect( SDL_GetVideoSurface(), NULL, 0 );
1813
1814     // render background
1815     if ( g_imagecache [ IMG_BACKGROUND_800480 ].i ) {
1816       dest -> x = 0;
1817       dest -> y = 0;
1818       dest -> w = sdl_realscreen -> w;
1819       dest -> h = sdl_realscreen -> h;
1820       SDL_BlitSurface ( g_imagecache [ IMG_BACKGROUND_800480 ].i, NULL /* whole image */, sdl_realscreen, NULL /* 0,0 */ );
1821       dest++;
1822     }
1823
1824   } else {
1825
1826     // render background
1827     if ( g_imagecache [ IMG_BACKGROUND_800480 ].i ) {
1828       src.x = 0;
1829       src.y = 0;
1830       src.w = sdl_realscreen -> w;
1831       src.h = 100;
1832       dest -> x = 0;
1833       dest -> y = 0;
1834       dest -> w = sdl_realscreen -> w;
1835       dest -> h = sdl_realscreen -> h;
1836       SDL_BlitSurface ( g_imagecache [ IMG_BACKGROUND_800480 ].i, &src, sdl_realscreen, dest );
1837       dest++;
1838     }
1839
1840   } // clear it
1841
1842   // render text
1843   SDL_Surface *rtext;
1844   SDL_Color tmpfontcolor = { font_rgba_r, font_rgba_g, font_rgba_b, font_rgba_a };
1845   rtext = TTF_RenderText_Blended ( g_big_font, "Caching applications artwork...", tmpfontcolor );
1846   dest -> x = 20;
1847   dest -> y = 20;
1848   SDL_BlitSurface ( rtext, NULL /* full src */, sdl_realscreen, dest );
1849   SDL_FreeSurface ( rtext );
1850   dest++;
1851
1852   // render icon
1853   if ( g_imagecache [ IMG_ICON_MISSING ].i ) {
1854     dest -> x = rtext -> w + 30 + stepx;
1855     dest -> y = 20;
1856     SDL_BlitSurface ( g_imagecache [ IMG_ICON_MISSING ].i, NULL, sdl_realscreen, dest );
1857     dest++;
1858   }
1859
1860   // filename
1861   if ( filename ) {
1862     rtext = TTF_RenderText_Blended ( g_tab_font, filename, tmpfontcolor );
1863     dest -> x = 20;
1864     dest -> y = 50;
1865     SDL_BlitSurface ( rtext, NULL /* full src */, sdl_realscreen, dest );
1866     SDL_FreeSurface ( rtext );
1867     dest++;
1868   }
1869
1870   // move across
1871   stepx += 20;
1872
1873   if ( stepx > 350 ) {
1874     stepx = 0;
1875   }
1876
1877   SDL_UpdateRects ( sdl_realscreen, dest - rects, rects );
1878
1879   return;
1880 }
1881
1882 int ui_selected_index ( void ) {
1883
1884   if ( ! ui_selected ) {
1885     return ( -1 ); // no index
1886   }
1887
1888   mm_appref_t *r = g_categories [ ui_category ].refs;
1889   int counter = 0;
1890   while ( r ) {
1891     if ( r == ui_selected ) {
1892       return ( counter );
1893     }
1894     r = r -> next;
1895     counter++;
1896   }
1897
1898   return ( -1 );
1899 }
1900
1901 static mm_appref_t *timer_ref = NULL;
1902 void ui_set_selected ( mm_appref_t *r ) {
1903
1904   render_mask |= CHANGED_SELECTION;
1905
1906   if ( ! pnd_conf_get_as_int_d ( g_conf, "minimenu.load_previews_later", 0 ) ) {
1907     return; // no desire to defer anything
1908   }
1909
1910   if ( ! r ) {
1911     // cancel timer
1912     SDL_SetTimer ( 0, NULL );
1913     timer_ref = NULL;
1914     return;
1915   }
1916
1917   SDL_SetTimer ( pnd_conf_get_as_int_d ( g_conf, "previewpic.defer_timer_ms", 1000 ), ui_callback_f );
1918   timer_ref = r;
1919
1920   return;
1921 }
1922
1923 unsigned int ui_callback_f ( unsigned int t ) {
1924
1925   if ( ui_selected != timer_ref ) {
1926     return ( 0 ); // user has moved it, who cares
1927   }
1928
1929   SDL_Event e;
1930   bzero ( &e, sizeof(SDL_Event) );
1931   e.type = SDL_USEREVENT;
1932   e.user.code = sdl_user_ticker;
1933   SDL_PushEvent ( &e );
1934
1935   return ( 0 );
1936 }
1937
1938 int ui_modal_single_menu ( char *argv[], unsigned int argc, char *title, char *footer ) {
1939   SDL_Rect rects [ 40 ];
1940   SDL_Rect *dest = rects;
1941   SDL_Rect src;
1942   SDL_Surface *rtext;
1943   unsigned char max_visible = pnd_conf_get_as_int_d ( g_conf, "detailtext.max_visible" , 11 );
1944   unsigned char first_visible = 0;
1945
1946   bzero ( rects, sizeof(SDL_Rect) * 40 );
1947
1948   unsigned int sel = 0;
1949
1950   unsigned int font_rgba_r = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_r", 200 );
1951   unsigned int font_rgba_g = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_g", 200 );
1952   unsigned int font_rgba_b = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_b", 200 );
1953   unsigned int font_rgba_a = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_a", 100 );
1954
1955   SDL_Color tmpfontcolor = { font_rgba_r, font_rgba_g, font_rgba_b, font_rgba_a };
1956
1957   SDL_Color selfontcolor = { 0/*font_rgba_r*/, font_rgba_g, font_rgba_b, font_rgba_a };
1958
1959   unsigned int i;
1960   SDL_Event event;
1961
1962   while ( 1 ) {
1963
1964     // clear
1965     dest -> x = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_x", 460 );
1966     dest -> y = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_y", 60 );
1967     dest -> w = ((SDL_Surface*) g_imagecache [ IMG_DETAIL_PANEL ].i) -> w;
1968     dest -> h = ((SDL_Surface*) g_imagecache [ IMG_DETAIL_PANEL ].i) -> h;
1969     SDL_FillRect( sdl_realscreen, dest, 0 );
1970
1971     // show dialog background
1972     if ( g_imagecache [ IMG_DETAIL_BG ].i ) {
1973       src.x = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_x", 460 );
1974       src.y = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_y", 60 );
1975       src.w = ((SDL_Surface*)(g_imagecache [ IMG_DETAIL_PANEL ].i)) -> w;
1976       src.h = ((SDL_Surface*)(g_imagecache [ IMG_DETAIL_PANEL ].i)) -> h;
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       SDL_BlitSurface ( g_imagecache [ IMG_DETAIL_BG ].i, &src, sdl_realscreen, dest );
1980       // repeat for darken?
1981       SDL_BlitSurface ( g_imagecache [ IMG_DETAIL_BG ].i, &src, sdl_realscreen, dest );
1982       SDL_BlitSurface ( g_imagecache [ IMG_DETAIL_BG ].i, &src, sdl_realscreen, dest );
1983       //SDL_UpdateRects ( sdl_realscreen, 1, &dest );
1984       dest++;
1985     }
1986
1987     // show dialog frame
1988     if ( g_imagecache [ IMG_DETAIL_PANEL ].i ) {
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_PANEL ].i, NULL /* whole image */, sdl_realscreen, dest );
1992       //SDL_UpdateRects ( sdl_realscreen, 1, &dest );
1993       dest++;
1994     }
1995
1996     // show header
1997     if ( title ) {
1998       rtext = TTF_RenderText_Blended ( g_tab_font, title, tmpfontcolor );
1999       dest -> x = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_x", 460 ) + 20;
2000       dest -> y = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_y", 60 ) + 20;
2001       SDL_BlitSurface ( rtext, NULL /* full src */, sdl_realscreen, dest );
2002       SDL_FreeSurface ( rtext );
2003       dest++;
2004     }
2005
2006     // show footer
2007     if ( footer ) {
2008       rtext = TTF_RenderText_Blended ( g_tab_font, footer, tmpfontcolor );
2009       dest -> x = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_x", 460 ) + 20;
2010       dest -> y = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_y", 60 ) +
2011         ((SDL_Surface*) g_imagecache [ IMG_DETAIL_PANEL ].i) -> h
2012         - 60;
2013       SDL_BlitSurface ( rtext, NULL /* full src */, sdl_realscreen, dest );
2014       SDL_FreeSurface ( rtext );
2015       dest++;
2016     }
2017
2018     // show options
2019     for ( i = first_visible; i < first_visible + max_visible && i < argc; i++ ) {
2020
2021       // show options
2022       if ( sel == i ) {
2023         rtext = TTF_RenderText_Blended ( g_tab_font, argv [ i ], selfontcolor );
2024       } else {
2025         rtext = TTF_RenderText_Blended ( g_tab_font, argv [ i ], tmpfontcolor );
2026       }
2027       dest -> x = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_x", 460 ) + 20;
2028       dest -> y = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_y", 60 ) + 40 + ( 20 * ( i + 1 - first_visible ) );
2029       SDL_BlitSurface ( rtext, NULL /* full src */, sdl_realscreen, dest );
2030       SDL_FreeSurface ( rtext );
2031       dest++;
2032
2033     } // for
2034
2035     // update all the rects and send it all to sdl
2036     SDL_UpdateRects ( sdl_realscreen, dest - rects, rects );
2037     dest = rects;
2038
2039     // check for input
2040     while ( SDL_WaitEvent ( &event ) ) {
2041
2042       switch ( event.type ) {
2043
2044       case SDL_KEYUP:
2045
2046         if ( event.key.keysym.sym == SDLK_UP ) {
2047           if ( sel ) {
2048             sel--;
2049
2050             if ( sel < first_visible ) {
2051               first_visible--;
2052             }
2053
2054           }
2055         } else if ( event.key.keysym.sym == SDLK_DOWN ) {
2056
2057           if ( sel < argc - 1 ) {
2058             sel++;
2059
2060             // ensure visibility
2061             if ( sel >= first_visible + max_visible ) {
2062               first_visible++;
2063             }
2064
2065           }
2066
2067         } else if ( event.key.keysym.sym == SDLK_RETURN ) {
2068           return ( sel );
2069
2070         } else if ( event.key.keysym.sym == SDLK_q ) {
2071           exit ( 0 );
2072
2073         } else {
2074           return ( -1 ); // nada
2075         }
2076
2077         break;
2078
2079       } // switch
2080
2081       break;
2082     } // while
2083
2084   } // while
2085
2086   return ( -1 );
2087 }
2088
2089 unsigned char ui_determine_row ( mm_appref_t *a ) {
2090   unsigned int row = 0;
2091
2092   mm_appref_t *i = g_categories [ ui_category ].refs;
2093   while ( i != a ) {
2094     i = i -> next;
2095     row++;
2096   } // while
2097   row /= pnd_conf_get_as_int_d ( g_conf, "grid.col_max", 5 );
2098
2099   return ( row );
2100 }
2101
2102 unsigned char ui_determine_screen_row ( mm_appref_t *a ) {
2103   return ( ui_determine_row ( a ) % pnd_conf_get_as_int_d ( g_conf, "grid.row_max", 5 ) );
2104 }
2105
2106 unsigned char ui_determine_screen_col ( mm_appref_t *a ) {
2107   unsigned int col = 0;
2108
2109   mm_appref_t *i = g_categories [ ui_category ].refs;
2110   while ( i != a ) {
2111     i = i -> next;
2112     col++;
2113   } // while
2114   col %= pnd_conf_get_as_int_d ( g_conf, "grid.col_max", 5 );
2115
2116   return ( col );
2117 }
2118
2119 unsigned char ui_show_info ( char *pndrun, pnd_disco_t *p ) {
2120   char *viewer, *searchpath;
2121   pnd_conf_handle desktoph;
2122
2123   // viewer
2124   searchpath = pnd_conf_query_searchpath();
2125
2126   desktoph = pnd_conf_fetch_by_id ( pnd_conf_desktop, searchpath );
2127
2128   if ( ! desktoph ) {
2129     return ( 0 );
2130   }
2131
2132   viewer = pnd_conf_get_as_char ( desktoph, "info.viewer" );
2133
2134   if ( ! viewer ) {
2135     return ( 0 ); // no way to view the file
2136   }
2137
2138   // etc
2139   if ( ! p -> unique_id ) {
2140     return ( 0 );
2141   }
2142
2143   if ( ! p -> info_filename ) {
2144     return ( 0 );
2145   }
2146
2147   if ( ! p -> info_name ) {
2148     return ( 0 );
2149   }
2150
2151   if ( ! pndrun ) {
2152     return ( 0 );
2153   }
2154
2155   // exec line
2156   char args [ 1001 ];
2157   char *pargs = args;
2158   if ( pnd_conf_get_as_char ( desktoph, "info.viewer_args" ) ) {
2159     snprintf ( pargs, 1001, "%s %s",
2160                pnd_conf_get_as_char ( desktoph, "info.viewer_args" ), p -> info_filename );
2161   } else {
2162     pargs = NULL;
2163   }
2164
2165   char pndfile [ 1024 ];
2166   if ( p -> object_type == pnd_object_type_directory ) {
2167     // for PXML-app-dir, pnd_run.sh doesn't want the PXML.xml.. it just wants the dir-name
2168     strncpy ( pndfile, p -> object_path, 1000 );
2169   } else if ( p -> object_type == pnd_object_type_pnd ) {
2170     // pnd_run.sh wants the full path and filename for the .pnd file
2171     snprintf ( pndfile, 1020, "%s/%s", p -> object_path, p -> object_filename );
2172   }
2173
2174   if ( ! pnd_apps_exec ( pndrun, pndfile, p -> unique_id, viewer, p -> startdir, pargs,
2175                          p -> clockspeed ? atoi ( p -> clockspeed ) : 0, PND_EXEC_OPTION_NORUN ) )
2176   {
2177     return ( 0 );
2178   }
2179
2180   pnd_log ( pndn_debug, "Info Exec=%s\n", pnd_apps_exec_runline() );
2181
2182   // try running it
2183   int x;
2184   if ( ( x = fork() ) < 0 ) {
2185     pnd_log ( pndn_error, "ERROR: Couldn't fork()\n" );
2186     return ( 0 );
2187   }
2188
2189   if ( x == 0 ) {
2190     execl ( "/bin/sh", "/bin/sh", "-c", pnd_apps_exec_runline(), (char*)NULL );
2191     pnd_log ( pndn_error, "ERROR: Couldn't exec(%s)\n", pnd_apps_exec_runline() );
2192     return ( 0 );
2193   }
2194
2195   return ( 1 );
2196 }
2197
2198 typedef struct {
2199   SDL_Rect r;
2200   int catnum;
2201   mm_appref_t *ref;
2202 } ui_touch_t;
2203 #define MAXTOUCH 100
2204 ui_touch_t ui_touchrects [ MAXTOUCH ];
2205 unsigned char ui_touchrect_count = 0;
2206
2207 void ui_register_reset ( void ) {
2208   bzero ( ui_touchrects, sizeof(ui_touch_t)*MAXTOUCH );
2209   ui_touchrect_count = 0;
2210   return;
2211 }
2212
2213 void ui_register_tab ( unsigned char catnum, unsigned int x, unsigned int y, unsigned int w, unsigned int h ) {
2214
2215   if ( ui_touchrect_count == MAXTOUCH ) {
2216     return;
2217   }
2218
2219   ui_touchrects [ ui_touchrect_count ].r.x = x;
2220   ui_touchrects [ ui_touchrect_count ].r.y = y;
2221   ui_touchrects [ ui_touchrect_count ].r.w = w;
2222   ui_touchrects [ ui_touchrect_count ].r.h = h;
2223   ui_touchrects [ ui_touchrect_count ].catnum = catnum;
2224   ui_touchrect_count++;
2225
2226   return;
2227 }
2228
2229 void ui_register_app ( mm_appref_t *app, unsigned int x, unsigned int y, unsigned int w, unsigned int h ) {
2230
2231   if ( ui_touchrect_count == MAXTOUCH ) {
2232     return;
2233   }
2234
2235   ui_touchrects [ ui_touchrect_count ].r.x = x;
2236   ui_touchrects [ ui_touchrect_count ].r.y = y;
2237   ui_touchrects [ ui_touchrect_count ].r.w = w;
2238   ui_touchrects [ ui_touchrect_count ].r.h = h;
2239   ui_touchrects [ ui_touchrect_count ].ref = app;
2240   ui_touchrect_count++;
2241
2242   return;
2243 }
2244
2245 void ui_touch_act ( unsigned int x, unsigned int y ) {
2246
2247   unsigned char i;
2248   ui_touch_t *t;
2249
2250   for ( i = 0; i < ui_touchrect_count; i++ ) {
2251     t = &(ui_touchrects [ i ]);
2252
2253     if ( x >= t -> r.x &&
2254          x <= t -> r.x + t -> r.w &&
2255          y >= t -> r.y &&
2256          y <= t -> r.y + t -> r.h
2257        )
2258     {
2259
2260       if ( t -> ref ) {
2261         ui_selected = t -> ref;
2262         ui_push_exec();
2263       } else {
2264         if ( ui_category != t -> catnum ) {
2265           ui_selected = NULL;
2266         }
2267         ui_category = t -> catnum;
2268         render_mask |= CHANGED_CATEGORY;
2269       }
2270
2271       break;
2272     }
2273
2274   } // for
2275
2276   return;
2277 }
2278
2279 unsigned char ui_forkexec ( char *argv[] ) {
2280   char *fooby = argv[0];
2281   int x;
2282
2283   if ( ( x = fork() ) < 0 ) {
2284     pnd_log ( pndn_error, "ERROR: Couldn't fork() for '%s'\n", fooby );
2285     return ( 0 );
2286   }
2287
2288   if ( x == 0 ) { // child
2289     execv ( fooby, argv );
2290     pnd_log ( pndn_error, "ERROR: Couldn't exec(%s)\n", fooby );
2291     return ( 0 );
2292   }
2293
2294   // parent, success
2295   return ( 1 );
2296 }
2297
2298 unsigned char ui_threaded_defered_preview ( pnd_disco_t *p ) {
2299
2300   if ( ! cache_preview ( p, pnd_conf_get_as_int_d ( g_conf, "previewpic.cell_width", 200 ),
2301                          pnd_conf_get_as_int_d ( g_conf, "previewpic.cell_height", 180 ) )
2302      )
2303   {
2304     pnd_log ( pndn_debug, "THREAD: Couldn't load preview pic: '%s' -> '%s'\n",
2305               IFNULL(p->title_en,"No Name"), p -> preview_pic1 );
2306   }
2307
2308   // trigger that we completed
2309   SDL_Event e;
2310   bzero ( &e, sizeof(SDL_Event) );
2311   e.type = SDL_USEREVENT;
2312   e.user.code = sdl_user_finishedpreview;
2313   e.user.data1 = p;
2314   SDL_PushEvent ( &e );
2315
2316   return ( 0 );
2317 }
2318
2319 SDL_Thread *g_icon_thread = NULL;
2320 void ui_post_scan ( void ) {
2321
2322   // if deferred icon load, kick off the thread now
2323   if ( pnd_conf_get_as_int_d ( g_conf, "minimenu.load_icons_later", 0 ) == 1 ) {
2324
2325     g_icon_thread = SDL_CreateThread ( (void*)ui_threaded_defered_icon, NULL );
2326
2327     if ( ! g_icon_thread ) {
2328       pnd_log ( pndn_error, "ERROR: Couldn't create icon thread\n" );
2329     }
2330
2331   } // deferred icon load
2332
2333   // reset view
2334   ui_selected = NULL;
2335   ui_rows_scrolled_down = 0;
2336   // set back to first tab, to be safe
2337   ui_category = 0;
2338   ui_catshift = 0;
2339
2340   // do we have a preferred category to jump to?
2341   char *dc = pnd_conf_get_as_char ( g_conf, "categories.default_cat" );
2342   if ( dc ) {
2343
2344     // attempt to find default cat; if we do find it, select it; otherwise
2345     // default behaviour will pick first cat (ie: usually All)
2346     unsigned int i;
2347     for ( i = 0; i < g_categorycount; i++ ) {
2348       if ( strcasecmp ( g_categories [ i ].catname, dc ) == 0 ) {
2349         ui_category = i;
2350         // ensure visibility
2351         unsigned int screen_width = pnd_conf_get_as_int_d ( g_conf, "display.screen_width", 800 );
2352         unsigned int tab_width = pnd_conf_get_as_int ( g_conf, "tabs.tab_width" );
2353         if ( ui_category > ui_catshift + ( screen_width / tab_width ) - 1 ) {
2354           ui_catshift = ui_category - ( screen_width / tab_width ) + 1;
2355         }
2356         break;
2357       }
2358     }
2359
2360     if ( i == g_categorycount ) {
2361       pnd_log ( pndn_warning, "  User defined default category '%s' but not found, so using default behaviour\n", dc );
2362     }
2363
2364   } // default cat
2365
2366   return;
2367 }
2368
2369 unsigned char ui_threaded_defered_icon ( void *p ) {
2370   extern pnd_box_handle g_active_apps;
2371   pnd_box_handle h = g_active_apps;
2372
2373   unsigned char maxwidth, maxheight;
2374   maxwidth = pnd_conf_get_as_int_d ( g_conf, "grid.icon_max_width", 50 );
2375   maxheight = pnd_conf_get_as_int_d ( g_conf, "grid.icon_max_height", 50 );
2376
2377   pnd_disco_t *iter = pnd_box_get_head ( h );
2378
2379   while ( iter ) {
2380
2381     // cache it
2382     if ( iter -> pnd_icon_pos &&
2383          ! cache_icon ( iter, maxwidth, maxheight ) )
2384     {
2385       pnd_log ( pndn_warning, "  Couldn't load icon: '%s'\n", IFNULL(iter->title_en,"No Name") );
2386     } else {
2387
2388       // trigger that we completed
2389       SDL_Event e;
2390       bzero ( &e, sizeof(SDL_Event) );
2391       e.type = SDL_USEREVENT;
2392       e.user.code = sdl_user_finishedicon;
2393       SDL_PushEvent ( &e );
2394
2395       //pnd_log ( pndn_warning, "  Finished deferred load icon: '%s'\n", IFNULL(iter->title_en,"No Name") );
2396       usleep ( pnd_conf_get_as_int_d ( g_conf, "minimenu.defer_icon_us", 50000 ) );
2397
2398     }
2399
2400     // next
2401     iter = pnd_box_get_next ( iter );
2402   } // while
2403
2404   return ( 0 );
2405 }
2406
2407 void ui_show_hourglass ( unsigned char updaterect ) {
2408
2409   SDL_Rect dest;
2410   SDL_Surface *s = g_imagecache [ IMG_HOURGLASS ].i;
2411
2412   dest.x = ( 800 - s -> w ) / 2;
2413   dest.y = ( 480 - s -> h ) / 2;
2414
2415   SDL_BlitSurface ( s, NULL /* whole image */, sdl_realscreen, &dest );
2416
2417   if ( updaterect ) {
2418     SDL_UpdateRects ( sdl_realscreen, 1, &dest );
2419   }
2420
2421   return;
2422 }
2423
2424 unsigned char ui_pick_skin ( void ) {
2425 #define MAXSKINS 10
2426   char *skins [ MAXSKINS ];
2427   unsigned char iter;
2428
2429   char *searchpath = pnd_conf_get_as_char ( g_conf, "minimenu.skin_searchpath" );
2430   char tempname [ 100 ];
2431
2432   iter = 0;
2433
2434   skins [ iter++ ] = "No skin change";
2435
2436   SEARCHPATH_PRE
2437   {
2438     DIR *d = opendir ( buffer );
2439
2440     if ( d ) {
2441       struct dirent *dd;
2442
2443       while ( ( dd = readdir ( d ) ) ) {
2444
2445         if ( dd -> d_name [ 0 ] == '.' ) {
2446           // ignore
2447         } else if ( ( dd -> d_type == DT_DIR || dd -> d_type == DT_UNKNOWN ) &&
2448                     iter < MAXSKINS )
2449         {
2450           snprintf ( tempname, 100, "Skin: %s", dd -> d_name );
2451           skins [ iter++ ] = strdup ( tempname );
2452         }
2453
2454       }
2455
2456       closedir ( d );
2457     }
2458
2459   }
2460   SEARCHPATH_POST
2461
2462   int sel = ui_modal_single_menu ( skins, iter, "Skins", "Enter to select; other to return." );
2463
2464   // did they pick one?
2465   if ( sel > 0 ) {
2466     FILE *f;
2467
2468     char *s = strdup ( pnd_conf_get_as_char ( g_conf, "minimenu.skin_selected" ) );
2469     s = pnd_expand_tilde ( s );
2470
2471     f = fopen ( s, "w" );
2472
2473     free ( s );
2474
2475     if ( f ) {
2476       fprintf ( f, "%s\n", skins [ sel ] + 6 );
2477       fclose ( f );
2478     }
2479
2480     return ( 1 );
2481   }
2482
2483   return ( 0 );
2484 }
2485
2486 void ui_aboutscreen ( char *textpath ) {
2487 #define PIXELW 7
2488 #define PIXELH 7
2489 #define MARGINW 3
2490 #define MARGINH 3
2491 #define SCRW 800
2492 #define SCRH 480
2493 #define ROWS SCRH / ( PIXELH + MARGINH )
2494 #define COLS SCRW / ( PIXELW + MARGINW )
2495
2496   unsigned char pixelboard [ ROWS * COLS ]; // pixel heat
2497   bzero ( pixelboard, ROWS * COLS );
2498
2499   SDL_Surface *rtext;
2500   SDL_Rect r;
2501
2502   SDL_Color rtextc = { 200, 200, 200, 100 };
2503
2504   // pixel scroller
2505   char *textloop [ 500 ];
2506   unsigned int textmax = 0;
2507   bzero ( textloop, 500 * sizeof(char*) );
2508
2509   // cursor scroller
2510   char cbuffer [ 50000 ];
2511   bzero ( cbuffer, 50000 );
2512   unsigned int crevealed = 0;
2513
2514   FILE *f = fopen ( textpath, "r" );
2515
2516   if ( ! f ) {
2517     pnd_log ( pndn_error, "ERROR: Couldn't open about text: %s\n", textpath );
2518     return;
2519   }
2520
2521   char textbuf [ 100 ];
2522   while ( fgets ( textbuf, 100, f ) ) {
2523
2524     // add to full buffer
2525     strncat ( cbuffer, textbuf, 50000 );
2526
2527     // chomp
2528     if ( strchr ( textbuf, '\n' ) ) {
2529       * strchr ( textbuf, '\n' ) = '\0';
2530     }
2531
2532     // add to pixel loop
2533     if ( 1||textbuf [ 0 ] ) {
2534       textloop [ textmax ] = strdup ( textbuf );
2535       textmax++;
2536     }
2537
2538   } // while fgets
2539
2540   fclose ( f );
2541
2542   unsigned int textiter = 0;
2543   while ( textiter < textmax ) {
2544     char *text = textloop [ textiter ];
2545
2546     rtext = NULL;
2547     if ( text [ 0 ] ) {
2548       // render to surface
2549       rtext = TTF_RenderText_Blended ( g_grid_font, text, rtextc );
2550
2551       // render font to pixelboard
2552       unsigned int px, py;
2553       unsigned char *ph;
2554       unsigned int *pixels = rtext -> pixels;
2555       unsigned char cr, cg, cb, ca;
2556       for ( py = 0; py < rtext -> h; py ++ ) {
2557         for ( px = 0; px < ( rtext -> w > COLS ? COLS : rtext -> w ); px++ ) {
2558
2559           SDL_GetRGBA ( pixels [ ( py * rtext -> pitch / 4 ) + px ],
2560                         rtext -> format, &cr, &cg, &cb, &ca );
2561
2562           if ( ca != 0 ) {
2563
2564             ph = pixelboard + ( /*y offset */ 30 * COLS ) + ( py * COLS ) + px /* / 2 */;
2565
2566             if ( *ph < 100 ) {
2567               *ph = 100;
2568             }
2569
2570             ca /= 5;
2571             if ( *ph + ca < 250 ) {
2572               *ph += ca;
2573             }
2574
2575           } // got a pixel?
2576
2577         } // x
2578       } // y
2579
2580     } // got text?
2581
2582     unsigned int runcount = 10;
2583     while ( runcount-- ) {
2584
2585       // clear display
2586       SDL_FillRect( sdl_realscreen, NULL /* whole */, 0 );
2587
2588       // render pixelboard
2589       unsigned int x, y;
2590       unsigned int c;
2591       for ( y = 0; y < ROWS; y++ ) {
2592         for ( x = 0; x < COLS; x++ ) {
2593
2594           if ( 1||pixelboard [ ( y * COLS ) + x ] ) {
2595
2596             // position
2597             r.x = x * ( PIXELW + MARGINW );
2598             r.y = y * ( PIXELH + MARGINH );
2599             r.w = PIXELW;
2600             r.h = PIXELH;
2601             // heat -> colour
2602             c = SDL_MapRGB ( sdl_realscreen -> format, 100 /* r */, 0 /* g */, pixelboard [ ( y * COLS ) + x ] );
2603             // render
2604             SDL_FillRect( sdl_realscreen, &r /* whole */, c );
2605
2606           }
2607
2608         } // x
2609       } // y
2610
2611       // cool pixels
2612       unsigned char *pc = pixelboard;
2613       for ( y = 0; y < ROWS; y++ ) {
2614         for ( x = 0; x < COLS; x++ ) {
2615
2616           if ( *pc > 10 ) {
2617             (*pc) -= 3;
2618           }
2619
2620           pc++;
2621         } // x
2622       } // y
2623
2624       // slide pixels upwards
2625       memmove ( pixelboard, pixelboard + COLS, ( COLS * ROWS ) - COLS );
2626
2627       // render actual readable text
2628       {
2629
2630         // display up to cursor
2631         SDL_Rect dest;
2632         unsigned int cdraw = 0;
2633         SDL_Surface *cs;
2634         char ctb [ 2 ];
2635
2636         if ( crevealed > 200 ) {
2637           cdraw = crevealed - 200;
2638         }
2639
2640         dest.x = 400;
2641         dest.y = 20;
2642
2643         for ( ; cdraw < crevealed; cdraw++ ) {
2644           ctb [ 0 ] = cbuffer [ cdraw ];
2645           ctb [ 1 ] = '\0';
2646           // move over or down
2647           if ( cbuffer [ cdraw ] == '\n' ) {
2648             // EOL
2649             dest.x = 400;
2650             dest.y += 14;
2651
2652             if ( dest.y > 450 ) {
2653               dest.y = 450;
2654             }
2655
2656           } else {
2657             // draw the char
2658             cs = TTF_RenderText_Blended ( g_tab_font, ctb, rtextc );
2659             if ( cs ) {
2660               SDL_BlitSurface ( cs, NULL /* all */, sdl_realscreen, &dest );
2661               SDL_FreeSurface ( cs );
2662               // over
2663               dest.x += cs -> w;
2664             }
2665           }
2666
2667         }
2668
2669         dest.w = 10;
2670         dest.h = 20;
2671         SDL_FillRect ( sdl_realscreen, &dest /* whole */, 220 );
2672
2673         // increment cursor to next character
2674         if ( cbuffer [ crevealed ] != '\0' ) {
2675           crevealed++;
2676         }
2677
2678       } // draw cursor text
2679
2680       // reveal
2681       //
2682       SDL_UpdateRect ( sdl_realscreen, 0, 0, 0, 0 ); // whole screen
2683
2684       usleep ( 50000 );
2685
2686       // any button? if so, about
2687       {
2688         SDL_PumpEvents();
2689
2690         SDL_Event e;
2691
2692         if ( SDL_PeepEvents ( &e, 1, SDL_GETEVENT, SDL_EVENTMASK(SDL_KEYUP) ) > 0 ) {
2693           return;
2694         }
2695
2696       }
2697
2698     } // while cooling
2699
2700     if ( rtext ) {
2701       SDL_FreeSurface ( rtext );
2702     }
2703
2704     textiter++;
2705   } // while more text
2706
2707   // free up
2708   unsigned int i;
2709   for ( i = 0; i < textmax; i++ ) {
2710     if ( textloop [ i ] ) {
2711       free ( textloop [ i ] );
2712       textloop [ i ] = 0;
2713     }
2714   }
2715
2716   return;
2717 }
2718
2719 void ui_revealscreen ( void ) {
2720   char *labels [ 500 ];
2721   unsigned int labelmax = 0;
2722   unsigned int i;
2723
2724   if ( ! _categories_inviscount ) {
2725     return; // nothing to do
2726   }
2727
2728   for ( i = 0; i < _categories_inviscount; i++ ) {
2729     labels [ labelmax++ ] = _categories_invis [ i ].catname;
2730   }
2731
2732   int sel = ui_modal_single_menu ( labels, labelmax, "Temporary Category Reveal",
2733                                    "Enter to select; other to return." );
2734
2735   if ( sel >= 0 ) {
2736
2737     if ( category_query ( _categories_invis [ sel ].catname ) ) {
2738       // already present
2739       return;
2740     }
2741
2742     // fix up category name, if its been hacked
2743     if ( strchr ( _categories_invis [ sel ].catname, '.' ) ) {
2744       char *t = _categories_invis [ sel ].catname;
2745       _categories_invis [ sel ].catname = strdup ( strchr ( _categories_invis [ sel ].catname, '.' ) + 1 );
2746       free ( t );
2747     }
2748     // copy invisi-cat into live-cat
2749     memmove ( &(g_categories [ g_categorycount ]), &(_categories_invis [ sel ]), sizeof(mm_category_t) );
2750     g_categorycount++;
2751     // move subsequent invisi-cats up, so the selected invisi-cat is nolonger existing in invisi-list at
2752     // all (avoid double-free() later)
2753     memmove ( &(_categories_invis [ sel ]), &(_categories_invis [ sel + 1 ]), sizeof(mm_category_t) * ( _categories_inviscount - sel - 1 ) );
2754     _categories_inviscount--;
2755
2756     // switch to the new category
2757     ui_category = g_categorycount - 1;
2758
2759     // ensure visibility
2760     unsigned int screen_width = pnd_conf_get_as_int_d ( g_conf, "display.screen_width", 800 );
2761     unsigned int tab_width = pnd_conf_get_as_int ( g_conf, "tabs.tab_width" );
2762     if ( ui_category > ui_catshift + ( screen_width / tab_width ) - 1 ) {
2763       ui_catshift = ui_category - ( screen_width / tab_width ) + 1;
2764     }
2765
2766     // redraw tabs
2767     render_mask |= CHANGED_CATEGORY;
2768   }
2769
2770   return;
2771 }