]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/mediainfo.hpp
Change backgroundwidget and mediainfo-dialog to use THEMIM
[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 _MEDIAINFO_DIALOG_H_
26 #define _MEDIAINFO_DIALOG_H_
27
28 #include "util/qvlcframe.hpp"
29 #include "components/info_panels.hpp"
30
31 class QTabWidget;
32 class InfoTab;
33 class QLineEdit;
34
35 class MediaInfoDialog : public QVLCFrame
36 {
37     Q_OBJECT;
38 public:
39     MediaInfoDialog( intf_thread_t *,
40                      input_item_t *,
41                      bool stats = true,
42                      bool mainInput = false );
43
44     static MediaInfoDialog * getInstance( intf_thread_t *p_intf )
45     {
46         if( !instance) instance = new MediaInfoDialog( p_intf,
47                                                        NULL,
48                                                        true,
49                                                        true );
50         return instance;
51     }
52
53     static void killInstance()
54     {
55         if( instance ) delete instance;
56         instance= NULL;
57     }
58
59     virtual ~MediaInfoDialog();
60
61     void showTab( int );
62 #if 0
63     void setInput( input_item_t * );
64 #endif
65     bool b_need_update;
66
67 private:
68     input_item_t *p_item;
69     static MediaInfoDialog *instance;
70
71     int i_runs;
72     bool mainInput;
73     bool stats;
74     bool b_cleaned;
75
76     QTabWidget *IT;
77     InputStatsPanel *ISP;
78     MetaPanel *MP;
79     InfoPanel *IP;
80     ExtraMetaPanel *EMP;
81
82     QPushButton *saveMetaButton;
83     QLineEdit *uriLine;
84
85 public slots:
86     void update( input_thread_t * );
87     void update( input_item_t *, bool, bool );
88
89 private slots:
90     void close();
91     void clear();
92     void saveMeta();
93     void showMetaSaveButton();
94     void updateButtons( int i_tab );
95 };
96
97 #endif