diff options
Diffstat (limited to 'playerwidget.h')
-rw-r--r-- | playerwidget.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/playerwidget.h b/playerwidget.h index da13747..f24700f 100644 --- a/playerwidget.h +++ b/playerwidget.h @@ -19,6 +19,7 @@ class QTextBrowser; class QMediaPlayer; class QToolBar; class QAction; +class QActionGroup; class QTimer; class QStackedLayout; class BeetPlayerProxy; @@ -35,6 +36,7 @@ class PlayerWidget : public QWidget { explicit PlayerWidget(QSplashScreen *splash, QWidget *parent = nullptr); ~PlayerWidget(); const QMediaPlayer* player() const { return mPlayer; } + const QActionGroup* bottomAG() const { return mBottomTBG; } public slots: void rightCurrentChanged(const QModelIndex &cur, const QModelIndex &prev); @@ -125,6 +127,7 @@ class PlayerWidget : public QWidget { QMap<QString, QVariant> mOtherMeta; QStackedWidget *mCollectionStack; QTabWidget *mPlaylistTab; + QActionGroup *mBottomTBG; }; #endif // PLAYERWIDGET_H |