Add option to save album cover in album directory

This commit is contained in:
Jonas Kvinge
2019-03-11 23:07:11 +01:00
parent 242137a50c
commit 2211716d04
9 changed files with 308 additions and 55 deletions

View File

@@ -43,6 +43,11 @@ public:
static const char *kSettingsGroup;
enum SaveCover {
SaveCover_Hash = 1,
SaveCover_Pattern = 2
};
void Load();
void Save();
@@ -51,6 +56,7 @@ private slots:
void Remove();
void CurrentRowChanged(const QModelIndex &index);
void CoverSaveInAlbumDirChanged();
private:
Ui_CollectionSettingsPage *ui_;