- Artist images only shown in grid view. - No images, or icons, shown in basic tree view.
118 lines
4.5 KiB
C++
118 lines
4.5 KiB
C++
/*
|
|
* Cantata
|
|
*
|
|
* Copyright (c) 2011-2014 Craig Drummond <craig.p.drummond@gmail.com>
|
|
*
|
|
*/
|
|
/*
|
|
* Copyright (c) 2008 Sander Knopper (sander AT knopper DOT tk) and
|
|
* Roeland Douma (roeland AT rullzer DOT com)
|
|
*
|
|
* This file is part of QtMPC.
|
|
*
|
|
* QtMPC 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 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* QtMPC 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 QtMPC. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef MUSIC_LIBRARY_ITEM_ROOT_H
|
|
#define MUSIC_LIBRARY_ITEM_ROOT_H
|
|
|
|
#include <QList>
|
|
#include <QVariant>
|
|
#include <QHash>
|
|
#include <QSet>
|
|
#include <QDateTime>
|
|
#include <QModelIndex>
|
|
#include <QImage>
|
|
#include "musiclibraryitem.h"
|
|
#include "mpd/song.h"
|
|
#include "support/icon.h"
|
|
|
|
class QDateTime;
|
|
class QXmlStreamReader;
|
|
class QXmlStreamWriter;
|
|
class MusicLibraryItemArtist;
|
|
class MusicModel;
|
|
|
|
class MusicLibraryProgressMonitor
|
|
{
|
|
public:
|
|
virtual ~MusicLibraryProgressMonitor() { }
|
|
virtual void readProgress(double pc) =0;
|
|
virtual void writeProgress(double pc) =0;
|
|
virtual bool wasStopped() const =0;
|
|
};
|
|
|
|
class MusicLibraryItemRoot : public MusicLibraryItemContainer
|
|
{
|
|
public:
|
|
MusicLibraryItemRoot(const QString &name=QString(), bool albumArtistSupport=true, bool flatHierarchy=false)
|
|
: MusicLibraryItemContainer(name, 0)
|
|
, supportsAlbumArtist(albumArtistSupport)
|
|
, isFlat(flatHierarchy)
|
|
, m_model(0) {
|
|
}
|
|
virtual ~MusicLibraryItemRoot() { }
|
|
|
|
virtual Icon icon() const { return Icon(); }
|
|
virtual QImage image() const { return QImage(); }
|
|
virtual Song fixPath(const Song &orig, bool) const { return orig; }
|
|
virtual const QString & id() const { return m_itemData; }
|
|
virtual bool canPlaySongs() const { return true; }
|
|
virtual bool isOnlineService() const { return false; }
|
|
virtual bool isDevice() const { return false; }
|
|
MusicLibraryItemArtist * artist(const Song &s, bool create=true);
|
|
MusicLibraryItemArtist * createArtist(const Song &s);
|
|
void groupSingleTracks();
|
|
void groupMultipleArtists();
|
|
bool isFromSingleTracks(const Song &s) const;
|
|
void refreshIndexes();
|
|
void remove(MusicLibraryItemArtist *artist);
|
|
QSet<Song> allSongs(bool revertVa=false) const;
|
|
void getDetails(QSet<QString> &artists, QSet<QString> &albumArtists, QSet<QString> &composers, QSet<QString> &albums, QSet<QString> &genres);
|
|
void updateSongFile(const Song &from, const Song &to);
|
|
void toXML(const QString &filename, const QDateTime &date=QDateTime(), bool dateUnreliable=false, MusicLibraryProgressMonitor *prog=0) const;
|
|
void toXML(QXmlStreamWriter &writer, const QDateTime &date=QDateTime(), bool dateUnreliable=false, MusicLibraryProgressMonitor *prog=0) const;
|
|
quint32 fromXML(const QString &filename, const QDateTime &date=QDateTime(), bool *dateUnreliable=0, const QString &baseFolder=QString(), MusicLibraryProgressMonitor *prog=0);
|
|
quint32 fromXML(QXmlStreamReader &reader, const QDateTime &date=QDateTime(), bool *dateUnreliable=0, const QString &baseFolder=QString(), MusicLibraryProgressMonitor *prog=0);
|
|
Type itemType() const { return Type_Root; }
|
|
void add(const QSet<Song> &songs);
|
|
bool supportsAlbumArtistTag() const { return supportsAlbumArtist; }
|
|
void setSupportsAlbumArtistTag(bool s) { supportsAlbumArtist=s; }
|
|
virtual void toggleGrouping();
|
|
void applyGrouping();
|
|
void clearItems();
|
|
void setModel(MusicModel *m) { m_model=m; }
|
|
bool flat() const { return isFlat; }
|
|
|
|
virtual QModelIndex index() const { return QModelIndex(); }
|
|
bool update(const QSet<Song> &songs);
|
|
const MusicLibraryItem * findSong(const Song &s) const;
|
|
bool songExists(const Song &s) const;
|
|
bool updateSong(const Song &orig, const Song &edit);
|
|
void addSongToList(const Song &s);
|
|
void removeSongFromList(const Song &s);
|
|
static QString artistName(const Song &s);
|
|
|
|
protected:
|
|
QString songArtist(const Song &s) const;
|
|
|
|
protected:
|
|
bool supportsAlbumArtist; // TODO: ALBUMARTIST: Remove when libMPT supports album artist!
|
|
bool isFlat;
|
|
QHash<QString, int> m_indexes;
|
|
MusicModel *m_model;
|
|
};
|
|
|
|
#endif
|