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