]> git.sesse.net Git - vlc/blob - modules/gui/qt4/util/input_slider.hpp
OS/2 uses the same path style as Win32.
[vlc] / modules / gui / qt4 / util / input_slider.hpp
1 /*****************************************************************************
2  * input_slider.hpp : A slider that controls an input
3  ****************************************************************************
4  * Copyright (C) 2006 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 _INPUTSLIDER_H_
26 #define _INPUTSLIDER_H_
27
28 #include "qt4.hpp"
29
30 #include <QSlider>
31
32 #include <QMouseEvent>
33 #include <QWheelEvent>
34 #include <QTimer>
35
36 /* Input Slider derived from QSlider */
37 class InputSlider : public QSlider
38 {
39     Q_OBJECT
40 public:
41     InputSlider( QWidget *_parent );
42     InputSlider( Qt::Orientation q, QWidget *_parent );
43     virtual ~InputSlider() {};
44 protected:
45     virtual void mouseMoveEvent(QMouseEvent *event);
46     virtual void mousePressEvent(QMouseEvent* event);
47     virtual void mouseReleaseEvent(QMouseEvent* event);
48     virtual void wheelEvent(QWheelEvent *event);
49 private:
50     bool b_isSliding; /* Whether we are currently sliding by user action */
51     int inputLength;  /* InputLength that can change */
52     char psz_length[MSTRTIME_MAX_SIZE]; /* Used for the ToolTip */
53     QTimer *timer;
54
55 public slots:
56     void setPosition( float, int64_t, int );
57 private slots:
58     void userDrag( int );
59     void seekTick();
60
61 signals:
62     void sliderDragged( float );
63 };
64
65
66 /* Sound Slider inherited directly from QAbstractSlider */
67 class QPaintEvent;
68
69 class SoundSlider : public QAbstractSlider
70 {
71     Q_OBJECT
72 public:
73     SoundSlider( QWidget *_parent, int _i_step, bool b_softamp, char * );
74     virtual ~SoundSlider() {};
75     void setMuted( bool ); /* Set Mute status */
76
77 protected:
78     const static int paddingL = 3;
79     const static int paddingR = 2;
80
81     virtual void paintEvent(QPaintEvent *);
82     virtual void wheelEvent( QWheelEvent *event );
83     virtual void mousePressEvent( QMouseEvent * );
84     virtual void mouseMoveEvent( QMouseEvent * );
85     virtual void mouseReleaseEvent( QMouseEvent * );
86
87 private:
88     bool b_isSliding; /* Whether we are currently sliding by user action */
89     bool b_mouseOutside; /* Whether the mouse is outside or inside the Widget */
90     int i_oldvalue; /* Store the old Value before changing */
91     float f_step; /* How much do we increase each time we wheel */
92     bool b_isMuted;
93
94     QPixmap pixGradient; /* Gradient pix storage */
95     QPixmap pixGradient2; /* Muted Gradient pix storage */
96     QPixmap pixOutside; /* OutLine pix storage */
97
98     void changeValue( int x ); /* Function to modify the value from pixel x() */
99 };
100
101 #endif