diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2019-11-04 13:25:05 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2019-11-04 13:25:05 +0000 |
| commit | 74ec7eeee3de7e5b1a7f07206da65b604356f9be (patch) | |
| tree | 13a529acdc009d84bf8edb9621f574f6553b5365 /src/plugins/General/lyrics/lyricswindow.h | |
| parent | a52f165675d244a4e01c583ec44fd40a1cc127d1 (diff) | |
| download | qmmp-74ec7eeee3de7e5b1a7f07206da65b604356f9be.tar.gz qmmp-74ec7eeee3de7e5b1a7f07206da65b604356f9be.tar.bz2 qmmp-74ec7eeee3de7e5b1a7f07206da65b604356f9be.zip | |
lyrics: added settings dialog, fixed remaining issues
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@9093 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/General/lyrics/lyricswindow.h')
| -rw-r--r-- | src/plugins/General/lyrics/lyricswindow.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/plugins/General/lyrics/lyricswindow.h b/src/plugins/General/lyrics/lyricswindow.h index 87f3d578c..6d4bfaa77 100644 --- a/src/plugins/General/lyrics/lyricswindow.h +++ b/src/plugins/General/lyrics/lyricswindow.h @@ -43,7 +43,9 @@ public: private slots: void onRequestFinished(QNetworkReply *reply); - void on_searchPushButton_clicked(); + void on_refreshButton_clicked(); + void on_editButton_clicked(bool checked); + void on_providerComboBox_activated(int index); QString cacheFilePath() const; bool loadFromCache(); void saveToCache(const QString &text); @@ -55,6 +57,7 @@ private: UltimateLyricsParser m_parser; TrackInfo m_info; QHash<QNetworkReply *, QString> m_tasks; + QStringList m_enabledProviders; }; #endif |
