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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * input_slider.hpp : A slider that controls an input
  3.  ****************************************************************************
  4.  * Copyright (C) 2006 the VideoLAN team
  5.  * $Id: 1e6ec6ae9ef0d3acc09554dd0f31157b76856257 $
  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. #ifndef _INPUTSLIDER_H_
  25. #define _INPUTSLIDER_H_
  26. #include "qt4.hpp"
  27. #include <QSlider>
  28. #include <QMouseEvent>
  29. #include <QWheelEvent>
  30. /* Input Slider derived from QSlider */
  31. class InputSlider : public QSlider
  32. {
  33.     Q_OBJECT
  34. public:
  35.     InputSlider( QWidget *_parent );
  36.     InputSlider( Qt::Orientation q, QWidget *_parent );
  37.     virtual ~InputSlider() {};
  38. protected:
  39.     virtual void mouseMoveEvent(QMouseEvent *event);
  40.     virtual void mousePressEvent(QMouseEvent* event);
  41.     virtual void mouseReleaseEvent(QMouseEvent* event);
  42.     virtual void wheelEvent(QWheelEvent *event);
  43. private:
  44.     bool b_isSliding; /* Whether we are currently sliding by user action */
  45.     int inputLength;  /* InputLength that can change */
  46.     char psz_length[MSTRTIME_MAX_SIZE]; /* Used for the ToolTip */
  47. public slots:
  48.     void setPosition( float, int, int );
  49. private slots:
  50.     void userDrag( int );
  51. signals:
  52.     void sliderDragged( float );
  53. };
  54. /* Sound Slider inherited directly from QAbstractSlider */
  55. class QPaintEvent;
  56. class SoundSlider : public QAbstractSlider
  57. {
  58.     Q_OBJECT
  59. public:
  60.     SoundSlider( QWidget *_parent, int _i_step, bool b_softamp, char * );
  61.     virtual ~SoundSlider() {};
  62. protected:
  63.     const static int paddingL = 3;
  64.     const static int paddingR = 2;
  65.     virtual void paintEvent(QPaintEvent *);
  66.     virtual void wheelEvent( QWheelEvent *event );
  67.     virtual void mousePressEvent( QMouseEvent * );
  68.     virtual void mouseMoveEvent( QMouseEvent * );
  69.     virtual void mouseReleaseEvent( QMouseEvent * );
  70. private:
  71.     bool b_isSliding; /* Whether we are currently sliding by user action */
  72.     bool b_mouseOutside; /* Whether the mouse is outside or inside the Widget */
  73.     int i_oldvalue; /* Store the old Value before changing */
  74.     float f_step; /* How much do we increase each time we wheel */
  75.     QPixmap pixGradient; /* Gradient pix storage */
  76.     QPixmap pixOutside; /* OutLine pix storage */
  77.     void changeValue( int x ); /* Function to modify the value from pixel x() */
  78. };
  79. #endif