diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2021-01-16 19:03:33 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2021-01-16 19:03:33 +0000 |
| commit | 7d9b7792aeb3db45e235f923061254de96d37e04 (patch) | |
| tree | 745157293cdfb97f2de6892be4f2bdd95ac7e025 /src/plugins/General/library/library.h | |
| parent | 4762863d93e56b9d4766e65a0247c8811b4c6756 (diff) | |
| download | qmmp-7d9b7792aeb3db45e235f923061254de96d37e04.tar.gz qmmp-7d9b7792aeb3db45e235f923061254de96d37e04.tar.bz2 qmmp-7d9b7792aeb3db45e235f923061254de96d37e04.zip | |
library: added window mode (#147)
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@9646 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/General/library/library.h')
| -rw-r--r-- | src/plugins/General/library/library.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/plugins/General/library/library.h b/src/plugins/General/library/library.h index fec9508a5..053571a5c 100644 --- a/src/plugins/General/library/library.h +++ b/src/plugins/General/library/library.h @@ -31,6 +31,7 @@ #include <qmmp/qmmp.h> class QFileInfo; +class QAction; class SoundCore; class PlayListTrack; class LibraryWidget; @@ -44,6 +45,8 @@ public: bool isRunning() const; + QAction *showAction() const; + private slots: void showLibraryWindow(); @@ -65,6 +68,7 @@ private: bool m_stopped = false; QPointer<LibraryWidget> *m_libraryWidget; QFutureWatcher<bool> m_watcher; + QAction *m_showAction; }; |
