Commit 1032a11c authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Migrate AA and GGI to intf-popupmenu

This is untested. Most probably nobody uses these anymore.
parent 78e7bd30
...@@ -200,8 +200,8 @@ static int Manage( vout_thread_t *p_vout ) ...@@ -200,8 +200,8 @@ static int Manage( vout_thread_t *p_vout )
{ {
case AA_MOUSE: case AA_MOUSE:
aa_getmouse( p_vout->p_sys->aa_context, &x, &y, &b ); aa_getmouse( p_vout->p_sys->aa_context, &x, &y, &b );
/*if ( b & AA_BUTTON3 ) if ( b & AA_BUTTON3 )
trigger contextual menu here */ var_SetBool( p_vout->p_libvlc, "intf-popupmenu", true );
break; break;
case AA_RESIZE: case AA_RESIZE:
p_vout->i_changes |= VOUT_SIZE_CHANGE; p_vout->i_changes |= VOUT_SIZE_CHANGE;
......
...@@ -311,7 +311,7 @@ static int Manage( vout_thread_t *p_vout ) ...@@ -311,7 +311,7 @@ static int Manage( vout_thread_t *p_vout )
break; break;
case GII_PBUTTON_RIGHT: case GII_PBUTTON_RIGHT:
/* trigger contextual menu here */ var_SetBool( p_vout->p_libvlc, "intf-popupmenu", true );
break; break;
} }
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment