Clementine-audio-player-Mac.../src/ui/edittagdialog.h

64 lines
1.4 KiB
C
Raw Normal View History

/* This file is part of Clementine.
Clementine is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Clementine is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Clementine. If not, see <http://www.gnu.org/licenses/>.
*/
2010-01-16 17:12:47 +01:00
#ifndef EDITTAGDIALOG_H
#define EDITTAGDIALOG_H
#include <QDialog>
#include <QFutureWatcher>
#include <QMutex>
2010-01-16 17:12:47 +01:00
#include "core/song.h"
2010-01-16 17:12:47 +01:00
class LibraryBackend;
class Ui_EditTagDialog;
2010-01-16 17:12:47 +01:00
class EditTagDialog : public QDialog {
Q_OBJECT
public:
EditTagDialog(QWidget* parent = 0);
~EditTagDialog();
2010-01-16 17:12:47 +01:00
static const char* kHintText;
2010-01-16 17:12:47 +01:00
bool SetSongs(const SongList& songs);
void SetTagCompleter(LibraryBackend* backend);
2010-01-16 17:12:47 +01:00
public slots:
void accept();
private slots:
void SongsEdited();
2010-01-16 17:12:47 +01:00
private:
void SaveSong(const Song& song);
Ui_EditTagDialog* ui_;
2010-01-16 17:12:47 +01:00
SongList songs_;
QString common_artist_;
QString common_album_;
QString common_genre_;
int common_year_;
QFutureWatcher<void> watcher_;
QMutex taglib_mutex_;
2010-01-16 17:12:47 +01:00
};
#endif // EDITTAGDIALOG_H