input_slider.cpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:8k
源码类别:

midi

开发平台:

Unix_Linux

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