]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/mediainfo.cpp
a324715aa8591d9c49d14e878f6dacb88425a5c9
[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 #include "util/qvlcframe.hpp"
29 #include "components/infopanels.hpp"
30 #include "qt4.hpp"
31
32 #include <QTabWidget>
33 #include <QGridLayout>
34 #include <QLineEdit>
35 #include <QLabel>
36
37 static int ItemChanged( vlc_object_t *p_this, const char *psz_var,
38                         vlc_value_t oldval, vlc_value_t newval, void *param );
39 MediaInfoDialog *MediaInfoDialog::instance = NULL;
40
41 MediaInfoDialog::MediaInfoDialog( intf_thread_t *_p_intf, bool _mainInput,
42                                   bool _stats ) :
43                                   QVLCFrame( _p_intf ), mainInput(_mainInput),
44                                   stats( _stats )
45 {
46     i_runs = 0;
47     p_input = NULL;
48     b_need_update = true;
49
50     setWindowTitle( qtr( "Media information" ) );
51     resize( 600 , 480 );
52
53     /* TabWidgets and Tabs creation */
54     IT = new QTabWidget;
55     MP = new MetaPanel( IT, p_intf );
56     IT->addTab( MP, qtr( "&General" ) );
57     EMP = new ExtraMetaPanel( IT, p_intf );
58     IT->addTab( EMP, qtr( "&Extra Metadata" ) );
59     IP = new InfoPanel( IT, p_intf );
60     IT->addTab( IP, qtr( "&Codec Details" ) );
61     if( stats )
62     {
63         ISP = new InputStatsPanel( IT, p_intf );
64         IT->addTab( ISP, qtr( "&Stats" ) );
65     }
66
67     QGridLayout *layout = new QGridLayout( this );
68
69     /* FIXME GNOME/KDE ? */
70     saveMetaButton = new QPushButton( qtr( "&Save Metadata" ) );
71     saveMetaButton->hide();
72     QPushButton *closeButton = new QPushButton( qtr( "&Close" ) );
73     closeButton->setDefault( true );
74
75     uriLine = new QLineEdit;
76     QLabel *uriLabel = new QLabel( qtr( "Location :" ) );
77
78     layout->addWidget( IT, 0, 0, 1, 8 );
79     layout->addWidget( uriLabel, 1, 0, 1, 1 );
80     layout->addWidget( uriLine, 1, 1, 1, 7 );
81     layout->addWidget( saveMetaButton, 2, 6 );
82     layout->addWidget( closeButton, 2, 7 );
83
84     BUTTONACT( closeButton, close() );
85
86     /* The tabs buttons are shown in the main dialog for space and cosmetics */
87     CONNECT( saveMetaButton, clicked(), this, saveMeta() );
88
89     /* Let the MetaData Panel update the URI */
90     CONNECT( MP, uriSet( QString ), uriLine, setText( QString ) );
91     CONNECT( MP, editing(), this, editMeta() );
92
93     CONNECT( IT, currentChanged( int ), this, updateButtons( int ) );
94
95     /* Create the main Update function with a time (150ms) */
96     if( mainInput ) {
97         ON_TIMEOUT( update() );
98         var_AddCallback( THEPL, "item-change", ItemChanged, this );
99     }
100 }
101
102 MediaInfoDialog::~MediaInfoDialog()
103 {
104     if( mainInput ) {
105         var_DelCallback( THEPL, "item-change", ItemChanged, this );
106     }
107     writeSettings( "mediainfo" );
108 }
109
110 void MediaInfoDialog::showTab( int i_tab = 0 )
111 {
112     this->show();
113     IT->setCurrentIndex( i_tab );
114 }
115
116 void MediaInfoDialog::editMeta()
117 {
118     saveMetaButton->show();
119 }
120
121 void MediaInfoDialog::saveMeta()
122 {
123     MP->saveMeta();
124     saveMetaButton->hide();
125 }
126
127 static int ItemChanged( vlc_object_t *p_this, const char *psz_var,
128         vlc_value_t oldval, vlc_value_t newval, void *param )
129 {
130     MediaInfoDialog *p_d = (MediaInfoDialog *)param;
131     p_d->b_need_update = VLC_TRUE;
132     return VLC_SUCCESS;
133 }
134
135 void MediaInfoDialog::setInput( input_item_t *p_input )
136 {
137     clear();
138     update( p_input, true, true );
139     /* if info is from current input, don't set default to edit, if user opens 
140      * some other item, se default to edit, so it won't be updated to current item metas
141      *
142      * This really doesn't seem as clean solution as it could be
143      */
144     input_thread_t *p_current =
145                      MainInputManager::getInstance( p_intf )->getInput();
146     MP->setEditMode( ( !p_current || p_current->b_dead || input_GetItem( p_current ) != p_input ) ? 
147                             true: false );
148 }
149
150 void MediaInfoDialog::update()
151 {
152     /* Timer runs at 150 ms, dont' update more than 2 times per second */
153     i_runs++;
154     if( i_runs % 4 != 0 ) return;
155
156     /* Get Input and clear if non-existant */
157     input_thread_t *p_input =
158                      MainInputManager::getInstance( p_intf )->getInput();
159     if( !p_input || p_input->b_dead )
160     {
161         clear();
162         return;
163     }
164
165     vlc_object_yield( p_input );
166
167     update( input_GetItem(p_input), b_need_update, b_need_update );
168     b_need_update = false;
169
170     vlc_object_release( p_input );
171 }
172
173 void MediaInfoDialog::update( input_item_t *p_item, 
174                                                  bool update_info,
175                                                  bool update_meta )
176 {
177     MP->setInput( p_item );
178     if( update_info )
179         IP->update( p_item );
180     if( update_meta )
181     {
182         MP->update( p_item );
183         EMP->update( p_item );
184     }
185     if( stats )
186         ISP->update( p_item );
187 }
188
189 void MediaInfoDialog::clear()
190 {
191     IP->clear();
192     MP->clear();
193     EMP->clear();
194     if( stats ) ISP->clear();
195 }
196
197 void MediaInfoDialog::close()
198 {
199     this->toggleVisible();
200
201     if( mainInput == false ) {
202         deleteLater();
203     }
204     MP->setEditMode( false );
205 }
206
207 void MediaInfoDialog::updateButtons( int i_tab )
208 {
209     if( MP->isInEditMode() && i_tab == 0 )
210         saveMetaButton->show();
211     else
212         saveMetaButton->hide();
213 }