]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/util/input_slider.hpp
Merge branch 'master' into lpcm_encoder
[vlc] / modules / gui / qt4 / util / input_slider.hpp
index cf690392f60206c87e5a1f03056a2771d6383587..08800f1ded9f986890322bee77405fe1fd6816ef 100644 (file)
@@ -1,10 +1,11 @@
 /*****************************************************************************
  * input_slider.hpp : A slider that controls an input
  ****************************************************************************
- * Copyright (C) 2000-2005 the VideoLAN team
- * $Id: wxwidgets.cpp 15731 2006-05-25 14:43:53Z zorglub $
+ * Copyright (C) 2006 the VideoLAN team
+ * $Id$
  *
  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
+ *          Jean-Baptiste Kempf <jb@videolan.org>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ *****************************************************************************/
 
 #ifndef _INPUTSLIDER_H_
 #define _INPUTSLIDER_H_
 
-#include "util/directslider.hpp"
+#include "qt4.hpp"
 
-class InputSlider : public DirectSlider
+#include <QSlider>
+
+#include <QMouseEvent>
+#include <QWheelEvent>
+#include <QTimer>
+
+/* Input Slider derived from QSlider */
+class InputSlider : public QSlider
 {
     Q_OBJECT
 public:
     InputSlider( QWidget *_parent );
-    InputSlider( Qt::Orientation q,QWidget *_parent );
-    virtual ~InputSlider()   {};
+    InputSlider( Qt::Orientation q, QWidget *_parent );
+    virtual ~InputSlider() {};
+protected:
+    virtual void mouseMoveEvent(QMouseEvent *event);
+    virtual void mousePressEvent(QMouseEvent* event);
+    virtual void mouseReleaseEvent(QMouseEvent* event);
+    virtual void wheelEvent(QWheelEvent *event);
 private:
-    bool mymove;
+    bool b_isSliding; /* Whether we are currently sliding by user action */
+    int inputLength;  /* InputLength that can change */
+    char psz_length[MSTRTIME_MAX_SIZE]; /* Used for the ToolTip */
+    int lastSeeked;
+    QTimer *timer;
+
 public slots:
-    void setPosition( float, int, int );
+    void setPosition( float, int64_t, int );
 private slots:
     void userDrag( int );
+    void seekTick();
+
 signals:
     void sliderDragged( float );
 };
+
+
+/* Sound Slider inherited directly from QAbstractSlider */
+class QPaintEvent;
+
+class SoundSlider : public QAbstractSlider
+{
+    Q_OBJECT
+public:
+    SoundSlider( QWidget *_parent, int _i_step, bool b_softamp, char * );
+    virtual ~SoundSlider() {};
+    void setMuted( bool ); /* Set Mute status */
+
+protected:
+    const static int paddingL = 3;
+    const static int paddingR = 2;
+
+    virtual void paintEvent(QPaintEvent *);
+    virtual void wheelEvent( QWheelEvent *event );
+    virtual void mousePressEvent( QMouseEvent * );
+    virtual void mouseMoveEvent( QMouseEvent * );
+    virtual void mouseReleaseEvent( QMouseEvent * );
+
+private:
+    bool b_isSliding; /* Whether we are currently sliding by user action */
+    bool b_mouseOutside; /* Whether the mouse is outside or inside the Widget */
+    int i_oldvalue; /* Store the old Value before changing */
+    float f_step; /* How much do we increase each time we wheel */
+    bool b_isMuted;
+
+    QPixmap pixGradient; /* Gradient pix storage */
+    QPixmap pixGradient2; /* Muted Gradient pix storage */
+    QPixmap pixOutside; /* OutLine pix storage */
+
+    void changeValue( int x ); /* Function to modify the value from pixel x() */
+};
+
 #endif