]> git.sesse.net Git - vlc/blob - modules/gui/gtk/gtk.c
* ./include/vlc/vlc.h, ./src/libvlc.c: added VLC_Error() to the libvlc API.
[vlc] / modules / gui / gtk / gtk.c
1 /*****************************************************************************
2  * gtk.c : Gtk+ plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2000-2001 VideoLAN
5  * $Id: gtk.c,v 1.6 2002/10/14 16:46:55 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 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>                                      /* malloc(), free() */
28 #include <errno.h>                                                 /* ENOMEM */
29 #include <string.h>                                            /* strerror() */
30 #include <stdio.h>
31
32 #include <vlc/vlc.h>
33 #include <vlc/intf.h>
34
35 #include <gtk/gtk.h>
36
37 #include "gtk_callbacks.h"
38 #include "gtk_interface.h"
39 #include "gtk_support.h"
40
41 #include "menu.h"
42 #include "display.h"
43 #include "common.h"
44
45 /*****************************************************************************
46  * Local prototypes.
47  *****************************************************************************/
48 static int  Open         ( vlc_object_t * );
49 static void Close        ( vlc_object_t * );
50
51 static void Run          ( intf_thread_t * );
52 static int  Manage       ( intf_thread_t * );
53
54 /*****************************************************************************
55  * Module descriptor
56  *****************************************************************************/
57 #define TOOLTIPS_TEXT N_("show tooltips")
58 #define TOOLTIPS_LONGTEXT N_("Show tooltips for configuration options.")
59
60 #define PREFS_MAXH_TEXT N_("maximum height for the configuration windows")
61 #define PREFS_MAXH_LONGTEXT N_( \
62     "You can set the maximum height that the configuration windows in the " \
63     "preferences menu will occupy.")
64
65 vlc_module_begin();
66 #ifdef WIN32
67     int i = 90;
68 #else
69     int i = getenv( "DISPLAY" ) == NULL ? 10 : 90;
70 #endif
71     add_category_hint( N_("Gtk+"), NULL );
72     add_bool( "gtk-tooltips", 1, E_(GtkHideTooltips),
73               TOOLTIPS_TEXT, TOOLTIPS_LONGTEXT );
74     add_integer( "gtk-prefs-maxh", 480, NULL,
75                  PREFS_MAXH_TEXT, PREFS_MAXH_LONGTEXT );
76
77     set_description( _("Gtk+ interface module") );
78     set_capability( "interface", i );
79     set_callbacks( Open, Close );
80     set_program( "gvlc" );
81 vlc_module_end();
82
83 /*****************************************************************************
84  * Open: initialize and create window
85  *****************************************************************************/
86 static int Open( vlc_object_t *p_this )
87 {
88     intf_thread_t *p_intf = (intf_thread_t *)p_this;
89
90     /* Allocate instance and initialize some members */
91     p_intf->p_sys = malloc( sizeof( intf_sys_t ) );
92     if( p_intf->p_sys == NULL )
93     {
94         msg_Err( p_intf, "out of memory" );
95         return VLC_ENOMEM;
96     }
97
98 #ifdef NEED_GTK_MAIN
99     p_intf->p_sys->p_gtk_main = module_Need( p_this, "gtk_main", "gtk" );
100     if( p_intf->p_sys->p_gtk_main == NULL )
101     {
102         free( p_intf->p_sys );
103         return VLC_ENOMOD;
104     }
105 #endif
106
107     p_intf->pf_run = Run;
108
109     p_intf->p_sys->p_sub = msg_Subscribe( p_intf );
110
111     /* Initialize Gtk+ thread */
112     p_intf->p_sys->b_playing = 0;
113     p_intf->p_sys->b_popup_changed = 0;
114     p_intf->p_sys->b_window_changed = 0;
115     p_intf->p_sys->b_playlist_changed = 0;
116
117     p_intf->p_sys->p_input = NULL;
118     p_intf->p_sys->i_playing = -1;
119     p_intf->p_sys->b_slider_free = 1;
120
121     p_intf->p_sys->i_part = 0;
122
123     return VLC_SUCCESS;
124 }
125
126 /*****************************************************************************
127  * Close: destroy interface window
128  *****************************************************************************/
129 static void Close( vlc_object_t *p_this )
130 {
131     intf_thread_t *p_intf = (intf_thread_t *)p_this;
132
133     if( p_intf->p_sys->p_input )
134     {
135         vlc_object_release( p_intf->p_sys->p_input );
136     }
137
138     msg_Unsubscribe( p_intf, p_intf->p_sys->p_sub );
139
140 #ifdef NEED_GTK_MAIN
141     module_Unneed( p_intf, p_intf->p_sys->p_gtk_main );
142 #endif
143
144     /* Destroy structure */
145     free( p_intf->p_sys );
146 }
147
148 /*****************************************************************************
149  * Run: Gtk+ thread
150  *****************************************************************************
151  * this part of the interface is in a separate thread so that we can call
152  * gtk_main() from within it without annoying the rest of the program.
153  *****************************************************************************/
154 static void Run( intf_thread_t *p_intf )
155 {
156     /* The data types we are allowed to receive */
157     static GtkTargetEntry target_table[] =
158     {
159         { "STRING", 0, DROP_ACCEPT_STRING },
160         { "text/uri-list", 0, DROP_ACCEPT_TEXT_URI_LIST },
161         { "text/plain", 0, DROP_ACCEPT_TEXT_PLAIN }
162     };
163
164 #ifdef NEED_GTK_MAIN
165     gdk_threads_enter();
166 #else
167     /* gtk_init needs to know the command line. We don't care, so we
168      * give it an empty one */
169     char  *p_args[] = { "" };
170     char **pp_args  = p_args;
171     int    i_args   = 1;
172     int    i_dummy;
173
174     gtk_init( &i_args, &pp_args );
175 #endif
176
177     /* Create some useful widgets that will certainly be used */
178     p_intf->p_sys->p_window = create_intf_window();
179     p_intf->p_sys->p_popup = create_intf_popup();
180     p_intf->p_sys->p_playwin = create_intf_playlist();
181     p_intf->p_sys->p_messages = create_intf_messages();
182     p_intf->p_sys->p_tooltips = gtk_tooltips_new();
183
184     /* Set the title of the main window */
185     gtk_window_set_title( GTK_WINDOW(p_intf->p_sys->p_window),
186                           VOUT_TITLE " (Gtk+ interface)");
187
188     /* Accept file drops on the main window */
189     gtk_drag_dest_set( GTK_WIDGET( p_intf->p_sys->p_window ),
190                        GTK_DEST_DEFAULT_ALL, target_table,
191                        1, GDK_ACTION_COPY );
192
193     /* Accept file drops on the playlist window */
194     gtk_drag_dest_set( GTK_WIDGET( lookup_widget( p_intf->p_sys->p_playwin,
195                                    "playlist_clist") ),
196                        GTK_DEST_DEFAULT_ALL, target_table,
197                        1, GDK_ACTION_COPY );
198
199     /* Get the slider object */
200     p_intf->p_sys->p_slider_frame = GTK_FRAME( gtk_object_get_data(
201         GTK_OBJECT( p_intf->p_sys->p_window ), "slider_frame" ) );
202
203     /* Configure the log window */
204     p_intf->p_sys->p_messages_text = GTK_TEXT( gtk_object_get_data(
205         GTK_OBJECT(p_intf->p_sys->p_messages ), "messages_textbox" ) );
206     gtk_text_set_line_wrap( p_intf->p_sys->p_messages_text, TRUE);
207     gtk_text_set_word_wrap( p_intf->p_sys->p_messages_text, FALSE);
208
209     /* Get the interface labels */
210 #define P_LABEL( name ) GTK_LABEL( gtk_object_get_data( \
211                          GTK_OBJECT( p_intf->p_sys->p_window ), name ) )
212     p_intf->p_sys->p_label_title = P_LABEL( "title_label" );
213     p_intf->p_sys->p_label_chapter = P_LABEL( "chapter_label" );
214 #undef P_LABEL
215
216     /* Connect the date display to the slider */
217 #define P_SLIDER GTK_RANGE( gtk_object_get_data( \
218                          GTK_OBJECT( p_intf->p_sys->p_window ), "slider" ) )
219     p_intf->p_sys->p_adj = gtk_range_get_adjustment( P_SLIDER );
220
221     gtk_signal_connect ( GTK_OBJECT( p_intf->p_sys->p_adj ), "value_changed",
222                          GTK_SIGNAL_FUNC( E_(GtkDisplayDate) ), NULL );
223     p_intf->p_sys->f_adj_oldvalue = 0;
224 #undef P_SLIDER
225
226     /* We don't create these ones yet because we perhaps won't need them */
227     p_intf->p_sys->p_about = NULL;
228     p_intf->p_sys->p_modules = NULL;
229     p_intf->p_sys->p_open = NULL;
230     p_intf->p_sys->p_jump = NULL;
231
232     /* Hide tooltips if the option is set */
233     if( !config_GetInt( p_intf, "gtk-tooltips" ) )
234     {
235         gtk_tooltips_disable( p_intf->p_sys->p_tooltips );
236     }
237
238     /* Store p_intf to keep an eye on it */
239     gtk_object_set_data( GTK_OBJECT(p_intf->p_sys->p_window),
240                          "p_intf", p_intf );
241
242     gtk_object_set_data( GTK_OBJECT(p_intf->p_sys->p_popup),
243                          "p_intf", p_intf );
244
245     gtk_object_set_data( GTK_OBJECT( p_intf->p_sys->p_playwin ),
246                          "p_intf", p_intf );
247
248     gtk_object_set_data( GTK_OBJECT( p_intf->p_sys->p_messages ),
249                          "p_intf", p_intf );
250
251     gtk_object_set_data( GTK_OBJECT(p_intf->p_sys->p_adj),
252                          "p_intf", p_intf );
253
254     /* Show the control window */
255     gtk_widget_show( p_intf->p_sys->p_window );
256
257 #ifdef NEED_GTK_MAIN
258     while( !p_intf->b_die )
259     {
260         Manage( p_intf );
261
262         /* Sleep to avoid using all CPU - since some interfaces need to
263          * access keyboard events, a 100ms delay is a good compromise */
264         gdk_threads_leave();
265         msleep( INTF_IDLE_SLEEP );
266         gdk_threads_enter();
267     }
268 #else
269     /* Sleep to avoid using all CPU - since some interfaces needs to access
270      * keyboard events, a 100ms delay is a good compromise */
271     i_dummy = gtk_timeout_add( INTF_IDLE_SLEEP / 1000, (GtkFunction)Manage,
272                                p_intf );
273     /* Enter Gtk mode */
274     gtk_main();
275     /* Remove the timeout */
276     gtk_timeout_remove( i_dummy );
277 #endif
278
279     /* Destroy the Tooltips structure */
280     gtk_object_destroy( GTK_OBJECT(p_intf->p_sys->p_tooltips) );
281     gtk_object_destroy( GTK_OBJECT(p_intf->p_sys->p_messages) );
282     gtk_object_destroy( GTK_OBJECT(p_intf->p_sys->p_playwin) );
283     gtk_object_destroy( GTK_OBJECT(p_intf->p_sys->p_popup) );
284     gtk_object_destroy( GTK_OBJECT(p_intf->p_sys->p_window) );
285
286 #ifdef NEED_GTK_MAIN
287     gdk_threads_leave();
288 #endif
289 }
290
291 /* following functions are local */
292
293 /*****************************************************************************
294  * Manage: manage main thread messages
295  *****************************************************************************
296  * In this function, called approx. 10 times a second, we check what the
297  * main program wanted to tell us.
298  *****************************************************************************/
299 static int Manage( intf_thread_t *p_intf )
300 {
301     int i_start, i_stop;
302
303     vlc_mutex_lock( &p_intf->change_lock );
304
305     /* If the "display popup" flag has changed */
306     if( p_intf->b_menu_change )
307     {
308         if( !GTK_IS_WIDGET( p_intf->p_sys->p_popup ) )
309         {
310             p_intf->p_sys->p_popup = create_intf_popup();
311             gtk_object_set_data( GTK_OBJECT( p_intf->p_sys->p_popup ),
312                                  "p_intf", p_intf );
313         }
314         gtk_menu_popup( GTK_MENU( p_intf->p_sys->p_popup ),
315                         NULL, NULL, NULL, NULL, 0, GDK_CURRENT_TIME );
316         p_intf->b_menu_change = 0;
317     }
318
319     /* Update the log window */
320     vlc_mutex_lock( p_intf->p_sys->p_sub->p_lock );
321     i_stop = *p_intf->p_sys->p_sub->pi_stop;
322     vlc_mutex_unlock( p_intf->p_sys->p_sub->p_lock );
323
324     if( p_intf->p_sys->p_sub->i_start != i_stop )
325     {
326         static GdkColor white  = { 0, 0xffff, 0xffff, 0xffff };
327         static GdkColor gray   = { 0, 0xaaaa, 0xaaaa, 0xaaaa };
328         static GdkColor yellow = { 0, 0xffff, 0xffff, 0x6666 };
329         static GdkColor red    = { 0, 0xffff, 0x6666, 0x6666 };
330
331         static const char * ppsz_type[4] = { ": ", " error: ", " warning: ",
332                                              " debug: " };
333         static GdkColor *   pp_color[4] = { &white, &red, &yellow, &gray };
334
335         for( i_start = p_intf->p_sys->p_sub->i_start;
336              i_start != i_stop;
337              i_start = (i_start+1) % VLC_MSG_QSIZE )
338         {
339             /* Append all messages to log window */
340             gtk_text_insert( p_intf->p_sys->p_messages_text, NULL, &gray,
341              NULL, p_intf->p_sys->p_sub->p_msg[i_start].psz_module, -1 );
342
343             gtk_text_insert( p_intf->p_sys->p_messages_text, NULL, &gray,
344                 NULL, ppsz_type[p_intf->p_sys->p_sub->p_msg[i_start].i_type],
345                 -1 );
346
347             gtk_text_insert( p_intf->p_sys->p_messages_text, NULL,
348                 pp_color[p_intf->p_sys->p_sub->p_msg[i_start].i_type], NULL,
349                 p_intf->p_sys->p_sub->p_msg[i_start].psz_msg, -1 );
350
351             gtk_text_insert( p_intf->p_sys->p_messages_text, NULL, &gray,
352                 NULL, "\n", -1 );
353         }
354
355         vlc_mutex_lock( p_intf->p_sys->p_sub->p_lock );
356         p_intf->p_sys->p_sub->i_start = i_start;
357         vlc_mutex_unlock( p_intf->p_sys->p_sub->p_lock );
358
359         gtk_text_set_point( p_intf->p_sys->p_messages_text,
360                     gtk_text_get_length( p_intf->p_sys->p_messages_text ) );
361     }
362
363     /* Update the playlist */
364     GtkPlayListManage( p_intf );
365
366     /* Update the input */
367     if( p_intf->p_sys->p_input == NULL )
368     {
369         p_intf->p_sys->p_input = vlc_object_find( p_intf, VLC_OBJECT_INPUT,
370                                                           FIND_ANYWHERE );
371     }
372     else if( p_intf->p_sys->p_input->b_dead )
373     {
374         vlc_object_release( p_intf->p_sys->p_input );
375         p_intf->p_sys->p_input = NULL;
376     }
377
378     if( p_intf->p_sys->p_input )
379     {
380         input_thread_t *p_input = p_intf->p_sys->p_input;
381
382         vlc_mutex_lock( &p_input->stream.stream_lock );
383
384         if( !p_input->b_die )
385         {
386             /* New input or stream map change */
387             if( p_input->stream.b_changed )
388             {
389                 E_(GtkModeManage)( p_intf );
390                 GtkSetupMenus( p_intf );
391                 p_intf->p_sys->b_playing = 1;
392             }
393
394             /* Manage the slider */
395             if( p_input->stream.b_seekable && p_intf->p_sys->b_playing )
396             {
397                 float newvalue = p_intf->p_sys->p_adj->value;
398
399 #define p_area p_input->stream.p_selected_area
400                 /* If the user hasn't touched the slider since the last time,
401                  * then the input can safely change it */
402                 if( newvalue == p_intf->p_sys->f_adj_oldvalue )
403                 {
404                     /* Update the value */
405                     p_intf->p_sys->p_adj->value =
406                     p_intf->p_sys->f_adj_oldvalue =
407                         ( 100. * p_area->i_tell ) / p_area->i_size;
408
409                     gtk_signal_emit_by_name( GTK_OBJECT( p_intf->p_sys->p_adj ),
410                                              "value_changed" );
411                 }
412                 /* Otherwise, send message to the input if the user has
413                  * finished dragging the slider */
414                 else if( p_intf->p_sys->b_slider_free )
415                 {
416                     off_t i_seek = ( newvalue * p_area->i_size ) / 100;
417
418                     /* release the lock to be able to seek */
419                     vlc_mutex_unlock( &p_input->stream.stream_lock );
420                     input_Seek( p_input, i_seek, INPUT_SEEK_SET );
421                     vlc_mutex_lock( &p_input->stream.stream_lock );
422
423                     /* Update the old value */
424                     p_intf->p_sys->f_adj_oldvalue = newvalue;
425                 }
426 #undef p_area
427             }
428
429             if( p_intf->p_sys->i_part !=
430                 p_input->stream.p_selected_area->i_part )
431             {
432                 p_intf->p_sys->b_chapter_update = 1;
433                 GtkSetupMenus( p_intf );
434             }
435         }
436
437         vlc_mutex_unlock( &p_input->stream.stream_lock );
438     }
439     else if( p_intf->p_sys->b_playing && !p_intf->b_die )
440     {
441         E_(GtkModeManage)( p_intf );
442         p_intf->p_sys->b_playing = 0;
443     }
444
445 #ifndef NEED_GTK_MAIN
446     if( p_intf->b_die )
447     {
448         vlc_mutex_unlock( &p_intf->change_lock );
449
450         /* Prepare to die, young Skywalker */
451         gtk_main_quit();
452
453         return FALSE;
454     }
455 #endif
456
457     vlc_mutex_unlock( &p_intf->change_lock );
458
459     return TRUE;
460 }