2b34fa515578d296c23cea5c59298179730542eb
[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
1624       // check if this guy is a dir-browser tab, or is a directory on a pnd tab
1625       if ( ! g_categories [ ui_category] -> fspath ) {
1626         // pnd subcat as dir
1627
1628         static char *ui_category_stack = NULL;
1629
1630         // are we already in a subcat? if so, go back to parent; there is no grandparenting or deeper
1631         if ( g_categories [ ui_category ] -> parent_catname ) {
1632           // go back up
1633
1634           // set to first cat!
1635           ui_category = 0;
1636           // republish cats .. shoudl just be the one
1637           category_publish ( CFNORMAL, NULL );
1638
1639           if ( ui_category_stack ) {
1640             ui_category = category_index ( ui_category_stack );
1641           }
1642
1643         } else {
1644           // delve into subcat
1645
1646           // set to first cat!
1647           ui_category_stack = g_categories [ ui_category ] -> catname;
1648           ui_category = 0;
1649           // republish cats .. shoudl just be the one
1650           category_publish ( CFBYNAME, ui_selected -> ref -> object_path );
1651
1652         }
1653
1654         // forget the selection, nolonger applies
1655         ui_selected = NULL;
1656         ui_set_selected ( ui_selected );
1657         // redraw the grid
1658         render_mask |= CHANGED_EVERYTHING;
1659
1660       } else {
1661
1662         // delve up/down the dir tree
1663         if ( strcmp ( ui_selected -> ref -> title_en, ".." ) == 0 ) {
1664           // go up
1665           char *c;
1666
1667           // lop off last word; if the thing ends with /, lop that one, then the next word.
1668           while ( ( c = strrchr ( g_categories [ ui_category] -> fspath, '/' ) ) ) {
1669             *c = '\0'; // lop off the last hunk
1670             if ( *(c+1) != '\0' ) {
1671               break;
1672             }
1673           } // while
1674
1675           // nothing left?
1676           if ( g_categories [ ui_category] -> fspath [ 0 ] == '\0' ) {
1677             free ( g_categories [ ui_category] -> fspath );
1678             g_categories [ ui_category] -> fspath = strdup ( "/" );
1679           }
1680
1681         } else {
1682           // go down
1683           char *temp = malloc ( strlen ( g_categories [ ui_category] -> fspath ) + strlen ( ui_selected -> ref -> title_en ) + 1 + 1 );
1684           sprintf ( temp, "%s/%s", g_categories [ ui_category] -> fspath, ui_selected -> ref -> title_en );
1685           free ( g_categories [ ui_category] -> fspath );
1686           g_categories [ ui_category] -> fspath = temp;
1687         }
1688
1689         pnd_log ( pndn_debug, "Cat %s is now in path %s\n", g_categories [ ui_category ] -> catname, g_categories [ ui_category ]-> fspath );
1690
1691         // forget the selection, nolonger applies
1692         ui_selected = NULL;
1693         ui_set_selected ( ui_selected );
1694         // rescan the dir
1695         category_fs_restock ( g_categories [ ui_category ] );
1696         // redraw the grid
1697         render_mask |= CHANGED_SELECTION;
1698
1699       } // directory browser or pnd subcat?
1700
1701     } else {
1702       // just run it arbitrarily?
1703
1704       // if this a pnd-file, or just some executable?
1705       if ( strcasestr ( ui_selected -> ref -> object_filename, PND_PACKAGE_FILEEXT ) ) {
1706         // looks like a pnd, now what do we do..
1707         pnd_box_handle h = pnd_disco_file ( ui_selected -> ref -> object_path, ui_selected -> ref -> object_filename );
1708
1709         if ( h ) {
1710           pnd_disco_t *d = pnd_box_get_head ( h );
1711           pnd_apps_exec_disco ( pnd_run_script, d, PND_EXEC_OPTION_NORUN, NULL );
1712           char buffer [ PATH_MAX ];
1713           sprintf ( buffer, "%s %s\n", MM_RUN, pnd_apps_exec_runline() );
1714           if ( pnd_conf_get_as_int_d ( g_conf, "minimenu.live_on_run", 0 ) == 0 ) {
1715             emit_and_quit ( buffer );
1716           } else {
1717             emit_and_run ( buffer );
1718           }
1719         }
1720
1721       } else {
1722         // random bin file
1723
1724         // is it even executable? if we don't have handlers for non-executables yet (Jan 2011 we don't),
1725         // then don't even try to run things not-flagged as executable.. but wait most people are on
1726         // FAT filesystems, what a drag, we can't tell at the fs level.
1727         // ... but we can still invoke 'file' and grep out the good bits, at least.
1728         //
1729         // open a stream reading 'file /path/to/file' and check output for 'executable'
1730         // -- not checking for "ARM" so it can pick up x86 (or whatever native) executables in build environment
1731         unsigned char is_executable = 0;
1732
1733         // popen test
1734         {
1735           char popenbuf [ FILENAME_MAX ];
1736           snprintf ( popenbuf, FILENAME_MAX, "%s %s/%s", MIMETYPE_EXE, g_categories [ ui_category ] -> fspath, ui_selected -> ref -> title_en );
1737
1738           FILE *marceau;
1739           if ( ! ( marceau = popen ( popenbuf, "r" ) ) ) {
1740             return; // error, we need some useful error handling and dialog boxes here
1741           }
1742
1743           if ( fgets ( popenbuf, FILENAME_MAX, marceau ) ) {
1744             //printf ( "File test returns: %s\n", popenbuf );
1745             if ( strstr ( popenbuf, "executable" ) != NULL ) {
1746               is_executable = 1;
1747             }
1748           }
1749
1750           pclose ( marceau );
1751
1752         } // popen test
1753
1754         if ( ! is_executable ) {
1755           fprintf ( stderr, "ERROR: File to invoke is not executable, skipping. (%s)\n", ui_selected -> ref -> title_en );
1756           return; // need some error handling here
1757         }
1758
1759 #if 0 // eat up any pending SDL events and toss 'em?
1760         {
1761           SDL_PumpEvents();
1762           SDL_Event e;
1763           while ( SDL_PeepEvents ( &e, 1, SDL_GETEVENT, SDL_ALLEVENTS ) > 0 ) {
1764             // spin
1765           }
1766         }
1767 #endif
1768
1769 #if 1
1770         // just exec it
1771         //
1772
1773         // get CWD so we can restore it on return
1774         char cwd [ PATH_MAX ];
1775         getcwd ( cwd, PATH_MAX );
1776
1777         // full path to executable so we don't rely on implicit "./"
1778         char execbuf [ FILENAME_MAX ];
1779         snprintf ( execbuf, FILENAME_MAX, "%s/%s", g_categories [ ui_category ] -> fspath, ui_selected -> ref -> title_en );
1780
1781         // do it!
1782         chdir ( g_categories [ ui_category ] -> fspath );
1783         exec_raw_binary ( execbuf /*ui_selected -> ref -> title_en*/ );
1784         chdir ( cwd );
1785 #else
1786         // DEPRECATED / NOT TESTED
1787         // get mmwrapper to run it
1788         char buffer [ PATH_MAX ];
1789         sprintf ( buffer, "%s %s/%s\n", MM_RUN, g_categories [ ui_category ] -> fspath, ui_selected -> ref -> title_en );
1790         if ( pnd_conf_get_as_int_d ( g_conf, "minimenu.live_on_run", 0 ) == 0 ) {
1791           emit_and_quit ( buffer );
1792         } else {
1793           emit_and_run ( buffer );
1794         }
1795 #endif
1796       } // pnd or bin?
1797
1798     } // dir or file?
1799
1800   } else {
1801
1802     // set app-run speed
1803     int use_run_speed = pnd_conf_get_as_int_d ( g_conf, "minimenu.use_run_speed", 0 );
1804     if ( use_run_speed > 0 ) {
1805       int mm_speed = pnd_conf_get_as_int_d ( g_conf, "minimenu.run_speed", -1 );
1806       if ( mm_speed > -1 ) {
1807         char buffer [ 512 ];
1808         snprintf ( buffer, 500, "sudo /usr/pandora/scripts/op_cpuspeed.sh %d", mm_speed );
1809         system ( buffer );
1810       }
1811     } // do speed change?
1812
1813     // request app to run and quit mmenu
1814     pnd_apps_exec_disco ( pnd_run_script, ui_selected -> ref, PND_EXEC_OPTION_NORUN, NULL );
1815     char buffer [ PATH_MAX ];
1816     sprintf ( buffer, "%s %s\n", MM_RUN, pnd_apps_exec_runline() );
1817     if ( pnd_conf_get_as_int_d ( g_conf, "minimenu.live_on_run", 0 ) == 0 ) {
1818       emit_and_quit ( buffer );
1819     } else {
1820       emit_and_run ( buffer );
1821     }
1822   }
1823
1824   return;
1825 }
1826
1827 void ui_push_ltrigger ( void ) {
1828   unsigned char oldcat = ui_category;
1829   unsigned int screen_width = ui_display_context.screen_width;
1830   unsigned int tab_width = pnd_conf_get_as_int ( g_conf, "tabs.tab_width" );
1831
1832   if ( g_categorycount == 0 ) {
1833     return;
1834   }
1835
1836   if ( ui_category > 0 ) {
1837     ui_category--;
1838     category_fs_restock ( g_categories [ ui_category ] );
1839   } else {
1840     if ( pnd_conf_get_as_int_d ( g_conf, "tabs.wraparound", 0 ) > 0 ) {
1841       ui_category = g_categorycount - 1;
1842       ui_catshift = 0;
1843       if ( ui_category >= ( screen_width / tab_width ) ) {
1844         ui_catshift = ui_category - ( screen_width / tab_width ) + 1;
1845       }
1846       category_fs_restock ( g_categories [ ui_category ] );
1847     }
1848   }
1849
1850   if ( oldcat != ui_category ) {
1851     ui_selected = NULL;
1852     ui_set_selected ( ui_selected );
1853   }
1854
1855   // make tab visible?
1856   if ( ui_catshift > 0 && ui_category == ui_catshift - 1 ) {
1857     ui_catshift--;
1858   }
1859
1860   // unscroll
1861   ui_rows_scrolled_down = 0;
1862
1863   render_mask |= CHANGED_CATEGORY;
1864
1865   return;
1866 }
1867
1868 void ui_push_rtrigger ( void ) {
1869   unsigned char oldcat = ui_category;
1870
1871   if ( g_categorycount == 0 ) {
1872     return;
1873   }
1874
1875   unsigned int screen_width = ui_display_context.screen_width;
1876   unsigned int tab_width = pnd_conf_get_as_int ( g_conf, "tabs.tab_width" );
1877
1878   if ( ui_category < ( g_categorycount - 1 ) ) {
1879     ui_category++;
1880     category_fs_restock ( g_categories [ ui_category ] );
1881   } else {
1882     if ( pnd_conf_get_as_int_d ( g_conf, "tabs.wraparound", 0 ) > 0 ) {
1883       ui_category = 0;
1884       ui_catshift = 0;
1885       category_fs_restock ( g_categories [ ui_category ] );
1886     }
1887   }
1888
1889   if ( oldcat != ui_category ) {
1890     ui_selected = NULL;
1891     ui_set_selected ( ui_selected );
1892   }
1893
1894   // make tab visible?
1895   if ( ui_category > ui_catshift + ( screen_width / tab_width ) - 1 ) {
1896     ui_catshift++;
1897   }
1898
1899   // unscroll
1900   ui_rows_scrolled_down = 0;
1901
1902   render_mask |= CHANGED_CATEGORY;
1903
1904   return;
1905 }
1906
1907 SDL_Surface *ui_scale_image ( SDL_Surface *s, unsigned int maxwidth, int maxheight ) {
1908   double scale = 1000000.0;
1909   double scalex = 1000000.0;
1910   double scaley = 1000000.0;
1911   SDL_Surface *scaled;
1912
1913   scalex = (double)maxwidth / (double)s -> w;
1914
1915   if ( maxheight == -1 ) {
1916     scale = scalex;
1917   } else {
1918     scaley = (double)maxheight / (double)s -> h;
1919
1920     if ( scaley < scalex ) {
1921       scale = scaley;
1922     } else {
1923       scale = scalex;
1924     }
1925
1926   }
1927
1928   scaled = rotozoomSurface ( s, 0 /* angle*/, scale /* scale */, 1 /* smooth==1*/ );
1929   SDL_FreeSurface ( s );
1930   s = scaled;
1931
1932   return ( s );
1933 }
1934
1935 void ui_loadscreen ( void ) {
1936
1937   SDL_Rect dest;
1938
1939   // clear the screen
1940   SDL_FillRect( SDL_GetVideoSurface(), NULL, 0 );
1941
1942   // render text
1943   SDL_Surface *rtext;
1944   rtext = TTF_RenderText_Blended ( g_big_font, "Setting up menu...", ui_display_context.fontcolor );
1945   dest.x = 20;
1946   dest.y = 20;
1947   SDL_BlitSurface ( rtext, NULL /* full src */, sdl_realscreen, &dest );
1948   SDL_UpdateRects ( sdl_realscreen, 1, &dest );
1949   SDL_FreeSurface ( rtext );
1950
1951   return;
1952 }
1953
1954 void ui_discoverscreen ( unsigned char clearscreen ) {
1955
1956   SDL_Rect dest;
1957
1958   // clear the screen
1959   if ( clearscreen ) {
1960     SDL_FillRect( SDL_GetVideoSurface(), NULL, 0 );
1961
1962     // render background
1963     if ( g_imagecache [ IMG_BACKGROUND_800480 ].i ) {
1964       dest.x = 0;
1965       dest.y = 0;
1966       dest.w = sdl_realscreen -> w;
1967       dest.h = sdl_realscreen -> h;
1968       SDL_BlitSurface ( g_imagecache [ IMG_BACKGROUND_800480 ].i, NULL /* whole image */, sdl_realscreen, NULL /* 0,0 */ );
1969       SDL_UpdateRects ( sdl_realscreen, 1, &dest );
1970     }
1971
1972   }
1973
1974   // render text
1975   SDL_Surface *rtext;
1976   rtext = TTF_RenderText_Blended ( g_big_font, "Looking for applications...", ui_display_context.fontcolor );
1977   if ( clearscreen ) {
1978     dest.x = 20;
1979     dest.y = 20;
1980   } else {
1981     dest.x = 20;
1982     dest.y = 40;
1983   }
1984   SDL_BlitSurface ( rtext, NULL /* full src */, sdl_realscreen, &dest );
1985   SDL_UpdateRects ( sdl_realscreen, 1, &dest );
1986   SDL_FreeSurface ( rtext );
1987
1988   // render icon
1989   if ( g_imagecache [ IMG_ICON_MISSING ].i ) {
1990     dest.x = rtext -> w + 30;
1991     dest.y = 20;
1992     SDL_BlitSurface ( g_imagecache [ IMG_ICON_MISSING ].i, NULL, sdl_realscreen, &dest );
1993     SDL_UpdateRects ( sdl_realscreen, 1, &dest );
1994   }
1995
1996   return;
1997 }
1998
1999 void ui_cachescreen ( unsigned char clearscreen, char *filename ) {
2000
2001   SDL_Rect rects [ 4 ];
2002   SDL_Rect *dest = rects;
2003   SDL_Rect src;
2004   bzero ( dest, sizeof(SDL_Rect)* 4 );
2005
2006   unsigned int font_rgba_r = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_r", 200 );
2007   unsigned int font_rgba_g = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_g", 200 );
2008   unsigned int font_rgba_b = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_b", 200 );
2009   unsigned int font_rgba_a = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_a", 100 );
2010
2011   static unsigned int stepx = 0;
2012
2013   // clear the screen
2014   if ( clearscreen ) {
2015     SDL_FillRect( SDL_GetVideoSurface(), NULL, 0 );
2016
2017     // render background
2018     if ( g_imagecache [ IMG_BACKGROUND_800480 ].i ) {
2019       dest -> x = 0;
2020       dest -> y = 0;
2021       dest -> w = sdl_realscreen -> w;
2022       dest -> h = sdl_realscreen -> h;
2023       SDL_BlitSurface ( g_imagecache [ IMG_BACKGROUND_800480 ].i, NULL /* whole image */, sdl_realscreen, NULL /* 0,0 */ );
2024       dest++;
2025     }
2026
2027   } else {
2028
2029     // render background
2030     if ( g_imagecache [ IMG_BACKGROUND_800480 ].i ) {
2031       src.x = 0;
2032       src.y = 0;
2033       src.w = sdl_realscreen -> w;
2034       src.h = 100;
2035       dest -> x = 0;
2036       dest -> y = 0;
2037       dest -> w = sdl_realscreen -> w;
2038       dest -> h = sdl_realscreen -> h;
2039       SDL_BlitSurface ( g_imagecache [ IMG_BACKGROUND_800480 ].i, &src, sdl_realscreen, dest );
2040       dest++;
2041     }
2042
2043   } // clear it
2044
2045   // render text
2046   SDL_Surface *rtext;
2047   SDL_Color tmpfontcolor = { font_rgba_r, font_rgba_g, font_rgba_b, font_rgba_a };
2048   rtext = TTF_RenderText_Blended ( g_big_font, "Caching applications artwork...", tmpfontcolor );
2049   dest -> x = 20;
2050   dest -> y = 20;
2051   SDL_BlitSurface ( rtext, NULL /* full src */, sdl_realscreen, dest );
2052   SDL_FreeSurface ( rtext );
2053   dest++;
2054
2055   // render icon
2056   if ( g_imagecache [ IMG_ICON_MISSING ].i ) {
2057     dest -> x = rtext -> w + 30 + stepx;
2058     dest -> y = 20;
2059     SDL_BlitSurface ( g_imagecache [ IMG_ICON_MISSING ].i, NULL, sdl_realscreen, dest );
2060     dest++;
2061   }
2062
2063   // filename
2064   if ( filename ) {
2065     rtext = TTF_RenderText_Blended ( g_tab_font, filename, tmpfontcolor );
2066     dest -> x = 20;
2067     dest -> y = 50;
2068     SDL_BlitSurface ( rtext, NULL /* full src */, sdl_realscreen, dest );
2069     SDL_FreeSurface ( rtext );
2070     dest++;
2071   }
2072
2073   // move across
2074   stepx += 20;
2075
2076   if ( stepx > 350 ) {
2077     stepx = 0;
2078   }
2079
2080   SDL_UpdateRects ( sdl_realscreen, dest - rects, rects );
2081
2082   return;
2083 }
2084
2085 int ui_selected_index ( void ) {
2086
2087   if ( ! ui_selected ) {
2088     return ( -1 ); // no index
2089   }
2090
2091   mm_appref_t *r = g_categories [ ui_category ] -> refs;
2092   int counter = 0;
2093   while ( r ) {
2094     if ( r == ui_selected ) {
2095       return ( counter );
2096     }
2097     r = r -> next;
2098     counter++;
2099   }
2100
2101   return ( -1 );
2102 }
2103
2104 static mm_appref_t *timer_ref = NULL;
2105 void ui_set_selected ( mm_appref_t *r ) {
2106
2107   render_mask |= CHANGED_SELECTION;
2108
2109   if ( ! pnd_conf_get_as_int_d ( g_conf, "minimenu.load_previews_later", 0 ) ) {
2110     return; // no desire to defer anything
2111   }
2112
2113   if ( ! r ) {
2114     // cancel timer
2115     SDL_SetTimer ( 0, NULL );
2116     timer_ref = NULL;
2117     return;
2118   }
2119
2120   SDL_SetTimer ( pnd_conf_get_as_int_d ( g_conf, "previewpic.defer_timer_ms", 1000 ), ui_callback_f );
2121   timer_ref = r;
2122
2123   return;
2124 }
2125
2126 unsigned int ui_callback_f ( unsigned int t ) {
2127
2128   if ( ui_selected != timer_ref ) {
2129     return ( 0 ); // user has moved it, who cares
2130   }
2131
2132   SDL_Event e;
2133   bzero ( &e, sizeof(SDL_Event) );
2134   e.type = SDL_USEREVENT;
2135   e.user.code = sdl_user_ticker;
2136   SDL_PushEvent ( &e );
2137
2138   return ( 0 );
2139 }
2140
2141 int ui_modal_single_menu ( char *argv[], unsigned int argc, char *title, char *footer ) {
2142   SDL_Rect rects [ 40 ];
2143   SDL_Rect *dest = rects;
2144   SDL_Rect src;
2145   SDL_Surface *rtext;
2146   unsigned char max_visible = pnd_conf_get_as_int_d ( g_conf, "detailtext.max_visible" , 11 );
2147   unsigned char first_visible = 0;
2148
2149   bzero ( rects, sizeof(SDL_Rect) * 40 );
2150
2151   unsigned int sel = 0;
2152
2153   unsigned int font_rgba_r = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_r", 200 );
2154   unsigned int font_rgba_g = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_g", 200 );
2155   unsigned int font_rgba_b = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_b", 200 );
2156   unsigned int font_rgba_a = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_a", 100 );
2157
2158   SDL_Color tmpfontcolor = { font_rgba_r, font_rgba_g, font_rgba_b, font_rgba_a };
2159
2160   SDL_Color selfontcolor = { 0/*font_rgba_r*/, font_rgba_g, font_rgba_b, font_rgba_a };
2161
2162   unsigned int i;
2163   SDL_Event event;
2164
2165   while ( 1 ) {
2166
2167     // clear
2168     dest -> x = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_x", 460 );
2169     dest -> y = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_y", 60 );
2170     dest -> w = ((SDL_Surface*) g_imagecache [ IMG_DETAIL_PANEL ].i) -> w;
2171     dest -> h = ((SDL_Surface*) g_imagecache [ IMG_DETAIL_PANEL ].i) -> h;
2172     SDL_FillRect( sdl_realscreen, dest, 0 );
2173
2174     // show dialog background
2175     if ( g_imagecache [ IMG_DETAIL_BG ].i ) {
2176       src.x = 0;
2177       src.y = 0;
2178       src.w = ((SDL_Surface*)(g_imagecache [ IMG_DETAIL_BG ].i)) -> w;
2179       src.h = ((SDL_Surface*)(g_imagecache [ IMG_DETAIL_BG ].i)) -> h;
2180       dest -> x = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_x", 460 );
2181       dest -> y = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_y", 60 );
2182       SDL_BlitSurface ( g_imagecache [ IMG_DETAIL_BG ].i, &src, sdl_realscreen, dest );
2183       // repeat for darken?
2184       //SDL_BlitSurface ( g_imagecache [ IMG_DETAIL_BG ].i, &src, sdl_realscreen, dest );
2185       //SDL_BlitSurface ( g_imagecache [ IMG_DETAIL_BG ].i, &src, sdl_realscreen, dest );
2186       //SDL_UpdateRects ( sdl_realscreen, 1, &dest );
2187       dest++;
2188     }
2189
2190     // show dialog frame
2191     if ( g_imagecache [ IMG_DETAIL_PANEL ].i ) {
2192       dest -> x = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_x", 460 );
2193       dest -> y = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_y", 60 );
2194       SDL_BlitSurface ( g_imagecache [ IMG_DETAIL_PANEL ].i, NULL /* whole image */, sdl_realscreen, dest );
2195       //SDL_UpdateRects ( sdl_realscreen, 1, &dest );
2196       dest++;
2197     }
2198
2199     // show header
2200     if ( title ) {
2201       rtext = TTF_RenderText_Blended ( g_tab_font, title, tmpfontcolor );
2202       dest -> x = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_x", 460 ) + 20;
2203       dest -> y = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_y", 60 ) + 20;
2204       SDL_BlitSurface ( rtext, NULL /* full src */, sdl_realscreen, dest );
2205       SDL_FreeSurface ( rtext );
2206       dest++;
2207     }
2208
2209     // show footer
2210     if ( footer ) {
2211       rtext = TTF_RenderText_Blended ( g_tab_font, footer, tmpfontcolor );
2212       dest -> x = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_x", 460 ) + 20;
2213       dest -> y = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_y", 60 ) +
2214         ((SDL_Surface*) g_imagecache [ IMG_DETAIL_PANEL ].i) -> h
2215         - 60;
2216       SDL_BlitSurface ( rtext, NULL /* full src */, sdl_realscreen, dest );
2217       SDL_FreeSurface ( rtext );
2218       dest++;
2219     }
2220
2221     // show options
2222     for ( i = first_visible; i < first_visible + max_visible && i < argc; i++ ) {
2223
2224       // show options
2225       if ( sel == i ) {
2226         rtext = TTF_RenderText_Blended ( g_tab_font, argv [ i ], selfontcolor );
2227       } else {
2228         rtext = TTF_RenderText_Blended ( g_tab_font, argv [ i ], tmpfontcolor );
2229       }
2230       dest -> x = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_x", 460 ) + 20;
2231       dest -> y = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_y", 60 ) + 40 + ( 20 * ( i + 1 - first_visible ) );
2232       SDL_BlitSurface ( rtext, NULL /* full src */, sdl_realscreen, dest );
2233       SDL_FreeSurface ( rtext );
2234       dest++;
2235
2236     } // for
2237
2238     // update all the rects and send it all to sdl
2239     SDL_UpdateRects ( sdl_realscreen, dest - rects, rects );
2240     dest = rects;
2241
2242     // check for input
2243     while ( SDL_WaitEvent ( &event ) ) {
2244
2245       switch ( event.type ) {
2246
2247       //case SDL_KEYUP:
2248       case SDL_KEYDOWN:
2249
2250         if ( event.key.keysym.sym == SDLK_UP ) {
2251           if ( sel ) {
2252             sel--;
2253
2254             if ( sel < first_visible ) {
2255               first_visible--;
2256             }
2257
2258           }
2259         } else if ( event.key.keysym.sym == SDLK_DOWN ) {
2260
2261           if ( sel < argc - 1 ) {
2262             sel++;
2263
2264             // ensure visibility
2265             if ( sel >= first_visible + max_visible ) {
2266               first_visible++;
2267             }
2268
2269           }
2270
2271         } else if ( event.key.keysym.sym == SDLK_RETURN || event.key.keysym.sym == SDLK_END ) { // return, or "B"
2272           return ( sel );
2273
2274 #if 0
2275         } else if ( event.key.keysym.sym == SDLK_q ) {
2276           exit ( 0 );
2277 #endif
2278
2279         } else {
2280           return ( -1 ); // nada
2281         }
2282
2283         break;
2284
2285       } // switch
2286
2287       break;
2288     } // while
2289
2290   } // while
2291
2292   return ( -1 );
2293 }
2294
2295 unsigned char ui_determine_row ( mm_appref_t *a ) {
2296   unsigned int row = 0;
2297
2298   mm_appref_t *i = g_categories [ ui_category ] -> refs;
2299   while ( i != a ) {
2300     i = i -> next;
2301     row++;
2302   } // while
2303   row /= ui_display_context.col_max;
2304
2305   return ( row );
2306 }
2307
2308 unsigned char ui_determine_screen_row ( mm_appref_t *a ) {
2309   return ( ui_determine_row ( a ) % ui_display_context.row_max );
2310 }
2311
2312 unsigned char ui_determine_screen_col ( mm_appref_t *a ) {
2313   unsigned int col = 0;
2314
2315   mm_appref_t *i = g_categories [ ui_category ] -> refs;
2316   while ( i != a ) {
2317     i = i -> next;
2318     col++;
2319   } // while
2320   col %= ui_display_context.col_max;
2321
2322   return ( col );
2323 }
2324
2325 unsigned char ui_show_info ( char *pndrun, pnd_disco_t *p ) {
2326   char *viewer, *searchpath;
2327   pnd_conf_handle desktoph;
2328
2329   // viewer
2330   searchpath = pnd_conf_query_searchpath();
2331
2332   desktoph = pnd_conf_fetch_by_id ( pnd_conf_desktop, searchpath );
2333
2334   if ( ! desktoph ) {
2335     return ( 0 );
2336   }
2337
2338   viewer = pnd_conf_get_as_char ( desktoph, "info.viewer" );
2339
2340   if ( ! viewer ) {
2341     return ( 0 ); // no way to view the file
2342   }
2343
2344   // etc
2345   if ( ! p -> unique_id ) {
2346     return ( 0 );
2347   }
2348
2349   if ( ! p -> info_filename ) {
2350     return ( 0 );
2351   }
2352
2353   if ( ! p -> info_name ) {
2354     return ( 0 );
2355   }
2356
2357   if ( ! pndrun ) {
2358     return ( 0 );
2359   }
2360
2361   // exec line
2362   char args [ 1001 ];
2363   char *pargs = args;
2364   if ( pnd_conf_get_as_char ( desktoph, "info.viewer_args" ) ) {
2365     snprintf ( pargs, 1001, "%s %s",
2366                pnd_conf_get_as_char ( desktoph, "info.viewer_args" ), p -> info_filename );
2367   } else {
2368     pargs = NULL;
2369   }
2370
2371   char pndfile [ 1024 ];
2372   if ( p -> object_type == pnd_object_type_directory ) {
2373     // for PXML-app-dir, pnd_run.sh doesn't want the PXML.xml.. it just wants the dir-name
2374     strncpy ( pndfile, p -> object_path, 1000 );
2375   } else if ( p -> object_type == pnd_object_type_pnd ) {
2376     // pnd_run.sh wants the full path and filename for the .pnd file
2377     snprintf ( pndfile, 1020, "%s/%s", p -> object_path, p -> object_filename );
2378   }
2379
2380   if ( ! pnd_apps_exec ( pndrun, pndfile, p -> unique_id, viewer, p -> startdir, pargs,
2381                          p -> clockspeed ? atoi ( p -> clockspeed ) : 0, PND_EXEC_OPTION_NORUN ) )
2382   {
2383     return ( 0 );
2384   }
2385
2386   pnd_log ( pndn_debug, "Info Exec=%s\n", pnd_apps_exec_runline() );
2387
2388   // try running it
2389   int x;
2390   if ( ( x = fork() ) < 0 ) {
2391     pnd_log ( pndn_error, "ERROR: Couldn't fork()\n" );
2392     return ( 0 );
2393   }
2394
2395   if ( x == 0 ) {
2396     execl ( "/bin/sh", "/bin/sh", "-c", pnd_apps_exec_runline(), (char*)NULL );
2397     pnd_log ( pndn_error, "ERROR: Couldn't exec(%s)\n", pnd_apps_exec_runline() );
2398     return ( 0 );
2399   }
2400
2401   return ( 1 );
2402 }
2403
2404 typedef struct {
2405   SDL_Rect r;
2406   int catnum;
2407   mm_appref_t *ref;
2408 } ui_touch_t;
2409 #define MAXTOUCH 100
2410 ui_touch_t ui_touchrects [ MAXTOUCH ];
2411 unsigned char ui_touchrect_count = 0;
2412
2413 void ui_register_reset ( void ) {
2414   bzero ( ui_touchrects, sizeof(ui_touch_t)*MAXTOUCH );
2415   ui_touchrect_count = 0;
2416   return;
2417 }
2418
2419 void ui_register_tab ( unsigned char catnum, unsigned int x, unsigned int y, unsigned int w, unsigned int h ) {
2420
2421   if ( ui_touchrect_count == MAXTOUCH ) {
2422     return;
2423   }
2424
2425   ui_touchrects [ ui_touchrect_count ].r.x = x;
2426   ui_touchrects [ ui_touchrect_count ].r.y = y;
2427   ui_touchrects [ ui_touchrect_count ].r.w = w;
2428   ui_touchrects [ ui_touchrect_count ].r.h = h;
2429   ui_touchrects [ ui_touchrect_count ].catnum = catnum;
2430   ui_touchrect_count++;
2431
2432   return;
2433 }
2434
2435 void ui_register_app ( mm_appref_t *app, unsigned int x, unsigned int y, unsigned int w, unsigned int h ) {
2436
2437   if ( ui_touchrect_count == MAXTOUCH ) {
2438     return;
2439   }
2440
2441   ui_touchrects [ ui_touchrect_count ].r.x = x;
2442   ui_touchrects [ ui_touchrect_count ].r.y = y;
2443   ui_touchrects [ ui_touchrect_count ].r.w = w;
2444   ui_touchrects [ ui_touchrect_count ].r.h = h;
2445   ui_touchrects [ ui_touchrect_count ].ref = app;
2446   ui_touchrect_count++;
2447
2448   return;
2449 }
2450
2451 void ui_touch_act ( unsigned int x, unsigned int y ) {
2452
2453   unsigned char i;
2454   ui_touch_t *t;
2455
2456   for ( i = 0; i < ui_touchrect_count; i++ ) {
2457     t = &(ui_touchrects [ i ]);
2458
2459     if ( x >= t -> r.x &&
2460          x <= t -> r.x + t -> r.w &&
2461          y >= t -> r.y &&
2462          y <= t -> r.y + t -> r.h
2463        )
2464     {
2465
2466       if ( t -> ref ) {
2467         ui_selected = t -> ref;
2468         ui_push_exec();
2469       } else {
2470         if ( ui_category != t -> catnum ) {
2471           ui_selected = NULL;
2472         }
2473         ui_category = t -> catnum;
2474         render_mask |= CHANGED_CATEGORY;
2475         // rescan the dir
2476         category_fs_restock ( g_categories [ ui_category ] );
2477       }
2478
2479       break;
2480     }
2481
2482   } // for
2483
2484   return;
2485 }
2486
2487 unsigned char ui_forkexec ( char *argv[] ) {
2488   char *fooby = argv[0];
2489   int x;
2490
2491   if ( ( x = fork() ) < 0 ) {
2492     pnd_log ( pndn_error, "ERROR: Couldn't fork() for '%s'\n", fooby );
2493     return ( 0 );
2494   }
2495
2496   if ( x == 0 ) { // child
2497     execv ( fooby, argv );
2498     pnd_log ( pndn_error, "ERROR: Couldn't exec(%s)\n", fooby );
2499     return ( 0 );
2500   }
2501
2502   // parent, success
2503   return ( 1 );
2504 }
2505
2506 unsigned char ui_threaded_defered_preview ( pnd_disco_t *p ) {
2507
2508   if ( ! cache_preview ( p, pnd_conf_get_as_int_d ( g_conf, "previewpic.cell_width", 200 ),
2509                          pnd_conf_get_as_int_d ( g_conf, "previewpic.cell_height", 180 ) )
2510      )
2511   {
2512     pnd_log ( pndn_debug, "THREAD: Couldn't load preview pic: '%s' -> '%s'\n",
2513               IFNULL(p->title_en,"No Name"), p -> preview_pic1 );
2514   }
2515
2516   // trigger that we completed
2517   SDL_Event e;
2518   bzero ( &e, sizeof(SDL_Event) );
2519   e.type = SDL_USEREVENT;
2520   e.user.code = sdl_user_finishedpreview;
2521   e.user.data1 = p;
2522   SDL_PushEvent ( &e );
2523
2524   return ( 0 );
2525 }
2526
2527 SDL_Thread *g_icon_thread = NULL;
2528 void ui_post_scan ( void ) {
2529
2530   // if deferred icon load, kick off the thread now
2531   if ( pnd_conf_get_as_int_d ( g_conf, "minimenu.load_icons_later", 0 ) == 1 ) {
2532
2533     g_icon_thread = SDL_CreateThread ( (void*)ui_threaded_defered_icon, NULL );
2534
2535     if ( ! g_icon_thread ) {
2536       pnd_log ( pndn_error, "ERROR: Couldn't create icon thread\n" );
2537     }
2538
2539   } // deferred icon load
2540
2541   // reset view
2542   ui_selected = NULL;
2543   ui_rows_scrolled_down = 0;
2544   // set back to first tab, to be safe
2545   ui_category = 0;
2546   ui_catshift = 0;
2547
2548   // do we have a preferred category to jump to?
2549   char *dc = pnd_conf_get_as_char ( g_conf, "categories.default_cat" );
2550   if ( dc ) {
2551
2552     // attempt to find default cat; if we do find it, select it; otherwise
2553     // default behaviour will pick first cat (ie: usually All)
2554     unsigned int i;
2555     for ( i = 0; i < g_categorycount; i++ ) {
2556       if ( strcasecmp ( g_categories [ i ] -> catname, dc ) == 0 ) {
2557         ui_category = i;
2558         // ensure visibility
2559         unsigned int screen_width = ui_display_context.screen_width;
2560         unsigned int tab_width = pnd_conf_get_as_int ( g_conf, "tabs.tab_width" );
2561         if ( ui_category > ui_catshift + ( screen_width / tab_width ) - 1 ) {
2562           ui_catshift = ui_category - ( screen_width / tab_width ) + 1;
2563         }
2564         break;
2565       }
2566     }
2567
2568     if ( i == g_categorycount ) {
2569       pnd_log ( pndn_warning, "  User defined default category '%s' but not found, so using default behaviour\n", dc );
2570     }
2571
2572   } // default cat
2573
2574   // if we're sent right to a dirbrowser tab, restock it now (normally we restock on entry)
2575   if ( g_categories [ ui_category ] -> fspath ) {
2576     printf ( "Restock on start: '%s'\n", g_categories [ ui_category ] -> fspath );
2577     category_fs_restock ( g_categories [ ui_category ] );
2578   }
2579
2580   // redraw all
2581   render_mask |= CHANGED_EVERYTHING;
2582
2583   return;
2584 }
2585
2586 unsigned char ui_threaded_defered_icon ( void *p ) {
2587   extern pnd_box_handle g_active_apps;
2588   pnd_box_handle h = g_active_apps;
2589
2590   unsigned char maxwidth, maxheight;
2591   maxwidth = pnd_conf_get_as_int_d ( g_conf, "grid.icon_max_width", 50 );
2592   maxheight = pnd_conf_get_as_int_d ( g_conf, "grid.icon_max_height", 50 );
2593
2594   pnd_disco_t *iter = pnd_box_get_head ( h );
2595
2596   while ( iter ) {
2597
2598     // cache it
2599     if ( iter -> pnd_icon_pos &&
2600          ! cache_icon ( iter, maxwidth, maxheight ) )
2601     {
2602       pnd_log ( pndn_warning, "  Couldn't load icon: '%s'\n", IFNULL(iter->title_en,"No Name") );
2603     } else {
2604
2605       // trigger that we completed
2606       SDL_Event e;
2607       bzero ( &e, sizeof(SDL_Event) );
2608       e.type = SDL_USEREVENT;
2609       e.user.code = sdl_user_finishedicon;
2610       SDL_PushEvent ( &e );
2611
2612       //pnd_log ( pndn_warning, "  Finished deferred load icon: '%s'\n", IFNULL(iter->title_en,"No Name") );
2613       usleep ( pnd_conf_get_as_int_d ( g_conf, "minimenu.defer_icon_us", 50000 ) );
2614
2615     }
2616
2617     // next
2618     iter = pnd_box_get_next ( iter );
2619   } // while
2620
2621   return ( 0 );
2622 }
2623
2624 void ui_show_hourglass ( unsigned char updaterect ) {
2625
2626   SDL_Rect dest;
2627   SDL_Surface *s = g_imagecache [ IMG_HOURGLASS ].i;
2628
2629   dest.x = ( 800 - s -> w ) / 2;
2630   dest.y = ( 480 - s -> h ) / 2;
2631
2632   SDL_BlitSurface ( s, NULL /* whole image */, sdl_realscreen, &dest );
2633
2634   if ( updaterect ) {
2635     SDL_UpdateRects ( sdl_realscreen, 1, &dest );
2636   }
2637
2638   return;
2639 }
2640
2641 unsigned char ui_pick_skin ( void ) {
2642 #define MAXSKINS 10
2643   char *skins [ MAXSKINS ];
2644   unsigned char iter;
2645
2646   char *searchpath = pnd_conf_get_as_char ( g_conf, "minimenu.skin_searchpath" );
2647   char tempname [ 100 ];
2648
2649   iter = 0;
2650
2651   skins [ iter++ ] = "No skin change";
2652
2653   SEARCHPATH_PRE
2654   {
2655     DIR *d = opendir ( buffer );
2656
2657     if ( d ) {
2658       struct dirent *dd;
2659
2660       while ( ( dd = readdir ( d ) ) ) {
2661
2662         if ( dd -> d_name [ 0 ] == '.' ) {
2663           // ignore
2664         } else if ( ( dd -> d_type == DT_DIR || dd -> d_type == DT_UNKNOWN ) &&
2665                     iter < MAXSKINS )
2666         {
2667           snprintf ( tempname, 100, "Skin: %s", dd -> d_name );
2668           skins [ iter++ ] = strdup ( tempname );
2669         }
2670
2671       }
2672
2673       closedir ( d );
2674     }
2675
2676   }
2677   SEARCHPATH_POST
2678
2679   int sel = ui_modal_single_menu ( skins, iter, "Skins", "Enter to select; other to return." );
2680
2681   // did they pick one?
2682   if ( sel > 0 ) {
2683     FILE *f;
2684
2685     char *s = strdup ( pnd_conf_get_as_char ( g_conf, "minimenu.skin_selected" ) );
2686     s = pnd_expand_tilde ( s );
2687
2688     f = fopen ( s, "w" );
2689
2690     free ( s );
2691
2692     if ( f ) {
2693       fprintf ( f, "%s\n", skins [ sel ] + 6 );
2694       fclose ( f );
2695     }
2696
2697     return ( 1 );
2698   }
2699
2700   return ( 0 );
2701 }
2702
2703 void ui_aboutscreen ( char *textpath ) {
2704 #define PIXELW 7
2705 #define PIXELH 7
2706 #define MARGINW 3
2707 #define MARGINH 3
2708 #define SCRW 800
2709 #define SCRH 480
2710 #define ROWS SCRH / ( PIXELH + MARGINH )
2711 #define COLS SCRW / ( PIXELW + MARGINW )
2712
2713   unsigned char pixelboard [ ROWS * COLS ]; // pixel heat
2714   bzero ( pixelboard, ROWS * COLS );
2715
2716   SDL_Surface *rtext;
2717   SDL_Rect r;
2718
2719   SDL_Color rtextc = { 200, 200, 200, 100 };
2720
2721   // pixel scroller
2722   char *textloop [ 500 ];
2723   unsigned int textmax = 0;
2724   bzero ( textloop, 500 * sizeof(char*) );
2725
2726   // cursor scroller
2727   char cbuffer [ 50000 ];
2728   bzero ( cbuffer, 50000 );
2729   unsigned int crevealed = 0;
2730
2731   FILE *f = fopen ( textpath, "r" );
2732
2733   if ( ! f ) {
2734     pnd_log ( pndn_error, "ERROR: Couldn't open about text: %s\n", textpath );
2735     return;
2736   }
2737
2738   char textbuf [ 100 ];
2739   while ( fgets ( textbuf, 100, f ) ) {
2740
2741     // add to full buffer
2742     strncat ( cbuffer, textbuf, 50000 );
2743
2744     // chomp
2745     if ( strchr ( textbuf, '\n' ) ) {
2746       * strchr ( textbuf, '\n' ) = '\0';
2747     }
2748
2749     // add to pixel loop
2750     if ( 1||textbuf [ 0 ] ) {
2751       textloop [ textmax ] = strdup ( textbuf );
2752       textmax++;
2753     }
2754
2755   } // while fgets
2756
2757   fclose ( f );
2758
2759   unsigned int textiter = 0;
2760   while ( textiter < textmax ) {
2761     char *text = textloop [ textiter ];
2762
2763     rtext = NULL;
2764     if ( text [ 0 ] ) {
2765       // render to surface
2766       rtext = TTF_RenderText_Blended ( g_grid_font, text, rtextc );
2767
2768       // render font to pixelboard
2769       unsigned int px, py;
2770       unsigned char *ph;
2771       unsigned int *pixels = rtext -> pixels;
2772       unsigned char cr, cg, cb, ca;
2773       for ( py = 0; py < rtext -> h; py ++ ) {
2774         for ( px = 0; px < ( rtext -> w > COLS ? COLS : rtext -> w ); px++ ) {
2775
2776           SDL_GetRGBA ( pixels [ ( py * rtext -> pitch / 4 ) + px ],
2777                         rtext -> format, &cr, &cg, &cb, &ca );
2778
2779           if ( ca != 0 ) {
2780
2781             ph = pixelboard + ( /*y offset */ 30 * COLS ) + ( py * COLS ) + px /* / 2 */;
2782
2783             if ( *ph < 100 ) {
2784               *ph = 100;
2785             }
2786
2787             ca /= 5;
2788             if ( *ph + ca < 250 ) {
2789               *ph += ca;
2790             }
2791
2792           } // got a pixel?
2793
2794         } // x
2795       } // y
2796
2797     } // got text?
2798
2799     unsigned int runcount = 10;
2800     while ( runcount-- ) {
2801
2802       // clear display
2803       SDL_FillRect( sdl_realscreen, NULL /* whole */, 0 );
2804
2805       // render pixelboard
2806       unsigned int x, y;
2807       unsigned int c;
2808       for ( y = 0; y < ROWS; y++ ) {
2809         for ( x = 0; x < COLS; x++ ) {
2810
2811           if ( 1||pixelboard [ ( y * COLS ) + x ] ) {
2812
2813             // position
2814             r.x = x * ( PIXELW + MARGINW );
2815             r.y = y * ( PIXELH + MARGINH );
2816             r.w = PIXELW;
2817             r.h = PIXELH;
2818             // heat -> colour
2819             c = SDL_MapRGB ( sdl_realscreen -> format, 100 /* r */, 0 /* g */, pixelboard [ ( y * COLS ) + x ] );
2820             // render
2821             SDL_FillRect( sdl_realscreen, &r /* whole */, c );
2822
2823           }
2824
2825         } // x
2826       } // y
2827
2828       // cool pixels
2829       unsigned char *pc = pixelboard;
2830       for ( y = 0; y < ROWS; y++ ) {
2831         for ( x = 0; x < COLS; x++ ) {
2832
2833           if ( *pc > 10 ) {
2834             (*pc) -= 3;
2835           }
2836
2837           pc++;
2838         } // x
2839       } // y
2840
2841       // slide pixels upwards
2842       memmove ( pixelboard, pixelboard + COLS, ( COLS * ROWS ) - COLS );
2843
2844       // render actual readable text
2845       {
2846
2847         // display up to cursor
2848         SDL_Rect dest;
2849         unsigned int cdraw = 0;
2850         SDL_Surface *cs;
2851         char ctb [ 2 ];
2852
2853         if ( crevealed > 200 ) {
2854           cdraw = crevealed - 200;
2855         }
2856
2857         dest.x = 400;
2858         dest.y = 20;
2859
2860         for ( ; cdraw < crevealed; cdraw++ ) {
2861           ctb [ 0 ] = cbuffer [ cdraw ];
2862           ctb [ 1 ] = '\0';
2863           // move over or down
2864           if ( cbuffer [ cdraw ] == '\n' ) {
2865             // EOL
2866             dest.x = 400;
2867             dest.y += 14;
2868
2869             if ( dest.y > 450 ) {
2870               dest.y = 450;
2871             }
2872
2873           } else {
2874             // draw the char
2875             cs = TTF_RenderText_Blended ( g_tab_font, ctb, rtextc );
2876             if ( cs ) {
2877               SDL_BlitSurface ( cs, NULL /* all */, sdl_realscreen, &dest );
2878               SDL_FreeSurface ( cs );
2879               // over
2880               dest.x += cs -> w;
2881             }
2882           }
2883
2884         }
2885
2886         dest.w = 10;
2887         dest.h = 20;
2888         SDL_FillRect ( sdl_realscreen, &dest /* whole */, 220 );
2889
2890         // increment cursor to next character
2891         if ( cbuffer [ crevealed ] != '\0' ) {
2892           crevealed++;
2893         }
2894
2895       } // draw cursor text
2896
2897       // reveal
2898       //
2899       SDL_UpdateRect ( sdl_realscreen, 0, 0, 0, 0 ); // whole screen
2900
2901       usleep ( 50000 );
2902
2903       // any button? if so, about
2904       {
2905         SDL_PumpEvents();
2906
2907         SDL_Event e;
2908
2909         if ( SDL_PeepEvents ( &e, 1, SDL_GETEVENT, SDL_EVENTMASK(/*SDL_KEYUP|*/SDL_KEYDOWN) ) > 0 ) {
2910           return;
2911         }
2912
2913       }
2914
2915     } // while cooling
2916
2917     if ( rtext ) {
2918       SDL_FreeSurface ( rtext );
2919     }
2920
2921     textiter++;
2922   } // while more text
2923
2924   // free up
2925   unsigned int i;
2926   for ( i = 0; i < textmax; i++ ) {
2927     if ( textloop [ i ] ) {
2928       free ( textloop [ i ] );
2929       textloop [ i ] = 0;
2930     }
2931   }
2932
2933   return;
2934 }
2935
2936 void ui_revealscreen ( void ) {
2937   char *labels [ 500 ];
2938   unsigned int labelmax = 0;
2939   unsigned int i;
2940
2941   if ( ! category_count ( CFHIDDEN ) ) {
2942     return; // nothing to do
2943   }
2944
2945   // switch to hidden categories
2946   category_publish ( CFHIDDEN, NULL );
2947
2948   // build up labels to show in menu
2949   for ( i = 0; i < g_categorycount; i++ ) {
2950     labels [ labelmax++ ] = g_categories [ i ] -> catname;
2951   }
2952
2953   // show menu
2954   int sel = ui_modal_single_menu ( labels, labelmax, "Temporary Category Reveal",
2955                                    "Enter to select; other to return." );
2956
2957   // if selected, try to set this guy to visible
2958   if ( sel >= 0 ) {
2959
2960     // fix up category name, if its been hacked
2961     if ( strchr ( g_categories [ sel ] -> catname, '.' ) ) {
2962       char *t = g_categories [ sel ] -> catname;
2963       g_categories [ sel ] -> catname = strdup ( strchr ( g_categories [ sel ] -> catname, '.' ) + 1 );
2964       free ( t );
2965     }
2966
2967     // reflag this guy to be visible
2968     g_categories [ sel ] -> catflags = CFNORMAL;
2969
2970     // switch to the new category.. cache name.
2971     char *switch_to_name = g_categories [ sel ] -> catname;
2972
2973     // republish categories
2974     category_publish ( CFNORMAL, NULL );
2975
2976     // switch to the new category.. with the cached name!
2977     ui_category = category_index ( switch_to_name );
2978
2979     // ensure visibility
2980     unsigned int screen_width = ui_display_context.screen_width;
2981     unsigned int tab_width = pnd_conf_get_as_int ( g_conf, "tabs.tab_width" );
2982     if ( ui_category > ui_catshift + ( screen_width / tab_width ) - 1 ) {
2983       ui_catshift = ui_category - ( screen_width / tab_width ) + 1;
2984     }
2985
2986     // redraw tabs
2987     render_mask |= CHANGED_CATEGORY;
2988   }
2989
2990   return;
2991 }
2992
2993 void ui_recache_context ( ui_context_t *c ) {
2994
2995   c -> screen_width = pnd_conf_get_as_int_d ( g_conf, "display.screen_width", 800 );
2996
2997   c -> font_rgba_r = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_r", 200 );
2998   c -> font_rgba_g = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_g", 200 );
2999   c -> font_rgba_b = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_b", 200 );
3000   c -> font_rgba_a = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_a", 100 );
3001
3002   c -> grid_offset_x = pnd_conf_get_as_int ( g_conf, "grid.grid_offset_x" );
3003   c -> grid_offset_y = pnd_conf_get_as_int ( g_conf, "grid.grid_offset_y" );
3004
3005   c -> icon_offset_x = pnd_conf_get_as_int ( g_conf, "grid.icon_offset_x" );
3006   c -> icon_offset_y = pnd_conf_get_as_int ( g_conf, "grid.icon_offset_y" );
3007   c -> icon_max_width = pnd_conf_get_as_int ( g_conf, "grid.icon_max_width" );
3008   c -> icon_max_height = pnd_conf_get_as_int ( g_conf, "grid.icon_max_height" );
3009   c -> sel_icon_offset_x = pnd_conf_get_as_int_d ( g_conf, "grid.sel_offoffset_x", 0 );
3010   c -> sel_icon_offset_y = pnd_conf_get_as_int_d ( g_conf, "grid.sel_offoffset_y", 0 );
3011
3012   c -> text_width = pnd_conf_get_as_int ( g_conf, "grid.text_width" );
3013   c -> text_clip_x = pnd_conf_get_as_int ( g_conf, "grid.text_clip_x" );
3014   c -> text_offset_x = pnd_conf_get_as_int ( g_conf, "grid.text_offset_x" );
3015   c -> text_offset_y = pnd_conf_get_as_int ( g_conf, "grid.text_offset_y" );
3016   c -> text_hilite_offset_y = pnd_conf_get_as_int ( g_conf, "grid.text_hilite_offset_y" );
3017
3018   c -> row_max = pnd_conf_get_as_int_d ( g_conf, "grid.row_max", 4 );
3019   c -> col_max = pnd_conf_get_as_int_d ( g_conf, "grid.col_max", 5 );
3020
3021   c -> cell_width = pnd_conf_get_as_int ( g_conf, "grid.cell_width" );
3022   c -> cell_height = pnd_conf_get_as_int ( g_conf, "grid.cell_height" );
3023
3024   c -> arrow_bar_x = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_bar_x", 450 );
3025   c -> arrow_bar_y = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_bar_y", 100 );
3026   c -> arrow_bar_clip_w = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_bar_clip_w", 10 );
3027   c -> arrow_bar_clip_h = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_bar_clip_h", 100 );
3028   c -> arrow_up_x = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_up_x", 450 );
3029   c -> arrow_up_y = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_up_y", 80 );
3030   c -> arrow_down_x = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_down_x", 450 );
3031   c -> arrow_down_y = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_down_y", 80 );
3032
3033   // font colour
3034   SDL_Color tmp = { c -> font_rgba_r, c -> font_rgba_g, c -> font_rgba_b, c -> font_rgba_a };
3035   c -> fontcolor = tmp;
3036
3037   // now that we've got 'normal' (detail pane shown) param's, lets check if detail pane
3038   // is hidden; if so, override some values with those alternate skin values where possible.
3039   if ( ui_detail_hidden ) {
3040     // if detail panel is hidden, and theme cannot support it, unhide the bloody thing. (This may help
3041     // when someone is amid theme hacking or changing.)
3042     if ( ! ui_is_detail_hideable() ) {
3043       ui_detail_hidden = 0;
3044     }
3045
3046     // still hidden?
3047     if ( ui_detail_hidden ) {
3048
3049       c -> row_max = pnd_conf_get_as_int_d ( g_conf, "grid.row_max_w", c -> row_max );
3050       c -> col_max = pnd_conf_get_as_int_d ( g_conf, "grid.col_max_w", c -> col_max );
3051
3052       c -> cell_width = pnd_conf_get_as_int_d ( g_conf, "grid.cell_width_w", c -> cell_width );
3053       c -> cell_height = pnd_conf_get_as_int_d ( g_conf, "grid.cell_height_w", c -> cell_height );
3054
3055       c -> arrow_bar_x = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_bar_x_w", 450 );
3056       c -> arrow_bar_y = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_bar_y_w", 100 );
3057       c -> arrow_up_x = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_up_x_w", 450 );
3058       c -> arrow_up_y = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_up_y_w", 80 );
3059       c -> arrow_down_x = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_down_x_w", 450 );
3060       c -> arrow_down_y = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_down_y_w", 80 );
3061
3062     } // if detail hidden.. still.
3063
3064   } // if detail hidden
3065
3066   return;
3067 }
3068
3069 unsigned char ui_is_detail_hideable ( void ) {
3070
3071   // if skin has a bit of info for wide-mode, we assume wide-mode is available
3072   if ( pnd_conf_get_as_char ( g_conf, "grid.row_max_w" ) != NULL ) {
3073     return ( 1 );
3074   }
3075
3076   // else not!
3077   return ( 0 );
3078 }
3079
3080 void ui_toggle_detail_pane ( void ) {
3081
3082   // no bitmask trickery here; I like it to be stand-out obvious at 3am.
3083
3084   if ( ui_detail_hidden ) {
3085     ui_detail_hidden = 0;
3086   } else {
3087     ui_detail_hidden = 1;
3088   }
3089
3090   // repull skin config
3091   ui_recache_context ( &ui_display_context );
3092
3093   // redraw
3094   render_mask |= CHANGED_EVERYTHING;
3095
3096   return;
3097 }