Commit b36e6edb authored by Gildas Bazin's avatar Gildas Bazin

Make the maemo interface a bit more useable

parent c2704417
...@@ -103,6 +103,7 @@ Windows port: ...@@ -103,6 +103,7 @@ Windows port:
Maemo port: Maemo port:
* Multiple improvements for N900 compliance and efficiency * Multiple improvements for N900 compliance and efficiency
* Support for HW accelerated video decoding on N900 * Support for HW accelerated video decoding on N900
* Improvements to the maemo interface
Misc: Misc:
* new sqlite module * new sqlite module
......
/***************************************************************************** /****************************************************************************
* maemo.c : Maemo plugin for VLC * maemo.c : Maemo plugin for VLC
***************************************************************************** *****************************************************************************
* Copyright (C) 2008 the VideoLAN team * Copyright (C) 2008 the VideoLAN team
* $Id$ * $Id$
* *
* Authors: Antoine Lejeune <phytos@videolan.org> * Authors: Antoine Lejeune <phytos@videolan.org>
* * Gildas Bazin <gbazin@videolan.org>
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by * This program is free software; you can redistribute it and/or modify
* the Free Software Foundation; either version 2 of the License, or * it under the terms of the GNU General Public License as published by
* (at your option) any later version. * the Free Software Foundation; either version 2 of the License, or
* * (at your option) any later version.
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of * This program is distributed in the hope that it will be useful,
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * but WITHOUT ANY WARRANTY; without even the implied warranty of
* GNU General Public License for more details. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* * GNU General Public License for more details.
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software * You should have received a copy of the GNU General Public License
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. * along with this program; if not, write to the Free Software
*****************************************************************************/ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
# include "config.h" # include "config.h"
#endif #endif
#include <assert.h>
#include <vlc_common.h> #include <vlc_common.h>
#include <vlc_plugin.h> #include <vlc_plugin.h>
#include <vlc_interface.h> #include <vlc_interface.h>
...@@ -49,14 +48,12 @@ ...@@ -49,14 +48,12 @@
*****************************************************************************/ *****************************************************************************/
static int Open ( vlc_object_t * ); static int Open ( vlc_object_t * );
static void Close ( vlc_object_t * ); static void Close ( vlc_object_t * );
static void Run ( intf_thread_t * ); static void *Thread ( void * );
static gboolean should_die ( gpointer ); static gboolean should_die ( gpointer );
static int OpenWindow ( vlc_object_t * ); static int OpenWindow ( vlc_object_t * );
static void CloseWindow ( vlc_object_t * ); static void CloseWindow ( vlc_object_t * );
static int ControlWindow ( vout_window_t *, int, va_list ); static int ControlWindow ( vout_window_t *, int, va_list );
static uint32_t request_video ( intf_thread_t *, vout_thread_t * ); static gboolean interface_ready ( gpointer );
static void release_video ( intf_thread_t * );
static gboolean video_widget_ready ( gpointer data );
/***************************************************************************** /*****************************************************************************
* Module descriptor * Module descriptor
...@@ -75,38 +72,46 @@ vlc_module_begin(); ...@@ -75,38 +72,46 @@ vlc_module_begin();
set_callbacks( OpenWindow, CloseWindow ); set_callbacks( OpenWindow, CloseWindow );
vlc_module_end(); vlc_module_end();
static struct
{
vlc_mutex_t lock;
vlc_cond_t wait;
intf_thread_t *intf;
bool enabled;
} wnd_req = { VLC_STATIC_MUTEX, PTHREAD_COND_INITIALIZER, NULL, false };
/***************************************************************************** /*****************************************************************************
* Module callbacks * Module callbacks
*****************************************************************************/ *****************************************************************************/
static int Open( vlc_object_t *p_this ) static int Open( vlc_object_t *p_this )
{ {
intf_thread_t *p_intf = (intf_thread_t *)p_this; intf_thread_t *p_intf = (intf_thread_t *)p_this;
intf_sys_t *p_sys;;
vlc_value_t val;
/* Allocate instance and initialize some members */ /* Allocate instance and initialize some members */
p_intf->p_sys = malloc( sizeof( intf_sys_t ) ); p_intf->p_sys = p_sys = malloc( sizeof( intf_sys_t ) );
if( p_intf->p_sys == NULL ) if( p_intf->p_sys == NULL )
return VLC_ENOMEM; return VLC_ENOMEM;
p_intf->pf_run = Run; p_sys->p_playlist = pl_Hold( p_intf );
p_sys->p_input = NULL;
p_intf->p_sys->p_playlist = pl_Hold( p_intf ); p_sys->p_main_window = NULL;
p_intf->p_sys->p_input = NULL; p_sys->p_video_window = NULL;
p_intf->p_sys->p_vout = NULL; p_sys->p_control_window = NULL;
p_sys->b_fullscreen = false;
p_intf->p_sys->p_main_window = NULL; vlc_spin_init( &p_sys->event_lock );
p_intf->p_sys->p_video_window = NULL;
wnd_req.enabled = true; /* Create separate thread for main interface */
/* ^no need to lock, interfacesare started before video outputs */ vlc_sem_init (&p_sys->ready, 0);
vlc_spin_init( &p_intf->p_sys->event_lock ); if( vlc_clone( &p_sys->thread, Thread, p_intf, VLC_THREAD_PRIORITY_LOW ) )
{
pl_Release (p_sys->p_playlist);
free (p_sys);
return VLC_ENOMEM;
}
/* Wait for interface thread to be fully initialised */
vlc_sem_wait (&p_sys->ready);
vlc_sem_destroy (&p_sys->ready);
var_Create (p_this->p_libvlc, "hildon-iface", VLC_VAR_ADDRESS);
val.p_address = p_this;
var_Set (p_this->p_libvlc, "hildon-iface", val);
return VLC_SUCCESS; return VLC_SUCCESS;
} }
...@@ -115,34 +120,42 @@ static void Close( vlc_object_t *p_this ) ...@@ -115,34 +120,42 @@ static void Close( vlc_object_t *p_this )
{ {
intf_thread_t *p_intf = (intf_thread_t *)p_this; intf_thread_t *p_intf = (intf_thread_t *)p_this;
vlc_object_release( p_intf->p_sys->p_playlist ); var_Destroy (p_this->p_libvlc, "hildon-iface");
vlc_join (p_intf->p_sys->thread, NULL);
pl_Release ( p_intf->p_sys->p_playlist );
vlc_spin_destroy( &p_intf->p_sys->event_lock ); vlc_spin_destroy( &p_intf->p_sys->event_lock );
/* Destroy structure */
free( p_intf->p_sys ); free( p_intf->p_sys );
} }
static gint quit_event( GtkWidget *widget, GdkEvent *event, gpointer data )
{
intf_thread_t *p_intf = (intf_thread_t *)data;
(void)widget; (void)event;
libvlc_Quit( p_intf->p_libvlc );
return TRUE;
}
/***************************************************************************** /*****************************************************************************
* Initialize and launch the interface * Initialize and launch the interface
*****************************************************************************/ *****************************************************************************/
static void Run( intf_thread_t *p_intf ) static void *Thread( void *obj )
{ {
char *p_args[] = { (char *)"vlc", NULL }; intf_thread_t *p_intf = (intf_thread_t *)obj;
char **pp_args = p_args; const char *p_args[] = { "vlc", "--sync" };
int i_args = 1; int i_args = sizeof(p_args)/sizeof(char *);
char **pp_args = (char **)p_args;
HildonProgram *program; HildonProgram *program;
HildonWindow *window; HildonWindow *window;
GtkWidget *main_vbox; GtkWidget *main_vbox;
GtkWidget *tabs;
GtkWidget *video; GtkWidget *video;
GtkWidget *bottom_hbox; GtkWidget *bottom_hbox;
GtkWidget *play_button; GtkWidget *play_button;
GtkWidget *prev_button; GtkWidget *prev_button;
GtkWidget *next_button; GtkWidget *next_button;
GtkWidget *stop_button; GtkWidget *stop_button;
GtkWidget *playlist_button;
GtkWidget *seekbar; GtkWidget *seekbar;
gtk_init( &i_args, &pp_args ); gtk_init( &i_args, &pp_args );
...@@ -152,10 +165,14 @@ static void Run( intf_thread_t *p_intf ) ...@@ -152,10 +165,14 @@ static void Run( intf_thread_t *p_intf )
window = HILDON_WINDOW( hildon_window_new() ); window = HILDON_WINDOW( hildon_window_new() );
hildon_program_add_window( program, window ); hildon_program_add_window( program, window );
gtk_object_set_data( GTK_OBJECT( window ), gtk_object_set_data( GTK_OBJECT( window ), "p_intf", p_intf );
"p_intf", p_intf );
p_intf->p_sys->p_main_window = window; p_intf->p_sys->p_main_window = window;
g_signal_connect( GTK_WIDGET(window), "key-press-event",
G_CALLBACK( key_cb ), p_intf );
g_signal_connect (GTK_WIDGET(window), "delete_event",
GTK_SIGNAL_FUNC( quit_event), p_intf );
// A little theming // A little theming
char *psz_rc_file = NULL; char *psz_rc_file = NULL;
char *psz_data = config_GetDataDir( p_intf ); char *psz_data = config_GetDataDir( p_intf );
...@@ -170,25 +187,18 @@ static void Run( intf_thread_t *p_intf ) ...@@ -170,25 +187,18 @@ static void Run( intf_thread_t *p_intf )
main_vbox = gtk_vbox_new( FALSE, 0 ); main_vbox = gtk_vbox_new( FALSE, 0 );
gtk_container_add( GTK_CONTAINER( window ), main_vbox ); gtk_container_add( GTK_CONTAINER( window ), main_vbox );
tabs = gtk_notebook_new();
p_intf->p_sys->p_tabs = tabs;
gtk_notebook_set_tab_pos( GTK_NOTEBOOK( tabs ), GTK_POS_LEFT );
gtk_notebook_set_show_border( GTK_NOTEBOOK( tabs ), FALSE );
gtk_box_pack_start( GTK_BOX( main_vbox ), tabs, TRUE, TRUE, 0 );
// We put first the embedded video // We put first the embedded video
video = gtk_event_box_new(); video = gtk_event_box_new();
gtk_notebook_append_page( GTK_NOTEBOOK( tabs ), GdkColor black = {0,0,0,0};
video, gtk_widget_modify_bg(video, GTK_STATE_NORMAL, &black);
gtk_image_new_from_stock( "vlc", p_intf->p_sys->p_video_window = video;
GTK_ICON_SIZE_DIALOG ) ); gtk_box_pack_start( GTK_BOX( main_vbox ), video, TRUE, TRUE, 0 );
gtk_notebook_set_tab_label_packing( GTK_NOTEBOOK( tabs ),
video,
FALSE, FALSE, 0 );
create_playlist( p_intf ); create_playlist( p_intf );
gtk_box_pack_start( GTK_BOX( main_vbox ), p_intf->p_sys->p_playlist_window, TRUE, TRUE, 0 );
// We put the horizontal box which contains all the buttons // We put the horizontal box which contains all the buttons
bottom_hbox = gtk_hbox_new( FALSE, 0 ); p_intf->p_sys->p_control_window = bottom_hbox = gtk_hbox_new( FALSE, 0 );
// We create the buttons // We create the buttons
play_button = gtk_button_new(); play_button = gtk_button_new();
...@@ -205,6 +215,9 @@ static void Run( intf_thread_t *p_intf ) ...@@ -205,6 +215,9 @@ static void Run( intf_thread_t *p_intf )
next_button = gtk_button_new(); next_button = gtk_button_new();
gtk_button_set_image( GTK_BUTTON( next_button ), gtk_button_set_image( GTK_BUTTON( next_button ),
gtk_image_new_from_stock( "vlc-next", GTK_ICON_SIZE_BUTTON ) ); gtk_image_new_from_stock( "vlc-next", GTK_ICON_SIZE_BUTTON ) );
playlist_button = gtk_button_new();
gtk_button_set_image( GTK_BUTTON( playlist_button ),
gtk_image_new_from_stock( "vlc-playlist", GTK_ICON_SIZE_BUTTON ) );
seekbar = hildon_seekbar_new(); seekbar = hildon_seekbar_new();
p_intf->p_sys->p_seekbar = HILDON_SEEKBAR( seekbar ); p_intf->p_sys->p_seekbar = HILDON_SEEKBAR( seekbar );
...@@ -213,6 +226,7 @@ static void Run( intf_thread_t *p_intf ) ...@@ -213,6 +226,7 @@ static void Run( intf_thread_t *p_intf )
gtk_box_pack_start( GTK_BOX( bottom_hbox ), stop_button, FALSE, FALSE, 0 ); gtk_box_pack_start( GTK_BOX( bottom_hbox ), stop_button, FALSE, FALSE, 0 );
gtk_box_pack_start( GTK_BOX( bottom_hbox ), prev_button, FALSE, FALSE, 0 ); gtk_box_pack_start( GTK_BOX( bottom_hbox ), prev_button, FALSE, FALSE, 0 );
gtk_box_pack_start( GTK_BOX( bottom_hbox ), next_button, FALSE, FALSE, 0 ); gtk_box_pack_start( GTK_BOX( bottom_hbox ), next_button, FALSE, FALSE, 0 );
gtk_box_pack_start( GTK_BOX( bottom_hbox ), playlist_button, FALSE, FALSE, 0 );
gtk_box_pack_start( GTK_BOX( bottom_hbox ), seekbar , TRUE , TRUE , 5 ); gtk_box_pack_start( GTK_BOX( bottom_hbox ), seekbar , TRUE , TRUE , 5 );
// We add the hbox to the main vbox // We add the hbox to the main vbox
gtk_box_pack_start( GTK_BOX( main_vbox ), bottom_hbox, FALSE, FALSE, 0 ); gtk_box_pack_start( GTK_BOX( main_vbox ), bottom_hbox, FALSE, FALSE, 0 );
...@@ -223,13 +237,28 @@ static void Run( intf_thread_t *p_intf ) ...@@ -223,13 +237,28 @@ static void Run( intf_thread_t *p_intf )
g_signal_connect( stop_button, "clicked", G_CALLBACK( stop_cb ), NULL ); g_signal_connect( stop_button, "clicked", G_CALLBACK( stop_cb ), NULL );
g_signal_connect( prev_button, "clicked", G_CALLBACK( prev_cb ), NULL ); g_signal_connect( prev_button, "clicked", G_CALLBACK( prev_cb ), NULL );
g_signal_connect( next_button, "clicked", G_CALLBACK( next_cb ), NULL ); g_signal_connect( next_button, "clicked", G_CALLBACK( next_cb ), NULL );
g_signal_connect( playlist_button, "clicked", G_CALLBACK( playlist_cb ), NULL );
g_signal_connect( seekbar, "change-value", g_signal_connect( seekbar, "change-value",
G_CALLBACK( seekbar_changed_cb ), NULL ); G_CALLBACK( seekbar_changed_cb ), NULL );
gtk_widget_show_all( GTK_WIDGET( window ) ); gtk_widget_show_all( GTK_WIDGET( window ) );
gtk_widget_hide_all( p_intf->p_sys->p_playlist_window );
create_menu( p_intf ); create_menu( p_intf );
#if 1
/* HACK: Only one X11 client can subscribe to mouse button press events.
* VLC currently handles those in the video display.
* Force GTK to unsubscribe from mouse press and release events. */
Display *dpy = GDK_WINDOW_XDISPLAY( gtk_widget_get_window(p_intf->p_sys->p_video_window) );
Window w = GDK_WINDOW_XID( gtk_widget_get_window(p_intf->p_sys->p_video_window) );
XWindowAttributes attr;
XGetWindowAttributes( dpy, w, &attr );
attr.your_event_mask &= ~(ButtonPressMask|ButtonReleaseMask);
XSelectInput( dpy, w, attr.your_event_mask );
#endif
// Set callback with the vlc core // Set callback with the vlc core
g_timeout_add( INTF_IDLE_SLEEP / 1000, process_events, p_intf ); g_timeout_add( INTF_IDLE_SLEEP / 1000, process_events, p_intf );
g_timeout_add( 150 /* miliseconds */, should_die, p_intf ); g_timeout_add( 150 /* miliseconds */, should_die, p_intf );
...@@ -240,11 +269,8 @@ static void Run( intf_thread_t *p_intf ) ...@@ -240,11 +269,8 @@ static void Run( intf_thread_t *p_intf )
var_AddCallback( p_intf->p_sys->p_playlist, "activity", var_AddCallback( p_intf->p_sys->p_playlist, "activity",
activity_cb, p_intf ); activity_cb, p_intf );
// Look if the playlist is already started
item_changed_pl( p_intf );
// The embedded video is only ready after gtk_main and windows are shown // The embedded video is only ready after gtk_main and windows are shown
g_idle_add( video_widget_ready, video ); g_idle_add( interface_ready, p_intf );
gtk_main(); gtk_main();
...@@ -256,9 +282,9 @@ static void Run( intf_thread_t *p_intf ) ...@@ -256,9 +282,9 @@ static void Run( intf_thread_t *p_intf )
var_DelCallback( p_intf->p_sys->p_playlist, "activity", var_DelCallback( p_intf->p_sys->p_playlist, "activity",
activity_cb, p_intf ); activity_cb, p_intf );
/* FIXME: we need to wait for vout to clean up... */
assert( !p_intf->p_sys->p_vout ); /* too late */
gtk_object_destroy( GTK_OBJECT( window ) ); gtk_object_destroy( GTK_OBJECT( window ) );
return NULL;
} }
static gboolean should_die( gpointer data ) static gboolean should_die( gpointer data )
...@@ -272,42 +298,39 @@ static gboolean should_die( gpointer data ) ...@@ -272,42 +298,39 @@ static gboolean should_die( gpointer data )
/** /**
* Video output window provider * Video output window provider
*/ */
static int OpenWindow (vlc_object_t *obj) static int OpenWindow (vlc_object_t *p_obj)
{ {
vout_window_t *wnd = (vout_window_t *)obj; vout_window_t *p_wnd = (vout_window_t *)p_obj;
intf_thread_t *intf; intf_thread_t *p_intf;
vlc_value_t val;
if (wnd->cfg->is_standalone || !wnd_req.enabled) if (p_wnd->cfg->is_standalone)
return VLC_EGENERIC; return VLC_EGENERIC;
/* FIXME it should NOT be needed */ if( var_Get( p_obj->p_libvlc, "hildon-iface", &val ) )
vout_thread_t *vout = vlc_object_find (obj, VLC_OBJECT_VOUT, FIND_PARENT); val.p_address = NULL;
if (!vout)
return VLC_EGENERIC;
vlc_mutex_lock (&wnd_req.lock); p_intf = (intf_thread_t *)val.p_address;
while ((intf = wnd_req.intf) == NULL) if( !p_intf )
vlc_cond_wait (&wnd_req.wait, &wnd_req.lock); { /* If another interface is used, this plugin cannot work */
msg_Dbg( p_obj, "Hildon interface not found" );
wnd->handle.xid = request_video( intf, vout ); return VLC_EGENERIC;
vlc_mutex_unlock (&wnd_req.lock); }
vlc_object_release( vout ); p_wnd->handle.xid = p_intf->p_sys->xid;
if (!wnd->handle.xid) if (!p_wnd->handle.xid)
return VLC_EGENERIC; return VLC_EGENERIC;
msg_Dbg( intf, "Using handle %"PRIu32, wnd->handle.xid ); p_wnd->control = ControlWindow;
p_wnd->sys = (vout_window_sys_t*)p_intf;
wnd->control = ControlWindow;
wnd->sys = (vout_window_sys_t*)intf;
return VLC_SUCCESS; return VLC_SUCCESS;
} }
static int ControlWindow (vout_window_t *wnd, int query, va_list args) static int ControlWindow (vout_window_t *p_wnd, int query, va_list args)
{ {
intf_thread_t *intf = (intf_thread_t *)wnd->sys; intf_thread_t *p_intf = (intf_thread_t *)p_wnd->sys;
switch( query ) switch( query )
{ {
...@@ -317,69 +340,48 @@ static int ControlWindow (vout_window_t *wnd, int query, va_list args) ...@@ -317,69 +340,48 @@ static int ControlWindow (vout_window_t *wnd, int query, va_list args)
int i_height = (int)va_arg( args, int ); int i_height = (int)va_arg( args, int );
int i_current_w, i_current_h; int i_current_w, i_current_h;
gdk_drawable_get_size( GDK_DRAWABLE( intf->p_sys->p_video_window->window ), gdk_drawable_get_size( GDK_DRAWABLE( p_intf->p_sys->p_video_window ),
&i_current_w, &i_current_h ); &i_current_w, &i_current_h );
if( i_width != i_current_w || i_height != i_current_h ) if( i_width != i_current_w || i_height != i_current_h )
return VLC_EGENERIC; return VLC_EGENERIC;
return VLC_SUCCESS; return VLC_SUCCESS;
} }
case VOUT_WINDOW_SET_FULLSCREEN:
{
bool b_fs = va_arg( args, int );
p_intf->p_sys->b_fullscreen = b_fs;
g_idle_add( fullscreen_cb, p_intf );
return VLC_SUCCESS;
}
default: default:
return VLC_EGENERIC; return VLC_EGENERIC;
} }
} }
static void CloseWindow (vlc_object_t *obj) static void CloseWindow (vlc_object_t *p_obj)
{ {
vout_window_t *wnd = (vout_window_t *)obj; vout_window_t *p_wnd = (vout_window_t *)p_obj;
intf_thread_t *intf = (intf_thread_t *)wnd->sys; intf_thread_t *p_intf = (intf_thread_t *)p_wnd->sys;
vlc_mutex_lock( &wnd_req.lock );
release_video( intf );
vlc_mutex_unlock( &wnd_req.lock );
}
static uint32_t request_video( intf_thread_t *p_intf, vout_thread_t *p_nvout ) if( p_intf->p_sys->b_fullscreen )
{
if( p_intf->p_sys->p_vout )
{ {
msg_Dbg( p_intf, "Embedded video already in use" ); p_intf->p_sys->b_fullscreen = false;
return 0; g_idle_add( fullscreen_cb, p_intf );
} }
p_intf->p_sys->p_vout = vlc_object_hold( p_nvout );
return GDK_WINDOW_XID( p_intf->p_sys->p_video_window->window );
}
static void release_video( intf_thread_t *p_intf )
{
msg_Dbg( p_intf, "Releasing embedded video" );
vlc_object_release( p_intf->p_sys->p_vout );
p_intf->p_sys->p_vout = NULL;
} }
static gboolean video_widget_ready( gpointer data ) static gboolean interface_ready( gpointer data )
{ {
intf_thread_t *p_intf = NULL; intf_thread_t *p_intf = (intf_thread_t *)data;
GtkWidget *top_window = NULL;
GtkWidget *video = (GtkWidget *)data;
top_window = gtk_widget_get_toplevel( GTK_WIDGET( video ) ); p_intf->p_sys->xid =
p_intf = (intf_thread_t *)gtk_object_get_data( GTK_OBJECT( top_window ), GDK_WINDOW_XID( gtk_widget_get_window(p_intf->p_sys->p_video_window) );
"p_intf" );
p_intf->p_sys->p_video_window = video;
gtk_widget_grab_focus( video );
vlc_mutex_lock( &wnd_req.lock ); // Look if the playlist is already started
wnd_req.intf = p_intf; item_changed_pl( p_intf );
vlc_cond_signal( &wnd_req.wait );
vlc_mutex_unlock( &wnd_req.lock );
// We rewind the input // Everything is initialised
if( p_intf->p_sys->p_input ) vlc_sem_post (&p_intf->p_sys->ready);
{
input_Control( p_intf->p_sys->p_input, INPUT_SET_POSITION, 0.0 );
}
// We want it to be executed only one time // We want it to be executed only one time
return FALSE; return FALSE;
......
...@@ -21,9 +21,12 @@ ...@@ -21,9 +21,12 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/ *****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <hildon/hildon-program.h> #include <hildon/hildon-program.h>
#include <hildon/hildon-seekbar.h> #include <hildon/hildon-seekbar.h>
#include <hildon/hildon-file-chooser-dialog.h>
#include <hildon/hildon-banner.h> #include <hildon/hildon-banner.h>
#include <vlc_playlist.h> #include <vlc_playlist.h>
...@@ -32,19 +35,25 @@ ...@@ -32,19 +35,25 @@
struct intf_sys_t struct intf_sys_t
{ {
vlc_thread_t thread;
playlist_t *p_playlist; playlist_t *p_playlist;
input_thread_t *p_input; input_thread_t *p_input;
vlc_sem_t ready;
HildonWindow *p_main_window; HildonWindow *p_main_window;
HildonSeekbar *p_seekbar; HildonSeekbar *p_seekbar;
GtkWidget *p_tabs;
GtkWidget *p_play_button; GtkWidget *p_play_button;
GtkWidget *p_playlist_store; GtkListStore *p_playlist_store;
GtkWidget *p_playlist_window;
int i_event; int i_event;
vlc_spinlock_t event_lock; vlc_spinlock_t event_lock;
GtkWidget *p_video_window; GtkWidget *p_video_window;
vout_thread_t *p_vout; uint32_t xid; /* X11 windows ID */
bool b_fullscreen;
GtkWidget *p_control_window;
}; };
/***************************************************************************** /*****************************************************************************
* maemo_callbacks.c : Callbacks for the maemo plugin. * maemo_callbacks.c : Callbacks for the maemo plugin.
***************************************************************************** *****************************************************************************
* Copyright (C) 2008 the VideoLAN team * Copyright (C) 2008 the VideoLAN team
* $Id$ * $Id$
* *
* Authors: Antoine Lejeune <phytos@videolan.org> * Authors: Antoine Lejeune <phytos@videolan.org>
* * Gildas Bazin <gbazin@videolan.org>
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by * This program is free software; you can redistribute it and/or modify
* the Free Software Foundation; either version 2 of the License, or * it under the terms of the GNU General Public License as published by
* (at your option) any later version. * the Free Software Foundation; either version 2 of the License, or
* * (at your option) any later version.
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of * This program is distributed in the hope that it will be useful,
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * but WITHOUT ANY WARRANTY; without even the implied warranty of
* GNU General Public License for more details. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* * GNU General Public License for more details.
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software * You should have received a copy of the GNU General Public License
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. * along with this program; if not, write to the Free Software
*****************************************************************************/ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#include <vlc_common.h> #include <vlc_common.h>
#include "maemo.h" #include "maemo.h"
#include "maemo_callbacks.h" #include "maemo_callbacks.h"
#include <gdk/gdkkeysyms.h>
#include <vlc_keys.h>
#ifdef HAVE_MAEMO
# include <hildon/hildon-file-chooser-dialog.h>
#endif
/* /*
* Function used to retrieve an intf_thread_t object from a GtkWidget * Function used to retrieve an intf_thread_t object from a GtkWidget
*/ */
...@@ -99,6 +107,22 @@ void next_cb( GtkButton *button, gpointer user_data ) ...@@ -99,6 +107,22 @@ void next_cb( GtkButton *button, gpointer user_data )
playlist_Next( p_intf->p_sys->p_playlist ); playlist_Next( p_intf->p_sys->p_playlist );
} }
void playlist_cb( GtkButton *button, gpointer user_data )
{
(void)user_data;
intf_thread_t *p_intf = get_intf_from_widget( GTK_WIDGET( button ) );
if( GTK_WIDGET_VISIBLE(p_intf->p_sys->p_playlist_window) )
{
gtk_widget_show_all( p_intf->p_sys->p_video_window );
gtk_widget_hide_all( p_intf->p_sys->p_playlist_window );
}
else
{
gtk_widget_hide_all( p_intf->p_sys->p_video_window );
gtk_widget_show_all( p_intf->p_sys->p_playlist_window );
}
}
void seekbar_changed_cb( GtkRange *range, GtkScrollType scroll, void seekbar_changed_cb( GtkRange *range, GtkScrollType scroll,
gdouble value, gpointer data ) gdouble value, gpointer data )
{ {
...@@ -124,8 +148,6 @@ void pl_row_activated_cb( GtkTreeView *tree_view , GtkTreePath *path, ...@@ -124,8 +148,6 @@ void pl_row_activated_cb( GtkTreeView *tree_view , GtkTreePath *path,
gtk_tree_model_get_iter( model, &iter, path ); gtk_tree_model_get_iter( model, &iter, path );
gtk_tree_model_get( model, &iter, 0, &filename, -1 ); gtk_tree_model_get( model, &iter, 0, &filename, -1 );
gtk_notebook_set_current_page( GTK_NOTEBOOK( p_intf->p_sys->p_tabs ), 0 );
p_input = input_item_New( p_intf, filename, NULL ); p_input = input_item_New( p_intf, filename, NULL );
playlist_AddInput( p_intf->p_sys->p_playlist, p_input, playlist_AddInput( p_intf->p_sys->p_playlist, p_input,
PLAYLIST_APPEND | PLAYLIST_GO, PLAYLIST_END, true, false ); PLAYLIST_APPEND | PLAYLIST_GO, PLAYLIST_END, true, false );
...@@ -140,8 +162,15 @@ void open_cb( GtkMenuItem *menuitem, gpointer user_data ) ...@@ -140,8 +162,15 @@ void open_cb( GtkMenuItem *menuitem, gpointer user_data )
GtkWidget *dialog; GtkWidget *dialog;
char *psz_filename = NULL; char *psz_filename = NULL;
#ifdef HAVE_MAEMO
dialog = hildon_file_chooser_dialog_new( GTK_WINDOW( p_intf->p_sys->p_main_window ), dialog = hildon_file_chooser_dialog_new( GTK_WINDOW( p_intf->p_sys->p_main_window ),
GTK_FILE_CHOOSER_ACTION_OPEN ); GTK_FILE_CHOOSER_ACTION_OPEN );
#else
dialog = gtk_file_chooser_dialog_new( "Open File", GTK_WINDOW( p_intf->p_sys->p_main_window ),
GTK_FILE_CHOOSER_ACTION_OPEN,
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
GTK_STOCK_OK, GTK_RESPONSE_OK, NULL );
#endif
gtk_widget_show_all( GTK_WIDGET( dialog ) ); gtk_widget_show_all( GTK_WIDGET( dialog ) );
if( gtk_dialog_run( GTK_DIALOG( dialog ) ) == GTK_RESPONSE_OK ) if( gtk_dialog_run( GTK_DIALOG( dialog ) ) == GTK_RESPONSE_OK )
...@@ -217,22 +246,22 @@ void open_webcam_cb( GtkMenuItem *menuitem, gpointer user_data ) ...@@ -217,22 +246,22 @@ void open_webcam_cb( GtkMenuItem *menuitem, gpointer user_data )
void snapshot_cb( GtkMenuItem *menuitem, gpointer user_data ) void snapshot_cb( GtkMenuItem *menuitem, gpointer user_data )
{ {
(void)menuitem;
intf_thread_t *p_intf = (intf_thread_t *)user_data; intf_thread_t *p_intf = (intf_thread_t *)user_data;
input_thread_t *p_input = p_intf->p_sys->p_input;
vout_thread_t *p_vout = p_input ? input_GetVout( p_input ) : NULL;
(void)menuitem;
if( !p_intf->p_sys->p_vout ) if( !p_vout )
{ {
hildon_banner_show_information( hildon_banner_show_information(
GTK_WIDGET( p_intf->p_sys->p_main_window ), GTK_WIDGET( p_intf->p_sys->p_main_window ),
"gtk-dialog-error", "gtk-dialog-error", "There is no video" );
"There is no video" );
return; return;
} }
var_TriggerCallback( p_intf->p_sys->p_vout, "video-snapshot" ); var_TriggerCallback( p_vout, "video-snapshot" );
hildon_banner_show_information( GTK_WIDGET( p_intf->p_sys->p_main_window ), hildon_banner_show_information( GTK_WIDGET( p_intf->p_sys->p_main_window ),
NULL, NULL, "Snapshot taken" );
"Snapshot taken" );
} }
void dropframe_cb( GtkMenuItem *menuitem, gpointer user_data ) void dropframe_cb( GtkMenuItem *menuitem, gpointer user_data )
...@@ -244,3 +273,105 @@ void dropframe_cb( GtkMenuItem *menuitem, gpointer user_data ) ...@@ -244,3 +273,105 @@ void dropframe_cb( GtkMenuItem *menuitem, gpointer user_data )
else else
config_PutInt( p_intf, "ffmpeg-skip-frame", 0 ); config_PutInt( p_intf, "ffmpeg-skip-frame", 0 );
} }
static int keyModifiersToVLC( GdkEventKey *event )
{
int i_keyModifiers = 0;
if( event->state & GDK_SHIFT_MASK ) i_keyModifiers |= KEY_MODIFIER_SHIFT;
if( event->state & GDK_MOD1_MASK ) i_keyModifiers |= KEY_MODIFIER_ALT;
if( event->state & GDK_CONTROL_MASK ) i_keyModifiers |= KEY_MODIFIER_CTRL;
if( event->state & GDK_META_MASK ) i_keyModifiers |= KEY_MODIFIER_META;
return i_keyModifiers;
}
static int eventToVLCKey( GdkEventKey *event )
{
int i_vlck = 0;
switch( event->keyval )
{
case GDK_Left: i_vlck |= KEY_LEFT; break;
case GDK_Right: i_vlck |= KEY_RIGHT; break;
case GDK_Up: i_vlck |= KEY_UP; break;
case GDK_Down: i_vlck |= KEY_DOWN; break;
case GDK_Escape: i_vlck |= KEY_ESC; break;
case GDK_Return: i_vlck |= KEY_ENTER; break;
case GDK_F1: i_vlck |= KEY_F1; break;
case GDK_F2: i_vlck |= KEY_F2; break;
case GDK_F3: i_vlck |= KEY_F3; break;
case GDK_F4: i_vlck |= KEY_F4; break;
case GDK_F5: i_vlck |= KEY_F5; break;
case GDK_F6: i_vlck |= KEY_F6; break;
case GDK_F7: i_vlck |= KEY_F7; break;
case GDK_F8: i_vlck |= KEY_F8; break;
case GDK_F9: i_vlck |= KEY_F9; break;
case GDK_F10: i_vlck |= KEY_F10; break;
case GDK_F11: i_vlck |= KEY_F11; break;
case GDK_F12: i_vlck |= KEY_F12; break;
case GDK_Page_Up: i_vlck |= KEY_PAGEUP; break;
case GDK_Page_Down: i_vlck |= KEY_PAGEDOWN; break;
case GDK_Home: i_vlck |= KEY_HOME; break;
case GDK_End: i_vlck |= KEY_END; break;
case GDK_Insert: i_vlck |= KEY_INSERT; break;
case GDK_Delete: i_vlck |= KEY_DELETE; break;
#ifndef HAVE_MAEMO
case GDK_AudioLowerVolume: i_vlck |= KEY_VOLUME_DOWN; break;
case GDK_AudioRaiseVolume: i_vlck |= KEY_VOLUME_UP; break;
case GDK_AudioMute: i_vlck |= KEY_VOLUME_MUTE; break;
case GDK_AudioPlay: i_vlck |= KEY_MEDIA_PLAY_PAUSE; break;
case GDK_AudioStop: i_vlck |= KEY_MEDIA_STOP; break;
case GDK_AudioNext: i_vlck |= KEY_MEDIA_NEXT_TRACK; break;
case GDK_AudioPrev: i_vlck |= KEY_MEDIA_PREV_TRACK; break;
#endif
}
if( !i_vlck )
{
/* Force lowercase */
if( event->keyval >= GDK_A && event->keyval <= GDK_Z )
i_vlck = event->keyval + 32;
/* Rest of the ascii range */
else if( event->keyval >= GDK_space && event->keyval <= GDK_asciitilde )
i_vlck = event->keyval;
}
/* Handle modifiers */
i_vlck |= keyModifiersToVLC( event );
return i_vlck;
}
gboolean key_cb(GtkWidget *widget, GdkEventKey *event, gpointer user_data)
{
intf_thread_t *p_intf = (intf_thread_t *)user_data;
widget = widget; /* unused */
int i_vlck = eventToVLCKey( event );
if( i_vlck > 0 )
{
var_SetInteger( p_intf->p_libvlc, "key-pressed", i_vlck );
return TRUE;
}
return FALSE;
}
gboolean fullscreen_cb( gpointer user_data )
{
intf_thread_t *p_intf = (intf_thread_t *)user_data;
if(p_intf->p_sys->b_fullscreen)
{
gtk_widget_hide_all( GTK_WIDGET( p_intf->p_sys->p_control_window ) );
gtk_window_fullscreen( GTK_WINDOW(p_intf->p_sys->p_main_window) );
}
else
{
gtk_window_unfullscreen( GTK_WINDOW(p_intf->p_sys->p_main_window) );
gtk_widget_show_all( GTK_WIDGET( p_intf->p_sys->p_control_window ) );
}
return FALSE;
}
...@@ -34,6 +34,7 @@ void play_cb( GtkButton *button, gpointer user_data ); ...@@ -34,6 +34,7 @@ void play_cb( GtkButton *button, gpointer user_data );
void stop_cb( GtkButton *button, gpointer user_data ); void stop_cb( GtkButton *button, gpointer user_data );
void prev_cb( GtkButton *button, gpointer user_data ); void prev_cb( GtkButton *button, gpointer user_data );
void next_cb( GtkButton *button, gpointer user_data ); void next_cb( GtkButton *button, gpointer user_data );
void playlist_cb( GtkButton *button, gpointer user_data );
void seekbar_changed_cb( GtkRange *range, GtkScrollType scroll, void seekbar_changed_cb( GtkRange *range, GtkScrollType scroll,
gdouble value, gpointer data ); gdouble value, gpointer data );
...@@ -46,3 +47,6 @@ void open_webcam_cb( GtkMenuItem *menuitem, gpointer user_data ); ...@@ -46,3 +47,6 @@ void open_webcam_cb( GtkMenuItem *menuitem, gpointer user_data );
void snapshot_cb( GtkMenuItem *menuitem, gpointer user_data ); void snapshot_cb( GtkMenuItem *menuitem, gpointer user_data );
void dropframe_cb( GtkMenuItem *menuitem, gpointer user_data ); void dropframe_cb( GtkMenuItem *menuitem, gpointer user_data );
gboolean key_cb(GtkWidget *widget, GdkEventKey *event, gpointer user_data);
gboolean fullscreen_cb(gpointer user_data);
/***************************************************************************** /*****************************************************************************
* maemo_input.c : Input handling for the maemo plugin * maemo_input.c : Input handling for the maemo plugin
***************************************************************************** *****************************************************************************
* Copyright (C) 2008 the VideoLAN team * Copyright (C) 2008 the VideoLAN team
* $Id$ * $Id$
* *
* Authors: Antoine Lejeune <phytos@videolan.org> * Authors: Antoine Lejeune <phytos@videolan.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/ *****************************************************************************/
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
# include "config.h" # include "config.h"
...@@ -194,4 +194,3 @@ static int input_event_cb( vlc_object_t *p_this, const char *psz_var, ...@@ -194,4 +194,3 @@ static int input_event_cb( vlc_object_t *p_this, const char *psz_var,
else else
return interface_changed_cb( p_this, psz_var, oldval, newval, param ); return interface_changed_cb( p_this, psz_var, oldval, newval, param );
} }
/***************************************************************************** /*****************************************************************************
* maemo_input.h : Input handling header file for the maemo plugin. * maemo_input.h : Input handling header file for the maemo plugin.
***************************************************************************** *****************************************************************************
* Copyright (C) 2008 the VideoLAN team * Copyright (C) 2008 the VideoLAN team
* $Id$ * $Id$
* *
* Authors: Antoine Lejeune <phytos@videolan.org> * Authors: Antoine Lejeune <phytos@videolan.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/ *****************************************************************************/
#include <gtk/gtk.h> #include <gtk/gtk.h>
......
/***************************************************************************** /*****************************************************************************
* maemo_interface.c : Interface creation of the maemo plugin * maemo_interface.c : Interface creation of the maemo plugin
***************************************************************************** *****************************************************************************
* Copyright (C) 2008 the VideoLAN team * Copyright (C) 2008 the VideoLAN team
* $Id$ * $Id$
* *
* Authors: Antoine Lejeune <phytos@videolan.org> * Authors: Antoine Lejeune <phytos@videolan.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/ *****************************************************************************/
#include <vlc_common.h> #include <vlc_common.h>
...@@ -101,7 +101,7 @@ void create_playlist( intf_thread_t *p_intf ) ...@@ -101,7 +101,7 @@ void create_playlist( intf_thread_t *p_intf )
playlist = gtk_tree_view_new(); playlist = gtk_tree_view_new();
playlist_store = gtk_list_store_new( 1, G_TYPE_STRING ); playlist_store = gtk_list_store_new( 1, G_TYPE_STRING );
p_intf->p_sys->p_playlist_store = GTK_WIDGET( playlist_store ); p_intf->p_sys->p_playlist_store = playlist_store;
gtk_tree_view_set_model( GTK_TREE_VIEW( playlist ), gtk_tree_view_set_model( GTK_TREE_VIEW( playlist ),
GTK_TREE_MODEL( playlist_store ) ); GTK_TREE_MODEL( playlist_store ) );
...@@ -117,11 +117,7 @@ void create_playlist( intf_thread_t *p_intf ) ...@@ -117,11 +117,7 @@ void create_playlist( intf_thread_t *p_intf )
scroll = gtk_scrolled_window_new( NULL, NULL ); scroll = gtk_scrolled_window_new( NULL, NULL );
gtk_container_add( GTK_CONTAINER( scroll ), playlist ); gtk_container_add( GTK_CONTAINER( scroll ), playlist );
gtk_notebook_append_page( GTK_NOTEBOOK( p_intf->p_sys->p_tabs ), scroll, p_intf->p_sys->p_playlist_window = scroll;
gtk_image_new_from_stock( "vlc-playlist",
GTK_ICON_SIZE_DIALOG ) );
gtk_notebook_set_tab_label_packing( GTK_NOTEBOOK( p_intf->p_sys->p_tabs ), scroll,
FALSE, FALSE, GTK_PACK_START );
g_signal_connect( playlist, "row-activated", g_signal_connect( playlist, "row-activated",
G_CALLBACK( pl_row_activated_cb ), NULL ); G_CALLBACK( pl_row_activated_cb ), NULL );
......
/***************************************************************************** /*****************************************************************************
* maemo_interface.h : Interface creation header file for the maemo plugin. * maemo_interface.h : Interface creation header file for the maemo plugin.
***************************************************************************** *****************************************************************************
* Copyright (C) 2008 the VideoLAN team * Copyright (C) 2008 the VideoLAN team
* $Id$ * $Id$
* *
* Authors: Antoine Lejeune <phytos@videolan.org> * Authors: Antoine Lejeune <phytos@videolan.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/ *****************************************************************************/
#include <gtk/gtk.h> #include <gtk/gtk.h>
......
...@@ -308,11 +308,11 @@ DIST_maemo = \ ...@@ -308,11 +308,11 @@ DIST_maemo = \
maemo/vlc_left_tab_active.png \ maemo/vlc_left_tab_active.png \
maemo/vlc_left_tab_passive.png \ maemo/vlc_left_tab_passive.png \
maemo/playlist.png maemo/playlist.png
maemo/play.png \
maemo/pause.png \
maemo/stop.png \
maemo/previous.png \
maemo/next.png
maemo_FILES = \ maemo_FILES = \
../modules/gui/qt4/pixmaps/play.png \
../modules/gui/qt4/pixmaps/pause.png \
../modules/gui/qt4/pixmaps/stop.png \
../modules/gui/qt4/pixmaps/previous.png \
../modules/gui/qt4/pixmaps/next.png \
vlc32x32.png vlc32x32.png
share/maemo/playlist.png

1.56 KB | W: | H:

share/maemo/playlist.png

147 Bytes | W: | H:

share/maemo/playlist.png
share/maemo/playlist.png
share/maemo/playlist.png
share/maemo/playlist.png
  • 2-up
  • Swipe
  • Onion skin
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment