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