qt: move sout dialogs component to its own folder
[vlc.git] / modules / gui / qt / dialogs / mediainfo.hpp
blob0f951877b3dd7e1c7620d847f577ea869974f542
1 /*****************************************************************************
2 * mediainfo.hpp : Information about a stream
3 ****************************************************************************
4 * Copyright (C) 2006-2007 the VideoLAN team
6 * Authors: Clément Stenac <zorglub@videolan.org>
7 * Jean-Baptiste Kempf <jb@videolan.org>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 ******************************************************************************/
24 #ifndef QVLC_MEDIAINFO_DIALOG_H_
25 #define QVLC_MEDIAINFO_DIALOG_H_ 1
27 #include "util/qvlcframe.hpp"
28 #include "components/info_panels.hpp"
29 #include "util/singleton.hpp"
31 class QTabWidget;
33 class MediaInfoDialog : public QVLCFrame, public Singleton<MediaInfoDialog>
35 Q_OBJECT
36 public:
37 MediaInfoDialog( intf_thread_t *,
38 input_item_t * input = NULL );
40 enum panel
42 META_PANEL = 0,
43 EXTRAMETA_PANEL,
44 INFO_PANEL,
45 INPUTSTATS_PANEL
48 void showTab( panel );
49 int currentTab();
50 #if 0
51 void setInput( input_item_t * );
52 #endif
54 private:
55 virtual ~MediaInfoDialog();
57 bool isMainInputInfo;
59 QTabWidget *infoTabW;
61 InputStatsPanel *ISP;
62 MetaPanel *MP;
63 InfoPanel *IP;
64 ExtraMetaPanel *EMP;
66 QPushButton *saveMetaButton;
67 QLineEdit *uriLine;
69 private slots:
70 void updateAllTabs( input_item_t * );
71 void clearAllTabs();
73 void close() Q_DECL_OVERRIDE;
75 void saveMeta();
76 void updateButtons( int i_tab );
77 void updateURI( const QString& );
79 friend class Singleton<MediaInfoDialog>;
82 #endif