]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/interface_widgets.hpp
Fixed preparsing/art fetching locking.
[vlc] / modules / gui / qt4 / components / interface_widgets.hpp
1 /*****************************************************************************
2  * interface_widgets.hpp : Custom widgets for the main interface
3  ****************************************************************************
4  * Copyright (C) 2006-2008 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Clément Stenac <zorglub@videolan.org>
8  *          Jean-Baptiste Kempf <jb@videolan.org>
9  *          Rafaël Carré <funman@videolanorg>
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 _INTFWIDGETS_H_
27 #define _INTFWIDGETS_H_
28
29 #ifdef HAVE_CONFIG_H
30 # include "config.h"
31 #endif
32
33 #include "main_interface.hpp" /* Interface integration */
34 #include "input_manager.hpp"  /* Speed control */
35
36 #include "components/controller.hpp"
37 #include "components/controller_widget.hpp"
38
39 //#include <vlc_aout.h> Visualizer
40
41 #include <QWidget>
42 #include <QFrame>
43 #include <QLabel>
44 #include <QMouseEvent>
45
46 class ResizeEvent;
47 class QPalette;
48 class QPixmap;
49 class QHBoxLayout;
50 class QMenu;
51
52 /******************** Video Widget ****************/
53 class VideoWidget : public QFrame
54 {
55     Q_OBJECT
56 friend class MainInterface;
57
58 public:
59     VideoWidget( intf_thread_t * );
60     virtual ~VideoWidget();
61
62     void *request( vout_thread_t *, int *, int *,
63                    unsigned int *, unsigned int * );
64     void  release( void );
65     int   control( void *, int, va_list );
66
67     virtual QSize sizeHint() const;
68
69 protected:
70     virtual QPaintEngine *paintEngine() const
71     {
72         return NULL;
73     }
74
75     virtual void paintEvent(QPaintEvent *);
76
77 private:
78     intf_thread_t *p_intf;
79     vout_thread_t *p_vout;
80
81     QSize videoSize;
82
83 signals:
84     void askVideoWidgetToShow( unsigned int, unsigned int );
85
86 public slots:
87     void SetSizing( unsigned int, unsigned int );
88
89 };
90
91 /******************** Background Widget ****************/
92 class BackgroundWidget : public QWidget
93 {
94     Q_OBJECT
95 public:
96     BackgroundWidget( intf_thread_t * );
97     virtual ~BackgroundWidget();
98
99 private:
100     QPalette plt;
101     QLabel *label;
102     virtual void contextMenuEvent( QContextMenuEvent *event );
103     intf_thread_t *p_intf;
104     virtual void resizeEvent( QResizeEvent * event );
105
106 public slots:
107     void toggle(){ TOGGLEV( this ); }
108     void updateArt( input_item_t* );
109 };
110
111 #if 0
112 class VisualSelector : public QFrame
113 {
114     Q_OBJECT
115 public:
116     VisualSelector( intf_thread_t *);
117     virtual ~VisualSelector();
118 private:
119     intf_thread_t *p_intf;
120     QLabel *current;
121 private slots:
122     void prev();
123     void next();
124 };
125 #endif
126
127 class TimeLabel : public QLabel
128 {
129     Q_OBJECT
130 public:
131     TimeLabel( intf_thread_t *_p_intf );
132 protected:
133     virtual void mousePressEvent( QMouseEvent *event )
134     {
135         toggleTimeDisplay();
136     }
137     virtual void mouseDoubleClickEvent( QMouseEvent *event )
138     {
139         toggleTimeDisplay();
140         emit timeLabelDoubleClicked();
141     }
142 private:
143     intf_thread_t *p_intf;
144     bool b_remainingTime;
145     void toggleTimeDisplay();
146 signals:
147     void timeLabelDoubleClicked();
148 private slots:
149     void setDisplayPosition( float pos, int time, int length );
150     void setCaching( float );
151 };
152
153 class SpeedLabel : public QLabel
154 {
155     Q_OBJECT
156 public:
157     SpeedLabel( intf_thread_t *, const QString );
158
159 protected:
160     virtual void mouseDoubleClickEvent ( QMouseEvent * event )
161     {
162         THEMIM->getIM()->setRate( INPUT_RATE_DEFAULT );
163     }
164 private slots:
165     void showSpeedMenu( QPoint );
166     void setRate( int );
167 private:
168     intf_thread_t *p_intf;
169     QMenu *speedControlMenu;
170     SpeedControlWidget *speedControl;
171 };
172
173 /******************** Speed Control Widgets ****************/
174 class SpeedControlWidget : public QFrame
175 {
176     Q_OBJECT
177 public:
178     SpeedControlWidget( intf_thread_t *, QWidget * );
179     void updateControls( int );
180 private:
181     intf_thread_t *p_intf;
182     QSlider *speedSlider;
183
184 public slots:
185     void activateOnState();
186
187 private slots:
188     void updateRate( int );
189     void resetRate();
190 };
191
192 class CoverArtLabel : public QLabel
193 {
194     Q_OBJECT
195 public:
196     CoverArtLabel( QWidget *parent,
197                    vlc_object_t *p_this,
198                    input_item_t *p_input = NULL );
199     virtual ~CoverArtLabel();
200
201 private:
202     input_item_t *p_input;
203     vlc_object_t *p_this;
204
205     QString prevArt;
206
207 public slots:
208     void requestUpdate() { emit updateRequested(); };
209     void update( input_item_t* p_item )
210     {
211         if( p_input ) vlc_gc_decref( p_input );
212         if( ( p_input = p_item ) )
213             vlc_gc_incref( p_input );
214         requestUpdate();
215     }
216
217 private slots:
218     void doUpdate();
219     void downloadCover();
220
221 signals:
222     void updateRequested();
223 };
224
225 #endif