EditTagDialog: Disable fields for unsupported tags

This commit is contained in:
Jonas Kvinge
2022-11-23 22:06:45 +01:00
parent 1fdeb50d93
commit 2cb29d06b3
3 changed files with 124 additions and 1 deletions

View File

@@ -298,6 +298,17 @@ class Song {
static bool save_embedded_cover_supported(const FileType filetype);
bool save_embedded_cover_supported() const { return url().isLocalFile() && save_embedded_cover_supported(filetype()) && !has_cue(); };
bool additional_tags_supported() const;
bool albumartist_supported() const;
bool composer_supported() const;
bool performer_supported() const;
bool grouping_supported() const;
bool genre_supported() const;
bool compilation_supported() const;
bool rating_supported() const;
bool comment_supported() const;
bool lyrics_supported() const;
const QUrl &stream_url() const;
const QUrl &effective_stream_url() const;
bool init_from_file() const;