]> git.sesse.net Git - vlc/blob - plugins/gnome/intf_gnome.c
* Fixed a segfault in input.c when no input plugin was found for
[vlc] / plugins / gnome / intf_gnome.c
1 /*****************************************************************************
2  * intf_gnome.c: Gnome interface
3  *****************************************************************************
4  * Copyright (C) 1999, 2000 VideoLAN
5  * $Id: intf_gnome.c,v 1.17 2001/02/20 09:10:36 sam Exp $
6  *
7  * Authors: Samuel Hocevar <sam@zoy.org>
8  *
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.
13  * 
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.
18  *
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 #define MODULE_NAME gnome
25 #include "modules_inner.h"
26
27 /*****************************************************************************
28  * Preamble
29  *****************************************************************************/
30 #include "defs.h"
31
32 #include <errno.h>                                                 /* ENOMEM */
33 #include <stdlib.h>                                                /* free() */
34 #include <string.h>                                            /* strerror() */
35 #include <stdio.h>
36
37 #include <gnome.h>
38
39 #include "config.h"
40 #include "common.h"
41 #include "threads.h"
42 #include "mtime.h"
43 #include "tests.h"
44 #include "modules.h"
45
46 #include "stream_control.h"
47 #include "input_ext-intf.h"
48
49 #include "intf_msg.h"
50 #include "interface.h"
51
52 #include "gnome_sys.h"
53 #include "gnome_interface.h"
54 #include "gnome_support.h"
55
56 #include "main.h"
57
58 /*****************************************************************************
59  * Local prototypes.
60  *****************************************************************************/
61 static int  intf_Probe     ( probedata_t *p_data );
62 static int  intf_Open      ( intf_thread_t *p_intf );
63 static void intf_Close     ( intf_thread_t *p_intf );
64 static void intf_Run       ( intf_thread_t *p_intf );
65
66 static gint GnomeManage    ( gpointer p_data );
67
68 /*****************************************************************************
69  * g_atexit: kludge to avoid the Gnome thread to segfault at exit
70  *****************************************************************************
71  * gtk_init() makes several calls to g_atexit() which calls atexit() to
72  * register tidying callbacks to be called at program exit. Since the Gnome
73  * plugin is likely to be unloaded at program exit, we have to export this
74  * symbol to intercept the g_atexit() calls. Talk about crude hack.
75  *****************************************************************************/
76 void g_atexit( GVoidFunc func )
77 {
78     intf_thread_t *p_intf = p_main->p_intf;
79
80     if( p_intf->p_sys->pf_gdk_callback == NULL )
81     {
82         p_intf->p_sys->pf_gdk_callback = func;
83     }
84     else if( p_intf->p_sys->pf_gtk_callback == NULL )
85     {
86         p_intf->p_sys->pf_gtk_callback = func;
87     }
88     /* else nothing, but we could do something here */
89     return;
90 }
91
92 /*****************************************************************************
93  * Functions exported as capabilities. They are declared as static so that
94  * we don't pollute the namespace too much.
95  *****************************************************************************/
96 void _M( intf_getfunctions )( function_list_t * p_function_list )
97 {
98     p_function_list->pf_probe = intf_Probe;
99     p_function_list->functions.intf.pf_open  = intf_Open;
100     p_function_list->functions.intf.pf_close = intf_Close;
101     p_function_list->functions.intf.pf_run   = intf_Run;
102 }
103
104 /*****************************************************************************
105  * intf_Probe: probe the interface and return a score
106  *****************************************************************************
107  * This function tries to initialize Gnome and returns a score to the
108  * plugin manager so that it can select the best plugin.
109  *****************************************************************************/
110 static int intf_Probe( probedata_t *p_data )
111 {
112     if( TestMethod( INTF_METHOD_VAR, "gnome" ) )
113     {
114         return( 999 );
115     }
116
117     return( 100 );
118 }
119
120 /*****************************************************************************
121  * intf_Open: initialize and create window
122  *****************************************************************************/
123 static int intf_Open( intf_thread_t *p_intf )
124 {
125     /* Allocate instance and initialize some members */
126     p_intf->p_sys = malloc( sizeof( intf_sys_t ) );
127     if( p_intf->p_sys == NULL )
128     {
129         intf_ErrMsg("error: %s", strerror(ENOMEM));
130         return( 1 );
131     }
132
133     /* Initialize Gnome thread */
134     p_intf->p_sys->b_popup_changed = 0;
135     p_intf->p_sys->b_window_changed = 0;
136     p_intf->p_sys->b_playlist_changed = 0;
137
138     p_intf->p_sys->b_scale_isfree = 1;
139
140     p_intf->p_sys->pf_gtk_callback = NULL;
141     p_intf->p_sys->pf_gdk_callback = NULL;
142
143     /* Initialize lock */
144     vlc_mutex_init( &p_intf->p_sys->change_lock );
145
146     return( 0 );
147 }
148
149 /*****************************************************************************
150  * intf_Close: destroy interface window
151  *****************************************************************************/
152 static void intf_Close( intf_thread_t *p_intf )
153 {
154     /* Destroy lock */
155     vlc_mutex_destroy( &p_intf->p_sys->change_lock );
156
157     /* Destroy structure */
158     free( p_intf->p_sys );
159 }
160
161 /*****************************************************************************
162  * intf_Run: Gnome thread
163  *****************************************************************************
164  * this part of the interface is in a separate thread so that we can call
165  * gtk_main() from within it without annoying the rest of the program.
166  * XXX: the approach may look kludgy, and probably is, but I could not find
167  * a better way to dynamically load a Gnome interface at runtime.
168  *****************************************************************************/
169 static void intf_Run( intf_thread_t *p_intf )
170 {
171     /* gnome_init needs to know the command line. We don't care, so we
172      * give it an empty one */
173     char *p_args[] = { };
174
175     /* The data types we are allowed to receive */
176     static GtkTargetEntry target_table[] =
177     {
178         { "text/uri-list", 0, DROP_ACCEPT_TEXT_URI_LIST },
179         { "text/plain", 0, DROP_ACCEPT_TEXT_PLAIN }
180     };
181
182     /* Initialize Gnome */
183     gnome_init( p_main->psz_arg0, VERSION, 1, p_args );
184
185     /* create some useful widgets that will certainly be used */
186     p_intf->p_sys->p_window = create_intf_window( );
187     p_intf->p_sys->p_popup = create_intf_popup( );
188
189     /* accept file drops on the main window */
190     gtk_drag_dest_set( GTK_WIDGET( p_intf->p_sys->p_window ),
191                        GTK_DEST_DEFAULT_ALL, target_table,
192                        1, GDK_ACTION_COPY );
193
194     /* we don't create these ones yet because we perhaps won't need them */
195     p_intf->p_sys->p_about = NULL;
196     p_intf->p_sys->p_playlist = NULL;
197     p_intf->p_sys->p_modules = NULL;
198     p_intf->p_sys->p_fileopen = NULL;
199
200     /* store p_sys to keep an eye on it */
201     gtk_object_set_data( GTK_OBJECT(p_intf->p_sys->p_window),
202                          "p_intf", p_intf );
203
204     gtk_object_set_data( GTK_OBJECT(p_intf->p_sys->p_popup),
205                          "p_intf", p_intf );
206
207     /* show the control window */
208     gtk_widget_show( p_intf->p_sys->p_window );
209
210     /* Sleep to avoid using all CPU - since some interfaces needs to access
211      * keyboard events, a 100ms delay is a good compromise */
212     p_intf->p_sys->i_timeout = gtk_timeout_add( INTF_IDLE_SLEEP / 1000,
213                                                 GnomeManage, p_intf );
214  
215
216     /* enter gnome mode */
217     gtk_main();
218
219     /* launch stored callbacks */
220     if( p_intf->p_sys->pf_gtk_callback != NULL )
221     {
222         p_intf->p_sys->pf_gtk_callback();
223
224         if( p_intf->p_sys->pf_gdk_callback != NULL )
225         {
226             p_intf->p_sys->pf_gdk_callback();
227         }
228     }
229 }
230
231 /* following functions are local */
232
233 /*****************************************************************************
234  * GnomeManage: manage main thread messages
235  *****************************************************************************
236  * In this function, called approx. 10 times a second, we check what the
237  * main program wanted to tell us.
238  *****************************************************************************/
239 static gint GnomeManage( gpointer p_data )
240 {
241     intf_thread_t *p_intf = (void *)p_data;
242
243     vlc_mutex_lock( &p_intf->p_sys->change_lock );
244
245     /* If the "display popup" flag has changed */
246     if( p_intf->b_menu_change )
247     {
248         gnome_popup_menu_do_popup( p_intf->p_sys->p_popup,
249                                    NULL, NULL, NULL, NULL );
250         p_intf->b_menu_change = 0;
251     }
252
253     /* Manage the slider */
254     if( p_intf->p_input != NULL && p_intf->p_sys->p_window != NULL
255          && p_intf->p_sys->b_scale_isfree )
256     {
257         GtkWidget *p_scale;
258         GtkAdjustment *p_adj;
259    
260         p_scale = GTK_WIDGET( gtk_object_get_data( GTK_OBJECT(
261                                   p_intf->p_sys->p_window ), "hscale" ) );
262         p_adj = gtk_range_get_adjustment ( GTK_RANGE( p_scale ) );
263
264         /* Update the value */
265         p_adj->value = ( 100. *
266                          p_intf->p_input->stream.p_selected_area->i_tell ) /
267                          p_intf->p_input->stream.p_selected_area->i_size;
268
269         /* Gtv does it this way. Why not. */
270         gtk_range_set_adjustment ( GTK_RANGE( p_scale ), p_adj );
271         gtk_range_slider_update ( GTK_RANGE( p_scale ) );
272         gtk_range_clear_background ( GTK_RANGE( p_scale ) );
273         gtk_range_draw_background ( GTK_RANGE( p_scale ) );
274     }
275
276     /* Manage core vlc functions through the callback */
277     p_intf->pf_manage( p_intf );
278
279     if( p_intf->b_die )
280     {
281         /* Make sure we won't be called again */
282         gtk_timeout_remove( p_intf->p_sys->i_timeout );
283
284         vlc_mutex_unlock( &p_intf->p_sys->change_lock );
285
286         /* Prepare to die, young Skywalker */
287         gtk_main_quit();
288         return( FALSE );
289     }
290
291     vlc_mutex_unlock( &p_intf->p_sys->change_lock );
292
293     return( TRUE );
294 }
295