]> git.sesse.net Git - vlc/blob - modules/gui/qt4/qt4.cpp
various fixes
[vlc] / modules / gui / qt4 / qt4.cpp
1 /*****************************************************************************
2  * qt4.cpp : QT4 interface
3  ****************************************************************************
4  * Copyright (C) 2000-2005 the VideoLAN team
5  * $Id: wxwidgets.cpp 15731 2006-05-25 14:43:53Z zorglub $
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 #include "qt4.hpp"
25 #include "dialogs_provider.hpp"
26 #include "main_interface.hpp"
27
28 /*****************************************************************************
29  * Local prototypes.
30  *****************************************************************************/
31 static int  Open         ( vlc_object_t * );
32 static void Close        ( vlc_object_t * );
33 static int  OpenDialogs  ( vlc_object_t * );
34 static void Run          ( intf_thread_t * );
35 static void Init         ( intf_thread_t * );
36 static void ShowDialog   ( intf_thread_t *, int, int, intf_dialog_args_t * );
37
38 /*****************************************************************************
39  * Module descriptor
40  *****************************************************************************/
41 vlc_module_begin();
42     set_shortname( (char*)"QT" );
43     set_description( (char*)_("QT interface") );
44     set_category( CAT_INTERFACE) ;
45     set_subcategory( SUBCAT_INTERFACE_MAIN );
46     set_capability( "interface", 100 );
47     set_callbacks( Open, Close );
48
49     set_program( "qvlc" );
50     add_shortcut("qt");
51
52     add_submodule();
53         set_description( "Dialogs provider" );
54         set_capability( "dialogs provider", 51 );
55         set_callbacks( OpenDialogs, Close );
56 vlc_module_end();
57
58
59 /*****************************************************************************
60  * Module callbacks
61  *****************************************************************************/
62 static int Open( vlc_object_t *p_this )
63 {
64     intf_thread_t *p_intf = (intf_thread_t *)p_this;
65     p_intf->pf_run = Run;
66     p_intf->p_sys = (intf_sys_t *)malloc(sizeof( intf_sys_t ) );
67     memset( p_intf->p_sys, 0, sizeof( intf_sys_t ) );
68
69     p_intf->p_sys->p_sub = msg_Subscribe( p_intf, MSG_QUEUE_NORMAL );
70
71     return VLC_SUCCESS;
72 }
73
74 static int OpenDialogs( vlc_object_t *p_this )
75 {
76     intf_thread_t *p_intf = (intf_thread_t *)p_this;
77     Open( p_this );
78     p_intf->pf_show_dialog = ShowDialog;
79     return VLC_SUCCESS;
80 }
81
82 static void Close( vlc_object_t *p_this )
83 {
84     intf_thread_t *p_intf = (intf_thread_t *)p_this;
85     vlc_mutex_lock( &p_intf->object_lock );
86     p_intf->b_dead = VLC_TRUE;
87     vlc_mutex_unlock( &p_intf->object_lock );
88
89     msg_Unsubscribe( p_intf, p_intf->p_sys->p_sub );
90     free( p_intf->p_sys );
91 }
92
93
94 /*****************************************************************************
95  * Initialize the interface or the dialogs provider
96  *****************************************************************************/
97 static void Run( intf_thread_t *p_intf )
98 {
99     if( p_intf->pf_show_dialog )
100     {
101         if( vlc_thread_create( p_intf, "QT dialogs", Init, 0, VLC_TRUE ) )
102         {
103             msg_Err( p_intf, "failed to create QT dialogs thread" );
104         }
105     }
106     else
107     {
108         Init( p_intf );
109     }
110 }
111
112 static void Init( intf_thread_t *p_intf )
113 {
114     char *argv[] = { "" };
115     int argc = 1;
116     Q_INIT_RESOURCE( vlc );
117
118     QApplication *app = new QApplication( argc, argv , true );
119     p_intf->p_sys->p_app = app;
120
121     // Initialize timers
122     DialogsProvider::getInstance( p_intf );
123
124     /* Normal interface */
125     if( !p_intf->pf_show_dialog )
126     {
127         MainInterface *p_mi = new MainInterface( p_intf );
128         p_intf->p_sys->p_mi = p_mi;
129         p_mi->show();
130     }
131
132
133     if( p_intf->pf_show_dialog )
134         vlc_thread_ready( p_intf );
135
136     app->setQuitOnLastWindowClosed( false );
137     app->exec();
138 }
139
140 /*****************************************************************************
141  * Callback to show a dialog
142  *****************************************************************************/
143 static void ShowDialog( intf_thread_t *p_intf, int i_dialog_event, int i_arg,
144                         intf_dialog_args_t *p_arg )
145 {
146     DialogEvent *event = new DialogEvent( i_dialog_event, i_arg, p_arg );
147     QApplication::postEvent( DialogsProvider::getInstance( p_intf ),
148                              static_cast<QEvent*>(event) );
149 }