]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/components/interface_widgets.hpp
Special Xtophe request ( Bday! ), add a new --no-qt-blingbling option to use native...
[vlc] / modules / gui / qt4 / components / interface_widgets.hpp
index 7edde5e54aea21d093644124e93c34152d8b8a10..1966717d2c68c61c0eff7bae67e63c6f1895398c 100644 (file)
@@ -141,16 +141,17 @@ class QSlider;
 class QGridLayout;
 class VolumeClickHandler;
 class SoundSlider;
+class QAbstractSlider;
 
 class ControlsWidget : public QFrame
 {
     Q_OBJECT
 public:
-    ControlsWidget( intf_thread_t *, bool );
+    /* p_intf, advanced control visible or not, blingbling or not */
+    ControlsWidget( intf_thread_t *, bool, bool );
     virtual ~ControlsWidget();
 
     QPushButton *playlistButton;
-    SoundSlider *volumeSlider;
     void setStatus( int );
     void enableInput( bool );
     void enableVideo( bool );
@@ -170,6 +171,7 @@ private:
     QPushButton         *slowerButton, *fasterButton;
     AdvControlsWidget   *advControls;
     QLabel              *volMuteLabel;
+    QAbstractSlider     *volumeSlider;
 
     bool                 b_advancedVisible;
 private slots: