Mercurial > mplayer.hg
annotate libmenu/menu.h @ 28621:2464c1a4f2f8
Spelling: capitalize pronouns.
author | bircoph |
---|---|
date | Thu, 19 Feb 2009 02:24:03 +0000 |
parents | f8b6c7045cf8 |
children | 0f1b5b68af32 |
rev | line source |
---|---|
28113 | 1 /* |
2 * This file is part of MPlayer. | |
3 * | |
4 * MPlayer is free software; you can redistribute it and/or modify | |
5 * it under the terms of the GNU General Public License as published by | |
6 * the Free Software Foundation; either version 2 of the License, or | |
7 * (at your option) any later version. | |
8 * | |
9 * MPlayer is distributed in the hope that it will be useful, | |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 * GNU General Public License for more details. | |
13 * | |
14 * You should have received a copy of the GNU General Public License along | |
15 * with MPlayer; if not, write to the Free Software Foundation, Inc., | |
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
17 */ | |
18 | |
26029 | 19 #ifndef MPLAYER_MENU_H |
20 #define MPLAYER_MENU_H | |
8197 | 21 |
26139
4ebf3c3f2bf6
Add missing header #includes to fix 'make checkheaders'.
diego
parents:
26029
diff
changeset
|
22 #include "m_struct.h" |
4ebf3c3f2bf6
Add missing header #includes to fix 'make checkheaders'.
diego
parents:
26029
diff
changeset
|
23 #include "libmpcodecs/mp_image.h" |
4ebf3c3f2bf6
Add missing header #includes to fix 'make checkheaders'.
diego
parents:
26029
diff
changeset
|
24 |
8197 | 25 struct menu_priv_s; |
26 typedef struct menu_s menu_t; | |
27 | |
25208
1b3dabc8c2b8
Add type info to menu_t, now we can get the menu name and the type name of menu.
ulion
parents:
22284
diff
changeset
|
28 typedef struct menu_def_st menu_def_t; |
1b3dabc8c2b8
Add type info to menu_t, now we can get the menu name and the type name of menu.
ulion
parents:
22284
diff
changeset
|
29 |
25417
b0cd876a0c32
Remove dependency on m_struct.h when include libmenu/menu.h.
ulion
parents:
25263
diff
changeset
|
30 struct m_struct_st; |
b0cd876a0c32
Remove dependency on m_struct.h when include libmenu/menu.h.
ulion
parents:
25263
diff
changeset
|
31 |
8197 | 32 struct menu_s { |
22284 | 33 struct MPContext *ctx; |
8197 | 34 void (*draw)(menu_t* menu,mp_image_t* mpi); |
35 void (*read_cmd)(menu_t* menu,int cmd); | |
25502
605d4e3e403f
From now on, libmenu does not steal all input keys from input modules.
ulion
parents:
25461
diff
changeset
|
36 int (*read_key)(menu_t* menu,int cmd); |
8197 | 37 void (*close)(menu_t* menu); |
25417
b0cd876a0c32
Remove dependency on m_struct.h when include libmenu/menu.h.
ulion
parents:
25263
diff
changeset
|
38 struct m_struct_st* priv_st; |
8197 | 39 struct menu_priv_s* priv; |
40 int show; // Draw it ? | |
41 int cl; // Close request (user sent a close cmd or | |
42 menu_t* parent; | |
25208
1b3dabc8c2b8
Add type info to menu_t, now we can get the menu name and the type name of menu.
ulion
parents:
22284
diff
changeset
|
43 menu_def_t *type; |
8197 | 44 }; |
45 | |
46 typedef struct menu_info_s { | |
47 const char *info; | |
48 const char *name; | |
49 const char *author; | |
50 const char *comment; | |
25419
59aba7a96701
Replace another m_struct_t by 'struct m_struct_st' to remove depedency
ulion
parents:
25417
diff
changeset
|
51 struct m_struct_st priv_st; // Config struct definition |
8197 | 52 // cfg is a config struct as defined in cfg_st, it may be used as a priv struct |
53 // cfg is filled from the attributs found in the cfg file | |
54 // the args param hold the content of the balise in the cfg file (if any) | |
55 int (*open)(menu_t* menu, char* args); | |
56 } menu_info_t; | |
57 | |
58 | |
59 #define MENU_CMD_UP 0 | |
60 #define MENU_CMD_DOWN 1 | |
61 #define MENU_CMD_OK 2 | |
62 #define MENU_CMD_CANCEL 3 | |
17945
98f4e3704a76
Allow 6 ways (up/down/left/right/ok/cancel) navigation.
albeu
parents:
8197
diff
changeset
|
63 #define MENU_CMD_LEFT 4 |
98f4e3704a76
Allow 6 ways (up/down/left/right/ok/cancel) navigation.
albeu
parents:
8197
diff
changeset
|
64 #define MENU_CMD_RIGHT 5 |
19490
f57977ac0394
support multiple actions in menu's file browser using key bindings
ben
parents:
18193
diff
changeset
|
65 #define MENU_CMD_ACTION 6 |
25263
96d0992c7920
Remove hardcoded key->cmd bindings in libmenu, support custom key bindings
ulion
parents:
25208
diff
changeset
|
66 #define MENU_CMD_HOME 7 |
96d0992c7920
Remove hardcoded key->cmd bindings in libmenu, support custom key bindings
ulion
parents:
25208
diff
changeset
|
67 #define MENU_CMD_END 8 |
96d0992c7920
Remove hardcoded key->cmd bindings in libmenu, support custom key bindings
ulion
parents:
25208
diff
changeset
|
68 #define MENU_CMD_PAGE_UP 9 |
96d0992c7920
Remove hardcoded key->cmd bindings in libmenu, support custom key bindings
ulion
parents:
25208
diff
changeset
|
69 #define MENU_CMD_PAGE_DOWN 10 |
25461 | 70 #define MENU_CMD_CLICK 11 |
8197 | 71 |
72 /// Global init/uninit | |
22284 | 73 int menu_init(struct MPContext *mpctx, char* cfg_file); |
25420 | 74 void menu_uninit(void); |
8197 | 75 |
76 /// Open a menu defined in the config file | |
77 menu_t* menu_open(char *name); | |
78 | |
79 void menu_draw(menu_t* menu,mp_image_t* mpi); | |
80 void menu_read_cmd(menu_t* menu,int cmd); | |
81 void menu_close(menu_t* menu); | |
25502
605d4e3e403f
From now on, libmenu does not steal all input keys from input modules.
ulion
parents:
25461
diff
changeset
|
82 int menu_read_key(menu_t* menu,int cmd); |
8197 | 83 |
84 //// Default implementation | |
25263
96d0992c7920
Remove hardcoded key->cmd bindings in libmenu, support custom key bindings
ulion
parents:
25208
diff
changeset
|
85 int menu_dflt_read_key(menu_t* menu,int cmd); |
8197 | 86 |
25461 | 87 /// Receive mouse position events. |
88 void menu_update_mouse_pos(double x, double y); | |
89 | |
8197 | 90 /////////// Helpers |
91 | |
92 #define MENU_TEXT_TOP (1<<0) | |
93 #define MENU_TEXT_VCENTER (1<<1) | |
94 #define MENU_TEXT_BOT (1<<2) | |
95 #define MENU_TEXT_VMASK (MENU_TEXT_TOP|MENU_TEXT_VCENTER|MENU_TEXT_BOT) | |
96 #define MENU_TEXT_LEFT (1<<3) | |
97 #define MENU_TEXT_HCENTER (1<<4) | |
98 #define MENU_TEXT_RIGHT (1<<5) | |
99 #define MENU_TEXT_HMASK (MENU_TEXT_LEFT|MENU_TEXT_HCENTER|MENU_TEXT_RIGHT) | |
100 #define MENU_TEXT_CENTER (MENU_TEXT_VCENTER|MENU_TEXT_HCENTER) | |
101 | |
102 void menu_draw_text(mp_image_t* mpi, char* txt, int x, int y); | |
103 int menu_text_length(char* txt); | |
104 int menu_text_num_lines(char* txt, int max_width); | |
105 | |
106 void menu_text_size(char* txt,int max_width, | |
107 int vspace, int warp, | |
108 int* _w, int* _h); | |
109 | |
110 void menu_draw_text_full(mp_image_t* mpi,char* txt, | |
111 int x, int y,int w, int h, | |
112 int vspace, int warp, int align, int anchor); | |
17993
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17945
diff
changeset
|
113 |
18193 | 114 void menu_draw_box(mp_image_t* mpi, unsigned char grey, unsigned char alpha, int x, int y, int w, int h); |
25553
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
25502
diff
changeset
|
115 |
26029 | 116 #endif /* MPLAYER_MENU_H */ |