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