1 /*****************************************************************************
2 * showintf.c: control the display of the interface in fullscreen mode
3 *****************************************************************************
4 * Copyright (C) 2004 the VideoLAN team
7 * Authors: Olivier Teuliere <ipkiss@via.ecp.fr>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 /*****************************************************************************
26 *****************************************************************************/
27 #include <stdlib.h> /* malloc(), free() */
38 /*****************************************************************************
39 * intf_sys_t: description and status of interface
40 *****************************************************************************/
43 vlc_object_t * p_vout;
44 vlc_bool_t b_button_pressed;
45 vlc_bool_t b_triggered;
49 /*****************************************************************************
51 *****************************************************************************/
52 int E_(Open) ( vlc_object_t * );
53 void E_(Close)( vlc_object_t * );
54 static void RunIntf( intf_thread_t *p_intf );
55 static int InitThread( intf_thread_t *p_intf );
56 static int MouseEvent( vlc_object_t *, char const *,
57 vlc_value_t, vlc_value_t, void * );
59 /*****************************************************************************
61 *****************************************************************************/
62 #define THRESHOLD_TEXT N_( "Threshold" )
63 #define THRESHOLD_LONGTEXT N_( "Height of the zone triggering the interface." )
66 set_shortname( "Showintf" );
67 add_integer( "showintf-threshold", 10, NULL, THRESHOLD_TEXT, THRESHOLD_LONGTEXT, VLC_TRUE );
68 set_description( _("Show interface with mouse") );
70 set_capability( "interface", 0 );
71 set_callbacks( E_(Open), E_(Close) );
74 /*****************************************************************************
75 * Open: initialize interface
76 *****************************************************************************/
77 int E_(Open)( vlc_object_t *p_this )
79 intf_thread_t *p_intf = (intf_thread_t *)p_this;
81 /* Allocate instance and initialize some members */
82 p_intf->p_sys = malloc( sizeof( intf_sys_t ) );
83 if( p_intf->p_sys == NULL )
88 p_intf->pf_run = RunIntf;
93 /*****************************************************************************
94 * Close: destroy interface
95 *****************************************************************************/
96 void E_(Close)( vlc_object_t *p_this )
98 intf_thread_t *p_intf = (intf_thread_t *)p_this;
100 /* Destroy structure */
101 free( p_intf->p_sys );
105 /*****************************************************************************
107 *****************************************************************************/
108 static void RunIntf( intf_thread_t *p_intf )
110 p_intf->p_sys->p_vout = NULL;
112 if( InitThread( p_intf ) < 0 )
114 msg_Err( p_intf, "cannot initialize interface" );
119 while( !p_intf->b_die )
121 vlc_mutex_lock( &p_intf->change_lock );
123 /* Notify the interfaces */
124 if( p_intf->p_sys->b_triggered )
126 playlist_t *p_playlist =
127 (playlist_t *)vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
130 if( p_playlist != NULL )
133 val.b_bool = VLC_TRUE;
134 var_Set( p_playlist, "intf-show", val );
135 vlc_object_release( p_playlist );
137 p_intf->p_sys->b_triggered = VLC_FALSE;
140 vlc_mutex_unlock( &p_intf->change_lock );
143 /* Take care of the video output */
144 if( p_intf->p_sys->p_vout && p_intf->p_sys->p_vout->b_die )
146 var_DelCallback( p_intf->p_sys->p_vout, "mouse-moved",
147 MouseEvent, p_intf );
148 var_DelCallback( p_intf->p_sys->p_vout, "mouse-button-down",
149 MouseEvent, p_intf );
150 vlc_object_release( p_intf->p_sys->p_vout );
151 p_intf->p_sys->p_vout = NULL;
154 if( p_intf->p_sys->p_vout == NULL )
156 p_intf->p_sys->p_vout = vlc_object_find( p_intf, VLC_OBJECT_VOUT,
158 if( p_intf->p_sys->p_vout )
160 var_AddCallback( p_intf->p_sys->p_vout, "mouse-moved",
161 MouseEvent, p_intf );
162 var_AddCallback( p_intf->p_sys->p_vout, "mouse-button-down",
163 MouseEvent, p_intf );
168 msleep( INTF_IDLE_SLEEP );
171 if( p_intf->p_sys->p_vout )
173 var_DelCallback( p_intf->p_sys->p_vout, "mouse-moved",
174 MouseEvent, p_intf );
175 var_DelCallback( p_intf->p_sys->p_vout, "mouse-button-down",
176 MouseEvent, p_intf );
177 vlc_object_release( p_intf->p_sys->p_vout );
181 /*****************************************************************************
183 *****************************************************************************/
184 static int InitThread( intf_thread_t * p_intf )
188 vlc_mutex_lock( &p_intf->change_lock );
190 p_intf->p_sys->b_triggered = VLC_FALSE;
191 p_intf->p_sys->b_button_pressed = VLC_FALSE;
192 p_intf->p_sys->i_threshold =
193 config_GetInt( p_intf, "showintf-threshold" );
195 vlc_mutex_unlock( &p_intf->change_lock );
205 /*****************************************************************************
206 * MouseEvent: callback for mouse events
207 *****************************************************************************/
208 static int MouseEvent( vlc_object_t *p_this, char const *psz_var,
209 vlc_value_t oldval, vlc_value_t newval, void *p_data )
213 int i_mouse_x, i_mouse_y;
214 intf_thread_t *p_intf = (intf_thread_t *)p_data;
216 /* Do nothing when the interface is already requested */
217 if( p_intf->p_sys->b_triggered )
220 /* Nothing to do when not in fullscreen mode */
221 var_Get( p_intf->p_sys->p_vout, "fullscreen", &val );
225 vlc_mutex_lock( &p_intf->change_lock );
226 if( !strcmp( psz_var, "mouse-moved" ) && !p_intf->p_sys->b_button_pressed )
228 var_Get( p_intf->p_sys->p_vout, "mouse-x", &val );
229 i_mouse_x = val.i_int;
230 var_Get( p_intf->p_sys->p_vout, "mouse-y", &val );
231 i_mouse_y = val.i_int;
233 /* Very basic test, we even ignore the x value :) */
234 if ( i_mouse_y < p_intf->p_sys->i_threshold )
236 msg_Dbg( p_intf, "interface showing requested" );
237 p_intf->p_sys->b_triggered = VLC_TRUE;
241 /* We keep track of the button state to avoid interferences with the
243 if( !p_intf->p_sys->b_button_pressed &&
244 !strcmp( psz_var, "mouse-button-down" ) )
246 p_intf->p_sys->b_button_pressed = VLC_TRUE;
248 if( p_intf->p_sys->b_button_pressed &&
249 !strcmp( psz_var, "mouse-button-down" ) )
251 p_intf->p_sys->b_button_pressed = VLC_FALSE;
254 vlc_mutex_unlock( &p_intf->change_lock );