]> git.sesse.net Git - vlc/blob - plugins/gtk/intf_gtk.c
c15217c8c88a9c70389da5bcfd9e4421c789578c
[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.2 2001/03/04 03:12:00 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 gtk
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 <gtk/gtk.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 "gtk_sys.h"
53 #include "gtk_interface.h"
54 #include "gtk_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 GtkManage    ( gpointer p_data );
67
68 /*****************************************************************************
69  * g_atexit: kludge to avoid the Gtk+ 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 Gtk+
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 Gtk+ 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, "gtk" ) )
113     {
114         return( 999 );
115     }
116
117     return( 90 );
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 Gtk+ 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: Gtk+ 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 Gtk+ interface at runtime.
168  *****************************************************************************/
169 static void intf_Run( intf_thread_t *p_intf )
170 {
171     /* gtk_init needs to know the command line. We don't care, so we
172      * give it an empty one */
173     char *p_args[] = { "" };
174     char **pp_args = p_args;
175     int i_args = 1;
176
177     /* The data types we are allowed to receive */
178     static GtkTargetEntry target_table[] =
179     {
180         { "text/uri-list", 0, DROP_ACCEPT_TEXT_URI_LIST },
181         { "text/plain", 0, DROP_ACCEPT_TEXT_PLAIN }
182     };
183
184     /* Initialize Gtk+ */
185     gtk_init( &i_args, &pp_args );
186
187     /* Create some useful widgets that will certainly be used */
188     p_intf->p_sys->p_window = create_intf_window( );
189     p_intf->p_sys->p_popup = create_intf_popup( );
190
191     /* Set the title of the main window */
192     gtk_window_set_title( GTK_WINDOW(p_intf->p_sys->p_window),
193                           VOUT_TITLE " (Gtk+ interface)");
194
195     /* Accept file drops on the main window */
196     gtk_drag_dest_set( GTK_WIDGET( p_intf->p_sys->p_window ),
197                        GTK_DEST_DEFAULT_ALL, target_table,
198                        1, GDK_ACTION_COPY );
199
200     /* We don't create these ones yet because we perhaps won't need them */
201     p_intf->p_sys->p_about = NULL;
202     p_intf->p_sys->p_playlist = NULL;
203     p_intf->p_sys->p_modules = NULL;
204     p_intf->p_sys->p_fileopen = NULL;
205     p_intf->p_sys->p_disc = NULL;
206
207     /* Store p_intf to keep an eye on it */
208     gtk_object_set_data( GTK_OBJECT(p_intf->p_sys->p_window),
209                          "p_intf", p_intf );
210
211     gtk_object_set_data( GTK_OBJECT(p_intf->p_sys->p_popup),
212                          "p_intf", p_intf );
213
214     /* Show the control window */
215     gtk_widget_show( p_intf->p_sys->p_window );
216
217     /* Sleep to avoid using all CPU - since some interfaces needs to access
218      * keyboard events, a 100ms delay is a good compromise */
219     p_intf->p_sys->i_timeout = gtk_timeout_add( INTF_IDLE_SLEEP / 1000,
220                                                 GtkManage, p_intf );
221  
222
223     /* Enter Gtk mode */
224     gtk_main();
225
226     /* launch stored callbacks */
227     if( p_intf->p_sys->pf_gtk_callback != NULL )
228     {
229         p_intf->p_sys->pf_gtk_callback();
230
231         if( p_intf->p_sys->pf_gdk_callback != NULL )
232         {
233             p_intf->p_sys->pf_gdk_callback();
234         }
235     }
236 }
237
238 /* following functions are local */
239
240 /*****************************************************************************
241  * GtkManage: manage main thread messages
242  *****************************************************************************
243  * In this function, called approx. 10 times a second, we check what the
244  * main program wanted to tell us.
245  *****************************************************************************/
246 static gint GtkManage( gpointer p_data )
247 {
248     intf_thread_t *p_intf = (void *)p_data;
249
250     vlc_mutex_lock( &p_intf->p_sys->change_lock );
251
252     /* If the "display popup" flag has changed */
253     if( p_intf->b_menu_change )
254     {
255         if( !GTK_IS_WIDGET( p_intf->p_sys->p_popup ) )
256         {
257             p_intf->p_sys->p_popup = create_intf_popup();
258             gtk_object_set_data( GTK_OBJECT( p_intf->p_sys->p_popup ),
259                                  "p_popup", p_intf );
260         }
261 //        gtk_widget_show( p_intf->p_sys->p_popup );
262         gtk_menu_popup( GTK_MENU( p_intf->p_sys->p_popup ),
263                         NULL, NULL, NULL, NULL, 0, GDK_CURRENT_TIME );
264         p_intf->b_menu_change = 0;
265     }
266
267     /* Manage the slider */
268     if( p_intf->p_input != NULL && p_intf->p_sys->p_window != NULL
269          && p_intf->p_sys->b_scale_isfree )
270     {
271         GtkWidget *p_scale;
272         GtkAdjustment *p_adj;
273    
274         p_scale = GTK_WIDGET( gtk_object_get_data( GTK_OBJECT(
275                                   p_intf->p_sys->p_window ), "hscale" ) );
276         p_adj = gtk_range_get_adjustment ( GTK_RANGE( p_scale ) );
277
278         /* Update the value */
279         p_adj->value = ( 100. *
280                          p_intf->p_input->stream.p_selected_area->i_tell ) /
281                          p_intf->p_input->stream.p_selected_area->i_size;
282
283         /* Gtv does it this way. Why not. */
284         gtk_range_set_adjustment ( GTK_RANGE( p_scale ), p_adj );
285         gtk_range_slider_update ( GTK_RANGE( p_scale ) );
286         gtk_range_clear_background ( GTK_RANGE( p_scale ) );
287         gtk_range_draw_background ( GTK_RANGE( p_scale ) );
288     }
289
290     /* Manage core vlc functions through the callback */
291     p_intf->pf_manage( p_intf );
292
293     if( p_intf->b_die )
294     {
295         /* Make sure we won't be called again */
296         gtk_timeout_remove( p_intf->p_sys->i_timeout );
297
298         vlc_mutex_unlock( &p_intf->p_sys->change_lock );
299
300         /* Prepare to die, young Skywalker */
301         gtk_main_quit();
302         return( FALSE );
303     }
304
305     vlc_mutex_unlock( &p_intf->p_sys->change_lock );
306
307     return( TRUE );
308 }
309