]> git.sesse.net Git - vlc/blob - plugins/gtk/intf_gtk.c
b5504598b11f66f5addf82bc81d7360a381c6102
[vlc] / plugins / gtk / intf_gtk.c
1 /*****************************************************************************
2  * intf_gtk.c: Gtk+ interface
3  *****************************************************************************
4  * Copyright (C) 1999, 2000 VideoLAN
5  * $Id: intf_gtk.c,v 1.21 2001/05/23 23:08:20 stef Exp $
6  *
7  * Authors: Samuel Hocevar <sam@zoy.org>
8  *          Stéphane Borel <stef@via.ecp.fr>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  * 
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 #define MODULE_NAME gtk
26 #include "modules_inner.h"
27
28 /*****************************************************************************
29  * Preamble
30  *****************************************************************************/
31 #include "defs.h"
32
33 #include <errno.h>                                                 /* ENOMEM */
34 #include <stdlib.h>                                                /* free() */
35 #include <string.h>                                            /* strerror() */
36 #include <stdio.h>
37
38 #include <gtk/gtk.h>
39
40 #include "config.h"
41 #include "common.h"
42 #include "threads.h"
43 #include "mtime.h"
44 #include "tests.h"
45 #include "modules.h"
46
47 #include "stream_control.h"
48 #include "input_ext-intf.h"
49
50 #include "interface.h"
51 #include "intf_msg.h"
52 #include "intf_playlist.h"
53
54 #include "video.h"
55 #include "video_output.h"
56
57 #include "gtk_callbacks.h"
58 #include "gtk_interface.h"
59 #include "gtk_support.h"
60 #include "gtk_menu.h"
61 #include "gtk_display.h"
62 #include "intf_gtk.h"
63
64 #include "main.h"
65
66 /*****************************************************************************
67  * Local prototypes.
68  *****************************************************************************/
69 static int  intf_Probe      ( probedata_t *p_data );
70 static int  intf_Open       ( intf_thread_t *p_intf );
71 static void intf_Close      ( intf_thread_t *p_intf );
72 static void intf_Run        ( intf_thread_t *p_intf );
73
74 static gint GtkManage       ( gpointer p_data );
75
76 /*****************************************************************************
77  * g_atexit: kludge to avoid the Gtk+ thread to segfault at exit
78  *****************************************************************************
79  * gtk_init() makes several calls to g_atexit() which calls atexit() to
80  * register tidying callbacks to be called at program exit. Since the Gtk+
81  * plugin is likely to be unloaded at program exit, we have to export this
82  * symbol to intercept the g_atexit() calls. Talk about crude hack.
83  *****************************************************************************/
84 void g_atexit( GVoidFunc func )
85 {
86     intf_thread_t *p_intf = p_main->p_intf;
87
88     if( p_intf->p_sys->pf_gdk_callback == NULL )
89     {
90         p_intf->p_sys->pf_gdk_callback = func;
91     }
92     else if( p_intf->p_sys->pf_gtk_callback == NULL )
93     {
94         p_intf->p_sys->pf_gtk_callback = func;
95     }
96     /* else nothing, but we could do something here */
97     return;
98 }
99
100 /*****************************************************************************
101  * Functions exported as capabilities. They are declared as static so that
102  * we don't pollute the namespace too much.
103  *****************************************************************************/
104 void _M( intf_getfunctions )( function_list_t * p_function_list )
105 {
106     p_function_list->pf_probe = intf_Probe;
107     p_function_list->functions.intf.pf_open  = intf_Open;
108     p_function_list->functions.intf.pf_close = intf_Close;
109     p_function_list->functions.intf.pf_run   = intf_Run;
110 }
111
112 /*****************************************************************************
113  * intf_Probe: probe the interface and return a score
114  *****************************************************************************
115  * This function tries to initialize Gtk+ and returns a score to the
116  * plugin manager so that it can select the best plugin.
117  *****************************************************************************/
118 static int intf_Probe( probedata_t *p_data )
119 {
120     if( TestMethod( INTF_METHOD_VAR, "gtk" ) )
121     {
122         return( 999 );
123     }
124
125     if( TestProgram( "gvlc" ) )
126     {
127         return( 190 );
128     }
129
130     return( 90 );
131 }
132
133 /*****************************************************************************
134  * intf_Open: initialize and create window
135  *****************************************************************************/
136 static int intf_Open( intf_thread_t *p_intf )
137 {
138     /* Allocate instance and initialize some members */
139     p_intf->p_sys = malloc( sizeof( intf_sys_t ) );
140     if( p_intf->p_sys == NULL )
141     {
142         intf_ErrMsg("error: %s", strerror(ENOMEM));
143         return( 1 );
144     }
145
146     /* Initialize Gtk+ thread */
147     p_intf->p_sys->b_popup_changed = 0;
148     p_intf->p_sys->b_window_changed = 0;
149     p_intf->p_sys->b_playlist_changed = 0;
150
151     p_intf->p_sys->i_playing = -1;
152     p_intf->p_sys->b_slider_free = 1;
153
154     p_intf->p_sys->pf_gtk_callback = NULL;
155     p_intf->p_sys->pf_gdk_callback = NULL;
156
157     return( 0 );
158 }
159
160 /*****************************************************************************
161  * intf_Close: destroy interface window
162  *****************************************************************************/
163 static void intf_Close( intf_thread_t *p_intf )
164 {
165     /* Destroy structure */
166     free( p_intf->p_sys );
167 }
168
169 /*****************************************************************************
170  * intf_Run: Gtk+ thread
171  *****************************************************************************
172  * this part of the interface is in a separate thread so that we can call
173  * gtk_main() from within it without annoying the rest of the program.
174  * XXX: the approach may look kludgy, and probably is, but I could not find
175  * a better way to dynamically load a Gtk+ interface at runtime.
176  *****************************************************************************/
177 static void intf_Run( intf_thread_t *p_intf )
178 {
179     /* gtk_init needs to know the command line. We don't care, so we
180      * give it an empty one */
181     char  *p_args[] = { "" };
182     char **pp_args  = p_args;
183     int    i_args   = 1;
184
185     /* The data types we are allowed to receive */
186     static GtkTargetEntry target_table[] =
187     {
188         { "text/uri-list", 0, DROP_ACCEPT_TEXT_URI_LIST },
189         { "text/plain", 0, DROP_ACCEPT_TEXT_PLAIN }
190     };
191
192     /* intf_Manage callback timeout */
193     int i_timeout;
194
195     /* Initialize Gtk+ */
196     gtk_init( &i_args, &pp_args );
197
198     /* Create some useful widgets that will certainly be used */
199     p_intf->p_sys->p_window = create_intf_window( );
200     p_intf->p_sys->p_popup = create_intf_popup( );
201     p_intf->p_sys->p_playlist = create_intf_playlist();
202     
203     /* Set the title of the main window */
204     gtk_window_set_title( GTK_WINDOW(p_intf->p_sys->p_window),
205                           VOUT_TITLE " (Gtk+ interface)");
206
207     /* Accept file drops on the main window */
208     gtk_drag_dest_set( GTK_WIDGET( p_intf->p_sys->p_window ),
209                        GTK_DEST_DEFAULT_ALL, target_table,
210                        1, GDK_ACTION_COPY );
211
212     /* Accept file drops on the playlist window */
213     gtk_drag_dest_set( GTK_WIDGET( lookup_widget( p_intf->p_sys->p_playlist,
214                                    "playlist_clist") ),
215                        GTK_DEST_DEFAULT_ALL, target_table,
216                        1, GDK_ACTION_COPY );
217
218     /* Get the interface labels */
219     p_intf->p_sys->p_slider_frame = GTK_FRAME( gtk_object_get_data(
220         GTK_OBJECT(p_intf->p_sys->p_window ), "slider_frame" ) ); 
221
222 #define P_LABEL( name ) GTK_LABEL( gtk_object_get_data( \
223                          GTK_OBJECT( p_intf->p_sys->p_window ), name ) )
224     p_intf->p_sys->p_label_title = P_LABEL( "title_label" );
225     p_intf->p_sys->p_label_chapter = P_LABEL( "chapter_label" );
226 #undef P_LABEL
227
228     /* Connect the date display to the slider */
229 #define P_SLIDER GTK_RANGE( gtk_object_get_data( \
230                          GTK_OBJECT( p_intf->p_sys->p_window ), "slider" ) )
231     p_intf->p_sys->p_adj = gtk_range_get_adjustment( P_SLIDER );
232
233     gtk_signal_connect ( GTK_OBJECT( p_intf->p_sys->p_adj ), "value_changed",
234                          GTK_SIGNAL_FUNC( GtkDisplayDate ), NULL );
235     p_intf->p_sys->f_adj_oldvalue = 0;
236 #undef P_SLIDER
237
238     /* We don't create these ones yet because we perhaps won't need them */
239     p_intf->p_sys->p_about = NULL;
240     p_intf->p_sys->p_modules = NULL;
241     p_intf->p_sys->p_fileopen = NULL;
242     p_intf->p_sys->p_disc = NULL;
243     p_intf->p_sys->p_network = NULL;
244     p_intf->p_sys->p_preferences = NULL;
245     p_intf->p_sys->p_jump = NULL;
246
247     /* Store p_intf to keep an eye on it */
248     gtk_object_set_data( GTK_OBJECT(p_intf->p_sys->p_window),
249                          "p_intf", p_intf );
250
251     gtk_object_set_data( GTK_OBJECT(p_intf->p_sys->p_popup),
252                          "p_intf", p_intf );
253
254     gtk_object_set_data( GTK_OBJECT( p_intf->p_sys->p_playlist ),
255                          "p_intf", p_intf );
256
257     gtk_object_set_data( GTK_OBJECT(p_intf->p_sys->p_adj),
258                          "p_intf", p_intf );
259
260     /* Show the control window */
261     gtk_widget_show( p_intf->p_sys->p_window );
262
263     /* Sleep to avoid using all CPU - since some interfaces needs to access
264      * keyboard events, a 100ms delay is a good compromise */
265     i_timeout = gtk_timeout_add( INTF_IDLE_SLEEP / 1000, GtkManage, p_intf );
266
267     /* Enter Gtk mode */
268     gtk_main();
269
270     /* Remove the timeout */
271     gtk_timeout_remove( i_timeout );
272
273     /* Launch stored callbacks */
274     if( p_intf->p_sys->pf_gtk_callback != NULL )
275     {
276         p_intf->p_sys->pf_gtk_callback();
277
278         if( p_intf->p_sys->pf_gdk_callback != NULL )
279         {
280             p_intf->p_sys->pf_gdk_callback();
281         }
282     }
283 }
284
285 /* following functions are local */
286
287 /*****************************************************************************
288  * GtkManage: manage main thread messages
289  *****************************************************************************
290  * In this function, called approx. 10 times a second, we check what the
291  * main program wanted to tell us.
292  *****************************************************************************/
293 static gint GtkManage( gpointer p_data )
294 {
295 #define p_intf ((intf_thread_t *)p_data)
296
297     vlc_mutex_lock( &p_intf->change_lock );
298     
299     /* If the "display popup" flag has changed */
300     if( p_intf->b_menu_change )
301     {
302         if( !GTK_IS_WIDGET( p_intf->p_sys->p_popup ) )
303         {
304             p_intf->p_sys->p_popup = create_intf_popup();
305             gtk_object_set_data( GTK_OBJECT( p_intf->p_sys->p_popup ),
306                                  "p_popup", p_intf );
307         }
308         gtk_menu_popup( GTK_MENU( p_intf->p_sys->p_popup ),
309                         NULL, NULL, NULL, NULL, 0, GDK_CURRENT_TIME );
310         p_intf->b_menu_change = 0;
311     }
312
313     /* update the playlist */
314     GtkPlayListManage( p_data );
315
316     if( p_intf->p_input != NULL && !p_intf->b_die )
317     {
318         vlc_mutex_lock( &p_intf->p_input->stream.stream_lock );
319
320         /* New input or stream map change */
321         if( p_intf->p_input->stream.b_changed )
322         {
323             GtkModeManage( p_intf );
324         }
325
326         /* Manage the slider */
327         if( p_intf->p_input->stream.b_seekable )
328         {
329             float newvalue = p_intf->p_sys->p_adj->value;
330     
331 #define p_area p_intf->p_input->stream.p_selected_area
332             /* If the user hasn't touched the slider since the last time,
333              * then the input can safely change it */
334             if( newvalue == p_intf->p_sys->f_adj_oldvalue )
335             {
336                 /* Update the value */
337                 p_intf->p_sys->p_adj->value = p_intf->p_sys->f_adj_oldvalue =
338                     ( 100. * p_area->i_tell ) / p_area->i_size;
339     
340                 gtk_signal_emit_by_name( GTK_OBJECT( p_intf->p_sys->p_adj ),
341                                          "value_changed" );
342             }
343             /* Otherwise, send message to the input if the user has
344              * finished dragging the slider */
345             else if( p_intf->p_sys->b_slider_free )
346             {
347                 off_t i_seek = ( newvalue * p_area->i_size ) / 100;
348
349                 /* release the lock to be able to seek */
350                 vlc_mutex_unlock( &p_intf->p_input->stream.stream_lock );
351                 input_Seek( p_intf->p_input, i_seek );
352                 vlc_mutex_lock( &p_intf->p_input->stream.stream_lock );
353     
354                 /* Update the old value */
355                 p_intf->p_sys->f_adj_oldvalue = newvalue;
356             }
357 #undef p_area
358         }
359         vlc_mutex_unlock( &p_intf->p_input->stream.stream_lock );
360
361         if( p_intf->p_sys->i_part !=
362             p_intf->p_input->stream.p_selected_area->i_part )
363         {
364             p_intf->p_sys->b_chapter_update = 1;
365             GtkSetupMenus( p_intf );
366         }
367
368     }
369     else if( !p_intf->b_die )
370     {
371         GtkModeManage( p_intf );
372     }
373
374     /* Manage core vlc functions through the callback */
375     p_intf->pf_manage( p_intf );
376
377     if( p_intf->b_die )
378     {
379         vlc_mutex_unlock( &p_intf->change_lock );
380
381         /* Prepare to die, young Skywalker */
382         gtk_main_quit();
383
384         /* Just in case */
385         return( FALSE );
386     }
387
388     vlc_mutex_unlock( &p_intf->change_lock );
389
390     return( TRUE );
391
392 #undef p_intf
393 }