]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/components/controller_widget.hpp
Qt: Audio control widget changes
[vlc] / modules / gui / qt4 / components / controller_widget.hpp
index 9714c0561676493187b3395e7335c078079b1f5b..f68b238325dd1b978221437c26a60c1436e1fb98 100644 (file)
@@ -76,6 +76,7 @@ public:
     SoundWidget( QWidget *parent, intf_thread_t  *_p_i, bool,
                  bool b_special = false );
     virtual ~SoundWidget();
+    void setMuted( bool );
 
 private:
     intf_thread_t       *p_intf;
@@ -85,9 +86,13 @@ private:
     bool                 b_my_volume;
     QMenu               *volumeMenu;
     virtual bool eventFilter( QObject *obj, QEvent *e );
+    bool                b_is_muted;
+
 protected slots:
     void updateVolume( int );
     void updateVolume( void );
+    void updateMuteStatus( void );
+    void refreshLabels( void );
     void showVolumeMenu( QPoint pos );
 };