]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/mediainfo.cpp
* Fix preparse of directories
[vlc] / modules / gui / qt4 / dialogs / mediainfo.cpp
1 /*****************************************************************************
2  * mediainfo.cpp : Information about an item
3  ****************************************************************************
4  * Copyright (C) 2006 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 <QTabWidget>
26 #include <QGridLayout>
27
28 #include "dialogs/mediainfo.hpp"
29 #include "input_manager.hpp"
30 #include "dialogs_provider.hpp"
31 #include "util/qvlcframe.hpp"
32 #include "components/infopanels.hpp"
33 #include "qt4.hpp"
34
35
36 static int ItemChanged( vlc_object_t *p_this, const char *psz_var,
37                         vlc_value_t oldval, vlc_value_t newval, void *param );
38 MediaInfoDialog *MediaInfoDialog::instance = NULL;
39
40 MediaInfoDialog::MediaInfoDialog( intf_thread_t *_p_intf, bool _mainInput ) :
41                                     QVLCFrame( _p_intf ), mainInput(_mainInput)
42 {
43     i_runs = 0;
44     p_input = NULL;
45
46     setWindowTitle( qtr( "Media information" ) );
47
48     QGridLayout *layout = new QGridLayout(this);
49     IT = new InfoTab( this, p_intf, true ) ;
50     QPushButton *closeButton = new QPushButton(qtr("&Close"));
51
52     layout->addWidget(IT,0,0,1,3);
53     layout->addWidget(closeButton,1,2);
54
55     BUTTONACT( closeButton, close() );
56
57     if( mainInput ) {
58         ON_TIMEOUT( update() );
59         var_AddCallback( THEPL, "item-change", ItemChanged, this );
60     }
61     readSettings( "mediainfo" , QSize( 500, 450 ) );
62 }
63
64 MediaInfoDialog::~MediaInfoDialog()
65 {
66     if( mainInput ) {
67         var_DelCallback( THEPL, "item-change", ItemChanged, this );
68     }
69     writeSettings( "mediainfo" );
70 }
71
72 static int ItemChanged( vlc_object_t *p_this, const char *psz_var,
73                         vlc_value_t oldval, vlc_value_t newval, void *param )
74 {
75     MediaInfoDialog *p_d = (MediaInfoDialog *)param;
76     p_d->need_update = VLC_TRUE;
77     return VLC_SUCCESS;
78 }
79
80 void MediaInfoDialog::setInput(input_item_t *p_input)
81 {
82     IT->clear();
83     vlc_mutex_lock( &p_input->lock );
84     IT->update( p_input, true, true );
85     vlc_mutex_unlock( &p_input->lock );
86 }
87
88 void MediaInfoDialog::update()
89 {
90     // Timer runs at 150 ms, dont' update more than 2 times per second
91     i_runs++;
92     if( i_runs % 3 != 0 ) return;
93
94     input_thread_t *p_input =
95              MainInputManager::getInstance( p_intf )->getInput();
96     if( !p_input || p_input->b_dead )
97     {
98         IT->clear();
99         return;
100     }
101
102     vlc_object_yield( p_input );
103     vlc_mutex_lock( &input_GetItem(p_input)->lock );
104
105     IT->update( input_GetItem(p_input), need_update, need_update );
106     need_update = false;
107
108     vlc_mutex_unlock( &input_GetItem(p_input)->lock );
109     vlc_object_release( p_input );
110 }
111
112 void MediaInfoDialog::close()
113 {
114     this->toggleVisible();
115
116     if( mainInput == false ) {
117         deleteLater();
118     }
119 }