]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/infopanels.hpp
Qt4 - Media Info. Re-add some info for DVB. Clean the in_Edit state that was stored...
[vlc] / modules / gui / qt4 / components / infopanels.hpp
1 /*****************************************************************************
2  * infopanels.hpp : Panels for the information dialogs
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 _INFOPANELS_H_
26 #define _INFOPANELS_H_
27
28 #include <vlc/vlc.h>
29 #include <vlc_meta.h>
30
31 #include <QWidget>
32
33 #ifdef HAVE_LIMITS_H
34 #   include <limits.h>
35 #endif
36
37 #define setSpinBounds( spinbox ) {               \
38     spinbox->setRange( 0, INT_MAX );             \
39     spinbox->setAccelerated( true ) ;            \
40     spinbox->setAlignment( Qt::AlignRight );     \
41     spinbox->setSpecialValueText(""); }
42
43 class QTreeWidget;
44 class QTreeWidgetItem;
45 class QTreeView;
46 class QSpinBox;
47 class QLineEdit;
48 class QLabel;
49
50 class MetaPanel: public QWidget
51 {
52     Q_OBJECT;
53 public:
54     MetaPanel( QWidget *, intf_thread_t * );
55     virtual ~MetaPanel();
56     void saveMeta();
57     void setInput( input_item_t * );
58     
59     bool isInEditMode();
60     void setEditMode( bool );
61 private:
62     input_item_t *p_input;
63     intf_thread_t *p_intf;
64     bool b_inEditMode;
65
66     QLineEdit *uri_text;
67     QLineEdit *title_text;
68     QLineEdit *artist_text;
69     QLineEdit *genre_text;
70     QLineEdit *copyright_text;
71     QLineEdit *collection_text;
72     QLineEdit *seqnum_text;
73     QLineEdit *description_text;
74     QSpinBox *rating_text;
75     QLineEdit *date_text;
76 //    QLineEdit *setting_text;
77     QLineEdit *language_text;
78     QLineEdit *nowplaying_text;
79     QLineEdit *publisher_text;
80 //    QLineEdit *encodedby_text;
81     QLabel *art_cover;
82
83 public slots:
84     void update( input_item_t * );
85     void clear();
86
87 private slots:
88     void enterEditMode();
89     
90 signals:
91     void uriSet( QString );
92     void editing();
93 };
94
95 class ExtraMetaPanel: public QWidget
96 {
97     Q_OBJECT;
98 public:
99     ExtraMetaPanel( QWidget *, intf_thread_t * );
100     virtual  ~ExtraMetaPanel() {};
101 private:
102     intf_thread_t *p_intf;
103     QTreeWidget *extraMetaTree;
104 public slots:
105     void update( input_item_t * );
106     void clear();
107 };
108
109 class InputStatsPanel: public QWidget
110 {
111     Q_OBJECT;
112 public:
113     InputStatsPanel( QWidget *, intf_thread_t * );
114     virtual ~InputStatsPanel();
115 private:
116     intf_thread_t *p_intf;
117
118     QTreeWidget *StatsTree;
119     QTreeWidgetItem *input;
120     QTreeWidgetItem *read_media_stat;
121     QTreeWidgetItem *input_bitrate_stat;
122     QTreeWidgetItem *demuxed_stat;
123     QTreeWidgetItem *stream_bitrate_stat;
124
125     QTreeWidgetItem *video;
126     QTreeWidgetItem *vdecoded_stat;
127     QTreeWidgetItem *vdisplayed_stat;
128     QTreeWidgetItem *vlost_frames_stat;
129
130     QTreeWidgetItem *streaming;
131     QTreeWidgetItem *send_stat;
132     QTreeWidgetItem *send_bytes_stat;
133     QTreeWidgetItem *send_bitrate_stat;
134
135     QTreeWidgetItem *audio;
136     QTreeWidgetItem *adecoded_stat;
137     QTreeWidgetItem *aplayed_stat;
138     QTreeWidgetItem *alost_stat;
139
140 public slots:
141     void update( input_item_t * );
142     void clear();
143 };
144
145 class InfoPanel: public QWidget
146 {
147     Q_OBJECT;
148 public:
149     InfoPanel( QWidget *, intf_thread_t * );
150     virtual ~InfoPanel();
151 private:
152     intf_thread_t *p_intf;
153     QTreeWidget *InfoTree;
154 public slots:
155     void update( input_item_t * );
156     void clear();
157 };
158 #endif