]> git.sesse.net Git - vlc/blob - modules/gui/maemo/maemo.c
82c6a1d8d406b23c2e360b6c451bcc94f9a76972
[vlc] / modules / gui / maemo / maemo.c
1 /*****************************************************************************
2 * maemo.c : Maemo plugin for VLC
3 *****************************************************************************
4 * Copyright (C) 2008 the VideoLAN team
5 * $Id$
6 *
7 * Authors: Antoine Lejeune <phytos@videolan.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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
23
24 #ifdef HAVE_CONFIG_H
25 # include "config.h"
26 #endif
27
28 #include <assert.h>
29
30 #include <vlc_common.h>
31 #include <vlc_plugin.h>
32 #include <vlc_interface.h>
33 #include <vlc_window.h>
34
35 #include <hildon/hildon-program.h>
36 #include <hildon/hildon-banner.h>
37 #include <gtk/gtk.h>
38 #include <stdio.h>
39 #include <inttypes.h>
40
41 #include "maemo.h"
42 #include "maemo_callbacks.h"
43 #include "maemo_input.h"
44 #include "maemo_interface.h"
45
46 /*****************************************************************************
47  * Local prototypes.
48  *****************************************************************************/
49 static int      Open               ( vlc_object_t * );
50 static void     Close              ( vlc_object_t * );
51 static void     Run                ( intf_thread_t * );
52 static gboolean should_die         ( gpointer );
53 static int      OpenWindow         ( vlc_object_t * );
54 static void     CloseWindow        ( vlc_object_t * );
55 static int      ControlWindow      ( vout_window_t *, int, va_list );
56 static void*    request_video      ( intf_thread_t *, vout_thread_t * );
57 static void     release_video      ( intf_thread_t * );
58 static gboolean video_widget_ready ( gpointer data );
59
60 /*****************************************************************************
61 * Module descriptor
62 *****************************************************************************/
63 vlc_module_begin();
64     set_shortname( "Maemo" );
65     set_description( N_("Maemo hildon interface") );
66     set_category( CAT_INTERFACE );
67     set_subcategory( SUBCAT_INTERFACE_MAIN );
68     set_capability( "interface", 70 );
69     set_callbacks( Open, Close );
70     add_shortcut( "maemo" );
71
72     add_submodule();
73         set_capability( "xwindow", 50 );
74         set_callbacks( OpenWindow, CloseWindow );
75 vlc_module_end();
76
77 /*****************************************************************************
78  * Module callbacks
79  *****************************************************************************/
80 static int Open( vlc_object_t *p_this )
81 {
82     intf_thread_t *p_intf = (intf_thread_t *)p_this;
83
84     /* Allocate instance and initialize some members */
85     p_intf->p_sys = malloc( sizeof( intf_sys_t ) );
86     if( p_intf->p_sys == NULL )
87     {
88         msg_Err( p_intf, "out of memory" );
89         return VLC_ENOMEM;
90     }
91
92     p_intf->pf_run = Run;
93
94     p_intf->p_sys->p_playlist = pl_Hold( p_intf );
95     p_intf->p_sys->p_input = NULL;
96     p_intf->p_sys->p_vout = NULL;
97
98     p_intf->p_sys->p_main_window = NULL;
99     p_intf->p_sys->p_video_window = NULL;
100
101     vlc_spin_init( &p_intf->p_sys->event_lock );
102     vlc_mutex_init( &p_intf->p_sys->p_video_mutex );
103     vlc_cond_init( &p_intf->p_sys->p_video_cond );
104
105     return VLC_SUCCESS;
106 }
107
108 static void Close( vlc_object_t *p_this )
109 {
110     intf_thread_t *p_intf = (intf_thread_t *)p_this;
111
112     vlc_object_release( p_intf->p_sys->p_playlist );
113
114     vlc_spin_destroy( &p_intf->p_sys->event_lock );
115
116     /* Destroy structure */
117     free( p_intf->p_sys );
118 }
119
120 /*****************************************************************************
121 * Initialize and launch the interface
122 *****************************************************************************/
123 static void Run( intf_thread_t *p_intf )
124 {
125     char  *p_args[] = { "", NULL };
126     char **pp_args  = p_args;
127     int    i_args   = 1;
128
129     HildonProgram *program;
130     HildonWindow *window;
131     GtkWidget *main_vbox;
132
133     GtkWidget *tabs;
134     GtkWidget *video;
135     GtkWidget *bottom_hbox;
136     GtkWidget *play_button;
137     GtkWidget *prev_button;
138     GtkWidget *next_button;
139     GtkWidget *stop_button;
140     GtkWidget *seekbar;
141
142     gtk_init( &i_args, &pp_args );
143
144     program = HILDON_PROGRAM( hildon_program_get_instance() );
145     g_set_application_name( "VLC Media Player" );
146
147     window = HILDON_WINDOW( hildon_window_new() );
148     hildon_program_add_window( program, window );
149     gtk_object_set_data( GTK_OBJECT( window ),
150                          "p_intf", p_intf );
151     p_intf->p_sys->p_main_window = window;
152
153     // A little theming
154     char *psz_rc_file = NULL;
155     if( asprintf( &psz_rc_file, "%s/maemo/vlc_intf.rc",
156                   config_GetDataDir() ) != -1 )
157     {
158         gtk_rc_parse( psz_rc_file );
159         free( psz_rc_file );
160     }
161
162     // We create the main vertical box
163     main_vbox = gtk_vbox_new( FALSE, 0 );
164     gtk_container_add( GTK_CONTAINER( window ), main_vbox );
165
166     tabs = gtk_notebook_new();
167     p_intf->p_sys->p_tabs = tabs;
168     gtk_notebook_set_tab_pos( GTK_NOTEBOOK( tabs ), GTK_POS_LEFT );
169     gtk_notebook_set_show_border( GTK_NOTEBOOK( tabs ), FALSE );
170     gtk_box_pack_start( GTK_BOX( main_vbox ), tabs, TRUE, TRUE, 0 );
171
172     // We put first the embedded video
173     video = gtk_event_box_new();
174     gtk_notebook_append_page( GTK_NOTEBOOK( tabs ),
175                 video,
176                 gtk_image_new_from_stock( "vlc",
177                                           GTK_ICON_SIZE_DIALOG ) );
178     gtk_notebook_set_tab_label_packing( GTK_NOTEBOOK( tabs ),
179                                         video,
180                                         FALSE, FALSE, 0 );
181     create_playlist( p_intf );
182
183     // We put the horizontal box which contains all the buttons
184     bottom_hbox = gtk_hbox_new( FALSE, 0 );
185
186     // We create the buttons
187     play_button = gtk_button_new();
188     gtk_button_set_image( GTK_BUTTON( play_button ),
189                    gtk_image_new_from_stock( "vlc-play", GTK_ICON_SIZE_BUTTON ) );
190     gtk_widget_set_size_request( play_button, 60, 60);
191     p_intf->p_sys->p_play_button = play_button;
192     stop_button = gtk_button_new();
193     gtk_button_set_image( GTK_BUTTON( stop_button ),
194                           gtk_image_new_from_stock( "vlc-stop", GTK_ICON_SIZE_BUTTON ) );
195     prev_button = gtk_button_new();
196     gtk_button_set_image( GTK_BUTTON( prev_button ),
197                       gtk_image_new_from_stock( "vlc-previous", GTK_ICON_SIZE_BUTTON ) );
198     next_button = gtk_button_new();
199     gtk_button_set_image( GTK_BUTTON( next_button ),
200                       gtk_image_new_from_stock( "vlc-next", GTK_ICON_SIZE_BUTTON ) );
201     seekbar = hildon_seekbar_new();
202     p_intf->p_sys->p_seekbar = HILDON_SEEKBAR( seekbar );
203
204     // We add them to the hbox
205     gtk_box_pack_start( GTK_BOX( bottom_hbox ), play_button, FALSE, FALSE, 5 );
206     gtk_box_pack_start( GTK_BOX( bottom_hbox ), stop_button, FALSE, FALSE, 0 );
207     gtk_box_pack_start( GTK_BOX( bottom_hbox ), prev_button, FALSE, FALSE, 0 );
208     gtk_box_pack_start( GTK_BOX( bottom_hbox ), next_button, FALSE, FALSE, 0 );
209     gtk_box_pack_start( GTK_BOX( bottom_hbox ), seekbar    , TRUE , TRUE , 5 );
210     // We add the hbox to the main vbox
211     gtk_box_pack_start( GTK_BOX( main_vbox ), bottom_hbox, FALSE, FALSE, 0 );
212
213     g_signal_connect( window, "delete_event",
214                       G_CALLBACK( delete_event_cb ), NULL );
215     g_signal_connect( play_button, "clicked", G_CALLBACK( play_cb ), NULL );
216     g_signal_connect( stop_button, "clicked", G_CALLBACK( stop_cb ), NULL );
217     g_signal_connect( prev_button, "clicked", G_CALLBACK( prev_cb ), NULL );
218     g_signal_connect( next_button, "clicked", G_CALLBACK( next_cb ), NULL );
219     g_signal_connect( seekbar, "change-value",
220                       G_CALLBACK( seekbar_changed_cb ), NULL );
221
222     gtk_widget_show_all( GTK_WIDGET( window ) );
223
224     create_menu( p_intf );
225
226     // Set callback with the vlc core
227     g_timeout_add( INTF_IDLE_SLEEP / 1000, process_events, p_intf );
228     g_timeout_add( 150 /* miliseconds */, should_die, p_intf );
229     var_AddCallback( p_intf->p_sys->p_playlist, "item-change",
230                      item_changed_cb, p_intf );
231     var_AddCallback( p_intf->p_sys->p_playlist, "playlist-current",
232                      playlist_current_cb, p_intf );
233     var_AddCallback( p_intf->p_sys->p_playlist, "activity",
234                      activity_cb, p_intf );
235
236     // Look if the playlist is already started
237     item_changed_pl( p_intf );
238
239     // The embedded video is only ready after gtk_main and windows are shown
240     g_idle_add( video_widget_ready, video );
241
242     gtk_main();
243
244     delete_input( p_intf );
245     var_DelCallback( p_intf->p_sys->p_playlist, "item-change",
246                      item_changed_cb, p_intf );
247     var_DelCallback( p_intf->p_sys->p_playlist, "playlist-current",
248                      playlist_current_cb, p_intf );
249     var_DelCallback( p_intf->p_sys->p_playlist, "activity",
250                      activity_cb, p_intf );
251
252     // Asking the vout to close
253     vout_thread_t *p_vout = p_intf->p_sys->p_vout;
254
255     if( p_vout )
256     {
257         vout_Control( p_vout, VOUT_REPARENT, 0 );
258         vlc_object_release( p_vout );
259     }
260
261     gtk_object_destroy( GTK_OBJECT( window ) );
262 }
263
264 static gboolean should_die( gpointer data )
265 {
266     intf_thread_t *p_intf = (intf_thread_t *)data;
267     if( !vlc_object_alive( p_intf ) )
268         gtk_main_quit();
269     return TRUE;
270 }
271
272 /**
273 * Video output window provider
274 */
275 static int OpenWindow (vlc_object_t *obj)
276 {
277     vout_window_t *wnd = (vout_window_t *)obj;
278
279     /* TODO: should probably be in the libvlc core instead: */
280     if (!config_GetInt (obj, "embedded-video"))
281         return VLC_EGENERIC;
282
283     intf_thread_t *intf = (intf_thread_t *)
284     vlc_object_find_name (obj, "maemo", FIND_ANYWHERE);
285     if (intf == NULL)
286     {
287         msg_Err( obj, "Maemo interface not found" );
288         return VLC_EGENERIC; /* Maemo not in use */
289     }
290
291     wnd->handle.xid = request_video( intf, wnd->vout );
292     msg_Dbg( intf, "Using handle %"PRIu32, wnd->handle.xid );
293
294     wnd->control = ControlWindow;
295     wnd->p_private = intf;
296
297     // Signaling that the window is not at the requested sizeof
298     int i_width, i_height, i_x_top, i_y_top, i_x, i_y;
299     gdk_drawable_get_size( GDK_DRAWABLE( intf->p_sys->p_video_window->window ),
300                            &i_width, &i_height );
301     gdk_window_get_position( GTK_WIDGET(intf->p_sys->p_main_window)->window,
302                              &i_x_top, &i_y_top );
303     gdk_window_get_position( intf->p_sys->p_video_window->window, &i_x, &i_y );
304
305     wnd->width = i_width;
306     wnd->height = i_height;
307     wnd->pos_x = i_x_top + i_x;
308     wnd->pos_y = i_y_top + i_y;
309
310     return VLC_SUCCESS;
311 }
312
313 static int ControlWindow (vout_window_t *wnd, int query, va_list args)
314 {
315     (void)wnd; (void)query; (void)args;
316     return VLC_EGENERIC;
317 }
318
319 static void CloseWindow (vlc_object_t *obj)
320 {
321     intf_thread_t *intf = (intf_thread_t *)obj->p_private;
322
323     release_video( intf );
324     vlc_object_release (intf);
325 }
326
327 static void *request_video( intf_thread_t *p_intf, vout_thread_t *p_nvout )
328 {
329     if( p_intf->p_sys->p_vout )
330     {
331         msg_Dbg( p_intf, "Embedded video already in use" );
332         return NULL;
333     }
334
335     vlc_mutex_lock( &p_intf->p_sys->p_video_mutex );
336     mutex_cleanup_push( &p_intf->p_sys->p_video_mutex );
337
338     // We wait until the p_video_window is set
339     while( p_intf->p_sys->p_video_window == NULL )
340         vlc_cond_wait( &p_intf->p_sys->p_video_cond,
341                        &p_intf->p_sys->p_video_mutex );
342
343     vlc_cleanup_run();
344
345     p_intf->p_sys->p_vout = p_nvout;
346     return ( void * )GDK_WINDOW_XID( p_intf->p_sys->p_video_window->window );
347 }
348
349 static void release_video( intf_thread_t *p_intf )
350 {
351     msg_Dbg( p_intf, "Releasing embedded video" );
352     p_intf->p_sys->p_vout = NULL;
353 }
354
355 static gboolean video_widget_ready( gpointer data )
356 {
357     intf_thread_t *p_intf = NULL;
358     GtkWidget *top_window = NULL;
359     GtkWidget *video = (GtkWidget *)data;
360
361     top_window = gtk_widget_get_toplevel( GTK_WIDGET( video ) );
362     p_intf = (intf_thread_t *)gtk_object_get_data( GTK_OBJECT( top_window ),
363                                                    "p_intf" );
364     p_intf->p_sys->p_video_window = video;
365     gtk_widget_grab_focus( video );
366
367     vlc_cond_signal( &p_intf->p_sys->p_video_cond );
368
369     // We rewind the input
370     if( p_intf->p_sys->p_input )
371     {
372         input_Control( p_intf->p_sys->p_input, INPUT_SET_POSITION, 0.0 );
373     }
374
375     // We want it to be executed only one time
376     return FALSE;
377 }