]> git.sesse.net Git - vlc/blob - plugins/gtk/gtk_callbacks.c
* Fixed the BeOS compile typo.
[vlc] / plugins / gtk / gtk_callbacks.c
1 /*****************************************************************************
2  * gtk_callbacks.c : Callbacks for the Gtk+ plugin.
3  *****************************************************************************
4  * Copyright (C) 2000, 2001 VideoLAN
5  * $Id: gtk_callbacks.c,v 1.22 2001/05/30 17:03:12 sam 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 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #include "defs.h"
29 #include <sys/types.h>                                              /* off_t */
30 #include <stdlib.h>
31
32 #include <gtk/gtk.h>
33
34 #include <string.h>
35
36 #include "config.h"
37 #include "common.h"
38 #include "threads.h"
39 #include "mtime.h"
40
41 #include "stream_control.h"
42 #include "input_ext-intf.h"
43
44 #include "interface.h"
45 #include "intf_playlist.h"
46 #include "intf_msg.h"
47
48 #include "video.h"
49 #include "video_output.h"
50
51 #include "gtk_callbacks.h"
52 #include "gtk_interface.h"
53 #include "gtk_support.h"
54 #include "intf_gtk.h"
55
56 #include "main.h"
57 #include "netutils.h"
58
59 #include "modules_export.h"
60
61 /*****************************************************************************
62  * Callbacks
63  *****************************************************************************/
64
65 /*
66  * Main interface callbacks
67  */
68
69 gboolean GtkExit( GtkWidget       *widget,
70                   GdkEventButton  *event,
71                   gpointer         user_data )
72 {
73     intf_thread_t *p_intf = GetIntf( GTK_WIDGET(widget), (char*)user_data );
74
75     vlc_mutex_lock( &p_intf->change_lock );
76     p_intf->b_die = 1;
77     vlc_mutex_unlock( &p_intf->change_lock );
78
79     return TRUE;
80 }
81
82 gboolean GtkWindowDelete( GtkWidget       *widget,
83                           GdkEvent        *event,
84                           gpointer         user_data )
85 {
86     GtkExit( GTK_WIDGET( widget ), NULL, user_data );
87
88     return TRUE;
89 }
90
91
92 gboolean GtkWindowToggle( GtkWidget       *widget,
93                           GdkEventButton  *event,
94                           gpointer         user_data )
95 {
96     intf_thread_t *p_intf = GetIntf( GTK_WIDGET(widget), (char*)user_data );
97     
98     if( GTK_WIDGET_VISIBLE(p_intf->p_sys->p_window) )
99     {
100         gtk_widget_hide( p_intf->p_sys->p_window);
101
102     } 
103     else 
104     {
105         gtk_widget_show( p_intf->p_sys->p_window );
106     }
107
108     return TRUE;
109 }
110
111 gboolean GtkFullscreen( GtkWidget       *widget,
112                         GdkEventButton  *event,
113                         gpointer         user_data)
114 {
115     if( p_vout_bank->i_count )
116     {
117         vlc_mutex_lock( &p_vout_bank->pp_vout[0]->change_lock );
118
119         p_vout_bank->pp_vout[0]->i_changes |= VOUT_FULLSCREEN_CHANGE;
120
121         vlc_mutex_unlock( &p_vout_bank->pp_vout[0]->change_lock );
122
123         return TRUE;
124     }
125     else
126     {
127         return FALSE;
128     }
129 }
130
131 void GtkWindowDrag( GtkWidget       *widget,
132                     GdkDragContext  *drag_context,
133                     gint             x,
134                     gint             y,
135                     GtkSelectionData *data,
136                     guint            info,
137                     guint            time,
138                     gpointer         user_data)
139 {
140     intf_thread_t * p_intf =  GetIntf( GTK_WIDGET(widget), "intf_window" );
141     int end = p_main->p_playlist->i_size;
142     GtkDropDataReceived( p_intf, data, info, PLAYLIST_END );
143
144     if( p_intf->p_input != NULL )
145     {
146        /* FIXME: temporary hack */
147        p_intf->p_input->b_eof = 1;
148     }
149      
150     intf_PlaylistJumpto( p_main->p_playlist, end-1 );
151 }
152
153
154 /****************************************************************************
155  * Slider management
156  ****************************************************************************/
157
158 gboolean GtkSliderRelease( GtkWidget       *widget,
159                            GdkEventButton  *event,
160                            gpointer         user_data )
161 {
162     intf_thread_t *p_intf = GetIntf( GTK_WIDGET(widget), "intf_window" );
163
164     vlc_mutex_lock( &p_intf->change_lock );
165     p_intf->p_sys->b_slider_free = 1;
166     vlc_mutex_unlock( &p_intf->change_lock );
167
168     return FALSE;
169 }
170
171
172 gboolean GtkSliderPress( GtkWidget       *widget,
173                          GdkEventButton  *event,
174                          gpointer         user_data)
175 {
176     intf_thread_t *p_intf = GetIntf( GTK_WIDGET(widget), "intf_window" );
177
178     vlc_mutex_lock( &p_intf->change_lock );
179     p_intf->p_sys->b_slider_free = 0;
180     vlc_mutex_unlock( &p_intf->change_lock );
181
182     return FALSE;
183 }
184
185
186 /****************************************************************************
187  * DVD specific items
188  ****************************************************************************/
189
190 void GtkTitlePrev( GtkButton * button, gpointer user_data )
191 {
192     intf_thread_t * p_intf;
193     input_area_t *  p_area;
194     int             i_id;
195
196     p_intf = GetIntf( GTK_WIDGET(button), (char*)user_data );
197     i_id = p_intf->p_input->stream.p_selected_area->i_id - 1;
198
199     /* Disallow area 0 since it is used for video_ts.vob */
200     if( i_id > 0 )
201     {
202         p_area = p_intf->p_input->stream.pp_areas[i_id];
203         input_ChangeArea( p_intf->p_input, (input_area_t*)p_area );
204
205         input_SetStatus( p_intf->p_input, INPUT_STATUS_PLAY );
206
207         p_intf->p_sys->b_title_update = 1;
208         GtkSetupMenus( p_intf );
209     }
210 }
211
212
213 void GtkTitleNext( GtkButton * button, gpointer user_data )
214 {
215     intf_thread_t * p_intf;
216     input_area_t *  p_area;
217     int             i_id;
218
219     p_intf = GetIntf( GTK_WIDGET(button), (char*)user_data );
220     i_id = p_intf->p_input->stream.p_selected_area->i_id + 1;
221
222     if( i_id < p_intf->p_input->stream.i_area_nb )
223     {
224         p_area = p_intf->p_input->stream.pp_areas[i_id];   
225         input_ChangeArea( p_intf->p_input, (input_area_t*)p_area );
226
227         input_SetStatus( p_intf->p_input, INPUT_STATUS_PLAY );
228
229         p_intf->p_sys->b_title_update = 1;
230         GtkSetupMenus( p_intf );
231     }
232
233 }
234
235
236 void GtkChapterPrev( GtkButton * button, gpointer user_data )
237 {
238     intf_thread_t * p_intf;
239     input_area_t *  p_area;
240
241     p_intf = GetIntf( GTK_WIDGET(button), (char*)user_data );
242     p_area = p_intf->p_input->stream.p_selected_area;
243
244     if( p_area->i_part > 0 )
245     {
246         p_area->i_part--;
247         input_ChangeArea( p_intf->p_input, (input_area_t*)p_area );
248
249         input_SetStatus( p_intf->p_input, INPUT_STATUS_PLAY );
250
251         p_intf->p_sys->b_chapter_update = 1;
252         GtkSetupMenus( p_intf );
253     }
254 }
255
256
257 void GtkChapterNext( GtkButton * button, gpointer user_data )
258 {
259     intf_thread_t * p_intf;
260     input_area_t *  p_area;
261
262     p_intf = GetIntf( GTK_WIDGET(button), (char*)user_data );
263     p_area = p_intf->p_input->stream.p_selected_area;
264
265     if( p_area->i_part < p_area->i_part_nb )
266     {
267         p_area->i_part++;
268         input_ChangeArea( p_intf->p_input, (input_area_t*)p_area );
269
270         input_SetStatus( p_intf->p_input, INPUT_STATUS_PLAY );
271
272         p_intf->p_sys->b_chapter_update = 1;
273         GtkSetupMenus( p_intf );
274     }
275 }
276
277 /****************************************************************************
278  * Network specific items
279  ****************************************************************************/
280 void GtkNetworkJoin( GtkEditable * editable, gpointer user_data )
281 {
282     int     i_channel;
283
284     i_channel = gtk_spin_button_get_value_as_int( GTK_SPIN_BUTTON( editable ) );
285     intf_WarnMsg( 3, "intf info: joining channel %d", i_channel );
286
287 //    network_ChannelJoin( i_channel );
288 }
289
290 void GtkChannelGo( GtkButton * button, gpointer user_data )
291 {
292     GtkWidget *     window;
293     GtkWidget *     spin;
294     int             i_channel;
295
296     window = gtk_widget_get_toplevel( GTK_WIDGET (button) );
297     spin = GTK_WIDGET( gtk_object_get_data( GTK_OBJECT( window ),
298                        "network_channel_spinbutton" ) );
299
300     i_channel = gtk_spin_button_get_value_as_int( GTK_SPIN_BUTTON( spin ) );
301     intf_WarnMsg( 3, "intf info: joining channel %d", i_channel );
302
303     network_ChannelJoin( i_channel );
304 }
305
306
307 /****************************************************************************
308  * About box
309  ****************************************************************************/
310
311 gboolean GtkAboutShow( GtkWidget       *widget,
312                        GdkEventButton  *event,
313                        gpointer         user_data)
314 {
315     intf_thread_t *p_intf = GetIntf( GTK_WIDGET(widget), (char*)user_data );
316
317     if( !GTK_IS_WIDGET( p_intf->p_sys->p_about ) )
318     {
319         p_intf->p_sys->p_about = create_intf_about();
320         gtk_object_set_data( GTK_OBJECT( p_intf->p_sys->p_about ),
321                              "p_intf", p_intf );
322     }
323     gtk_widget_show( p_intf->p_sys->p_about );
324     gdk_window_raise( p_intf->p_sys->p_about->window );
325
326     return TRUE;
327 }
328
329 void GtkAboutOk( GtkButton * button, gpointer user_data)
330 {
331     intf_thread_t *p_intf = GetIntf( GTK_WIDGET(button), (char*)user_data );
332
333     gtk_widget_hide( p_intf->p_sys->p_about );
334 }
335
336
337 /****************************************************************************
338  * Jump box
339  ****************************************************************************/
340
341 gboolean GtkJumpShow( GtkWidget       *widget,
342                       GdkEventButton  *event,
343                       gpointer         user_data)
344 {
345     intf_thread_t *p_intf = GetIntf( GTK_WIDGET(widget), (char*)user_data );
346
347     if( !GTK_IS_WIDGET( p_intf->p_sys->p_jump ) )
348     {
349         p_intf->p_sys->p_jump = create_intf_jump();
350         gtk_object_set_data( GTK_OBJECT( p_intf->p_sys->p_jump ),
351                              "p_intf", p_intf );
352     }
353
354     gtk_widget_show( p_intf->p_sys->p_jump );
355     gdk_window_raise( p_intf->p_sys->p_jump->window );
356
357     return FALSE;
358 }
359
360
361 void GtkJumpOk( GtkButton       *button,
362                 gpointer         user_data)
363 {
364     intf_thread_t * p_intf;
365     off_t           i_seek;
366     off_t           i_size;
367     int             i_hours;
368     int             i_minutes;
369     int             i_seconds;
370
371     p_intf = GetIntf( GTK_WIDGET( button ), (char*)user_data );
372
373 #define GET_VALUE( name )                                                   \
374     gtk_spin_button_get_value_as_int( GTK_SPIN_BUTTON( gtk_object_get_data( \
375         GTK_OBJECT( p_intf->p_sys->p_jump ), name ) ) )
376
377     i_hours   = GET_VALUE( "jump_hour_spinbutton" );
378     i_minutes = GET_VALUE( "jump_minute_spinbutton" );
379     i_seconds = GET_VALUE( "jump_second_spinbutton" );
380
381 #undef GET_VALUE
382
383     i_seconds += 60 *i_minutes + 3600* i_hours;
384
385     vlc_mutex_lock( &p_intf->p_input->stream.stream_lock );
386     i_seek = i_seconds * 50 * p_intf->p_input->stream.i_mux_rate;
387     i_size = p_intf->p_input->stream.p_selected_area->i_size;
388     vlc_mutex_unlock( &p_intf->p_input->stream.stream_lock );
389
390     if( i_seek < i_size )
391     {
392         input_Seek( p_intf->p_input, i_seek );
393     }
394     p_main->p_playlist->b_stopped = 0;
395     gtk_widget_hide( gtk_widget_get_toplevel( GTK_WIDGET (button) ) );
396 }
397
398
399 void GtkJumpCancel( GtkButton       *button,
400                     gpointer         user_data)
401 {
402     gtk_widget_hide( gtk_widget_get_toplevel( GTK_WIDGET (button) ) );
403 }
404
405
406 /****************************************************************************
407  * Callbacks for menuitems
408  ****************************************************************************/
409 void GtkExitActivate( GtkMenuItem * menuitem, gpointer user_data )
410 {
411     GtkExit( GTK_WIDGET( menuitem ), NULL, user_data );
412 }
413
414
415 void GtkFullscreenActivate( GtkMenuItem * menuitem, gpointer user_data )
416 {
417     GtkFullscreen( GTK_WIDGET( menuitem ), NULL, user_data );
418 }
419
420
421 void GtkWindowToggleActivate( GtkMenuItem * menuitem, gpointer user_data )
422 {
423     GtkWindowToggle( GTK_WIDGET( menuitem ), NULL, user_data );
424 }
425
426
427 void GtkAboutActivate( GtkMenuItem * menuitem, gpointer user_data )
428 {
429     GtkAboutShow( GTK_WIDGET( menuitem ), NULL, user_data );
430 }
431
432
433 void GtkJumpActivate( GtkMenuItem * menuitem, gpointer user_data )
434 {
435     GtkJumpShow( GTK_WIDGET( menuitem ), NULL, user_data );
436 }
437