]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/mediainfo.hpp
Qt: add a bunch of virtual for destructors
[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 #include "util/singleton.hpp"
31
32 class QTabWidget;
33
34 class MediaInfoDialog : public QVLCFrame, public Singleton<MediaInfoDialog>
35 {
36     Q_OBJECT
37 public:
38     MediaInfoDialog( intf_thread_t *,
39                      input_item_t * input = NULL );
40
41     enum panel
42     {
43         META_PANEL = 0,
44         EXTRAMETA_PANEL,
45         INFO_PANEL,
46         INPUTSTATS_PANEL
47     };
48
49     void showTab( panel );
50 #if 0
51     void setInput( input_item_t * );
52 #endif
53
54 private:
55     virtual ~MediaInfoDialog();
56
57     bool isMainInputInfo;
58
59     QTabWidget *infoTabW;
60
61     InputStatsPanel *ISP;
62     MetaPanel *MP;
63     InfoPanel *IP;
64     ExtraMetaPanel *EMP;
65
66     QPushButton *saveMetaButton;
67     QLineEdit   *uriLine;
68
69 private slots:
70     void updateAllTabs( input_item_t * );
71     void clearAllTabs();
72
73     virtual void close();
74
75     void saveMeta();
76     void updateButtons( int i_tab );
77     void updateURI( const QString& );
78
79     friend class    Singleton<MediaInfoDialog>;
80 };
81
82 #endif