Files
cantata/models/albumsmodel.h
craig.p.drummond d5d5c23479 - Remove cover size setting, set automtically.
- Artist images only shown in grid view.
- No images, or icons, shown in basic tree view.
2014-07-16 19:06:33 +00:00

156 lines
4.5 KiB
C++

/*
* Cantata
*
* Copyright (c) 2011-2014 Craig Drummond <craig.p.drummond@gmail.com>
* Copyright (c) 2014 Niklas Wenzel <nikwen.developer@gmail.com>
*
* ----
*
* This program 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.
*
* This program 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 this program; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef ALBUMSMODEL_H
#define ALBUMSMODEL_H
#include <QList>
#include <QSet>
#include <QStringList>
#include "mpd/song.h"
#include "musiclibraryitemalbum.h"
#include "actionmodel.h"
class MusicLibraryItemRoot;
class QSize;
class QPixmap;
class AlbumsModel : public ActionModel
{
Q_OBJECT
public:
enum Sort
{
Sort_AlbumArtist,
Sort_AlbumYear,
Sort_ArtistAlbum,
Sort_ArtistYear,
Sort_YearAlbum,
Sort_YearArtist
};
static Sort toSort(const QString &str);
static QString sortStr(Sort m);
enum Columnms
{
COL_NAME,
COL_FILES,
COL_GENRES
};
struct Item
{
virtual bool isAlbum() { return false; }
virtual ~Item() { }
};
struct AlbumItem;
struct SongItem : public Item, public Song
{
SongItem(const Song &s, AlbumItem *p=0) : Song(s), parent(p) { }
virtual ~SongItem() { }
AlbumItem *parent;
};
struct AlbumItem : public Item
{
AlbumItem(const QString &ar, const QString &al, const QString &i, quint16 y);
virtual ~AlbumItem();
bool operator<(const AlbumItem &o) const;
bool isAlbum() { return true; }
void clearSongs();
void setSongs(MusicLibraryItemAlbum *ai);
quint32 trackCount();
quint32 totalTime();
void updateStats();
#ifdef ENABLE_UBUNTU
QString cover();
#endif
bool isSingleTracks() const { return Song::SingleTracks==type; }
const SongItem *getCueFile() const;
QString albumDisplay() const { return Song::displayAlbum(album, year); }
const QString & sortArtist() const { return nonTheArtist.isEmpty() ? artist : nonTheArtist; }
const QString & albumId() const { return id.isEmpty() ? album : id; }
const Song & coverSong();
QString artist;
QString nonTheArtist;
QString album;
QString id;
quint16 year;
QList<SongItem *> songs;
QSet<QString> genres;
bool updated;
Song::Type type;
quint32 numTracks;
quint32 time;
Song cSong;
bool isNew;
#ifdef ENABLE_UBUNTU
QString coverFile;
bool coverRequested;
#endif
};
static AlbumsModel * self();
AlbumsModel(QObject *parent=0);
~AlbumsModel();
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
int rowCount(const QModelIndex &parent = QModelIndex()) const;
bool hasChildren(const QModelIndex &parent = QModelIndex()) const;
int columnCount(const QModelIndex&) const { return 1; }
QModelIndex parent(const QModelIndex &index) const;
QModelIndex index(int row, int column, const QModelIndex &parent) const;
QVariant data(const QModelIndex &, int) const;
Qt::ItemFlags flags(const QModelIndex &index) const;
QStringList filenames(const QModelIndexList &indexes, bool allowPlaylists=false) const;
QList<Song> songs(const QModelIndexList &indexes, bool allowPlaylists=false) const;
#ifndef ENABLE_UBUNTU
QMimeData * mimeData(const QModelIndexList &indexes) const;
#endif
void clear();
bool isEnabled() const { return enabled; }
void setEnabled(bool e);
int albumSort() const;
void setAlbumSort(int s);
Q_SIGNALS:
void updated();
public Q_SLOTS:
void clearNewState();
void coverLoaded(const Song &song, int s);
// Touch version...
void setCover(const Song &song, const QImage &img, const QString &file);
void update(const MusicLibraryItemRoot *root);
private:
bool enabled;
// bool coversRequested;
mutable QList<AlbumItem *> items;
};
#endif