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