]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/util/input_slider.hpp
Fix for the LAMERS that don't haev Qt4.4
[vlc] / modules / gui / qt4 / util / input_slider.hpp
index b4618e672a56fde739054f1cf5ba015e38769ff7..d2824991b82341882137bfc5f9a95897987e104d 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>
+
+class InputSlider : public QSlider
 {
     Q_OBJECT
 public:
-    InputSlider( QWidget *_parent ) : DirectSlider( _parent ) {};
-    InputSlider( Qt::Orientation q,QWidget *_parent ) : DirectSlider( q,_parent )
-    {};
+    InputSlider( QWidget *_parent );
+    InputSlider( Qt::Orientation q,QWidget *_parent );
     virtual ~InputSlider()   {};
-    void init();
+protected:
+    virtual void mouseMoveEvent(QMouseEvent *event);
+    virtual void mousePressEvent(QMouseEvent* event);
+    virtual void mouseReleaseEvent(QMouseEvent* event);
+private:
+    bool b_sliding;
+    int inputLength;
+    char psz_length[MSTRTIME_MAX_SIZE];
 public slots:
     void setPosition( float, int, int );
 private slots:
     void userDrag( int );
 signals:
-    void positionUpdated( float );
+    void sliderDragged( float );
 };
+
+
+class QPaintEvent;
+#include <QAbstractSlider>
+
+class SoundSlider : public QAbstractSlider
+{
+    Q_OBJECT
+public:
+    SoundSlider( QWidget *_parent, int _i_step, bool b_softamp, char * );
+    virtual ~SoundSlider() {};
+protected:
+    int paddingL;
+    int paddingR;
+    virtual void paintEvent(QPaintEvent *);
+    virtual void wheelEvent( QWheelEvent *event );
+    virtual void mousePressEvent( QMouseEvent * );
+    virtual void mouseMoveEvent( QMouseEvent * );
+    virtual void mouseReleaseEvent( QMouseEvent * );
+private:
+    bool b_sliding;
+    bool b_outside;
+    int i_oldvalue;
+    float f_step;
+    void changeValue( int x );
+    QPixmap pixGradient;
+    QPixmap pixOutside;
+};
+
 #endif