]> git.sesse.net Git - vlc/blob - modules/gui/qt4/qt4.cpp
Qt4 - Systray Icon and menu to control VLC. Play/Pause Stop Previous Next Quit for...
[vlc] / modules / gui / qt4 / qt4.cpp
1 /*****************************************************************************
2  * qt4.cpp : QT4 interface
3  ****************************************************************************
4  * Copyright (C) 2006-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@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 #include <QApplication>
25
26 #include "qt4.hpp"
27 #include "dialogs_provider.hpp"
28 #include "input_manager.hpp"
29 #include "main_interface.hpp"
30
31 #include "../../../share/vlc32x32.xpm"
32
33 /*****************************************************************************
34  * Local prototypes.
35  *****************************************************************************/
36 static int  Open         ( vlc_object_t * );
37 static void Close        ( vlc_object_t * );
38 static int  OpenDialogs  ( vlc_object_t * );
39 static void Run          ( intf_thread_t * );
40 static void Init         ( intf_thread_t * );
41 static void ShowDialog   ( intf_thread_t *, int, int, intf_dialog_args_t * );
42
43 /*****************************************************************************
44  * Module descriptor
45  *****************************************************************************/
46 #define ADVANCED_PREFS_TEXT N_("Show advanced prefs over simple")
47 #define ADVANCED_PREFS_LONGTEXT N_("Show advanced preferences and not simple" \
48                                    "preferences when opening the preferences " \
49                                    "dialog.")
50
51 #define SYSTRAY_TEXT N_("Show a systray icon to control")
52 #define SYSTRAY_LONGTEXT N_("Show in the taskbar, a systray icon" \
53                             "in order to control VLC for basic actions")
54
55 vlc_module_begin();
56     set_shortname( (char *)"Qt" );
57     set_description( (char*)_("Qt interface") );
58     set_category( CAT_INTERFACE ) ;
59     set_subcategory( SUBCAT_INTERFACE_MAIN );
60     set_capability( "interface", 151 );
61     set_callbacks( Open, Close );
62
63     set_program( "qvlc" );
64     add_shortcut("qt");
65
66     add_submodule();
67         set_description( "Dialogs provider" );
68         set_capability( "dialogs provider", 51 );
69         add_bool( "qt-always-video", VLC_FALSE, NULL, "FIXME", "FIXME",
70                 VLC_TRUE );
71         add_bool( "qt-advanced-pref", VLC_FALSE, NULL, ADVANCED_PREFS_TEXT,
72                 ADVANCED_PREFS_LONGTEXT, VLC_FALSE );
73         add_bool( "qt-system-tray", VLC_TRUE, NULL, SYSTRAY_TEXT,
74                 SYSTRAY_LONGTEXT, VLC_FALSE);
75         set_callbacks( OpenDialogs, Close );
76 vlc_module_end();
77
78
79 /*****************************************************************************
80  * Module callbacks
81  *****************************************************************************/
82 static int Open( vlc_object_t *p_this )
83 {
84     intf_thread_t *p_intf = (intf_thread_t *)p_this;
85     p_intf->pf_run = Run;
86 #if defined HAVE_GETENV && defined Q_WS_X11
87     if( !getenv( "DISPLAY" ) )
88     {
89         msg_Err(p_intf, "no X server");
90         return VLC_EGENERIC;
91     }
92 #endif
93     p_intf->p_sys = (intf_sys_t *)malloc(sizeof( intf_sys_t ) );
94     if( !p_intf->p_sys )
95     {
96         msg_Err(p_intf, "Out of memory");
97         return VLC_ENOMEM;
98     }
99     memset( p_intf->p_sys, 0, sizeof( intf_sys_t ) );
100
101     p_intf->p_sys->p_playlist = pl_Yield( p_intf );
102     p_intf->p_sys->p_sub = msg_Subscribe( p_intf, MSG_QUEUE_NORMAL );
103
104     p_intf->b_play = VLC_TRUE;
105
106     return VLC_SUCCESS;
107 }
108
109 static int OpenDialogs( vlc_object_t *p_this )
110 {
111     intf_thread_t *p_intf = (intf_thread_t *)p_this;
112     Open( p_this );
113     p_intf->pf_show_dialog = ShowDialog;
114     return VLC_SUCCESS;
115 }
116
117 static void Close( vlc_object_t *p_this )
118 {
119     intf_thread_t *p_intf = (intf_thread_t *)p_this;
120     vlc_mutex_lock( &p_intf->object_lock );
121     p_intf->b_dead = VLC_TRUE;
122     vlc_mutex_unlock( &p_intf->object_lock );
123
124     vlc_object_release( p_intf->p_sys->p_playlist );
125     msg_Unsubscribe( p_intf, p_intf->p_sys->p_sub );
126     free( p_intf->p_sys );
127 }
128
129
130 /*****************************************************************************
131  * Initialize the interface or the dialogs provider
132  *****************************************************************************/
133 static void Run( intf_thread_t *p_intf )
134 {
135     if( p_intf->pf_show_dialog )
136     {
137         if( vlc_thread_create( p_intf, "Qt dialogs", Init, 0, VLC_TRUE ) )
138             msg_Err( p_intf, "failed to create Qt dialogs thread" );
139     }
140     else
141         Init( p_intf );
142 }
143
144 static void Init( intf_thread_t *p_intf )
145 {
146     char dummy[] = "";
147     char *argv[] = { dummy };
148     int argc = 1;
149     Q_INIT_RESOURCE( vlc );
150     QApplication *app = new QApplication( argc, argv , true );
151     app->setWindowIcon( QIcon( QPixmap(vlc_xpm) ) );
152     p_intf->p_sys->p_app = app;
153
154     // Initialize timers
155     DialogsProvider::getInstance( p_intf );
156
157     // Normal interface
158     if( !p_intf->pf_show_dialog )
159     {
160         MainInterface *p_mi = new MainInterface( p_intf );
161         p_intf->p_sys->p_mi = p_mi;
162         p_mi->show();
163     }
164
165     if( p_intf->pf_show_dialog )
166         vlc_thread_ready( p_intf );
167
168     /* Start playing if needed */
169     if( !p_intf->pf_show_dialog && p_intf->b_play )
170     {
171         playlist_Control( THEPL, PLAYLIST_AUTOPLAY, VLC_FALSE );
172     }
173
174     p_intf->pf_show_dialog = ShowDialog;
175
176     app->setQuitOnLastWindowClosed( false );
177     app->exec();
178     MainInputManager::killInstance();
179     DialogsProvider::killInstance();
180     delete p_intf->p_sys->p_mi;
181 }
182
183 /*****************************************************************************
184  * Callback to show a dialog
185  *****************************************************************************/
186 static void ShowDialog( intf_thread_t *p_intf, int i_dialog_event, int i_arg,
187                         intf_dialog_args_t *p_arg )
188 {
189     DialogEvent *event = new DialogEvent( i_dialog_event, i_arg, p_arg );
190     QApplication::postEvent( THEDP, static_cast<QEvent*>(event) );
191 }
192
193 /*****************************************************************************
194  * PopupMenuCB: callback to show the popupmenu.
195  *  We don't show the menu directly here because we don't want the
196  *  caller to block for a too long time.
197  *****************************************************************************/
198 static int PopupMenuCB( vlc_object_t *p_this, const char *psz_variable,
199                         vlc_value_t old_val, vlc_value_t new_val, void *param )
200 {
201     intf_thread_t *p_intf = (intf_thread_t *)param;
202     ShowDialog( p_intf, INTF_DIALOG_POPUPMENU, new_val.b_bool, 0 );
203     return VLC_SUCCESS;
204 }