/src/libtomahawk/playlist/AlbumModel.h
http://github.com/tomahawk-player/tomahawk · C Header · 68 lines · 34 code · 16 blank · 18 comment · 0 complexity · 9dc2ef857bd78a306a3c88abd25cd8b6 MD5 · raw file
- /* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
- *
- * Copyright 2010-2011, Christian Muehlhaeuser <muesli@tomahawk-player.org>
- * Copyright 2010-2011, Jeff Mitchell <jeff@tomahawk-player.org>
- *
- * Tomahawk 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.
- *
- * Tomahawk 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 Tomahawk. If not, see <http://www.gnu.org/licenses/>.
- */
- #ifndef ALBUMMODEL_H
- #define ALBUMMODEL_H
- #include <QPixmap>
- #include "Album.h"
- #include "PlaylistInterface.h"
- #include "database/DatabaseCommand_AllAlbums.h"
- #include "PlayableModel.h"
- #include "DllMacro.h"
- class PlayableItem;
- class QMetaData;
- class DLLEXPORT AlbumModel : public PlayableModel
- {
- Q_OBJECT
- public:
- explicit AlbumModel( QObject* parent = 0 );
- virtual ~AlbumModel();
- Tomahawk::collection_ptr collection() const { return m_collection; }
- void addCollection( const Tomahawk::collection_ptr& collection, bool overwrite = false );
- void addFilteredCollection( const Tomahawk::collection_ptr& collection, unsigned int amount, Tomahawk::DatabaseCommand_AllAlbums::SortOrder order, bool overwrite = false );
- PlayableItem* findItem( const Tomahawk::artist_ptr& artist ) const;
- PlayableItem* findItem( const Tomahawk::album_ptr& album ) const;
- public slots:
- void addAlbums( const QList<Tomahawk::album_ptr>& albums );
- void addArtists( const QList<Tomahawk::artist_ptr>& artists );
- void addQueries( const QList<Tomahawk::query_ptr>& queries );
- signals:
- private slots:
- void onSourceAdded( const Tomahawk::source_ptr& source );
- void onCollectionChanged();
- private:
- bool m_overwriteOnAdd;
- Tomahawk::collection_ptr m_collection;
- };
- #endif // ALBUMMODEL_H