diff options
Diffstat (limited to 'playerwidget.h')
-rw-r--r-- | playerwidget.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/playerwidget.h b/playerwidget.h index a321e4a..a4d183a 100644 --- a/playerwidget.h +++ b/playerwidget.h @@ -11,6 +11,7 @@ class QSlider; class QTextEdit; class QMediaPlayer; class QToolBar; +class QAction; class BeetPlayerProxy; class BeetView; @@ -32,6 +33,8 @@ class PlayerWidget : public QWidget { void shufflePlayList(); void randomPlay(); void playCurrent(const QModelIndex &index); + void mute(bool triggered); + void volumeChanged(int volume); private: void setupGui(); @@ -49,11 +52,15 @@ class PlayerWidget : public QWidget { QStandardItemModel *mSearchModel; QStandardItemModel *currentModel; QLabel *mNowPlayingL; - QSlider *mSlider; + QSlider *mSongSlider; + QLabel *mPos; + QSlider *mVolumeSlider; + QLabel *mVolumePos; QTextEdit *mCurrentTE; BeetView *mPlayListView; QStandardItemModel *mPlayListModel; QToolBar *mToolBar; + QAction *mPlayA; }; #endif // PLAYERWIDGET_H |