]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/mediainfo.hpp
98851d3ac1b0b0122878360d6defa7eea41a8167
[vlc] / modules / gui / qt4 / dialogs / mediainfo.hpp
1 /*****************************************************************************
2  * mediainfo.hpp : Information about a stream
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 #ifndef QVLC_MEDIAINFO_DIALOG_H_
26 #define QVLC_MEDIAINFO_DIALOG_H_ 1
27
28 #include "util/qvlcframe.hpp"
29 #include "components/info_panels.hpp"
30
31 class QTabWidget;
32
33 class MediaInfoDialog : public QVLCFrame
34 {
35     Q_OBJECT;
36 public:
37     MediaInfoDialog( intf_thread_t *,
38                      input_item_t * );
39
40     static MediaInfoDialog * getInstance( intf_thread_t *p_intf )
41     {
42         if( !instance) instance = new MediaInfoDialog( p_intf, NULL );
43         return instance;
44     }
45
46     static void killInstance()
47     {
48         if( instance ) delete instance;
49         instance = NULL;
50     }
51
52     virtual ~MediaInfoDialog();
53
54     void showTab( int );
55 #if 0
56     void setInput( input_item_t * );
57 #endif
58
59 private:
60     static MediaInfoDialog *instance;
61     bool isMainInputInfo;
62
63     QTabWidget *infoTabW;
64
65     InputStatsPanel *ISP;
66     MetaPanel *MP;
67     InfoPanel *IP;
68     ExtraMetaPanel *EMP;
69
70     QPushButton *saveMetaButton;
71
72 private slots:
73     void updateAllTabs( input_item_t * );
74     void clearAllTabs();
75
76     virtual void close();
77
78     void saveMeta();
79     void updateButtons( int i_tab );
80 };
81
82 #endif