]> git.sesse.net Git - vlc/blob - modules/gui/qt4/qt4.cpp
Adds an option to qt4 intf to set opacity for main interface, playlist, and extended...
[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 ALWAYS_VIDEO_TEXT N_("Always show a video screen, with a cone " \
47                                 "when there is audio only.")
48 #define ALWAYS_VIDEO_LONGTEXT N_("Start VLC with a cone image, and display it" \
49                                    " when there is no video track. " \
50                                     "Visualisations are enabled." )
51
52 #define ADVANCED_PREFS_TEXT N_("Show advanced prefs over simple")
53 #define ADVANCED_PREFS_LONGTEXT N_("Show advanced preferences and not simple" \
54                                    "preferences when opening the preferences " \
55                                    "dialog.")
56
57 #define SYSTRAY_TEXT N_("Show a systray icon to control VLC")
58 #define SYSTRAY_LONGTEXT N_("Show in the taskbar, a systray icon" \
59                             "in order to control VLC media player" \
60                             "for basic actions")
61
62 #define MINIMIZED_TEXT N_("Start VLC only with a systray icon")
63 #define MINIMIZED_LONGTEXT N_("When you launch VLC with that option" \
64                             "VLC will start just with an icon in" \
65                             "your taskbar")
66
67 #define TITLE_TEXT N_("Show playing item name in window title")
68 #define TITLE_LONGTEXT N_("Show the name of the song or video in the " \
69                           "controler window title")
70
71 #define FILEDIALOG_PATH_TEXT N_("Path to use in file dialog")
72 #define FILEDIALOG_PATH_LONGTEXT N_("Path to use in file dialog")
73
74 #define NOTIFICATION_TEXT N_("Show notification popup on track change")
75 #define NOTIFICATION_LONGTEXT N_( \
76     "Show a notification popup with the artist and track name when " \
77     "the current playlist item changes." )
78
79 #define ADVANCED_OPTIONS_TEXT N_("Advanced options")
80 #define ADVANCED_OPTIONS_LONGTEXT N_("Activate by default all the" \
81                                      "advanced options for geeks")
82
83 #define OPACITY_TEXT N_("Windows opacity between 0.1 and 1.")
84 #define OPACITY_LONGTEXT N_("Sets the windows opacity between 0.1 and 1 " \
85                             "for main interface, playlist and extended panel.")
86
87 #define SHOWFLAGS_TEXT N_("Define what columns to show in playlist window")
88 #define SHOWFLAGS_LONGTEXT N_("Enter the sum of the options that you want: \n" \
89             "Title: 1; Duration: 2; Artist: 4; Genre: 8; " \
90             "Copyright: 16; Collection/album: 32; Rating: 256." )
91
92 vlc_module_begin();
93     set_shortname( (char *)"Qt" );
94     set_description( (char*)_("Qt interface") );
95     set_category( CAT_INTERFACE ) ;
96     set_subcategory( SUBCAT_INTERFACE_MAIN );
97     set_capability( "interface", 151 );
98     set_callbacks( Open, Close );
99
100     set_program( "qvlc" );
101     add_shortcut("qt");
102
103     add_submodule();
104         set_description( "Dialogs provider" );
105         set_capability( "dialogs provider", 51 );
106         add_bool( "qt-always-video", VLC_FALSE, NULL, ALWAYS_VIDEO_TEXT,
107                 ALWAYS_VIDEO_LONGTEXT, VLC_TRUE );
108         add_bool( "qt-advanced-pref", VLC_FALSE, NULL, ADVANCED_PREFS_TEXT,
109                 ADVANCED_PREFS_LONGTEXT, VLC_FALSE );
110         add_bool( "qt-system-tray", VLC_TRUE, NULL, SYSTRAY_TEXT,
111                 SYSTRAY_LONGTEXT, VLC_FALSE);
112         add_bool( "qt-start-minimized", VLC_FALSE, NULL, MINIMIZED_TEXT,
113                 MINIMIZED_LONGTEXT, VLC_TRUE);
114         add_bool( "qt-name-in-title", VLC_TRUE, NULL, TITLE_TEXT,
115                   TITLE_LONGTEXT, VLC_FALSE );
116         add_string( "qt-filedialog-path", NULL, NULL, FILEDIALOG_PATH_TEXT,
117                 FILEDIALOG_PATH_LONGTEXT, VLC_TRUE);
118             change_autosave();
119             change_internal();
120         add_bool( "qt-notification", VLC_TRUE, NULL, NOTIFICATION_TEXT,
121                   NOTIFICATION_LONGTEXT, VLC_FALSE );
122         add_float_with_range( "qt-opacity", 1., 0.1, 1., NULL, OPACITY_TEXT,
123                   OPACITY_LONGTEXT, VLC_FALSE );
124         add_bool( "qt-adv-options", VLC_FALSE, NULL, ADVANCED_OPTIONS_TEXT,
125                   ADVANCED_OPTIONS_LONGTEXT, VLC_TRUE );
126         add_integer( "qt-pl-showflags",
127                 VLC_META_ENGINE_ARTIST|VLC_META_ENGINE_TITLE|
128                 VLC_META_ENGINE_DURATION|VLC_META_ENGINE_COLLECTION,
129                 NULL, SHOWFLAGS_TEXT,
130                 SHOWFLAGS_LONGTEXT, VLC_TRUE );
131         set_callbacks( OpenDialogs, Close );
132 vlc_module_end();
133
134
135 /*****************************************************************************
136  * Module callbacks
137  *****************************************************************************/
138 static int Open( vlc_object_t *p_this )
139 {
140     intf_thread_t *p_intf = (intf_thread_t *)p_this;
141     p_intf->pf_run = Run;
142 #if defined HAVE_GETENV && defined Q_WS_X11
143     if( !getenv( "DISPLAY" ) )
144     {
145         msg_Err(p_intf, "no X server");
146         return VLC_EGENERIC;
147     }
148 #endif
149     p_intf->p_sys = (intf_sys_t *)malloc(sizeof( intf_sys_t ) );
150     if( !p_intf->p_sys )
151     {
152         msg_Err(p_intf, "Out of memory");
153         return VLC_ENOMEM;
154     }
155     memset( p_intf->p_sys, 0, sizeof( intf_sys_t ) );
156
157     p_intf->p_sys->p_playlist = pl_Yield( p_intf );
158     p_intf->p_sys->p_sub = msg_Subscribe( p_intf, MSG_QUEUE_NORMAL );
159
160     p_intf->b_play = VLC_TRUE;
161
162     return VLC_SUCCESS;
163 }
164
165 static int OpenDialogs( vlc_object_t *p_this )
166 {
167     intf_thread_t *p_intf = (intf_thread_t *)p_this;
168     int val = Open( p_this );
169     if( val )
170         return val;
171
172     p_intf->pf_show_dialog = ShowDialog;
173     return VLC_SUCCESS;
174 }
175
176 static void Close( vlc_object_t *p_this )
177 {
178     intf_thread_t *p_intf = (intf_thread_t *)p_this;
179     vlc_mutex_lock( &p_intf->object_lock );
180     p_intf->b_dead = VLC_TRUE;
181     vlc_mutex_unlock( &p_intf->object_lock );
182
183     vlc_object_release( p_intf->p_sys->p_playlist );
184     msg_Unsubscribe( p_intf, p_intf->p_sys->p_sub );
185     free( p_intf->p_sys );
186 }
187
188
189 /*****************************************************************************
190  * Initialize the interface or the dialogs provider
191  *****************************************************************************/
192 static void Run( intf_thread_t *p_intf )
193 {
194     if( p_intf->pf_show_dialog )
195     {
196         if( vlc_thread_create( p_intf, "Qt dialogs", Init, 0, VLC_TRUE ) )
197             msg_Err( p_intf, "failed to create Qt dialogs thread" );
198     }
199     else
200         Init( p_intf );
201 }
202
203 static void Init( intf_thread_t *p_intf )
204 {
205     char dummy[] = "";
206     char *argv[] = { dummy };
207     int argc = 1;
208
209     Q_INIT_RESOURCE( vlc );
210     QApplication *app = new QApplication( argc, argv , true );
211     app->setWindowIcon( QIcon( QPixmap(vlc_xpm) ) );
212     p_intf->p_sys->p_app = app;
213
214 #ifndef WIN32
215     /* kludge:
216      * forces plastique style as cleanlooks bugs on gnome */
217     QPlastiqueStyle *plastique = new QPlastiqueStyle;
218     app->setStyle( plastique );
219 #endif
220
221     // Initialize timers
222     DialogsProvider::getInstance( p_intf );
223
224     // Normal interface
225     if( !p_intf->pf_show_dialog )
226     {
227         MainInterface *p_mi = new MainInterface( p_intf );
228         p_intf->p_sys->p_mi = p_mi;
229         p_mi->show();
230     }
231
232     if( p_intf->pf_show_dialog )
233         vlc_thread_ready( p_intf );
234
235     /* Start playing if needed */
236     if( !p_intf->pf_show_dialog && p_intf->b_play )
237     {
238         playlist_Control( THEPL, PLAYLIST_AUTOPLAY, VLC_FALSE );
239     }
240
241     p_intf->pf_show_dialog = ShowDialog;
242
243     app->setQuitOnLastWindowClosed( false );
244     app->exec();
245     MainInputManager::killInstance();
246     DialogsProvider::killInstance();
247     delete p_intf->p_sys->p_mi;
248 }
249
250 /*****************************************************************************
251  * Callback to show a dialog
252  *****************************************************************************/
253 static void ShowDialog( intf_thread_t *p_intf, int i_dialog_event, int i_arg,
254                         intf_dialog_args_t *p_arg )
255 {
256     DialogEvent *event = new DialogEvent( i_dialog_event, i_arg, p_arg );
257     QApplication::postEvent( THEDP, static_cast<QEvent*>(event) );
258 }
259
260 /*****************************************************************************
261  * PopupMenuCB: callback to show the popupmenu.
262  *  We don't show the menu directly here because we don't want the
263  *  caller to block for a too long time.
264  *****************************************************************************/
265 static int PopupMenuCB( vlc_object_t *p_this, const char *psz_variable,
266                         vlc_value_t old_val, vlc_value_t new_val, void *param )
267 {
268     intf_thread_t *p_intf = (intf_thread_t *)param;
269     ShowDialog( p_intf, INTF_DIALOG_POPUPMENU, new_val.b_bool, 0 );
270     return VLC_SUCCESS;
271 }