Mercurial > mplayer.hg
annotate libmenu/menu.h @ 31333:b11048ce9979
Ignore .d files with dependency information.
author | diego |
---|---|
date | Mon, 14 Jun 2010 11:11:41 +0000 |
parents | a972c1a4a012 |
children | 1c540767767e |
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" |
30540 | 24 #include "libmpcodecs/vf.h" |
26139
4ebf3c3f2bf6
Add missing header #includes to fix 'make checkheaders'.
diego
parents:
26029
diff
changeset
|
25 |
8197 | 26 struct menu_priv_s; |
27 typedef struct menu_s menu_t; | |
28 | |
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
|
29 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
|
30 |
25417
b0cd876a0c32
Remove dependency on m_struct.h when include libmenu/menu.h.
ulion
parents:
25263
diff
changeset
|
31 struct m_struct_st; |
b0cd876a0c32
Remove dependency on m_struct.h when include libmenu/menu.h.
ulion
parents:
25263
diff
changeset
|
32 |
8197 | 33 struct menu_s { |
22284 | 34 struct MPContext *ctx; |
8197 | 35 void (*draw)(menu_t* menu,mp_image_t* mpi); |
36 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
|
37 int (*read_key)(menu_t* menu,int cmd); |
8197 | 38 void (*close)(menu_t* menu); |
25417
b0cd876a0c32
Remove dependency on m_struct.h when include libmenu/menu.h.
ulion
parents:
25263
diff
changeset
|
39 struct m_struct_st* priv_st; |
8197 | 40 struct menu_priv_s* priv; |
41 int show; // Draw it ? | |
42 int cl; // Close request (user sent a close cmd or | |
43 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
|
44 menu_def_t *type; |
8197 | 45 }; |
46 | |
47 typedef struct menu_info_s { | |
48 const char *info; | |
49 const char *name; | |
50 const char *author; | |
51 const char *comment; | |
25419
59aba7a96701
Replace another m_struct_t by 'struct m_struct_st' to remove depedency
ulion
parents:
25417
diff
changeset
|
52 struct m_struct_st priv_st; // Config struct definition |
8197 | 53 // cfg is a config struct as defined in cfg_st, it may be used as a priv struct |
54 // cfg is filled from the attributs found in the cfg file | |
55 // the args param hold the content of the balise in the cfg file (if any) | |
56 int (*open)(menu_t* menu, char* args); | |
57 } menu_info_t; | |
58 | |
59 | |
60 #define MENU_CMD_UP 0 | |
61 #define MENU_CMD_DOWN 1 | |
62 #define MENU_CMD_OK 2 | |
63 #define MENU_CMD_CANCEL 3 | |
17945
98f4e3704a76
Allow 6 ways (up/down/left/right/ok/cancel) navigation.
albeu
parents:
8197
diff
changeset
|
64 #define MENU_CMD_LEFT 4 |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28113
diff
changeset
|
65 #define MENU_CMD_RIGHT 5 |
19490
f57977ac0394
support multiple actions in menu's file browser using key bindings
ben
parents:
18193
diff
changeset
|
66 #define MENU_CMD_ACTION 6 |
25263
96d0992c7920
Remove hardcoded key->cmd bindings in libmenu, support custom key bindings
ulion
parents:
25208
diff
changeset
|
67 #define MENU_CMD_HOME 7 |
96d0992c7920
Remove hardcoded key->cmd bindings in libmenu, support custom key bindings
ulion
parents:
25208
diff
changeset
|
68 #define MENU_CMD_END 8 |
96d0992c7920
Remove hardcoded key->cmd bindings in libmenu, support custom key bindings
ulion
parents:
25208
diff
changeset
|
69 #define MENU_CMD_PAGE_UP 9 |
96d0992c7920
Remove hardcoded key->cmd bindings in libmenu, support custom key bindings
ulion
parents:
25208
diff
changeset
|
70 #define MENU_CMD_PAGE_DOWN 10 |
25461 | 71 #define MENU_CMD_CLICK 11 |
8197 | 72 |
73 /// Global init/uninit | |
22284 | 74 int menu_init(struct MPContext *mpctx, char* cfg_file); |
25420 | 75 void menu_uninit(void); |
8197 | 76 |
77 /// Open a menu defined in the config file | |
78 menu_t* menu_open(char *name); | |
79 | |
80 void menu_draw(menu_t* menu,mp_image_t* mpi); | |
81 void menu_read_cmd(menu_t* menu,int cmd); | |
82 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
|
83 int menu_read_key(menu_t* menu,int cmd); |
8197 | 84 |
85 //// Default implementation | |
25263
96d0992c7920
Remove hardcoded key->cmd bindings in libmenu, support custom key bindings
ulion
parents:
25208
diff
changeset
|
86 int menu_dflt_read_key(menu_t* menu,int cmd); |
8197 | 87 |
25461 | 88 /// Receive mouse position events. |
89 void menu_update_mouse_pos(double x, double y); | |
90 | |
8197 | 91 /////////// Helpers |
92 | |
93 #define MENU_TEXT_TOP (1<<0) | |
94 #define MENU_TEXT_VCENTER (1<<1) | |
95 #define MENU_TEXT_BOT (1<<2) | |
96 #define MENU_TEXT_VMASK (MENU_TEXT_TOP|MENU_TEXT_VCENTER|MENU_TEXT_BOT) | |
97 #define MENU_TEXT_LEFT (1<<3) | |
98 #define MENU_TEXT_HCENTER (1<<4) | |
99 #define MENU_TEXT_RIGHT (1<<5) | |
100 #define MENU_TEXT_HMASK (MENU_TEXT_LEFT|MENU_TEXT_HCENTER|MENU_TEXT_RIGHT) | |
101 #define MENU_TEXT_CENTER (MENU_TEXT_VCENTER|MENU_TEXT_HCENTER) | |
102 | |
103 void menu_draw_text(mp_image_t* mpi, char* txt, int x, int y); | |
104 int menu_text_length(char* txt); | |
105 int menu_text_num_lines(char* txt, int max_width); | |
106 | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28113
diff
changeset
|
107 void menu_text_size(char* txt,int max_width, |
8197 | 108 int vspace, int warp, |
109 int* _w, int* _h); | |
110 | |
111 void menu_draw_text_full(mp_image_t* mpi,char* txt, | |
112 int x, int y,int w, int h, | |
113 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
|
114 |
18193 | 115 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
|
116 |
30642
a972c1a4a012
cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents:
30540
diff
changeset
|
117 void vf_menu_pause_update(struct vf_instance *vf); |
30540 | 118 |
26029 | 119 #endif /* MPLAYER_MENU_H */ |