]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/mediainfo.cpp
Qt4 - Fix an 'assertion failed' when opening the media information witout an input.
[vlc] / modules / gui / qt4 / dialogs / mediainfo.cpp
1 /*****************************************************************************
2  * mediainfo.cpp : Information about an item
3  ****************************************************************************
4  * Copyright (C) 2006-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *          Jean-Baptiste Kempf <jb@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  ******************************************************************************/
24
25 #include "dialogs/mediainfo.hpp"
26 #include "input_manager.hpp"
27 #include "dialogs_provider.hpp"
28
29 #include <QTabWidget>
30 #include <QGridLayout>
31 #include <QLineEdit>
32 #include <QLabel>
33
34 MediaInfoDialog *MediaInfoDialog::instance = NULL;
35
36 MediaInfoDialog::MediaInfoDialog( intf_thread_t *_p_intf,
37                                   input_item_t *_p_item,
38                                   bool _mainInput,
39                                   bool _stats ) :
40                                   QVLCFrame( _p_intf ), mainInput(_mainInput),
41                                   stats( _stats )
42 {
43     p_item = _p_item;
44     b_cleaned = true;
45
46     setWindowTitle( qtr( "Media information" ) );
47     resize( 600 , 480 );
48
49     /* TabWidgets and Tabs creation */
50     IT = new QTabWidget;
51     MP = new MetaPanel( IT, p_intf );
52     IT->addTab( MP, qtr( "&General" ) );
53     EMP = new ExtraMetaPanel( IT, p_intf );
54     IT->addTab( EMP, qtr( "&Extra Metadata" ) );
55     IP = new InfoPanel( IT, p_intf );
56     IT->addTab( IP, qtr( "&Codec Details" ) );
57     if( stats )
58     {
59         ISP = new InputStatsPanel( IT, p_intf );
60         IT->addTab( ISP, qtr( "&Statistics" ) );
61     }
62
63     QGridLayout *layout = new QGridLayout( this );
64
65     /* No need to use a QDialogButtonBox here */
66     saveMetaButton = new QPushButton( qtr( "&Save Metadata" ) );
67     saveMetaButton->hide();
68     QPushButton *closeButton = new QPushButton( qtr( "&Close" ) );
69     closeButton->setDefault( true );
70
71     uriLine = new QLineEdit;
72     QLabel *uriLabel = new QLabel( qtr( "Location :" ) );
73
74     layout->addWidget( IT, 0, 0, 1, 8 );
75     layout->addWidget( uriLabel, 1, 0, 1, 1 );
76     layout->addWidget( uriLine, 1, 1, 1, 7 );
77     layout->addWidget( saveMetaButton, 2, 6 );
78     layout->addWidget( closeButton, 2, 7 );
79
80     BUTTONACT( closeButton, close() );
81
82     /* The tabs buttons are shown in the main dialog for space and cosmetics */
83     CONNECT( saveMetaButton, clicked(), this, saveMeta() );
84
85     /* Let the MetaData Panel update the URI */
86     CONNECT( MP, uriSet( QString ), uriLine, setText( QString ) );
87     CONNECT( MP, editing(), this, showMetaSaveButton() );
88
89     CONNECT( IT, currentChanged( int ), this, updateButtons( int ) );
90
91     CONNECT( THEMIM, inputChanged( input_thread_t * ), this, update( input_thread_t * ) );
92
93     /* Call update by hand, so info is shown from current item too */
94     if( THEMIM->getInput() )
95         update( input_GetItem(THEMIM->getInput()), true, true );
96 }
97
98 MediaInfoDialog::~MediaInfoDialog()
99 {
100     writeSettings( "mediainfo" );
101 }
102
103 void MediaInfoDialog::showTab( int i_tab = 0 )
104 {
105     IT->setCurrentIndex( i_tab );
106     show();
107 }
108
109 void MediaInfoDialog::showMetaSaveButton()
110 {
111     saveMetaButton->show();
112 }
113
114 void MediaInfoDialog::saveMeta()
115 {
116     MP->saveMeta();
117     saveMetaButton->hide();
118 }
119
120 /* Function called on inputChanged-update*/
121 void MediaInfoDialog::update( input_thread_t *p_input )
122 {
123     if( !p_input || p_input->b_dead )
124     {
125         if( !b_cleaned )
126         {
127             clear();
128             b_cleaned = true;
129         }
130         return;
131     }
132
133     /* Launch the update in all the panels */
134     vlc_object_yield( p_input );
135
136     update( input_GetItem(p_input), true, true);
137
138     vlc_object_release( p_input );
139 }
140
141 void MediaInfoDialog::update( input_item_t *p_item,
142                               bool update_info,
143                               bool update_meta )
144 {
145     if( update_info )
146         IP->update( p_item );
147     if( update_meta )
148     {
149         MP->update( p_item );
150         EMP->update( p_item );
151     }
152     if( stats )
153         ISP->update( p_item );
154 }
155
156 void MediaInfoDialog::clear()
157 {
158     IP->clear();
159     MP->clear();
160     EMP->clear();
161     if( stats ) ISP->clear();
162     b_cleaned = true;
163 }
164
165 void MediaInfoDialog::close()
166 {
167     this->toggleVisible();
168
169     /* if dialog is closed, revert editing if not saved */
170     if( MP->isInEditMode() )
171     {
172         MP->setEditMode( false );
173         updateButtons( 0 );
174     }
175     if( mainInput == false ) {
176         deleteLater();
177     }
178 }
179
180 void MediaInfoDialog::updateButtons( int i_tab )
181 {
182     if( MP->isInEditMode() && i_tab == 0 )
183         saveMetaButton->show();
184     else
185         saveMetaButton->hide();
186 }