]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/mediainfo.cpp
Qt4 - Codec Information direct access from menu.
[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 void MediaInfoDialog::showTab(int i_tab=0)
73 {
74     this->show();
75     IT->setCurrentIndex(i_tab);
76 }
77
78 static int ItemChanged( vlc_object_t *p_this, const char *psz_var,
79                         vlc_value_t oldval, vlc_value_t newval, void *param )
80 {
81     MediaInfoDialog *p_d = (MediaInfoDialog *)param;
82     p_d->need_update = VLC_TRUE;
83     return VLC_SUCCESS;
84 }
85
86 void MediaInfoDialog::setInput(input_item_t *p_input)
87 {
88     IT->clear();
89     vlc_mutex_lock( &p_input->lock );
90     IT->update( p_input, true, true );
91     vlc_mutex_unlock( &p_input->lock );
92 }
93
94 void MediaInfoDialog::update()
95 {
96     // Timer runs at 150 ms, dont' update more than 2 times per second
97     i_runs++;
98     if( i_runs % 3 != 0 ) return;
99
100     input_thread_t *p_input =
101              MainInputManager::getInstance( p_intf )->getInput();
102     if( !p_input || p_input->b_dead )
103     {
104         IT->clear();
105         return;
106     }
107
108     vlc_object_yield( p_input );
109     vlc_mutex_lock( &input_GetItem(p_input)->lock );
110
111     IT->update( input_GetItem(p_input), need_update, need_update );
112     need_update = false;
113
114     vlc_mutex_unlock( &input_GetItem(p_input)->lock );
115     vlc_object_release( p_input );
116 }
117
118 void MediaInfoDialog::close()
119 {
120     this->toggleVisible();
121
122     if( mainInput == false ) {
123         deleteLater();
124     }
125 }