]> git.sesse.net Git - vlc/blob - modules/gui/qt4/util/input_slider.cpp
I am the one who rewrote most of this file.
[vlc] / modules / gui / qt4 / util / input_slider.cpp
1 /*****************************************************************************
2  * input_manager.cpp : Manage an input and interact with its GUI elements
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 #ifdef HAVE_CONFIG_H
25 # include "config.h"
26 #endif
27
28 #include "util/input_slider.hpp"
29
30 #include <QPaintEvent>
31 #include <QPainter>
32 #include <QBitmap>
33 #include <QStyle>
34
35 InputSlider::InputSlider( QWidget *_parent ) : QSlider( _parent )
36 {
37     InputSlider::InputSlider( Qt::Horizontal, _parent );
38 }
39
40 InputSlider::InputSlider( Qt::Orientation q,QWidget *_parent ) :
41                                  QSlider( q, _parent )
42 {
43     b_sliding = false;
44     setMinimum( 0 );
45     setMouseTracking(true);
46     setMaximum( 1000 );
47     setSingleStep( 2 );
48     setPageStep( 10 );
49     setTracking( true );
50     secstotimestr( psz_length, 0 );
51     CONNECT( this, valueChanged(int), this, userDrag( int ) );
52 }
53
54 void InputSlider::setPosition( float pos, int a, int b )
55 {
56     if( pos == 0.0 )
57         setEnabled( false );
58     else
59         setEnabled( true );
60
61     if( !b_sliding )
62         setValue( (int)(pos * 1000.0 ) );
63     inputLength = b;
64 }
65
66 void InputSlider::userDrag( int new_value )
67 {
68     if( b_sliding )
69     {
70         float f_pos = (float)(new_value)/1000.0;
71         emit sliderDragged( f_pos );
72     }
73 }
74
75 void InputSlider::mouseReleaseEvent( QMouseEvent *event )
76 {
77     b_sliding = false;
78 }
79
80 void InputSlider::mousePressEvent(QMouseEvent* event)
81 {
82     b_sliding = true ;
83     if( event->button() != Qt::LeftButton &&
84         event->button() != Qt::MidButton )
85     {
86         QSlider::mousePressEvent( event );
87         return;
88     }
89
90     QMouseEvent newEvent( event->type(), event->pos(), event->globalPos(),
91         Qt::MouseButton( event->button() ^ Qt::LeftButton ^ Qt::MidButton ),
92         Qt::MouseButtons( event->buttons() ^ Qt::LeftButton ^ Qt::MidButton ),
93         event->modifiers() );
94     QSlider::mousePressEvent( &newEvent );
95 }
96
97 void InputSlider::mouseMoveEvent(QMouseEvent *event)
98 {
99     if( b_sliding )
100     {
101         QSlider::mouseMoveEvent( event );
102     }
103
104     secstotimestr( psz_length, ( event->x() * inputLength) / size().width() );
105     setToolTip( psz_length );
106 }
107
108 /* This work is derived from Amarok's work under GPLv2+
109     - Mark Kretschmann
110     - Gábor Lehel
111    */
112 #define WLENGTH   90 // px
113 #define WHEIGHT   25  // px
114 #define SOUNDMIN  0   // %
115 #define SOUNDMAX  200 // % OR 400 ?
116
117 SoundSlider::SoundSlider( QWidget *_parent, int _i_step, bool b_hard )
118                         : QAbstractSlider( _parent )
119 {
120     paddingL = 5;
121     paddingR = 3;
122
123     f_step = ( _i_step * 100 ) / AOUT_VOLUME_MAX ;
124     setRange( SOUNDMIN, b_hard ? (2 * SOUNDMAX) : SOUNDMAX  );
125     setMouseTracking( true );
126     b_sliding = false;
127
128     pixOutside = QPixmap( ":/pixmaps/volume-slider-outside.png" );
129
130     const QPixmap temp( ":/pixmaps/volume-slider-inside.png" );
131     const QBitmap mask( temp.createHeuristicMask() );
132
133     setMinimumSize( pixOutside.size() );
134
135     pixGradient = QPixmap( mask.size() );
136
137     QLinearGradient gradient( paddingL, 4, WLENGTH + paddingL , 4 );
138     gradient.setColorAt( 0.0, QColor( 255, 255, 255 ) );
139     gradient.setColorAt( 0.2, QColor( 20, 226, 20 ) );
140     gradient.setColorAt( 0.5, QColor( 255, 176, 15 ) );
141     gradient.setColorAt( 1.0, QColor( 235, 30, 20 ) );
142
143     QPainter painter( &pixGradient );
144     painter.setPen( Qt::NoPen );
145     painter.setBrush( gradient );
146     painter.drawRect( pixGradient.rect() );
147     painter.end();
148
149     pixGradient.setMask( mask );
150 }
151
152 void SoundSlider::wheelEvent( QWheelEvent *event )
153 {
154     int newvalue = value() + event->delta() / ( 8 * 15 ) * f_step;
155     setValue( __MIN( __MAX( minimum(), newvalue ), maximum() ) );
156
157     emit sliderReleased();
158 }
159
160 void SoundSlider::mousePressEvent( QMouseEvent *event )
161 {
162     if( event->button() != Qt::RightButton )
163     {
164         /* We enter the sliding mode */
165         b_sliding = true;
166         i_oldvalue = value();
167         emit sliderPressed();
168         changeValue( event->x() - paddingL );
169     }
170 }
171
172 void SoundSlider::mouseReleaseEvent( QMouseEvent *event )
173 {
174     if( event->button() != Qt::RightButton )
175     {
176         if( !b_outside && value() != i_oldvalue )
177         {
178             emit sliderReleased();
179             setValue( value() );
180         }
181         b_sliding = false;
182         b_outside = false;
183     }
184 }
185
186 void SoundSlider::mouseMoveEvent( QMouseEvent *event )
187 {
188     if( b_sliding )
189     {
190         QRect rect( paddingL - 15,    -1,
191                     WLENGTH + 15 * 2, WHEIGHT + 4 );
192         if( !rect.contains( event->pos() ) )
193         { /* We are outside */
194             if ( !b_outside )
195                 setValue( i_oldvalue );
196             b_outside = true;
197         }
198         else
199         { /* We are inside */
200             b_outside = false;
201             changeValue( event->x() - paddingL );
202             emit sliderMoved( value() );
203         }
204     }
205     else
206     {
207         int i = ( event->x() - paddingL ) * maximum() / WLENGTH;
208         i = __MIN( __MAX( 0, i ), maximum() );
209         setToolTip( QString("%1  \%" ).arg( i ) );
210     }
211 }
212
213 void SoundSlider::changeValue( int x )
214 {
215     setValue( x * maximum() / WLENGTH );
216 }
217
218 void SoundSlider::paintEvent(QPaintEvent *e)
219 {
220     QPainter painter( this );
221     const int offset = int(
222             double( WLENGTH * value() ) /
223             double( maximum() ) ) + paddingL;
224
225     const QRectF boundsG( 0, 0, offset , pixGradient.height() );
226     painter.drawPixmap( boundsG, pixGradient, boundsG );
227
228     const QRectF boundsO( 0, 0, pixOutside.width(), pixOutside.height() );
229     painter.drawPixmap( boundsO, pixOutside, boundsO );
230
231     painter.setPen( palette().color( QPalette::Active, QPalette::Mid ) );
232     QFont font; font.setPixelSize( 9 );
233     painter.setFont( font );
234     const QRect rect( 0, 0, 34, 15 );
235     painter.drawText( rect, Qt::AlignRight | Qt::AlignVCenter,
236                       QString::number( value() ) + '%' );
237
238     painter.end();
239 }
240