]> git.sesse.net Git - vlc/blob - modules/misc/qte_main.cpp
Qt4 - MainInterface, correct the resizing when docking the playlist for the first...
[vlc] / modules / misc / qte_main.cpp
1 /*****************************************************************************
2  * qte_main.c : QT Embedded wrapper for gte_main
3  *****************************************************************************
4  * Copyright (C) 2003 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Jean-Paul Saman <jpsaman _at_ videolan _dot_ 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 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 extern "C"
28 {
29 #include <vlc/vlc.h>
30 }
31
32 #include <qapplication.h>
33 #include <qpainter.h>
34
35 extern "C"
36 {
37
38 typedef struct qte_thread_t
39 {
40     VLC_COMMON_MEMBERS
41
42     QApplication*       p_qte_application;
43     QWidget*            p_qte_widget;
44     bool                b_gui_server;
45
46 } qte_thread_t;
47
48 /*****************************************************************************
49  * Local prototypes.
50  *****************************************************************************/
51 static int  Open    ( vlc_object_t * );
52 static void Close   ( vlc_object_t * );
53
54 static void QteMain ( qte_thread_t * );
55
56 /*****************************************************************************
57  * Local variables (mutex-protected).
58  *****************************************************************************/
59 static int            i_refcount = 0;
60 static qte_thread_t * p_qte_main = NULL;
61
62 /*****************************************************************************
63  * Module descriptor
64  *****************************************************************************/
65 #define STANDALONE_TEXT N_("Run as standalone Qt/Embedded GUI Server")
66 #define STANDALONE_LONGTEXT N_("Use this option to run as standalone " \
67     "Qt/Embedded GUI Server. This option is equivalent to the -qws option " \
68     "from normal Qt.")
69
70 vlc_module_begin();
71     set_description( _("Qt Embedded GUI helper") );
72     set_capability( "gui-helper", 90 );
73     add_bool( "qte-guiserver", 0, NULL, STANDALONE_TEXT, STANDALONE_LONGTEXT, VLC_FALSE );
74     add_shortcut( "qte" );
75     set_callbacks( Open, Close );
76 vlc_module_end();
77
78 } /* extern "C" */
79
80 /*****************************************************************************
81  * Open: initialize and create window
82  *****************************************************************************/
83 static int Open( vlc_object_t *p_this )
84 {
85     vlc_mutex_t *lock;
86
87     lock = var_AcquireMutex( "qte" );
88
89     if( i_refcount > 0 )
90     {
91         i_refcount++;
92         vlc_mutex_unlock( lock );
93
94         return VLC_SUCCESS;
95     }
96
97     p_qte_main = (qte_thread_t *) vlc_object_create( p_this, sizeof(qte_thread_t) );
98
99     /* Launch the QApplication::exec() thread. It will not return until the
100      * application is properly initialized, which ensures us thread safety. */
101     if( vlc_thread_create( p_qte_main, "qte_main", QteMain,
102                            VLC_THREAD_PRIORITY_LOW, VLC_TRUE ) )
103     {
104         vlc_object_destroy( p_qte_main );
105         i_refcount--;
106         vlc_mutex_unlock( lock );
107         return VLC_ETHREAD;
108     }
109
110     i_refcount++;
111     vlc_mutex_unlock( lock );
112
113     vlc_object_attach( p_qte_main, p_this );
114     msg_Dbg( p_this, "qte_main running" );
115
116     return VLC_SUCCESS;
117 }
118
119 /*****************************************************************************
120  * Close: destroy interface window
121  *****************************************************************************/
122 static void Close( vlc_object_t *p_this )
123 {
124     vlc_mutex_t *lock;
125
126     lock = var_AcquireMutex( "qte" );
127
128     i_refcount--;
129
130     if( i_refcount > 0 )
131     {
132         vlc_mutex_unlock( lock );
133         return;
134     }
135     p_qte_main->p_qte_application->quit();
136
137     /* Cleanup allocated classes. */
138     delete p_qte_main->p_qte_widget;
139     delete p_qte_main->p_qte_application;
140
141     msg_Dbg( p_this, "Detaching qte_main" );
142     vlc_object_detach( p_qte_main );
143
144     vlc_object_destroy( p_qte_main );
145     p_qte_main = NULL;
146
147     vlc_mutex_unlock( lock );
148 }
149
150 /*****************************************************************************
151  * QteMain: Qt Embedded thread
152  *****************************************************************************
153  * this part of the interface is in a separate thread so that we can call
154  * qte_main() from within it without annoying the rest of the program.
155  *****************************************************************************/
156 static void QteMain( qte_thread_t *p_this )
157 {
158     int i_argc = 1;
159
160     p_this->b_gui_server = VLC_FALSE;
161     if( config_GetInt( p_this, "qte-guiserver" ) )
162     {
163         msg_Dbg( p_this, "Running as Qt Embedded standalone GuiServer" );
164         p_this->b_gui_server = VLC_TRUE;
165     }
166
167     /* Run as standalone GuiServer or as GuiClient. */
168     QApplication* pApp = new QApplication(i_argc, NULL,
169         (p_this->b_gui_server ? (QApplication::GuiServer):(QApplication::GuiClient)) );
170     if( pApp )
171     {
172         p_this->p_qte_application = pApp;
173     }
174
175     QWidget* pWidget = new QWidget(0, _("video") );
176     if( pWidget )
177     {
178         p_this->p_qte_widget = pWidget;
179     }
180
181     /* signal the creation of the window */
182     p_this->p_qte_application->setMainWidget(p_this->p_qte_widget);
183     p_this->p_qte_widget->show();
184
185     vlc_thread_ready( p_this );
186     p_this->p_qte_application->exec();
187 }