In 'reveal hidden tab' menu, now shows 'catname [parent catname]' format, to be more...
[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       // the user-defined SDL events are all for threaded/delayed previews (and icons, which
1048       // generally are not used); if we're in wide mode, we can skip previews
1049       // to avoid slowing things down when they're not shown.
1050
1051       if ( event.user.code == sdl_user_ticker ) {
1052
1053         if ( ui_detail_hidden ) {
1054           break; // skip building previews when not showing them
1055         }
1056
1057         // timer went off, time to load something
1058         if ( pnd_conf_get_as_int_d ( g_conf, "minimenu.load_previews_later", 0 ) ) {
1059
1060           if ( ! ui_selected ) {
1061             break;
1062           }
1063
1064           // load the preview pics now!
1065           pnd_disco_t *iter = ui_selected -> ref;
1066
1067           if ( iter -> preview_pic1 ) {
1068
1069             if ( pnd_conf_get_as_int_d ( g_conf, "minimenu.threaded_preview", 0 ) ) {
1070               // load in bg thread, make user experience chuggy
1071
1072               g_preview_thread = SDL_CreateThread ( (void*)ui_threaded_defered_preview, iter );
1073
1074               if ( ! g_preview_thread ) {
1075                 pnd_log ( pndn_error, "ERROR: Couldn't create preview thread\n" );
1076               }
1077
1078             } else {
1079               // load it now, make user wait
1080
1081               if ( ! cache_preview ( iter, pnd_conf_get_as_int_d ( g_conf, "previewpic.cell_width", 200 ),
1082                                      pnd_conf_get_as_int_d ( g_conf, "previewpic.cell_height", 180 ) )
1083                  )
1084               {
1085                 pnd_log ( pndn_debug, "  Couldn't load preview pic: '%s' -> '%s'\n",
1086                           IFNULL(iter->title_en,"No Name"), iter -> preview_pic1 );
1087               }
1088
1089             } // threaded?
1090
1091           } // got a preview at all?
1092
1093           ui_event++;
1094         }
1095
1096       } else if ( event.user.code == sdl_user_finishedpreview ) {
1097
1098         // if we just finished the one we happen to be looking at, better redraw now; otherwise, if
1099         // we finished another, no big woop
1100         if ( ui_selected && event.user.data1 == ui_selected -> ref ) {
1101           ui_event++;
1102         }
1103
1104       } else if ( event.user.code == sdl_user_finishedicon ) {
1105         // redraw, so we can show the newly loaded icon
1106         ui_event++;
1107
1108       }
1109
1110       render_mask |= CHANGED_EVERYTHING;
1111
1112       break;
1113
1114 #if 0 // joystick motion
1115     case SDL_JOYAXISMOTION:
1116
1117       pnd_log ( PND_LOG_DEFAULT, "joystick axis\n" );
1118
1119         if ( event.jaxis.axis == 0 ) {
1120           // horiz
1121           if ( event.jaxis.value < 0 ) {
1122             ui_push_left ( 0 );
1123             pnd_log ( PND_LOG_DEFAULT, "joystick axis - LEFT\n" );
1124           } else if ( event.jaxis.value > 0 ) {
1125             ui_push_right ( 0 );
1126             pnd_log ( PND_LOG_DEFAULT, "joystick axis - RIGHT\n" );
1127           }
1128         } else if ( event.jaxis.axis == 1 ) {
1129           // vert
1130           if ( event.jaxis.value < 0 ) {
1131             ui_push_up();
1132           } else if ( event.jaxis.value > 0 ) {
1133             ui_push_down();
1134           }
1135         }
1136
1137         ui_event++;
1138
1139         break;
1140 #endif
1141
1142 #if 0 // joystick buttons
1143     case SDL_JOYBUTTONDOWN:
1144
1145       pnd_log ( PND_LOG_DEFAULT, "joystick button down %u\n", event.jbutton.button );
1146
1147       if ( event.jbutton.button == 0 ) { // B
1148         ui_mask |= uisb_b;
1149       } else if ( event.jbutton.button == 1 ) { // Y
1150         ui_mask |= uisb_y;
1151       } else if ( event.jbutton.button == 2 ) { // X
1152         ui_mask |= uisb_x;
1153       } else if ( event.jbutton.button == 3 ) { // A
1154         ui_mask |= uisb_a;
1155
1156       } else if ( event.jbutton.button == 4 ) { // Select
1157         ui_mask |= uisb_select;
1158       } else if ( event.jbutton.button == 5 ) { // Start
1159         ui_mask |= uisb_start;
1160
1161       } else if ( event.jbutton.button == 7 ) { // L
1162         ui_mask |= uisb_l;
1163       } else if ( event.jbutton.button == 8 ) { // R
1164         ui_mask |= uisb_r;
1165
1166       }
1167
1168       ui_event++;
1169
1170       break;
1171
1172     case SDL_JOYBUTTONUP:
1173
1174       pnd_log ( PND_LOG_DEFAULT, "joystick button up %u\n", event.jbutton.button );
1175
1176       if ( event.jbutton.button == 0 ) { // B
1177         ui_mask &= ~uisb_b;
1178         ui_push_exec();
1179       } else if ( event.jbutton.button == 1 ) { // Y
1180         ui_mask &= ~uisb_y;
1181       } else if ( event.jbutton.button == 2 ) { // X
1182         ui_mask &= ~uisb_x;
1183       } else if ( event.jbutton.button == 3 ) { // A
1184         ui_mask &= ~uisb_a;
1185
1186       } else if ( event.jbutton.button == 4 ) { // Select
1187         ui_mask &= ~uisb_select;
1188       } else if ( event.jbutton.button == 5 ) { // Start
1189         ui_mask &= ~uisb_start;
1190
1191       } else if ( event.jbutton.button == 7 ) { // L
1192         ui_mask &= ~uisb_l;
1193         ui_push_ltrigger();
1194       } else if ( event.jbutton.button == 8 ) { // R
1195         ui_mask &= ~uisb_r;
1196         ui_push_rtrigger();
1197
1198       }
1199
1200       ui_event++;
1201
1202       break;
1203 #endif
1204
1205 #if 1 // keyboard events
1206     //case SDL_KEYUP:
1207     case SDL_KEYDOWN:
1208
1209       //pnd_log ( pndn_debug, "key up %u\n", event.key.keysym.sym );
1210
1211       // SDLK_LALT -> Start
1212       // page up/down for y/x
1213       // home/end for a and b
1214
1215       // directional
1216       if ( event.key.keysym.sym == SDLK_RIGHT ) {
1217         ui_push_right ( 0 );
1218         ui_event++;
1219       } else if ( event.key.keysym.sym == SDLK_LEFT ) {
1220         ui_push_left ( 0 );
1221         ui_event++;
1222       } else if ( event.key.keysym.sym == SDLK_UP ) {
1223         ui_push_up();
1224         ui_event++;
1225       } else if ( event.key.keysym.sym == SDLK_DOWN ) {
1226         ui_push_down();
1227         ui_event++;
1228       } else if ( event.key.keysym.sym == SDLK_SPACE || event.key.keysym.sym == SDLK_END ) { // space or B
1229         ui_push_exec();
1230         ui_event++;
1231       } else if ( event.key.keysym.sym == SDLK_TAB || event.key.keysym.sym == SDLK_HOME ) { // tab or A
1232         // if detail panel is togglable, then toggle it
1233         // if not, make sure its ruddy well shown!
1234         if ( ui_is_detail_hideable() ) {
1235           ui_toggle_detail_pane();
1236         } else {
1237           ui_detail_hidden = 0;
1238         }
1239         ui_event++;
1240       } else if ( event.key.keysym.sym == SDLK_RSHIFT || event.key.keysym.sym == SDLK_COMMA ) { // left trigger or comma
1241         ui_push_ltrigger();
1242         ui_event++;
1243       } else if ( event.key.keysym.sym == SDLK_RCTRL || event.key.keysym.sym == SDLK_PERIOD ) { // right trigger or period
1244         ui_push_rtrigger();
1245         ui_event++;
1246       } else if ( event.key.keysym.sym == SDLK_PAGEUP ) { // Y
1247         // info
1248         if ( ui_selected ) {
1249           ui_show_info ( pnd_run_script, ui_selected -> ref );
1250           ui_event++;
1251         }
1252
1253       } else if ( event.key.keysym.sym == SDLK_LALT ) { // start button
1254         ui_push_exec();
1255         ui_event++;
1256
1257       } else if ( event.key.keysym.sym == SDLK_LCTRL /*LALT*/ ) { // select button
1258         char *opts [ 20 ] = {
1259           "Reveal hidden category",
1260           "Shutdown Pandora",
1261           "Configure Minimenu",
1262           "Rescan for applications",
1263           "Cache previews to SD now",
1264           "Run a terminal/console",
1265           "Run another GUI (xfce, etc)",
1266           "Quit (<- beware)",
1267           "Select a Minimenu skin",
1268           "About Minimenu"
1269         };
1270         int sel = ui_modal_single_menu ( opts, 10, "Minimenu", "Enter to select; other to return." );
1271
1272         char buffer [ 100 ];
1273         if ( sel == 0 ) {
1274           // do nothing
1275           ui_revealscreen();
1276         } else if ( sel == 1 ) {
1277           // shutdown
1278           sprintf ( buffer, "sudo poweroff" );
1279           system ( buffer );
1280         } else if ( sel == 2 ) {
1281           // configure mm
1282           unsigned char restart = conf_run_menu ( NULL );
1283           conf_write ( g_conf, conf_determine_location ( g_conf ) );
1284           if ( restart ) {
1285             emit_and_quit ( MM_RESTART );
1286           }
1287         } else if ( sel == 3 ) {
1288           // rescan apps
1289           pnd_log ( pndn_debug, "Freeing up applications\n" );
1290           applications_free();
1291           pnd_log ( pndn_debug, "Rescanning applications\n" );
1292           applications_scan();
1293         } else if ( sel == 4 ) {
1294           // cache preview to SD now
1295           extern pnd_box_handle g_active_apps;
1296           pnd_box_handle h = g_active_apps;
1297
1298           unsigned int maxwidth, maxheight;
1299           maxwidth = pnd_conf_get_as_int_d ( g_conf, "previewpic.cell_width", 200 );
1300           maxheight = pnd_conf_get_as_int_d ( g_conf, "previewpic.cell_height", 180 );
1301
1302           pnd_disco_t *iter = pnd_box_get_head ( h );
1303
1304           while ( iter ) {
1305
1306             // cache it
1307             if ( ! cache_preview ( iter, maxwidth, maxheight ) ) {
1308               pnd_log ( pndn_debug, "Force cache: Couldn't load preview pic: '%s' -> '%s'\n",
1309                         IFNULL(iter->title_en,"No Name"), iter -> preview_pic1 );
1310             }
1311
1312             // next
1313             iter = pnd_box_get_next ( iter );
1314           } // while
1315
1316         } else if ( sel == 5 ) {
1317           // run terminal
1318           char *argv[5];
1319           argv [ 0 ] = pnd_conf_get_as_char ( g_conf, "utility.terminal" );
1320           argv [ 1 ] = NULL;
1321
1322           if ( argv [ 0 ] ) {
1323             ui_forkexec ( argv );
1324           }
1325
1326         } else if ( sel == 6 ) {
1327           char buffer [ PATH_MAX ];
1328           sprintf ( buffer, "%s %s\n", MM_RUN, "/usr/pandora/scripts/op_switchgui.sh" );
1329           emit_and_quit ( buffer );
1330         } else if ( sel == 7 ) {
1331           emit_and_quit ( MM_QUIT );
1332         } else if ( sel == 8 ) {
1333           // select skin
1334           if ( ui_pick_skin() ) {
1335             emit_and_quit ( MM_RESTART );
1336           }
1337         } else if ( sel == 9 ) {
1338           // about
1339           char buffer [ PATH_MAX ];
1340           sprintf ( buffer, "%s/about.txt", g_skinpath );
1341           ui_aboutscreen ( buffer );
1342         }
1343
1344         ui_event++;
1345         render_mask |= CHANGED_EVERYTHING;
1346
1347       } else {
1348         // unknown SDLK_ keycode?
1349
1350         // many SDLK_keycodes map to ASCII ("a" is ascii(a)), so try to jump to a filename of that name, in this category?
1351         // and if already there, try to jump to next, maybe?
1352         // future: look for sequence typing? ie: user types 'm' then 'a', look for 'ma*' instead of 'm' then 'a' matching
1353         if ( isalpha ( event.key.keysym.sym ) && g_categories [ ui_category ] -> refcount > 0 ) {
1354           mm_appref_t *app = g_categories [ ui_category ] -> refs;
1355
1356           //fprintf ( stderr, "sel %s next %s\n", ui_selected -> ref -> title_en, ui_selected -> next -> ref -> title_en );
1357
1358           // are we already matching the same char? and next item is also same char?
1359           if ( app && ui_selected &&
1360                ui_selected -> ref -> title_en && ui_selected -> next -> ref -> title_en &&
1361                toupper ( ui_selected -> ref -> title_en [ 0 ] ) == toupper ( ui_selected -> next -> ref -> title_en [ 0 ] ) &&
1362                toupper ( ui_selected -> ref -> title_en [ 0 ] ) == toupper ( event.key.keysym.sym )
1363              )
1364           {
1365             // just skip down one
1366             app = ui_selected -> next;
1367           } else {
1368
1369             // walk the category, looking for a first-char match
1370             while ( app ) {
1371               if ( app -> ref -> title_en && toupper ( app -> ref -> title_en [ 0 ] ) == toupper ( event.key.keysym.sym ) ) {
1372                 break;
1373               }
1374               app = app -> next;
1375             }
1376
1377           } // same start letter, or new run?
1378
1379           // found something, or no?
1380           if ( app ) {
1381             // looks like we found a potential match; try switching it to visible selection
1382             ui_selected = app;
1383             ui_set_selected ( ui_selected );
1384           }
1385
1386
1387
1388
1389
1390         } // SDLK_alphanumeric?
1391
1392       } // SDLK_....
1393
1394       // extras
1395 #if 1
1396       if ( event.key.keysym.sym == SDLK_ESCAPE ) {
1397         emit_and_quit ( MM_QUIT );
1398       }
1399 #endif
1400
1401       break;
1402 #endif
1403
1404 #if 1 // mouse / touchscreen
1405 #if 0
1406     case SDL_MOUSEBUTTONDOWN:
1407       if ( event.button.button == SDL_BUTTON_LEFT ) {
1408         cb_pointer_press ( gc, event.button.x / g_scale, event.button.y / g_scale );
1409         ui_event++;
1410       }
1411       break;
1412 #endif
1413
1414     case SDL_MOUSEBUTTONUP:
1415       if ( event.button.button == SDL_BUTTON_LEFT ) {
1416         ui_touch_act ( event.button.x, event.button.y );
1417         ui_event++;
1418       }
1419       break;
1420 #endif
1421
1422     case SDL_QUIT:
1423       exit ( 0 );
1424       break;
1425
1426     default:
1427       break;
1428
1429     } // switch event type
1430
1431   } // while poll
1432
1433   return;
1434 }
1435
1436 void ui_push_left ( unsigned char forcecoil ) {
1437
1438   if ( ! ui_selected ) {
1439     ui_push_right ( 0 );
1440     return;
1441   }
1442
1443   // what column we in?
1444   unsigned int col = ui_determine_screen_col ( ui_selected );
1445
1446   // are we already at first item?
1447   if ( forcecoil == 0 &&
1448        pnd_conf_get_as_int_d ( g_conf, "grid.wrap_horiz_samerow", 0 ) &&
1449        col == 0 )
1450   {
1451     unsigned int i = ui_display_context.col_max - 1;
1452     while ( i && ui_selected -> next ) {
1453       ui_push_right ( 0 );
1454       i--;
1455     }
1456
1457   } else if ( g_categories [ ui_category ] -> refs == ui_selected ) {
1458     // can't go any more left, we're at the head
1459
1460   } else {
1461     // figure out the previous item; yay for singly linked list :/
1462     mm_appref_t *i = g_categories [ ui_category ] -> refs;
1463     while ( i ) {
1464       if ( i -> next == ui_selected ) {
1465         ui_selected = i;
1466         break;
1467       }
1468       i = i -> next;
1469     }
1470   }
1471
1472   ui_set_selected ( ui_selected );
1473
1474   return;
1475 }
1476
1477 void ui_push_right ( unsigned char forcecoil ) {
1478
1479   if ( ui_selected ) {
1480
1481     // what column we in?
1482     unsigned int col = ui_determine_screen_col ( ui_selected );
1483
1484     // wrap same or no?
1485     if ( forcecoil == 0 &&
1486          pnd_conf_get_as_int_d ( g_conf, "grid.wrap_horiz_samerow", 0 ) &&
1487          // and selected is far-right, or last icon in category (might not be far right)
1488          ( ( col == ui_display_context.col_max - 1 ) ||
1489            ( ui_selected -> next == NULL ) )
1490        )
1491     {
1492       // same wrap
1493       //unsigned int i = pnd_conf_get_as_int_d ( g_conf, "grid.col_max", 5 ) - 1;
1494       while ( col /*i*/ ) {
1495         ui_push_left ( 0 );
1496         col--; //i--;
1497       }
1498
1499     } else {
1500       // just go to the next
1501
1502       if ( ui_selected -> next ) {
1503         ui_selected = ui_selected -> next;
1504       }
1505
1506     }
1507
1508   } else {
1509     ui_selected = g_categories [ ui_category ] -> refs;
1510   }
1511
1512   ui_set_selected ( ui_selected );
1513
1514   return;
1515 }
1516
1517 void ui_push_up ( void ) {
1518   unsigned char col_max = ui_display_context.col_max;
1519
1520   if ( ! ui_selected ) {
1521     return;
1522   }
1523
1524   // what row we in?
1525   unsigned int row = ui_determine_row ( ui_selected );
1526
1527   if ( row == 0 &&
1528        pnd_conf_get_as_int_d ( g_conf, "grid.wrap_vert_stop", 0 ) == 0 )
1529   {
1530     // wrap around instead
1531
1532     unsigned int col = ui_determine_screen_col ( ui_selected );
1533
1534     // go to end
1535     ui_selected = g_categories [ ui_category ] -> refs;
1536     while ( ui_selected -> next ) {
1537       ui_selected = ui_selected -> next;
1538     }
1539
1540     // try to move to same column
1541     unsigned int newcol = ui_determine_screen_col ( ui_selected );
1542     if ( newcol > col ) {
1543       col = newcol - col;
1544       while ( col ) {
1545         ui_push_left ( 0 );
1546         col--;
1547       }
1548     }
1549
1550     // scroll down to show it
1551     int r = ui_determine_row ( ui_selected ) - 1;
1552     if ( r - ui_display_context.row_max > 0 ) {
1553       ui_rows_scrolled_down = (unsigned int) r;
1554     }
1555
1556   } else {
1557     // stop at top/bottom
1558
1559     while ( col_max ) {
1560       ui_push_left ( 1 );
1561       col_max--;
1562     }
1563
1564   }
1565
1566   return;
1567 }
1568
1569 void ui_push_down ( void ) {
1570   unsigned char col_max = ui_display_context.col_max;
1571
1572   if ( ui_selected ) {
1573
1574     // what row we in?
1575     unsigned int row = ui_determine_row ( ui_selected );
1576
1577     // max rows?
1578     unsigned int icon_rows = g_categories [ ui_category ] -> refcount / col_max;
1579     if ( g_categories [ ui_category ] -> refcount % col_max > 0 ) {
1580       icon_rows++;
1581     }
1582
1583     // we at the end?
1584     if ( row == ( icon_rows - 1 ) &&
1585          pnd_conf_get_as_int_d ( g_conf, "grid.wrap_vert_stop", 0 ) == 0 )
1586     {
1587
1588       unsigned char col = ui_determine_screen_col ( ui_selected );
1589
1590       ui_selected = g_categories [ ui_category ] -> refs;
1591
1592       while ( col ) {
1593         ui_selected = ui_selected -> next;
1594         col--;
1595       }
1596
1597       ui_rows_scrolled_down = 0;
1598
1599       render_mask |= CHANGED_EVERYTHING;
1600
1601     } else {
1602
1603       while ( col_max ) {
1604         ui_push_right ( 1 );
1605         col_max--;
1606       }
1607
1608     }
1609
1610   } else {
1611     ui_push_right ( 0 );
1612   }
1613
1614   return;
1615 }
1616
1617 void ui_push_exec ( void ) {
1618
1619   if ( ! ui_selected ) {
1620     return;
1621   }
1622
1623   // was this icon generated from filesystem, or from pnd-file?
1624   if ( ui_selected -> ref -> object_flags & PND_DISCO_GENERATED ) {
1625
1626     if ( ! ui_selected -> ref -> title_en ) {
1627       return; // no filename
1628     }
1629
1630     if ( ui_selected -> ref -> object_type == pnd_object_type_directory ) {
1631
1632       // check if this guy is a dir-browser tab, or is a directory on a pnd tab
1633       if ( ! g_categories [ ui_category] -> fspath ) {
1634         // pnd subcat as dir
1635
1636         static char *ui_category_stack = NULL;
1637
1638         // are we already in a subcat? if so, go back to parent; there is no grandparenting or deeper
1639         if ( g_categories [ ui_category ] -> parent_catname ) {
1640           // go back up
1641
1642           // set to first cat!
1643           ui_category = 0;
1644           // republish cats .. shoudl just be the one
1645           category_publish ( CFNORMAL, NULL );
1646
1647           if ( ui_category_stack ) {
1648             ui_category = category_index ( ui_category_stack );
1649           }
1650
1651         } else {
1652           // delve into subcat
1653
1654           // set to first cat!
1655           ui_category_stack = g_categories [ ui_category ] -> catname;
1656           ui_category = 0;
1657           // republish cats .. shoudl just be the one
1658           category_publish ( CFBYNAME, ui_selected -> ref -> object_path );
1659
1660         }
1661
1662         // forget the selection, nolonger applies
1663         ui_selected = NULL;
1664         ui_set_selected ( ui_selected );
1665         // redraw the grid
1666         render_mask |= CHANGED_EVERYTHING;
1667
1668       } else {
1669
1670         // delve up/down the dir tree
1671         if ( strcmp ( ui_selected -> ref -> title_en, ".." ) == 0 ) {
1672           // go up
1673           char *c;
1674
1675           // lop off last word; if the thing ends with /, lop that one, then the next word.
1676           while ( ( c = strrchr ( g_categories [ ui_category] -> fspath, '/' ) ) ) {
1677             *c = '\0'; // lop off the last hunk
1678             if ( *(c+1) != '\0' ) {
1679               break;
1680             }
1681           } // while
1682
1683           // nothing left?
1684           if ( g_categories [ ui_category] -> fspath [ 0 ] == '\0' ) {
1685             free ( g_categories [ ui_category] -> fspath );
1686             g_categories [ ui_category] -> fspath = strdup ( "/" );
1687           }
1688
1689         } else {
1690           // go down
1691           char *temp = malloc ( strlen ( g_categories [ ui_category] -> fspath ) + strlen ( ui_selected -> ref -> title_en ) + 1 + 1 );
1692           sprintf ( temp, "%s/%s", g_categories [ ui_category] -> fspath, ui_selected -> ref -> title_en );
1693           free ( g_categories [ ui_category] -> fspath );
1694           g_categories [ ui_category] -> fspath = temp;
1695         }
1696
1697         pnd_log ( pndn_debug, "Cat %s is now in path %s\n", g_categories [ ui_category ] -> catname, g_categories [ ui_category ]-> fspath );
1698
1699         // forget the selection, nolonger applies
1700         ui_selected = NULL;
1701         ui_set_selected ( ui_selected );
1702         // rescan the dir
1703         category_fs_restock ( g_categories [ ui_category ] );
1704         // redraw the grid
1705         render_mask |= CHANGED_SELECTION;
1706
1707       } // directory browser or pnd subcat?
1708
1709     } else {
1710       // just run it arbitrarily?
1711
1712       // if this a pnd-file, or just some executable?
1713       if ( strcasestr ( ui_selected -> ref -> object_filename, PND_PACKAGE_FILEEXT ) ) {
1714         // looks like a pnd, now what do we do..
1715         pnd_box_handle h = pnd_disco_file ( ui_selected -> ref -> object_path, ui_selected -> ref -> object_filename );
1716
1717         if ( h ) {
1718           pnd_disco_t *d = pnd_box_get_head ( h );
1719           pnd_apps_exec_disco ( pnd_run_script, d, PND_EXEC_OPTION_NORUN, NULL );
1720           char buffer [ PATH_MAX ];
1721           sprintf ( buffer, "%s %s\n", MM_RUN, pnd_apps_exec_runline() );
1722           if ( pnd_conf_get_as_int_d ( g_conf, "minimenu.live_on_run", 0 ) == 0 ) {
1723             emit_and_quit ( buffer );
1724           } else {
1725             emit_and_run ( buffer );
1726           }
1727         }
1728
1729       } else {
1730         // random bin file
1731
1732         // is it even executable? if we don't have handlers for non-executables yet (Jan 2011 we don't),
1733         // then don't even try to run things not-flagged as executable.. but wait most people are on
1734         // FAT filesystems, what a drag, we can't tell at the fs level.
1735         // ... but we can still invoke 'file' and grep out the good bits, at least.
1736         //
1737         // open a stream reading 'file /path/to/file' and check output for 'executable'
1738         // -- not checking for "ARM" so it can pick up x86 (or whatever native) executables in build environment
1739         unsigned char is_executable = 0;
1740
1741         // popen test
1742         {
1743           char popenbuf [ FILENAME_MAX ];
1744           snprintf ( popenbuf, FILENAME_MAX, "%s %s/%s", MIMETYPE_EXE, g_categories [ ui_category ] -> fspath, ui_selected -> ref -> title_en );
1745
1746           FILE *marceau;
1747           if ( ! ( marceau = popen ( popenbuf, "r" ) ) ) {
1748             return; // error, we need some useful error handling and dialog boxes here
1749           }
1750
1751           if ( fgets ( popenbuf, FILENAME_MAX, marceau ) ) {
1752             //printf ( "File test returns: %s\n", popenbuf );
1753             if ( strstr ( popenbuf, "executable" ) != NULL ) {
1754               is_executable = 1;
1755             }
1756           }
1757
1758           pclose ( marceau );
1759
1760         } // popen test
1761
1762         if ( ! is_executable ) {
1763           fprintf ( stderr, "ERROR: File to invoke is not executable, skipping. (%s)\n", ui_selected -> ref -> title_en );
1764           return; // need some error handling here
1765         }
1766
1767 #if 0 // eat up any pending SDL events and toss 'em?
1768         {
1769           SDL_PumpEvents();
1770           SDL_Event e;
1771           while ( SDL_PeepEvents ( &e, 1, SDL_GETEVENT, SDL_ALLEVENTS ) > 0 ) {
1772             // spin
1773           }
1774         }
1775 #endif
1776
1777 #if 1
1778         // just exec it
1779         //
1780
1781         // get CWD so we can restore it on return
1782         char cwd [ PATH_MAX ];
1783         getcwd ( cwd, PATH_MAX );
1784
1785         // full path to executable so we don't rely on implicit "./"
1786         char execbuf [ FILENAME_MAX ];
1787         snprintf ( execbuf, FILENAME_MAX, "%s/%s", g_categories [ ui_category ] -> fspath, ui_selected -> ref -> title_en );
1788
1789         // do it!
1790         chdir ( g_categories [ ui_category ] -> fspath );
1791         exec_raw_binary ( execbuf /*ui_selected -> ref -> title_en*/ );
1792         chdir ( cwd );
1793 #else
1794         // DEPRECATED / NOT TESTED
1795         // get mmwrapper to run it
1796         char buffer [ PATH_MAX ];
1797         sprintf ( buffer, "%s %s/%s\n", MM_RUN, g_categories [ ui_category ] -> fspath, ui_selected -> ref -> title_en );
1798         if ( pnd_conf_get_as_int_d ( g_conf, "minimenu.live_on_run", 0 ) == 0 ) {
1799           emit_and_quit ( buffer );
1800         } else {
1801           emit_and_run ( buffer );
1802         }
1803 #endif
1804       } // pnd or bin?
1805
1806     } // dir or file?
1807
1808   } else {
1809
1810     // set app-run speed
1811     int use_run_speed = pnd_conf_get_as_int_d ( g_conf, "minimenu.use_run_speed", 0 );
1812     if ( use_run_speed > 0 ) {
1813       int mm_speed = pnd_conf_get_as_int_d ( g_conf, "minimenu.run_speed", -1 );
1814       if ( mm_speed > -1 ) {
1815         char buffer [ 512 ];
1816         snprintf ( buffer, 500, "sudo /usr/pandora/scripts/op_cpuspeed.sh %d", mm_speed );
1817         system ( buffer );
1818       }
1819     } // do speed change?
1820
1821     // request app to run and quit mmenu
1822     pnd_apps_exec_disco ( pnd_run_script, ui_selected -> ref, PND_EXEC_OPTION_NORUN, NULL );
1823     char buffer [ PATH_MAX ];
1824     sprintf ( buffer, "%s %s\n", MM_RUN, pnd_apps_exec_runline() );
1825     if ( pnd_conf_get_as_int_d ( g_conf, "minimenu.live_on_run", 0 ) == 0 ) {
1826       emit_and_quit ( buffer );
1827     } else {
1828       emit_and_run ( buffer );
1829     }
1830   }
1831
1832   return;
1833 }
1834
1835 void ui_push_ltrigger ( void ) {
1836   unsigned char oldcat = ui_category;
1837   unsigned int screen_width = ui_display_context.screen_width;
1838   unsigned int tab_width = pnd_conf_get_as_int ( g_conf, "tabs.tab_width" );
1839
1840   if ( g_categorycount == 0 ) {
1841     return;
1842   }
1843
1844   if ( ui_category > 0 ) {
1845     ui_category--;
1846     category_fs_restock ( g_categories [ ui_category ] );
1847   } else {
1848     if ( pnd_conf_get_as_int_d ( g_conf, "tabs.wraparound", 0 ) > 0 ) {
1849       ui_category = g_categorycount - 1;
1850       ui_catshift = 0;
1851       if ( ui_category >= ( screen_width / tab_width ) ) {
1852         ui_catshift = ui_category - ( screen_width / tab_width ) + 1;
1853       }
1854       category_fs_restock ( g_categories [ ui_category ] );
1855     }
1856   }
1857
1858   if ( oldcat != ui_category ) {
1859     ui_selected = NULL;
1860     ui_set_selected ( ui_selected );
1861   }
1862
1863   // make tab visible?
1864   if ( ui_catshift > 0 && ui_category == ui_catshift - 1 ) {
1865     ui_catshift--;
1866   }
1867
1868   // unscroll
1869   ui_rows_scrolled_down = 0;
1870
1871   render_mask |= CHANGED_CATEGORY;
1872
1873   return;
1874 }
1875
1876 void ui_push_rtrigger ( void ) {
1877   unsigned char oldcat = ui_category;
1878
1879   if ( g_categorycount == 0 ) {
1880     return;
1881   }
1882
1883   unsigned int screen_width = ui_display_context.screen_width;
1884   unsigned int tab_width = pnd_conf_get_as_int ( g_conf, "tabs.tab_width" );
1885
1886   if ( ui_category < ( g_categorycount - 1 ) ) {
1887     ui_category++;
1888     category_fs_restock ( g_categories [ ui_category ] );
1889   } else {
1890     if ( pnd_conf_get_as_int_d ( g_conf, "tabs.wraparound", 0 ) > 0 ) {
1891       ui_category = 0;
1892       ui_catshift = 0;
1893       category_fs_restock ( g_categories [ ui_category ] );
1894     }
1895   }
1896
1897   if ( oldcat != ui_category ) {
1898     ui_selected = NULL;
1899     ui_set_selected ( ui_selected );
1900   }
1901
1902   // make tab visible?
1903   if ( ui_category > ui_catshift + ( screen_width / tab_width ) - 1 ) {
1904     ui_catshift++;
1905   }
1906
1907   // unscroll
1908   ui_rows_scrolled_down = 0;
1909
1910   render_mask |= CHANGED_CATEGORY;
1911
1912   return;
1913 }
1914
1915 SDL_Surface *ui_scale_image ( SDL_Surface *s, unsigned int maxwidth, int maxheight ) {
1916   double scale = 1000000.0;
1917   double scalex = 1000000.0;
1918   double scaley = 1000000.0;
1919   SDL_Surface *scaled;
1920
1921   scalex = (double)maxwidth / (double)s -> w;
1922
1923   if ( maxheight == -1 ) {
1924     scale = scalex;
1925   } else {
1926     scaley = (double)maxheight / (double)s -> h;
1927
1928     if ( scaley < scalex ) {
1929       scale = scaley;
1930     } else {
1931       scale = scalex;
1932     }
1933
1934   }
1935
1936   scaled = rotozoomSurface ( s, 0 /* angle*/, scale /* scale */, 1 /* smooth==1*/ );
1937   SDL_FreeSurface ( s );
1938   s = scaled;
1939
1940   return ( s );
1941 }
1942
1943 void ui_loadscreen ( void ) {
1944
1945   SDL_Rect dest;
1946
1947   // clear the screen
1948   SDL_FillRect( SDL_GetVideoSurface(), NULL, 0 );
1949
1950   // render text
1951   SDL_Surface *rtext;
1952   rtext = TTF_RenderText_Blended ( g_big_font, "Setting up menu...", ui_display_context.fontcolor );
1953   dest.x = 20;
1954   dest.y = 20;
1955   SDL_BlitSurface ( rtext, NULL /* full src */, sdl_realscreen, &dest );
1956   SDL_UpdateRects ( sdl_realscreen, 1, &dest );
1957   SDL_FreeSurface ( rtext );
1958
1959   return;
1960 }
1961
1962 void ui_discoverscreen ( unsigned char clearscreen ) {
1963
1964   SDL_Rect dest;
1965
1966   // clear the screen
1967   if ( clearscreen ) {
1968     SDL_FillRect( SDL_GetVideoSurface(), NULL, 0 );
1969
1970     // render background
1971     if ( g_imagecache [ IMG_BACKGROUND_800480 ].i ) {
1972       dest.x = 0;
1973       dest.y = 0;
1974       dest.w = sdl_realscreen -> w;
1975       dest.h = sdl_realscreen -> h;
1976       SDL_BlitSurface ( g_imagecache [ IMG_BACKGROUND_800480 ].i, NULL /* whole image */, sdl_realscreen, NULL /* 0,0 */ );
1977       SDL_UpdateRects ( sdl_realscreen, 1, &dest );
1978     }
1979
1980   }
1981
1982   // render text
1983   SDL_Surface *rtext;
1984   rtext = TTF_RenderText_Blended ( g_big_font, "Looking for applications...", ui_display_context.fontcolor );
1985   if ( clearscreen ) {
1986     dest.x = 20;
1987     dest.y = 20;
1988   } else {
1989     dest.x = 20;
1990     dest.y = 40;
1991   }
1992   SDL_BlitSurface ( rtext, NULL /* full src */, sdl_realscreen, &dest );
1993   SDL_UpdateRects ( sdl_realscreen, 1, &dest );
1994   SDL_FreeSurface ( rtext );
1995
1996   // render icon
1997   if ( g_imagecache [ IMG_ICON_MISSING ].i ) {
1998     dest.x = rtext -> w + 30;
1999     dest.y = 20;
2000     SDL_BlitSurface ( g_imagecache [ IMG_ICON_MISSING ].i, NULL, sdl_realscreen, &dest );
2001     SDL_UpdateRects ( sdl_realscreen, 1, &dest );
2002   }
2003
2004   return;
2005 }
2006
2007 void ui_cachescreen ( unsigned char clearscreen, char *filename ) {
2008
2009   SDL_Rect rects [ 4 ];
2010   SDL_Rect *dest = rects;
2011   SDL_Rect src;
2012   bzero ( dest, sizeof(SDL_Rect)* 4 );
2013
2014   unsigned int font_rgba_r = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_r", 200 );
2015   unsigned int font_rgba_g = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_g", 200 );
2016   unsigned int font_rgba_b = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_b", 200 );
2017   unsigned int font_rgba_a = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_a", 100 );
2018
2019   static unsigned int stepx = 0;
2020
2021   // clear the screen
2022   if ( clearscreen ) {
2023     SDL_FillRect( SDL_GetVideoSurface(), NULL, 0 );
2024
2025     // render background
2026     if ( g_imagecache [ IMG_BACKGROUND_800480 ].i ) {
2027       dest -> x = 0;
2028       dest -> y = 0;
2029       dest -> w = sdl_realscreen -> w;
2030       dest -> h = sdl_realscreen -> h;
2031       SDL_BlitSurface ( g_imagecache [ IMG_BACKGROUND_800480 ].i, NULL /* whole image */, sdl_realscreen, NULL /* 0,0 */ );
2032       dest++;
2033     }
2034
2035   } else {
2036
2037     // render background
2038     if ( g_imagecache [ IMG_BACKGROUND_800480 ].i ) {
2039       src.x = 0;
2040       src.y = 0;
2041       src.w = sdl_realscreen -> w;
2042       src.h = 100;
2043       dest -> x = 0;
2044       dest -> y = 0;
2045       dest -> w = sdl_realscreen -> w;
2046       dest -> h = sdl_realscreen -> h;
2047       SDL_BlitSurface ( g_imagecache [ IMG_BACKGROUND_800480 ].i, &src, sdl_realscreen, dest );
2048       dest++;
2049     }
2050
2051   } // clear it
2052
2053   // render text
2054   SDL_Surface *rtext;
2055   SDL_Color tmpfontcolor = { font_rgba_r, font_rgba_g, font_rgba_b, font_rgba_a };
2056   rtext = TTF_RenderText_Blended ( g_big_font, "Caching applications artwork...", tmpfontcolor );
2057   dest -> x = 20;
2058   dest -> y = 20;
2059   SDL_BlitSurface ( rtext, NULL /* full src */, sdl_realscreen, dest );
2060   SDL_FreeSurface ( rtext );
2061   dest++;
2062
2063   // render icon
2064   if ( g_imagecache [ IMG_ICON_MISSING ].i ) {
2065     dest -> x = rtext -> w + 30 + stepx;
2066     dest -> y = 20;
2067     SDL_BlitSurface ( g_imagecache [ IMG_ICON_MISSING ].i, NULL, sdl_realscreen, dest );
2068     dest++;
2069   }
2070
2071   // filename
2072   if ( filename ) {
2073     rtext = TTF_RenderText_Blended ( g_tab_font, filename, tmpfontcolor );
2074     dest -> x = 20;
2075     dest -> y = 50;
2076     SDL_BlitSurface ( rtext, NULL /* full src */, sdl_realscreen, dest );
2077     SDL_FreeSurface ( rtext );
2078     dest++;
2079   }
2080
2081   // move across
2082   stepx += 20;
2083
2084   if ( stepx > 350 ) {
2085     stepx = 0;
2086   }
2087
2088   SDL_UpdateRects ( sdl_realscreen, dest - rects, rects );
2089
2090   return;
2091 }
2092
2093 int ui_selected_index ( void ) {
2094
2095   if ( ! ui_selected ) {
2096     return ( -1 ); // no index
2097   }
2098
2099   mm_appref_t *r = g_categories [ ui_category ] -> refs;
2100   int counter = 0;
2101   while ( r ) {
2102     if ( r == ui_selected ) {
2103       return ( counter );
2104     }
2105     r = r -> next;
2106     counter++;
2107   }
2108
2109   return ( -1 );
2110 }
2111
2112 static mm_appref_t *timer_ref = NULL;
2113 void ui_set_selected ( mm_appref_t *r ) {
2114
2115   render_mask |= CHANGED_SELECTION;
2116
2117   if ( ! pnd_conf_get_as_int_d ( g_conf, "minimenu.load_previews_later", 0 ) ) {
2118     return; // no desire to defer anything
2119   }
2120
2121   if ( ! r ) {
2122     // cancel timer
2123     SDL_SetTimer ( 0, NULL );
2124     timer_ref = NULL;
2125     return;
2126   }
2127
2128   SDL_SetTimer ( pnd_conf_get_as_int_d ( g_conf, "previewpic.defer_timer_ms", 1000 ), ui_callback_f );
2129   timer_ref = r;
2130
2131   return;
2132 }
2133
2134 unsigned int ui_callback_f ( unsigned int t ) {
2135
2136   if ( ui_selected != timer_ref ) {
2137     return ( 0 ); // user has moved it, who cares
2138   }
2139
2140   SDL_Event e;
2141   bzero ( &e, sizeof(SDL_Event) );
2142   e.type = SDL_USEREVENT;
2143   e.user.code = sdl_user_ticker;
2144   SDL_PushEvent ( &e );
2145
2146   return ( 0 );
2147 }
2148
2149 int ui_modal_single_menu ( char *argv[], unsigned int argc, char *title, char *footer ) {
2150   SDL_Rect rects [ 40 ];
2151   SDL_Rect *dest = rects;
2152   SDL_Rect src;
2153   SDL_Surface *rtext;
2154   unsigned char max_visible = pnd_conf_get_as_int_d ( g_conf, "detailtext.max_visible" , 11 );
2155   unsigned char first_visible = 0;
2156
2157   bzero ( rects, sizeof(SDL_Rect) * 40 );
2158
2159   unsigned int sel = 0;
2160
2161   unsigned int font_rgba_r = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_r", 200 );
2162   unsigned int font_rgba_g = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_g", 200 );
2163   unsigned int font_rgba_b = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_b", 200 );
2164   unsigned int font_rgba_a = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_a", 100 );
2165
2166   SDL_Color tmpfontcolor = { font_rgba_r, font_rgba_g, font_rgba_b, font_rgba_a };
2167
2168   SDL_Color selfontcolor = { 0/*font_rgba_r*/, font_rgba_g, font_rgba_b, font_rgba_a };
2169
2170   unsigned int i;
2171   SDL_Event event;
2172
2173   while ( 1 ) {
2174
2175     // clear
2176     dest -> x = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_x", 460 );
2177     dest -> y = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_y", 60 );
2178     dest -> w = ((SDL_Surface*) g_imagecache [ IMG_DETAIL_PANEL ].i) -> w;
2179     dest -> h = ((SDL_Surface*) g_imagecache [ IMG_DETAIL_PANEL ].i) -> h;
2180     SDL_FillRect( sdl_realscreen, dest, 0 );
2181
2182     // show dialog background
2183     if ( g_imagecache [ IMG_DETAIL_BG ].i ) {
2184       src.x = 0;
2185       src.y = 0;
2186       src.w = ((SDL_Surface*)(g_imagecache [ IMG_DETAIL_BG ].i)) -> w;
2187       src.h = ((SDL_Surface*)(g_imagecache [ IMG_DETAIL_BG ].i)) -> h;
2188       dest -> x = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_x", 460 );
2189       dest -> y = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_y", 60 );
2190       SDL_BlitSurface ( g_imagecache [ IMG_DETAIL_BG ].i, &src, sdl_realscreen, dest );
2191       // repeat for darken?
2192       //SDL_BlitSurface ( g_imagecache [ IMG_DETAIL_BG ].i, &src, sdl_realscreen, dest );
2193       //SDL_BlitSurface ( g_imagecache [ IMG_DETAIL_BG ].i, &src, sdl_realscreen, dest );
2194       //SDL_UpdateRects ( sdl_realscreen, 1, &dest );
2195       dest++;
2196     }
2197
2198     // show dialog frame
2199     if ( g_imagecache [ IMG_DETAIL_PANEL ].i ) {
2200       dest -> x = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_x", 460 );
2201       dest -> y = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_y", 60 );
2202       SDL_BlitSurface ( g_imagecache [ IMG_DETAIL_PANEL ].i, NULL /* whole image */, sdl_realscreen, dest );
2203       //SDL_UpdateRects ( sdl_realscreen, 1, &dest );
2204       dest++;
2205     }
2206
2207     // show header
2208     if ( title ) {
2209       rtext = TTF_RenderText_Blended ( g_tab_font, title, tmpfontcolor );
2210       dest -> x = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_x", 460 ) + 20;
2211       dest -> y = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_y", 60 ) + 20;
2212       SDL_BlitSurface ( rtext, NULL /* full src */, sdl_realscreen, dest );
2213       SDL_FreeSurface ( rtext );
2214       dest++;
2215     }
2216
2217     // show footer
2218     if ( footer ) {
2219       rtext = TTF_RenderText_Blended ( g_tab_font, footer, tmpfontcolor );
2220       dest -> x = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_x", 460 ) + 20;
2221       dest -> y = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_y", 60 ) +
2222         ((SDL_Surface*) g_imagecache [ IMG_DETAIL_PANEL ].i) -> h
2223         - 60;
2224       SDL_BlitSurface ( rtext, NULL /* full src */, sdl_realscreen, dest );
2225       SDL_FreeSurface ( rtext );
2226       dest++;
2227     }
2228
2229     // show options
2230     for ( i = first_visible; i < first_visible + max_visible && i < argc; i++ ) {
2231
2232       // show options
2233       if ( sel == i ) {
2234         rtext = TTF_RenderText_Blended ( g_tab_font, argv [ i ], selfontcolor );
2235       } else {
2236         rtext = TTF_RenderText_Blended ( g_tab_font, argv [ i ], tmpfontcolor );
2237       }
2238       dest -> x = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_x", 460 ) + 20;
2239       dest -> y = pnd_conf_get_as_int_d ( g_conf, "detailpane.pane_offset_y", 60 ) + 40 + ( 20 * ( i + 1 - first_visible ) );
2240       SDL_BlitSurface ( rtext, NULL /* full src */, sdl_realscreen, dest );
2241       SDL_FreeSurface ( rtext );
2242       dest++;
2243
2244     } // for
2245
2246     // update all the rects and send it all to sdl
2247     SDL_UpdateRects ( sdl_realscreen, dest - rects, rects );
2248     dest = rects;
2249
2250     // check for input
2251     while ( SDL_WaitEvent ( &event ) ) {
2252
2253       switch ( event.type ) {
2254
2255       //case SDL_KEYUP:
2256       case SDL_KEYDOWN:
2257
2258         if ( event.key.keysym.sym == SDLK_UP ) {
2259           if ( sel ) {
2260             sel--;
2261
2262             if ( sel < first_visible ) {
2263               first_visible--;
2264             }
2265
2266           }
2267         } else if ( event.key.keysym.sym == SDLK_DOWN ) {
2268
2269           if ( sel < argc - 1 ) {
2270             sel++;
2271
2272             // ensure visibility
2273             if ( sel >= first_visible + max_visible ) {
2274               first_visible++;
2275             }
2276
2277           }
2278
2279         } else if ( event.key.keysym.sym == SDLK_RETURN || event.key.keysym.sym == SDLK_END ) { // return, or "B"
2280           return ( sel );
2281
2282 #if 0
2283         } else if ( event.key.keysym.sym == SDLK_q ) {
2284           exit ( 0 );
2285 #endif
2286
2287         } else {
2288           return ( -1 ); // nada
2289         }
2290
2291         break;
2292
2293       } // switch
2294
2295       break;
2296     } // while
2297
2298   } // while
2299
2300   return ( -1 );
2301 }
2302
2303 unsigned char ui_determine_row ( mm_appref_t *a ) {
2304   unsigned int row = 0;
2305
2306   mm_appref_t *i = g_categories [ ui_category ] -> refs;
2307   while ( i != a ) {
2308     i = i -> next;
2309     row++;
2310   } // while
2311   row /= ui_display_context.col_max;
2312
2313   return ( row );
2314 }
2315
2316 unsigned char ui_determine_screen_row ( mm_appref_t *a ) {
2317   return ( ui_determine_row ( a ) % ui_display_context.row_max );
2318 }
2319
2320 unsigned char ui_determine_screen_col ( mm_appref_t *a ) {
2321   unsigned int col = 0;
2322
2323   mm_appref_t *i = g_categories [ ui_category ] -> refs;
2324   while ( i != a ) {
2325     i = i -> next;
2326     col++;
2327   } // while
2328   col %= ui_display_context.col_max;
2329
2330   return ( col );
2331 }
2332
2333 unsigned char ui_show_info ( char *pndrun, pnd_disco_t *p ) {
2334   char *viewer, *searchpath;
2335   pnd_conf_handle desktoph;
2336
2337   // viewer
2338   searchpath = pnd_conf_query_searchpath();
2339
2340   desktoph = pnd_conf_fetch_by_id ( pnd_conf_desktop, searchpath );
2341
2342   if ( ! desktoph ) {
2343     return ( 0 );
2344   }
2345
2346   viewer = pnd_conf_get_as_char ( desktoph, "info.viewer" );
2347
2348   if ( ! viewer ) {
2349     return ( 0 ); // no way to view the file
2350   }
2351
2352   // etc
2353   if ( ! p -> unique_id ) {
2354     return ( 0 );
2355   }
2356
2357   if ( ! p -> info_filename ) {
2358     return ( 0 );
2359   }
2360
2361   if ( ! p -> info_name ) {
2362     return ( 0 );
2363   }
2364
2365   if ( ! pndrun ) {
2366     return ( 0 );
2367   }
2368
2369   // exec line
2370   char args [ 1001 ];
2371   char *pargs = args;
2372   if ( pnd_conf_get_as_char ( desktoph, "info.viewer_args" ) ) {
2373     snprintf ( pargs, 1001, "%s %s",
2374                pnd_conf_get_as_char ( desktoph, "info.viewer_args" ), p -> info_filename );
2375   } else {
2376     pargs = NULL;
2377   }
2378
2379   char pndfile [ 1024 ];
2380   if ( p -> object_type == pnd_object_type_directory ) {
2381     // for PXML-app-dir, pnd_run.sh doesn't want the PXML.xml.. it just wants the dir-name
2382     strncpy ( pndfile, p -> object_path, 1000 );
2383   } else if ( p -> object_type == pnd_object_type_pnd ) {
2384     // pnd_run.sh wants the full path and filename for the .pnd file
2385     snprintf ( pndfile, 1020, "%s/%s", p -> object_path, p -> object_filename );
2386   }
2387
2388   if ( ! pnd_apps_exec ( pndrun, pndfile, p -> unique_id, viewer, p -> startdir, pargs,
2389                          p -> clockspeed ? atoi ( p -> clockspeed ) : 0, PND_EXEC_OPTION_NORUN ) )
2390   {
2391     return ( 0 );
2392   }
2393
2394   pnd_log ( pndn_debug, "Info Exec=%s\n", pnd_apps_exec_runline() );
2395
2396   // try running it
2397   int x;
2398   if ( ( x = fork() ) < 0 ) {
2399     pnd_log ( pndn_error, "ERROR: Couldn't fork()\n" );
2400     return ( 0 );
2401   }
2402
2403   if ( x == 0 ) {
2404     execl ( "/bin/sh", "/bin/sh", "-c", pnd_apps_exec_runline(), (char*)NULL );
2405     pnd_log ( pndn_error, "ERROR: Couldn't exec(%s)\n", pnd_apps_exec_runline() );
2406     return ( 0 );
2407   }
2408
2409   return ( 1 );
2410 }
2411
2412 typedef struct {
2413   SDL_Rect r;
2414   int catnum;
2415   mm_appref_t *ref;
2416 } ui_touch_t;
2417 #define MAXTOUCH 100
2418 ui_touch_t ui_touchrects [ MAXTOUCH ];
2419 unsigned char ui_touchrect_count = 0;
2420
2421 void ui_register_reset ( void ) {
2422   bzero ( ui_touchrects, sizeof(ui_touch_t)*MAXTOUCH );
2423   ui_touchrect_count = 0;
2424   return;
2425 }
2426
2427 void ui_register_tab ( unsigned char catnum, unsigned int x, unsigned int y, unsigned int w, unsigned int h ) {
2428
2429   if ( ui_touchrect_count == MAXTOUCH ) {
2430     return;
2431   }
2432
2433   ui_touchrects [ ui_touchrect_count ].r.x = x;
2434   ui_touchrects [ ui_touchrect_count ].r.y = y;
2435   ui_touchrects [ ui_touchrect_count ].r.w = w;
2436   ui_touchrects [ ui_touchrect_count ].r.h = h;
2437   ui_touchrects [ ui_touchrect_count ].catnum = catnum;
2438   ui_touchrect_count++;
2439
2440   return;
2441 }
2442
2443 void ui_register_app ( mm_appref_t *app, unsigned int x, unsigned int y, unsigned int w, unsigned int h ) {
2444
2445   if ( ui_touchrect_count == MAXTOUCH ) {
2446     return;
2447   }
2448
2449   ui_touchrects [ ui_touchrect_count ].r.x = x;
2450   ui_touchrects [ ui_touchrect_count ].r.y = y;
2451   ui_touchrects [ ui_touchrect_count ].r.w = w;
2452   ui_touchrects [ ui_touchrect_count ].r.h = h;
2453   ui_touchrects [ ui_touchrect_count ].ref = app;
2454   ui_touchrect_count++;
2455
2456   return;
2457 }
2458
2459 void ui_touch_act ( unsigned int x, unsigned int y ) {
2460
2461   unsigned char i;
2462   ui_touch_t *t;
2463
2464   for ( i = 0; i < ui_touchrect_count; i++ ) {
2465     t = &(ui_touchrects [ i ]);
2466
2467     if ( x >= t -> r.x &&
2468          x <= t -> r.x + t -> r.w &&
2469          y >= t -> r.y &&
2470          y <= t -> r.y + t -> r.h
2471        )
2472     {
2473
2474       if ( t -> ref ) {
2475         ui_selected = t -> ref;
2476         ui_push_exec();
2477       } else {
2478         if ( ui_category != t -> catnum ) {
2479           ui_selected = NULL;
2480         }
2481         ui_category = t -> catnum;
2482         render_mask |= CHANGED_CATEGORY;
2483         // rescan the dir
2484         category_fs_restock ( g_categories [ ui_category ] );
2485       }
2486
2487       break;
2488     }
2489
2490   } // for
2491
2492   return;
2493 }
2494
2495 unsigned char ui_forkexec ( char *argv[] ) {
2496   char *fooby = argv[0];
2497   int x;
2498
2499   if ( ( x = fork() ) < 0 ) {
2500     pnd_log ( pndn_error, "ERROR: Couldn't fork() for '%s'\n", fooby );
2501     return ( 0 );
2502   }
2503
2504   if ( x == 0 ) { // child
2505     execv ( fooby, argv );
2506     pnd_log ( pndn_error, "ERROR: Couldn't exec(%s)\n", fooby );
2507     return ( 0 );
2508   }
2509
2510   // parent, success
2511   return ( 1 );
2512 }
2513
2514 unsigned char ui_threaded_defered_preview ( pnd_disco_t *p ) {
2515
2516   if ( ! cache_preview ( p, pnd_conf_get_as_int_d ( g_conf, "previewpic.cell_width", 200 ),
2517                          pnd_conf_get_as_int_d ( g_conf, "previewpic.cell_height", 180 ) )
2518      )
2519   {
2520     pnd_log ( pndn_debug, "THREAD: Couldn't load preview pic: '%s' -> '%s'\n",
2521               IFNULL(p->title_en,"No Name"), p -> preview_pic1 );
2522   }
2523
2524   // trigger that we completed
2525   SDL_Event e;
2526   bzero ( &e, sizeof(SDL_Event) );
2527   e.type = SDL_USEREVENT;
2528   e.user.code = sdl_user_finishedpreview;
2529   e.user.data1 = p;
2530   SDL_PushEvent ( &e );
2531
2532   return ( 0 );
2533 }
2534
2535 SDL_Thread *g_icon_thread = NULL;
2536 void ui_post_scan ( void ) {
2537
2538   // if deferred icon load, kick off the thread now
2539   if ( pnd_conf_get_as_int_d ( g_conf, "minimenu.load_icons_later", 0 ) == 1 ) {
2540
2541     g_icon_thread = SDL_CreateThread ( (void*)ui_threaded_defered_icon, NULL );
2542
2543     if ( ! g_icon_thread ) {
2544       pnd_log ( pndn_error, "ERROR: Couldn't create icon thread\n" );
2545     }
2546
2547   } // deferred icon load
2548
2549   // reset view
2550   ui_selected = NULL;
2551   ui_rows_scrolled_down = 0;
2552   // set back to first tab, to be safe
2553   ui_category = 0;
2554   ui_catshift = 0;
2555
2556   // do we have a preferred category to jump to?
2557   char *dc = pnd_conf_get_as_char ( g_conf, "categories.default_cat" );
2558   if ( dc ) {
2559
2560     // attempt to find default cat; if we do find it, select it; otherwise
2561     // default behaviour will pick first cat (ie: usually All)
2562     unsigned int i;
2563     for ( i = 0; i < g_categorycount; i++ ) {
2564       if ( strcasecmp ( g_categories [ i ] -> catname, dc ) == 0 ) {
2565         ui_category = i;
2566         // ensure visibility
2567         unsigned int screen_width = ui_display_context.screen_width;
2568         unsigned int tab_width = pnd_conf_get_as_int ( g_conf, "tabs.tab_width" );
2569         if ( ui_category > ui_catshift + ( screen_width / tab_width ) - 1 ) {
2570           ui_catshift = ui_category - ( screen_width / tab_width ) + 1;
2571         }
2572         break;
2573       }
2574     }
2575
2576     if ( i == g_categorycount ) {
2577       pnd_log ( pndn_warning, "  User defined default category '%s' but not found, so using default behaviour\n", dc );
2578     }
2579
2580   } // default cat
2581
2582   // if we're sent right to a dirbrowser tab, restock it now (normally we restock on entry)
2583   if ( g_categories [ ui_category ] -> fspath ) {
2584     printf ( "Restock on start: '%s'\n", g_categories [ ui_category ] -> fspath );
2585     category_fs_restock ( g_categories [ ui_category ] );
2586   }
2587
2588   // redraw all
2589   render_mask |= CHANGED_EVERYTHING;
2590
2591   return;
2592 }
2593
2594 unsigned char ui_threaded_defered_icon ( void *p ) {
2595   extern pnd_box_handle g_active_apps;
2596   pnd_box_handle h = g_active_apps;
2597
2598   unsigned char maxwidth, maxheight;
2599   maxwidth = pnd_conf_get_as_int_d ( g_conf, "grid.icon_max_width", 50 );
2600   maxheight = pnd_conf_get_as_int_d ( g_conf, "grid.icon_max_height", 50 );
2601
2602   pnd_disco_t *iter = pnd_box_get_head ( h );
2603
2604   while ( iter ) {
2605
2606     // cache it
2607     if ( iter -> pnd_icon_pos &&
2608          ! cache_icon ( iter, maxwidth, maxheight ) )
2609     {
2610       pnd_log ( pndn_warning, "  Couldn't load icon: '%s'\n", IFNULL(iter->title_en,"No Name") );
2611     } else {
2612
2613       // trigger that we completed
2614       SDL_Event e;
2615       bzero ( &e, sizeof(SDL_Event) );
2616       e.type = SDL_USEREVENT;
2617       e.user.code = sdl_user_finishedicon;
2618       SDL_PushEvent ( &e );
2619
2620       //pnd_log ( pndn_warning, "  Finished deferred load icon: '%s'\n", IFNULL(iter->title_en,"No Name") );
2621       usleep ( pnd_conf_get_as_int_d ( g_conf, "minimenu.defer_icon_us", 50000 ) );
2622
2623     }
2624
2625     // next
2626     iter = pnd_box_get_next ( iter );
2627   } // while
2628
2629   return ( 0 );
2630 }
2631
2632 void ui_show_hourglass ( unsigned char updaterect ) {
2633
2634   SDL_Rect dest;
2635   SDL_Surface *s = g_imagecache [ IMG_HOURGLASS ].i;
2636
2637   dest.x = ( 800 - s -> w ) / 2;
2638   dest.y = ( 480 - s -> h ) / 2;
2639
2640   SDL_BlitSurface ( s, NULL /* whole image */, sdl_realscreen, &dest );
2641
2642   if ( updaterect ) {
2643     SDL_UpdateRects ( sdl_realscreen, 1, &dest );
2644   }
2645
2646   return;
2647 }
2648
2649 unsigned char ui_pick_skin ( void ) {
2650 #define MAXSKINS 10
2651   char *skins [ MAXSKINS ];
2652   unsigned char iter;
2653
2654   char *searchpath = pnd_conf_get_as_char ( g_conf, "minimenu.skin_searchpath" );
2655   char tempname [ 100 ];
2656
2657   iter = 0;
2658
2659   skins [ iter++ ] = "No skin change";
2660
2661   SEARCHPATH_PRE
2662   {
2663     DIR *d = opendir ( buffer );
2664
2665     if ( d ) {
2666       struct dirent *dd;
2667
2668       while ( ( dd = readdir ( d ) ) ) {
2669
2670         if ( dd -> d_name [ 0 ] == '.' ) {
2671           // ignore
2672         } else if ( ( dd -> d_type == DT_DIR || dd -> d_type == DT_UNKNOWN ) &&
2673                     iter < MAXSKINS )
2674         {
2675           snprintf ( tempname, 100, "Skin: %s", dd -> d_name );
2676           skins [ iter++ ] = strdup ( tempname );
2677         }
2678
2679       }
2680
2681       closedir ( d );
2682     }
2683
2684   }
2685   SEARCHPATH_POST
2686
2687   int sel = ui_modal_single_menu ( skins, iter, "Skins", "Enter to select; other to return." );
2688
2689   // did they pick one?
2690   if ( sel > 0 ) {
2691     FILE *f;
2692
2693     char *s = strdup ( pnd_conf_get_as_char ( g_conf, "minimenu.skin_selected" ) );
2694     s = pnd_expand_tilde ( s );
2695
2696     f = fopen ( s, "w" );
2697
2698     free ( s );
2699
2700     if ( f ) {
2701       fprintf ( f, "%s\n", skins [ sel ] + 6 );
2702       fclose ( f );
2703     }
2704
2705     return ( 1 );
2706   }
2707
2708   return ( 0 );
2709 }
2710
2711 void ui_aboutscreen ( char *textpath ) {
2712 #define PIXELW 7
2713 #define PIXELH 7
2714 #define MARGINW 3
2715 #define MARGINH 3
2716 #define SCRW 800
2717 #define SCRH 480
2718 #define ROWS SCRH / ( PIXELH + MARGINH )
2719 #define COLS SCRW / ( PIXELW + MARGINW )
2720
2721   unsigned char pixelboard [ ROWS * COLS ]; // pixel heat
2722   bzero ( pixelboard, ROWS * COLS );
2723
2724   SDL_Surface *rtext;
2725   SDL_Rect r;
2726
2727   SDL_Color rtextc = { 200, 200, 200, 100 };
2728
2729   // pixel scroller
2730   char *textloop [ 500 ];
2731   unsigned int textmax = 0;
2732   bzero ( textloop, 500 * sizeof(char*) );
2733
2734   // cursor scroller
2735   char cbuffer [ 50000 ];
2736   bzero ( cbuffer, 50000 );
2737   unsigned int crevealed = 0;
2738
2739   FILE *f = fopen ( textpath, "r" );
2740
2741   if ( ! f ) {
2742     pnd_log ( pndn_error, "ERROR: Couldn't open about text: %s\n", textpath );
2743     return;
2744   }
2745
2746   char textbuf [ 100 ];
2747   while ( fgets ( textbuf, 100, f ) ) {
2748
2749     // add to full buffer
2750     strncat ( cbuffer, textbuf, 50000 );
2751
2752     // chomp
2753     if ( strchr ( textbuf, '\n' ) ) {
2754       * strchr ( textbuf, '\n' ) = '\0';
2755     }
2756
2757     // add to pixel loop
2758     if ( 1||textbuf [ 0 ] ) {
2759       textloop [ textmax ] = strdup ( textbuf );
2760       textmax++;
2761     }
2762
2763   } // while fgets
2764
2765   fclose ( f );
2766
2767   unsigned int textiter = 0;
2768   while ( textiter < textmax ) {
2769     char *text = textloop [ textiter ];
2770
2771     rtext = NULL;
2772     if ( text [ 0 ] ) {
2773       // render to surface
2774       rtext = TTF_RenderText_Blended ( g_grid_font, text, rtextc );
2775
2776       // render font to pixelboard
2777       unsigned int px, py;
2778       unsigned char *ph;
2779       unsigned int *pixels = rtext -> pixels;
2780       unsigned char cr, cg, cb, ca;
2781       for ( py = 0; py < rtext -> h; py ++ ) {
2782         for ( px = 0; px < ( rtext -> w > COLS ? COLS : rtext -> w ); px++ ) {
2783
2784           SDL_GetRGBA ( pixels [ ( py * rtext -> pitch / 4 ) + px ],
2785                         rtext -> format, &cr, &cg, &cb, &ca );
2786
2787           if ( ca != 0 ) {
2788
2789             ph = pixelboard + ( /*y offset */ 30 * COLS ) + ( py * COLS ) + px /* / 2 */;
2790
2791             if ( *ph < 100 ) {
2792               *ph = 100;
2793             }
2794
2795             ca /= 5;
2796             if ( *ph + ca < 250 ) {
2797               *ph += ca;
2798             }
2799
2800           } // got a pixel?
2801
2802         } // x
2803       } // y
2804
2805     } // got text?
2806
2807     unsigned int runcount = 10;
2808     while ( runcount-- ) {
2809
2810       // clear display
2811       SDL_FillRect( sdl_realscreen, NULL /* whole */, 0 );
2812
2813       // render pixelboard
2814       unsigned int x, y;
2815       unsigned int c;
2816       for ( y = 0; y < ROWS; y++ ) {
2817         for ( x = 0; x < COLS; x++ ) {
2818
2819           if ( 1||pixelboard [ ( y * COLS ) + x ] ) {
2820
2821             // position
2822             r.x = x * ( PIXELW + MARGINW );
2823             r.y = y * ( PIXELH + MARGINH );
2824             r.w = PIXELW;
2825             r.h = PIXELH;
2826             // heat -> colour
2827             c = SDL_MapRGB ( sdl_realscreen -> format, 100 /* r */, 0 /* g */, pixelboard [ ( y * COLS ) + x ] );
2828             // render
2829             SDL_FillRect( sdl_realscreen, &r /* whole */, c );
2830
2831           }
2832
2833         } // x
2834       } // y
2835
2836       // cool pixels
2837       unsigned char *pc = pixelboard;
2838       for ( y = 0; y < ROWS; y++ ) {
2839         for ( x = 0; x < COLS; x++ ) {
2840
2841           if ( *pc > 10 ) {
2842             (*pc) -= 3;
2843           }
2844
2845           pc++;
2846         } // x
2847       } // y
2848
2849       // slide pixels upwards
2850       memmove ( pixelboard, pixelboard + COLS, ( COLS * ROWS ) - COLS );
2851
2852       // render actual readable text
2853       {
2854
2855         // display up to cursor
2856         SDL_Rect dest;
2857         unsigned int cdraw = 0;
2858         SDL_Surface *cs;
2859         char ctb [ 2 ];
2860
2861         if ( crevealed > 200 ) {
2862           cdraw = crevealed - 200;
2863         }
2864
2865         dest.x = 400;
2866         dest.y = 20;
2867
2868         for ( ; cdraw < crevealed; cdraw++ ) {
2869           ctb [ 0 ] = cbuffer [ cdraw ];
2870           ctb [ 1 ] = '\0';
2871           // move over or down
2872           if ( cbuffer [ cdraw ] == '\n' ) {
2873             // EOL
2874             dest.x = 400;
2875             dest.y += 14;
2876
2877             if ( dest.y > 450 ) {
2878               dest.y = 450;
2879             }
2880
2881           } else {
2882             // draw the char
2883             cs = TTF_RenderText_Blended ( g_tab_font, ctb, rtextc );
2884             if ( cs ) {
2885               SDL_BlitSurface ( cs, NULL /* all */, sdl_realscreen, &dest );
2886               SDL_FreeSurface ( cs );
2887               // over
2888               dest.x += cs -> w;
2889             }
2890           }
2891
2892         }
2893
2894         dest.w = 10;
2895         dest.h = 20;
2896         SDL_FillRect ( sdl_realscreen, &dest /* whole */, 220 );
2897
2898         // increment cursor to next character
2899         if ( cbuffer [ crevealed ] != '\0' ) {
2900           crevealed++;
2901         }
2902
2903       } // draw cursor text
2904
2905       // reveal
2906       //
2907       SDL_UpdateRect ( sdl_realscreen, 0, 0, 0, 0 ); // whole screen
2908
2909       usleep ( 50000 );
2910
2911       // any button? if so, about
2912       {
2913         SDL_PumpEvents();
2914
2915         SDL_Event e;
2916
2917         if ( SDL_PeepEvents ( &e, 1, SDL_GETEVENT, SDL_EVENTMASK(/*SDL_KEYUP|*/SDL_KEYDOWN) ) > 0 ) {
2918           return;
2919         }
2920
2921       }
2922
2923     } // while cooling
2924
2925     if ( rtext ) {
2926       SDL_FreeSurface ( rtext );
2927     }
2928
2929     textiter++;
2930   } // while more text
2931
2932   // free up
2933   unsigned int i;
2934   for ( i = 0; i < textmax; i++ ) {
2935     if ( textloop [ i ] ) {
2936       free ( textloop [ i ] );
2937       textloop [ i ] = 0;
2938     }
2939   }
2940
2941   return;
2942 }
2943
2944 void ui_revealscreen ( void ) {
2945   char *labels [ 500 ];
2946   unsigned int labelmax = 0;
2947   unsigned int i;
2948   char fulllabel [ 200 ];
2949
2950   if ( ! category_count ( CFHIDDEN ) ) {
2951     return; // nothing to do
2952   }
2953
2954   // switch to hidden categories
2955   category_publish ( CFHIDDEN, NULL );
2956
2957   // build up labels to show in menu
2958   for ( i = 0; i < g_categorycount; i++ ) {
2959
2960     if ( g_categories [ i ] -> parent_catname ) {
2961       sprintf ( fulllabel, "%s [%s]", g_categories [ i ] -> catname, g_categories [ i ] -> parent_catname );
2962     } else {
2963       sprintf ( fulllabel, "%s", g_categories [ i ] -> catname );
2964     }
2965
2966     labels [ labelmax++ ] = strdup ( fulllabel );
2967   }
2968
2969   // show menu
2970   int sel = ui_modal_single_menu ( labels, labelmax, "Temporary Category Reveal",
2971                                    "Enter to select; other to return." );
2972
2973   // if selected, try to set this guy to visible
2974   if ( sel >= 0 ) {
2975
2976     // fix up category name, if its been hacked
2977     if ( strchr ( g_categories [ sel ] -> catname, '.' ) ) {
2978       char *t = g_categories [ sel ] -> catname;
2979       g_categories [ sel ] -> catname = strdup ( strchr ( g_categories [ sel ] -> catname, '.' ) + 1 );
2980       free ( t );
2981     }
2982
2983     // reflag this guy to be visible
2984     g_categories [ sel ] -> catflags = CFNORMAL;
2985
2986     // switch to the new category.. cache name.
2987     char *switch_to_name = g_categories [ sel ] -> catname;
2988
2989     // republish categories
2990     category_publish ( CFNORMAL, NULL );
2991
2992     // switch to the new category.. with the cached name!
2993     ui_category = category_index ( switch_to_name );
2994
2995     // ensure visibility
2996     unsigned int screen_width = ui_display_context.screen_width;
2997     unsigned int tab_width = pnd_conf_get_as_int ( g_conf, "tabs.tab_width" );
2998     if ( ui_category > ui_catshift + ( screen_width / tab_width ) - 1 ) {
2999       ui_catshift = ui_category - ( screen_width / tab_width ) + 1;
3000     }
3001
3002     // redraw tabs
3003     render_mask |= CHANGED_CATEGORY;
3004   }
3005
3006   for ( i = 0; i < g_categorycount; i++ ) {
3007     free ( labels [ i ] );
3008   }
3009
3010   return;
3011 }
3012
3013 void ui_recache_context ( ui_context_t *c ) {
3014
3015   c -> screen_width = pnd_conf_get_as_int_d ( g_conf, "display.screen_width", 800 );
3016
3017   c -> font_rgba_r = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_r", 200 );
3018   c -> font_rgba_g = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_g", 200 );
3019   c -> font_rgba_b = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_b", 200 );
3020   c -> font_rgba_a = pnd_conf_get_as_int_d ( g_conf, "display.font_rgba_a", 100 );
3021
3022   c -> grid_offset_x = pnd_conf_get_as_int ( g_conf, "grid.grid_offset_x" );
3023   c -> grid_offset_y = pnd_conf_get_as_int ( g_conf, "grid.grid_offset_y" );
3024
3025   c -> icon_offset_x = pnd_conf_get_as_int ( g_conf, "grid.icon_offset_x" );
3026   c -> icon_offset_y = pnd_conf_get_as_int ( g_conf, "grid.icon_offset_y" );
3027   c -> icon_max_width = pnd_conf_get_as_int ( g_conf, "grid.icon_max_width" );
3028   c -> icon_max_height = pnd_conf_get_as_int ( g_conf, "grid.icon_max_height" );
3029   c -> sel_icon_offset_x = pnd_conf_get_as_int_d ( g_conf, "grid.sel_offoffset_x", 0 );
3030   c -> sel_icon_offset_y = pnd_conf_get_as_int_d ( g_conf, "grid.sel_offoffset_y", 0 );
3031
3032   c -> text_width = pnd_conf_get_as_int ( g_conf, "grid.text_width" );
3033   c -> text_clip_x = pnd_conf_get_as_int ( g_conf, "grid.text_clip_x" );
3034   c -> text_offset_x = pnd_conf_get_as_int ( g_conf, "grid.text_offset_x" );
3035   c -> text_offset_y = pnd_conf_get_as_int ( g_conf, "grid.text_offset_y" );
3036   c -> text_hilite_offset_y = pnd_conf_get_as_int ( g_conf, "grid.text_hilite_offset_y" );
3037
3038   c -> row_max = pnd_conf_get_as_int_d ( g_conf, "grid.row_max", 4 );
3039   c -> col_max = pnd_conf_get_as_int_d ( g_conf, "grid.col_max", 5 );
3040
3041   c -> cell_width = pnd_conf_get_as_int ( g_conf, "grid.cell_width" );
3042   c -> cell_height = pnd_conf_get_as_int ( g_conf, "grid.cell_height" );
3043
3044   c -> arrow_bar_x = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_bar_x", 450 );
3045   c -> arrow_bar_y = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_bar_y", 100 );
3046   c -> arrow_bar_clip_w = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_bar_clip_w", 10 );
3047   c -> arrow_bar_clip_h = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_bar_clip_h", 100 );
3048   c -> arrow_up_x = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_up_x", 450 );
3049   c -> arrow_up_y = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_up_y", 80 );
3050   c -> arrow_down_x = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_down_x", 450 );
3051   c -> arrow_down_y = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_down_y", 80 );
3052
3053   // font colour
3054   SDL_Color tmp = { c -> font_rgba_r, c -> font_rgba_g, c -> font_rgba_b, c -> font_rgba_a };
3055   c -> fontcolor = tmp;
3056
3057   // now that we've got 'normal' (detail pane shown) param's, lets check if detail pane
3058   // is hidden; if so, override some values with those alternate skin values where possible.
3059   if ( ui_detail_hidden ) {
3060     // if detail panel is hidden, and theme cannot support it, unhide the bloody thing. (This may help
3061     // when someone is amid theme hacking or changing.)
3062     if ( ! ui_is_detail_hideable() ) {
3063       ui_detail_hidden = 0;
3064     }
3065
3066     // still hidden?
3067     if ( ui_detail_hidden ) {
3068
3069       c -> row_max = pnd_conf_get_as_int_d ( g_conf, "grid.row_max_w", c -> row_max );
3070       c -> col_max = pnd_conf_get_as_int_d ( g_conf, "grid.col_max_w", c -> col_max );
3071
3072       c -> cell_width = pnd_conf_get_as_int_d ( g_conf, "grid.cell_width_w", c -> cell_width );
3073       c -> cell_height = pnd_conf_get_as_int_d ( g_conf, "grid.cell_height_w", c -> cell_height );
3074
3075       c -> arrow_bar_x = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_bar_x_w", 450 );
3076       c -> arrow_bar_y = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_bar_y_w", 100 );
3077       c -> arrow_up_x = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_up_x_w", 450 );
3078       c -> arrow_up_y = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_up_y_w", 80 );
3079       c -> arrow_down_x = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_down_x_w", 450 );
3080       c -> arrow_down_y = pnd_conf_get_as_int_d ( g_conf, "grid.arrow_down_y_w", 80 );
3081
3082     } // if detail hidden.. still.
3083
3084   } // if detail hidden
3085
3086   return;
3087 }
3088
3089 unsigned char ui_is_detail_hideable ( void ) {
3090
3091   // if skin has a bit of info for wide-mode, we assume wide-mode is available
3092   if ( pnd_conf_get_as_char ( g_conf, "grid.row_max_w" ) != NULL ) {
3093     return ( 1 );
3094   }
3095
3096   // else not!
3097   return ( 0 );
3098 }
3099
3100 void ui_toggle_detail_pane ( void ) {
3101
3102   // no bitmask trickery here; I like it to be stand-out obvious at 3am.
3103
3104   if ( ui_detail_hidden ) {
3105     ui_detail_hidden = 0;
3106   } else {
3107     ui_detail_hidden = 1;
3108   }
3109
3110   // repull skin config
3111   ui_recache_context ( &ui_display_context );
3112
3113   // redraw
3114   render_mask |= CHANGED_EVERYTHING;
3115
3116   return;
3117 }