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