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