]> git.sesse.net Git - vlc/blob - modules/gui/qt4/qt4.cpp
Initial layout
[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     add_submodule();
50         set_description( "Dialogs provider" );
51         set_capability( "dialogs provider", 51 );
52         set_callbacks( OpenDialogs, Close );
53 vlc_module_end();
54
55
56 /*****************************************************************************
57  * Module callbacks
58  *****************************************************************************/
59 static int Open( vlc_object_t *p_this )
60 {
61     intf_thread_t *p_intf = (intf_thread_t *)p_this;
62     p_intf->pf_run = Run;
63     p_intf->p_sys = (intf_sys_t *)malloc(sizeof( intf_sys_t ) );
64     memset( p_intf->p_sys, 0, sizeof( intf_sys_t ) );
65
66     p_intf->p_sys->p_sub = msg_Subscribe( p_intf, MSG_QUEUE_NORMAL );
67
68     return VLC_SUCCESS;
69 }
70
71 static int OpenDialogs( vlc_object_t *p_this )
72 {
73     intf_thread_t *p_intf = (intf_thread_t *)p_this;
74     Open( p_this );
75     p_intf->pf_show_dialog = ShowDialog;
76     return VLC_SUCCESS;
77 }
78
79 static void Close( vlc_object_t *p_this )
80 {
81     intf_thread_t *p_intf = (intf_thread_t *)p_this;
82     vlc_mutex_lock( &p_intf->object_lock );
83     p_intf->b_dead = VLC_TRUE;
84     vlc_mutex_unlock( &p_intf->object_lock );
85
86     msg_Unsubscribe( p_intf, p_intf->p_sys->p_sub );
87     free( p_intf->p_sys );
88 }
89
90
91 /*****************************************************************************
92  * Initialize the interface or the dialogs provider
93  *****************************************************************************/
94 static void Run( intf_thread_t *p_intf )
95 {
96     if( p_intf->pf_show_dialog )
97     {
98         if( vlc_thread_create( p_intf, "QT dialogs", Init, 0, VLC_TRUE ) )
99         {
100             msg_Err( p_intf, "failed to create QT dialogs thread" );
101         }
102     }
103     else
104     {
105         Init( p_intf );
106     }
107 }
108
109 static void Init( intf_thread_t *p_intf )
110 {
111     char *argv[] = { "" };
112     int argc = 1;
113     QApplication *app = new QApplication( argc, argv , true );
114     p_intf->p_sys->p_app = app;
115
116     /* Normal interface */
117     if( !p_intf->pf_show_dialog )
118     {
119         MainInterface *p_mi = new MainInterface( p_intf );
120         p_intf->p_sys->p_mi = p_mi;
121         p_mi->show();
122     }
123
124     if( p_intf->pf_show_dialog )
125         vlc_thread_ready( p_intf );
126
127     app->exec();
128 }
129
130 /*****************************************************************************
131  * Callback to show a dialog
132  *****************************************************************************/
133 static void ShowDialog( intf_thread_t *p_intf, int i_dialog_event, int i_arg,
134                         intf_dialog_args_t *p_arg )
135 {
136     DialogEvent *event = new DialogEvent( i_dialog_event, i_arg, p_arg );
137     QApplication::postEvent( DialogsProvider::getInstance( p_intf ),
138                              static_cast<QEvent*>(event) );
139 }