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