]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/info_panels.hpp
Plugins: include vlc_common.h directly instead of vlc/vlc.h
[vlc] / modules / gui / qt4 / components / info_panels.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  *          Ilkka Ollakka <ileoo@videolan.org>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 #ifndef _INFOPANELS_H_
27 #define _INFOPANELS_H_
28
29 #ifdef HAVE_CONFIG_H
30 # include "config.h"
31 #endif
32
33 #include <vlc_common.h>
34 #include <vlc_meta.h>
35
36 #include <QWidget>
37 #include <QLabel>
38
39 #include <limits.h>
40
41 #define setSpinBounds( spinbox ) {               \
42     spinbox->setRange( 0, INT_MAX );             \
43     spinbox->setAccelerated( true ) ;            \
44     spinbox->setAlignment( Qt::AlignRight );     \
45     spinbox->setSpecialValueText(""); }
46
47 class QTreeWidget;
48 class QTreeWidgetItem;
49 class QTreeView;
50 class QSpinBox;
51 class QLineEdit;
52
53 class MetaPanel: public QWidget
54 {
55     Q_OBJECT;
56 public:
57     MetaPanel( QWidget *, intf_thread_t * );
58     virtual ~MetaPanel();
59     void saveMeta();
60
61     bool isInEditMode();
62     void setEditMode( bool );
63
64 private:
65     input_item_t *p_input;
66     intf_thread_t *p_intf;
67     bool b_inEditMode;
68
69     QLineEdit *title_text;
70     QLineEdit *artist_text;
71     QLineEdit *genre_text;
72     QLineEdit *copyright_text;
73     QLineEdit *collection_text;
74     QLineEdit *seqnum_text;
75     QLineEdit *description_text;
76 //    QSpinBox *rating_text;
77     QLineEdit *date_text;
78 //    QLineEdit *setting_text;
79     QLineEdit *language_text;
80     QLineEdit *nowplaying_text;
81     QLineEdit *publisher_text;
82 //    QLineEdit *encodedby_text;
83     QLabel *art_cover;
84
85 public slots:
86     void update( input_item_t * );
87     void clear();
88
89 private slots:
90     void enterEditMode();
91
92 signals:
93     void uriSet( QString );
94     void editing();
95 };
96
97 class ExtraMetaPanel: public QWidget
98 {
99     Q_OBJECT;
100 public:
101     ExtraMetaPanel( QWidget *, intf_thread_t * );
102     virtual  ~ExtraMetaPanel() {};
103 private:
104     intf_thread_t *p_intf;
105     QTreeWidget *extraMetaTree;
106 public slots:
107     void update( input_item_t * );
108     void clear();
109 };
110
111 class InputStatsPanel: public QWidget
112 {
113     Q_OBJECT;
114 public:
115     InputStatsPanel( QWidget *, intf_thread_t * );
116     virtual ~InputStatsPanel();
117 private:
118     intf_thread_t *p_intf;
119
120     QTreeWidget *StatsTree;
121     QTreeWidgetItem *input;
122     QTreeWidgetItem *read_media_stat;
123     QTreeWidgetItem *input_bitrate_stat;
124     QTreeWidgetItem *demuxed_stat;
125     QTreeWidgetItem *stream_bitrate_stat;
126
127     QTreeWidgetItem *video;
128     QTreeWidgetItem *vdecoded_stat;
129     QTreeWidgetItem *vdisplayed_stat;
130     QTreeWidgetItem *vlost_frames_stat;
131     QTreeWidgetItem *vfps_stat;
132
133     QTreeWidgetItem *streaming;
134     QTreeWidgetItem *send_stat;
135     QTreeWidgetItem *send_bytes_stat;
136     QTreeWidgetItem *send_bitrate_stat;
137
138     QTreeWidgetItem *audio;
139     QTreeWidgetItem *adecoded_stat;
140     QTreeWidgetItem *aplayed_stat;
141     QTreeWidgetItem *alost_stat;
142
143 public slots:
144     void update( input_item_t * );
145     void clear();
146 };
147
148 class InfoPanel: public QWidget
149 {
150     Q_OBJECT;
151 public:
152     InfoPanel( QWidget *, intf_thread_t * );
153     virtual ~InfoPanel();
154 private:
155     intf_thread_t *p_intf;
156     QTreeWidget *InfoTree;
157 public slots:
158     void update( input_item_t * );
159     void clear();
160 };
161 class ArtCover : public QLabel
162 {
163     Q_OBJECT
164     void mouseDoubleClickEvent( QMouseEvent *event )
165     {
166         fprintf(stderr, "**************************" );
167     }
168 };
169
170 #endif