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