]> git.sesse.net Git - vlc/blob - modules/gui/qt4/util/input_slider.cpp
Qt4: Middle mouse click on the InputSlider cause a wrong behaviour
[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
25 #ifdef HAVE_CONFIG_H
26 # include "config.h"
27 #endif
28
29 #include "util/input_slider.hpp"
30
31 #include <QPaintEvent>
32 #include <QPainter>
33 #include <QBitmap>
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_isSliding = false;
44     setMinimum( 0 );
45     setMouseTracking(true);
46     setMaximum( 1000 );
47     setSingleStep( 2 );
48     setPageStep( 10 );
49     setTracking( true );
50     setPosition( -1.0, 0, 0 );
51     secstotimestr( psz_length, 0 );
52     setFocusPolicy( Qt::NoFocus );
53     CONNECT( this, valueChanged(int), this, userDrag( int ) );
54 }
55
56 void InputSlider::setPosition( float pos, int a, int b )
57 {
58     if( pos == -1.0 )
59         setEnabled( false );
60     else
61         setEnabled( true );
62
63     if( !b_isSliding )
64         setValue( (int)(pos * 1000.0 ) );
65
66     inputLength = b;
67 }
68
69 void InputSlider::userDrag( int new_value )
70 {
71     if( b_isSliding )
72     {
73         float f_pos = (float)(new_value)/1000.0;
74         emit sliderDragged( f_pos );
75     }
76 }
77
78 void InputSlider::mouseReleaseEvent( QMouseEvent *event )
79 {
80     b_isSliding = false;
81     event->accept();
82     QSlider::mouseReleaseEvent( event );
83 }
84
85 void InputSlider::mousePressEvent(QMouseEvent* event)
86 {
87     b_isSliding = true ;
88     if( event->button() != Qt::LeftButton &&
89         event->button() != Qt::MidButton )
90     {
91         QSlider::mousePressEvent( event );
92         return;
93     }
94
95     QMouseEvent newEvent( event->type(), event->pos(), event->globalPos(),
96         Qt::MouseButton( event->button() ^ Qt::LeftButton ^ Qt::MidButton ),
97         Qt::MouseButtons( event->buttons() ^ Qt::LeftButton ^ Qt::MidButton ),
98         event->modifiers() );
99     QSlider::mousePressEvent( &newEvent );
100 }
101
102 void InputSlider::mouseMoveEvent(QMouseEvent *event)
103 {
104     if( b_isSliding )
105     {
106         QSlider::mouseMoveEvent( event );
107     }
108
109     secstotimestr( psz_length, ( event->x() * inputLength) / size().width() );
110     setToolTip( psz_length );
111     event->accept();
112 }
113
114 void InputSlider::wheelEvent( QWheelEvent *event)
115 {
116     /* Don't do anything if we are for somehow reason sliding */
117     if( !b_isSliding )
118     {
119         setValue( value() + event->delta()/12 ); /* 12 = 8 * 15 / 10
120          Since delta is in 1/8 of ° and mouse have steps of 15 °
121          and that our slider is in 0.1% and we want one step to be a 1%
122          increment of position */
123         emit sliderDragged( value()/1000.0 );
124     }
125     /* We do accept because for we don't want the parent to change the sound
126        vol */
127     event->accept();
128 }
129
130 /* This work is derived from Amarok's work under GPLv2+
131     - Mark Kretschmann
132     - Gábor Lehel
133    */
134 #define WLENGTH   80 // px
135 #define WHEIGHT   22  // px
136 #define SOUNDMIN  0   // %
137 #define SOUNDMAX  200 // % OR 400 ?
138
139 SoundSlider::SoundSlider( QWidget *_parent, int _i_step, bool b_hard,
140                           char *psz_colors )
141                         : QAbstractSlider( _parent )
142 {
143     f_step = ( _i_step * 100 ) / AOUT_VOLUME_MAX ;
144     setRange( SOUNDMIN, b_hard ? (2 * SOUNDMAX) : SOUNDMAX  );
145     setMouseTracking( true );
146     b_isSliding = false;
147     b_mouseOutside = true;
148
149     pixOutside = QPixmap( ":/volslide-outside" );
150
151     const QPixmap temp( ":/volslide-inside" );
152     const QBitmap mask( temp.createHeuristicMask() );
153
154     setMinimumSize( pixOutside.size() );
155
156     pixGradient = QPixmap( mask.size() );
157
158     /* Gradient building from the preferences */
159     QLinearGradient gradient( paddingL, 2, WLENGTH + paddingL , 2 );
160
161     QStringList colorList = qfu( psz_colors ).split( ";" );
162     free( psz_colors );
163
164     /* Fill with 255 if the list is too short */
165     if( colorList.size() < 12 )
166         for( int i = colorList.size(); i < 12; i++)
167             colorList.append( "255" );
168
169 #define c(i) colorList.at(i).toInt()
170     gradient.setColorAt( 0.0, QColor( c(0), c(1), c(2) ) );
171     gradient.setColorAt( 0.2, QColor( c(3), c(4), c(5) ) );
172     gradient.setColorAt( 0.5, QColor( c(6), c(7), c(8) ) );
173     gradient.setColorAt( 1.0, QColor( c(9), c(10), c(11) ) );
174
175     QPainter painter( &pixGradient );
176     painter.setPen( Qt::NoPen );
177     painter.setBrush( gradient );
178     painter.drawRect( pixGradient.rect() );
179     painter.end();
180
181     pixGradient.setMask( mask );
182 }
183
184 void SoundSlider::wheelEvent( QWheelEvent *event )
185 {
186     int newvalue = value() + event->delta() / ( 8 * 15 ) * f_step;
187     setValue( __MIN( __MAX( minimum(), newvalue ), maximum() ) );
188
189     emit sliderReleased();
190 }
191
192 void SoundSlider::mousePressEvent( QMouseEvent *event )
193 {
194     if( event->button() != Qt::RightButton )
195     {
196         /* We enter the sliding mode */
197         b_isSliding = true;
198         i_oldvalue = value();
199         emit sliderPressed();
200         changeValue( event->x() - paddingL );
201     }
202 }
203
204 void SoundSlider::mouseReleaseEvent( QMouseEvent *event )
205 {
206     if( event->button() != Qt::RightButton )
207     {
208         if( !b_mouseOutside && value() != i_oldvalue )
209         {
210             emit sliderReleased();
211             setValue( value() );
212         }
213         b_isSliding = false;
214         b_mouseOutside = false;
215     }
216 }
217
218 void SoundSlider::mouseMoveEvent( QMouseEvent *event )
219 {
220     if( b_isSliding )
221     {
222         QRect rect( paddingL - 15,    -1,
223                     WLENGTH + 15 * 2 , WHEIGHT + 5 );
224         if( !rect.contains( event->pos() ) )
225         { /* We are outside */
226             if ( !b_mouseOutside )
227                 setValue( i_oldvalue );
228             b_mouseOutside = true;
229         }
230         else
231         { /* We are inside */
232             b_mouseOutside = false;
233             changeValue( event->x() - paddingL );
234             emit sliderMoved( value() );
235         }
236     }
237     else
238     {
239         int i = ( ( event->x() - paddingL ) * maximum() + 40 ) / WLENGTH;
240         i = __MIN( __MAX( 0, i ), maximum() );
241         setToolTip( QString("%1  \%" ).arg( i ) );
242     }
243 }
244
245 void SoundSlider::changeValue( int x )
246 {
247     setValue( (x * maximum() + 40 ) / WLENGTH );
248 }
249
250 void SoundSlider::paintEvent( QPaintEvent *e )
251 {
252     QPainter painter( this );
253     const int offset = int( ( WLENGTH * value() + 100 ) / maximum() ) + paddingL;
254
255     const QRectF boundsG( 0, 0, offset , pixGradient.height() );
256     painter.drawPixmap( boundsG, pixGradient, boundsG );
257
258     const QRectF boundsO( 0, 0, pixOutside.width(), pixOutside.height() );
259     painter.drawPixmap( boundsO, pixOutside, boundsO );
260
261     painter.setPen( palette().color( QPalette::Active, QPalette::Mid ) );
262     QFont font; font.setPixelSize( 9 );
263     painter.setFont( font );
264     const QRect rect( 0, 0, 34, 15 );
265     painter.drawText( rect, Qt::AlignRight | Qt::AlignVCenter,
266                       QString::number( value() ) + '%' );
267
268     painter.end();
269     e->accept();
270 }
271