mirror of https://github.com/mpv-player/mpv
support for auto_close parameter in menu command list (geexbox patch)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18823 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
5c6bf0cfe7
commit
c1d46330ea
|
@ -35,15 +35,20 @@ struct list_entry_s {
|
||||||
|
|
||||||
struct menu_priv_s {
|
struct menu_priv_s {
|
||||||
menu_list_priv_t p;
|
menu_list_priv_t p;
|
||||||
|
int auto_close;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#define ST_OFF(m) M_ST_OFF(struct menu_priv_s, m)
|
||||||
|
|
||||||
static struct menu_priv_s cfg_dflt = {
|
static struct menu_priv_s cfg_dflt = {
|
||||||
MENU_LIST_PRIV_DFLT
|
MENU_LIST_PRIV_DFLT,
|
||||||
|
0,
|
||||||
};
|
};
|
||||||
|
|
||||||
static m_option_t cfg_fields[] = {
|
static m_option_t cfg_fields[] = {
|
||||||
MENU_LIST_PRIV_FIELDS,
|
MENU_LIST_PRIV_FIELDS,
|
||||||
{ "title",M_ST_OFF(struct menu_priv_s,p.title), CONF_TYPE_STRING, 0, 0, 0, NULL },
|
{ "title",M_ST_OFF(struct menu_priv_s,p.title), CONF_TYPE_STRING, 0, 0, 0, NULL },
|
||||||
|
{ "auto-close", ST_OFF(auto_close), CONF_TYPE_FLAG, 0, 0, 1, NULL },
|
||||||
{ NULL, NULL, NULL, 0,0,0,NULL }
|
{ NULL, NULL, NULL, 0,0,0,NULL }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -61,7 +66,11 @@ static void read_cmd(menu_t* menu,int cmd) {
|
||||||
if(mpriv->p.current->ok) {
|
if(mpriv->p.current->ok) {
|
||||||
mp_cmd_t* c = mp_input_parse_cmd(mpriv->p.current->ok);
|
mp_cmd_t* c = mp_input_parse_cmd(mpriv->p.current->ok);
|
||||||
if(c)
|
if(c)
|
||||||
|
{
|
||||||
|
if (mpriv->auto_close)
|
||||||
|
mp_input_queue_cmd (mp_input_parse_cmd ("menu hide"));
|
||||||
mp_input_queue_cmd(c);
|
mp_input_queue_cmd(c);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} break;
|
} break;
|
||||||
case MENU_CMD_LEFT:
|
case MENU_CMD_LEFT:
|
||||||
|
|
Loading…
Reference in New Issue