Changed the osversion to only accept nonNegativeInteger (in the schema).
[pandora-libraries.git] / minimenu / mmui.h
1
2 #ifndef h_mmui_h
3 #define h_mmui_h
4
5 /* this code actually _does_ something; this way, at least all the IO routines are in one place, so
6  * I know what to replace with something sensible later :)
7  * ... ahh, to have time to make this in C++ as an actual abstract interface...
8  */
9
10 /* staticly cached stuff, for UI
11  */
12
13 typedef enum {
14   IMG_BACKGROUND_800480 = 0,
15   IMG_BACKGROUND_TABMASK,
16   IMG_DETAIL_PANEL,
17   IMG_DETAIL_BG,
18   IMG_SELECTED_ALPHAMASK,
19   IMG_TAB_SEL,
20   IMG_TAB_SEL_L,
21   IMG_TAB_SEL_R,
22   IMG_TAB_UNSEL,
23   IMG_TAB_UNSEL_L,
24   IMG_TAB_UNSEL_R,
25   IMG_TAB_LINE,
26   IMG_TAB_LINEL,
27   IMG_TAB_LINER,
28   IMG_ICON_MISSING,
29   IMG_SELECTED_HILITE,
30   IMG_PREVIEW_MISSING,
31   IMG_ARROW_UP,
32   IMG_ARROW_DOWN,
33   IMG_ARROW_SCROLLBAR,
34   IMG_HOURGLASS,
35   IMG_FOLDER,
36   IMG_EXECBIN,
37   IMG_SUBCATFOLDER,
38   IMG_DOTDOTFOLDER,
39   IMG_MAX, // before this point is loaded; after is generated
40   IMG_TRUEMAX
41 } mm_imgcache_e;
42
43 typedef struct {
44   mm_imgcache_e id;
45   char *confname;
46   char *alt_confname;
47   void /*SDL_Surface*/ *i;
48 } mm_imgcache_t;
49
50 /* ui stuff
51  */
52
53 typedef enum {
54   uisb_none = 0,
55   uisb_x = 1,
56   uisb_y = (1<<1),
57   uisb_a = (1<<2),
58   uisb_b = (1<<3),
59   uisb_l = (1<<4),
60   uisb_r = (1<<5),
61   uisb_start = (1<<6),
62   uisb_select = (1<<7),
63   uisb_max
64 } ui_sdl_button_e;
65
66 unsigned char ui_setup ( void );
67 unsigned char ui_imagecache ( char *basepath );
68 unsigned char ui_pick_skin ( void ); // return >0 if skin has changed
69
70 void ui_render ( void );
71
72 void ui_loadscreen ( void );        // show screen while loading the menu
73 void ui_discoverscreen ( unsigned char clearscreen ); // screen to show while scanning for apps
74 void ui_cachescreen ( unsigned char clearscreen, char *filename ); // while caching icons, categories and preview-pics-Now-mode
75 void ui_show_hourglass ( unsigned char updaterect );
76 void ui_post_scan ( void );
77 unsigned char ui_show_info ( char *pndrun, pnd_disco_t *p );
78 void ui_aboutscreen ( char *textpath );
79 void ui_revealscreen ( void );
80 void ui_manage_categories ( void );
81 char *ui_pick_custom_category ( unsigned char mode ); // mode 0 == custom main only; 1 == custom main + FD main; 2 == custom main + FD mains-with-custom-subs
82
83 /* internal functions follow
84  */
85
86 // show a menu, return when selection made; -1 means no selection. Enter is pick.
87 int ui_modal_single_menu ( char *argv[], unsigned int argc, char *title, char *footer );
88
89 // run a forked app (ie: not wait for it to return)
90 unsigned char ui_forkexec ( char *argv[] ); // argv[0] is proggy to exec; argv last entry must be NULLptr
91
92 // create a thread of this guy, and it'll try to load the preview pic in background and then signal the app
93 unsigned char ui_threaded_defered_preview ( pnd_disco_t *p ); // callback
94 unsigned char ui_threaded_defered_icon ( void * ); // callback
95 unsigned char ui_threaded_timer_create ( void );
96 int ui_threaded_timer ( pnd_disco_t *p ); // callback
97
98 // change the focus
99 void ui_process_input ( pnd_dbusnotify_handle dbh, pnd_notify_handle nh );
100 void ui_push_left ( unsigned char forcecoil );
101 void ui_push_right ( unsigned char forcecoil );
102 void ui_push_up ( void );
103 void ui_push_down ( void );
104 void ui_push_exec ( void );
105 void ui_push_backup ( void );
106 void ui_push_ltrigger ( void );
107 void ui_push_rtrigger ( void );
108 unsigned char ui_determine_row ( mm_appref_t *a );
109 unsigned char ui_determine_screen_row ( mm_appref_t *a );
110 unsigned char ui_determine_screen_col ( mm_appref_t *a );
111
112 // detail panel hide/show
113 unsigned char ui_is_detail_hideable ( void ); // returns true if detail pane may be hidden with current skin
114 void ui_toggle_detail_pane ( void );          // toggle it on/off
115
116 // ui_render() can register tappable-areas which touchscreen code can then figure out if we made a hit
117 void ui_register_reset ( void );
118 void ui_register_tab ( unsigned char catnum, unsigned int x, unsigned int y, unsigned int w, unsigned int h );
119 void ui_register_app ( mm_appref_t *app, unsigned int x, unsigned int y, unsigned int w, unsigned int h );
120 void ui_touch_act ( unsigned int x, unsigned int y );
121
122 // deferred preview timer
123 void ui_set_selected ( mm_appref_t *r );
124 unsigned int ui_callback_f ( unsigned int t );
125
126 // 'popup' 'context' menu
127 void ui_menu_context ( mm_appref_t *a );
128 unsigned char ui_menu_oneby ( char *title, char *footer, char *one ); // return 0 (nada) or 1 (one) for they actually picked it
129 unsigned char ui_menu_twoby ( char *title, char *footer, char *one, char *two ); // return 0 (nada), 1 (one), 2 (two)
130 unsigned char ui_menu_get_text_line ( char *title, char *footer, char *initialvalue,
131                                       char *r_buffer, unsigned char maxlen, unsigned char numbersonlyp ); // populates r_buffer
132
133 // ovr-file edit
134 unsigned char ovr_replace_or_add ( mm_appref_t *a, char *keybase, char *newvalue ); // keybase does not include app#
135
136 #endif