]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/interface_widgets.hpp
Qt: Fix SpeedLabel's tooltip
[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 <QWidget>
40 #include <QFrame>
41 #include <QLabel>
42 #include <QMouseEvent>
43
44 class ResizeEvent;
45 class QPixmap;
46 class QHBoxLayout;
47 class QMenu;
48 class QSlider;
49 class ReparentableWidget;
50
51 /******************** Video Widget ****************/
52 class VideoWidget : public QFrame
53 {
54     Q_OBJECT
55 friend class ReparentableWidget;
56
57 public:
58     VideoWidget( intf_thread_t * );
59     virtual ~VideoWidget();
60
61     WId request( int *, int *, unsigned int *, unsigned int *, bool );
62     void  release( void );
63     int   control( void *, int, va_list );
64
65 protected:
66     virtual QPaintEngine *paintEngine() const
67     {
68         return NULL;
69     }
70
71 private:
72     intf_thread_t *p_intf;
73
74     QWidget *reparentable;
75     QLayout *layout;
76
77 signals:
78     void keyPressed( QKeyEvent * );
79     void sizeChanged( int, int );
80
81 public slots:
82     void SetSizing( unsigned int, unsigned int );
83     void SetFullScreen( bool );
84 };
85
86 /******************** Background Widget ****************/
87 class BackgroundWidget : public QWidget
88 {
89     Q_OBJECT
90 public:
91     BackgroundWidget( intf_thread_t * );
92     void setExpandstoHeight( bool b_expand ) { b_expandPixmap = b_expand; }
93 private:
94     QString pixmapUrl;
95     bool b_expandPixmap;
96     virtual void contextMenuEvent( QContextMenuEvent *event );
97     intf_thread_t *p_intf;
98 protected:
99     void paintEvent( QPaintEvent *e );
100     static const int MARGIN = 5;
101 public slots:
102     void toggle(){ TOGGLEV( this ); }
103     void updateArt( const QString& );
104 };
105
106 #if 0
107 class VisualSelector : public QFrame
108 {
109     Q_OBJECT
110 public:
111     VisualSelector( intf_thread_t *);
112     virtual ~VisualSelector();
113 private:
114     intf_thread_t *p_intf;
115     QLabel *current;
116 private slots:
117     void prev();
118     void next();
119 };
120 #endif
121
122 class TimeLabel : public QLabel
123 {
124     Q_OBJECT
125 public:
126     TimeLabel( intf_thread_t *_p_intf );
127 protected:
128     virtual void mousePressEvent( QMouseEvent *event )
129     {
130         toggleTimeDisplay();
131         event->accept();
132     }
133     virtual void mouseDoubleClickEvent( QMouseEvent *event )
134     {
135         event->accept();
136         toggleTimeDisplay();
137         emit timeLabelDoubleClicked();
138     }
139 private:
140     intf_thread_t *p_intf;
141     bool b_remainingTime;
142     int cachedLength;
143     QTimer *bufTimer;
144     float bufVal;
145     bool buffering;
146     bool showBuffering;
147     char psz_length[MSTRTIME_MAX_SIZE];
148     char psz_time[MSTRTIME_MAX_SIZE];
149     void toggleTimeDisplay();
150     void paintEvent( QPaintEvent* );
151 signals:
152     void timeLabelDoubleClicked();
153 private slots:
154     void setDisplayPosition( float pos, int64_t time, int length );
155     void setDisplayPosition( float pos );
156     void updateBuffering( float );
157     void updateBuffering();
158 };
159
160 class SpeedLabel : public QLabel
161 {
162     Q_OBJECT
163 public:
164     SpeedLabel( intf_thread_t *, QWidget * );
165     virtual ~SpeedLabel();
166
167 protected:
168     virtual void mousePressEvent ( QMouseEvent * event )
169     {
170         showSpeedMenu( event->pos() );
171     }
172 private slots:
173     void showSpeedMenu( QPoint );
174     void setRate( float );
175 private:
176     intf_thread_t *p_intf;
177     QMenu *speedControlMenu;
178     QString tooltipStringPattern;
179     SpeedControlWidget *speedControl;
180 };
181
182 /******************** Speed Control Widgets ****************/
183 class SpeedControlWidget : public QFrame
184 {
185     Q_OBJECT
186 public:
187     SpeedControlWidget( intf_thread_t *, QWidget * );
188     void updateControls( float );
189 private:
190     intf_thread_t *p_intf;
191     QSlider *speedSlider;
192     int lastValue;
193
194 public slots:
195     void activateOnState();
196
197 private slots:
198     void updateRate( int );
199     void resetRate();
200 };
201
202 class CoverArtLabel : public QLabel
203 {
204     Q_OBJECT
205 public:
206     CoverArtLabel( QWidget *parent, intf_thread_t * );
207     virtual ~CoverArtLabel();
208
209 private:
210     intf_thread_t *p_intf;
211
212 public slots:
213     void requestUpdate() { emit updateRequested(); }
214     void update( )
215     {
216         requestUpdate();
217     }
218     void showArtUpdate( const QString& );
219
220 private slots:
221     void askForUpdate();
222
223 signals:
224     void updateRequested();
225 };
226
227 #endif