]> git.sesse.net Git - vlc/blob - modules/gui/qt4/qt4.cpp
Preliminary embedded vout implementation
[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_playlist = (playlist_t *)vlc_object_find( p_intf,
70                             VLC_OBJECT_PLAYLIST, FIND_ANYWHERE );
71     if( !p_intf->p_sys->p_playlist )
72         return VLC_EGENERIC;
73                             
74     p_intf->p_sys->p_sub = msg_Subscribe( p_intf, MSG_QUEUE_NORMAL );
75
76     return VLC_SUCCESS;
77 }
78
79 static int OpenDialogs( vlc_object_t *p_this )
80 {
81     intf_thread_t *p_intf = (intf_thread_t *)p_this;
82     Open( p_this );
83     p_intf->pf_show_dialog = ShowDialog;
84     return VLC_SUCCESS;
85 }
86
87 static void Close( vlc_object_t *p_this )
88 {
89     intf_thread_t *p_intf = (intf_thread_t *)p_this;
90     vlc_mutex_lock( &p_intf->object_lock );
91     p_intf->b_dead = VLC_TRUE;
92     vlc_mutex_unlock( &p_intf->object_lock );
93
94     vlc_object_release( p_intf->p_sys->p_playlist );
95     msg_Unsubscribe( p_intf, p_intf->p_sys->p_sub );
96     free( p_intf->p_sys );
97 }
98
99
100 /*****************************************************************************
101  * Initialize the interface or the dialogs provider
102  *****************************************************************************/
103 static void Run( intf_thread_t *p_intf )
104 {
105     if( p_intf->pf_show_dialog )
106     {
107         if( vlc_thread_create( p_intf, "QT dialogs", Init, 0, VLC_TRUE ) )
108         {
109             msg_Err( p_intf, "failed to create QT dialogs thread" );
110         }
111     }
112     else
113     {
114         Init( p_intf );
115     }
116 }
117
118 static void Init( intf_thread_t *p_intf )
119 {
120     char *argv[] = { "" };
121     int argc = 1;
122     Q_INIT_RESOURCE( vlc );
123
124     QApplication *app = new QApplication( argc, argv , true );
125     p_intf->p_sys->p_app = app;
126
127     // Initialize timers
128     DialogsProvider::getInstance( p_intf );
129
130     /* Normal interface */
131     if( !p_intf->pf_show_dialog )
132     {
133         MainInterface *p_mi = new MainInterface( p_intf );
134         p_intf->p_sys->p_mi = p_mi;
135         p_mi->show();
136     }
137
138     if( p_intf->pf_show_dialog )
139         vlc_thread_ready( p_intf );
140
141     app->setQuitOnLastWindowClosed( false );
142     app->exec();
143 }
144
145 /*****************************************************************************
146  * Callback to show a dialog
147  *****************************************************************************/
148 static void ShowDialog( intf_thread_t *p_intf, int i_dialog_event, int i_arg,
149                         intf_dialog_args_t *p_arg )
150 {
151     DialogEvent *event = new DialogEvent( i_dialog_event, i_arg, p_arg );
152     QApplication::postEvent( DialogsProvider::getInstance( p_intf ),
153                              static_cast<QEvent*>(event) );
154 }