]> git.sesse.net Git - vlc/blob - modules/gui/qt4/util/input_slider.cpp
Qt4 - Reference to Amarok good work.
[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  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #include "qt4.hpp"
25 #include "util/input_slider.hpp"
26
27 #include <QPaintEvent>
28 #include <QPainter>
29 #include <QBitmap>
30 #include <QStyle>
31
32 InputSlider::InputSlider( QWidget *_parent ) : DirectSlider( _parent )
33 {
34     InputSlider::InputSlider( Qt::Horizontal, _parent );
35 }
36
37 InputSlider::InputSlider( Qt::Orientation q,QWidget *_parent ) :
38                                  DirectSlider( q, _parent )
39 {
40     mymove = false;
41     setMinimum( 0 );
42     setMouseTracking(true);
43     setMaximum( 1000 );
44     setSingleStep( 2 );
45     setPageStep( 10 );
46     setTracking( true );
47     CONNECT( this, valueChanged(int), this, userDrag( int ) );
48 }
49
50 void InputSlider::setPosition( float pos, int a, int b )
51 {
52     if( pos == 0.0 )
53         setEnabled( false );
54     else
55         setEnabled( true );
56     mymove = true;
57     setValue( (int)(pos * 1000.0 ) );
58     mymove = false;
59     inputLength = b;
60 }
61
62 void InputSlider::userDrag( int new_value )
63 {
64     float f_pos = (float)(new_value)/1000.0;
65     if( !mymove )
66     {
67         emit sliderDragged( f_pos );
68     }
69 }
70
71 void InputSlider::mouseMoveEvent(QMouseEvent *event)
72 {
73     char psz_length[MSTRTIME_MAX_SIZE];
74     secstotimestr( psz_length, ( event->x() * inputLength) / size().width() );
75     setToolTip( psz_length );
76 }
77
78 /* This work is derived from Amarok's work under GPLv2+
79     - Mark Kretschmann
80     - Gábor Lehel
81    */
82 #define WLENGTH   90 // px
83 #define WHEIGHT   25  // px
84 #define SOUNDMIN  0   // %
85 #define SOUNDMAX  200 // % OR 400 ?
86
87 SoundSlider::SoundSlider( QWidget *_parent, int _i_step, bool b_hard )
88                         : QAbstractSlider( _parent )
89 {
90     paddingL = 5;
91     paddingR = 3;
92
93     f_step = ( _i_step * 100 ) / AOUT_VOLUME_MAX ;
94     setRange( SOUNDMIN, b_hard ? (2 * SOUNDMAX) : SOUNDMAX  );
95
96     pixOutside = QPixmap( ":/pixmaps/volume-slider-outside.png" );
97
98     const QPixmap temp( ":/pixmaps/volume-slider-inside.png" );
99     const QBitmap mask( temp.createHeuristicMask() );
100
101     setMinimumSize( pixOutside.size() );
102
103     pixGradient = QPixmap( mask.size() );
104
105     QLinearGradient gradient( paddingL, 4, WLENGTH + paddingL , 4 );
106     gradient.setColorAt( 0.0, Qt::white );
107     gradient.setColorAt( 0.2, QColor( 20, 226, 20 ) );
108     gradient.setColorAt( 0.5, QColor( 255, 176, 15 ) );
109     gradient.setColorAt( 1.0, QColor( 235, 30, 20 ) );
110
111     QPainter painter( &pixGradient );
112     painter.setPen( Qt::NoPen );
113     painter.setBrush( gradient );
114     painter.drawRect( pixGradient.rect() );
115     painter.end();
116
117     pixGradient.setMask( mask );
118 }
119
120 void SoundSlider::wheelEvent( QWheelEvent *event )
121 {
122     int newvalue = value() + event->delta() / ( 8 * 15 ) * f_step;
123     setValue( __MIN( __MAX( minimum(), newvalue ), maximum() ) );
124
125     emit sliderReleased();
126 }
127
128 void SoundSlider::mousePressEvent( QMouseEvent *event )
129 {
130     if( event->button() != Qt::RightButton )
131     {
132         /* We enter the sliding mode */
133         b_sliding = true;
134         i_oldvalue = value();
135         emit sliderPressed();
136         changeValue( event->x() - paddingL );
137     }
138 }
139
140 void SoundSlider::mouseReleaseEvent( QMouseEvent *event )
141 {
142     if( event->button() != Qt::RightButton )
143     {
144         if( !b_outside && value() != i_oldvalue )
145         {
146             emit sliderReleased();
147             setValue( value() );
148         }
149         b_sliding = false;
150         b_outside = false;
151     }
152 }
153
154 void SoundSlider::mouseMoveEvent( QMouseEvent *event )
155 {
156     if( b_sliding )
157     {
158         QRect rect( paddingL - 15,    -1,
159                     WLENGTH + 15 * 2, WHEIGHT + 4 );
160         if( !rect.contains( event->pos() ) )
161         { /* We are outside */
162             if ( !b_outside )
163                 setValue( i_oldvalue );
164             b_outside = true;
165         }
166         else
167         { /* We are inside */
168             b_outside = false;
169             changeValue( event->x() - paddingL );
170             emit sliderMoved( value() );
171         }
172     }
173     else
174         event->ignore();
175 }
176
177 void SoundSlider::changeValue( int x )
178 {
179     setValue( x * maximum() / WLENGTH );
180 }
181
182 void SoundSlider::paintEvent(QPaintEvent *e)
183 {
184     QPainter painter( this );
185     const int offset = int(
186             double( WLENGTH * value() ) /
187             double( maximum() ) ) + paddingL;
188
189     const QRectF boundsG( 0, 0, offset , pixGradient.height() );
190     painter.drawPixmap( boundsG, pixGradient, boundsG );
191
192     const QRectF boundsO( 0, 0, pixOutside.width(), pixOutside.height() );
193     painter.drawPixmap( boundsO, pixOutside, boundsO );
194
195     painter.setPen( palette().color( QPalette::Active, QPalette::Mid ) );
196     QFont font; font.setPixelSize( 9 );
197     painter.setFont( font );
198     const QRect rect( 0, 0, 34, 15 );
199     painter.drawText( rect, Qt::AlignRight | Qt::AlignVCenter,
200                       QString::number( value() ) + '%' );
201
202     painter.end();
203 }
204