From e2de64d6f1beb9e492daf5b886e19933c1fa41dd Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- juk/coverinfo.h | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 juk/coverinfo.h (limited to 'juk/coverinfo.h') diff --git a/juk/coverinfo.h b/juk/coverinfo.h new file mode 100644 index 00000000..1caae8d0 --- /dev/null +++ b/juk/coverinfo.h @@ -0,0 +1,67 @@ +/*************************************************************************** + copyright : (C) 2004 Nathan Toone + email : nathan@toonetown.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. * + * * + ***************************************************************************/ + +#ifndef COVERINFO_H +#define COVERINFO_H + +#include + +#include "filehandle.h" +#include "covermanager.h" + +class CoverInfo +{ + friend class FileHandle; + +public: + enum CoverSize { FullSize, Thumbnail }; + + CoverInfo(const FileHandle &file); + + bool hasCover(); + + void clearCover(); + void setCover(const QImage &image = QImage()); + + // Use this to assign to a specific cover id. + void setCoverId(coverKey id); + + /** + * This function sets the cover identifier for all tracks that have the + * same Artist and Album as this track, to the cover identifier of this + * track. + * + * @param overwriteExistingCovers If set to true, this function will always + * apply the new cover to a track even if the track already had + * a different cover set. + */ + void applyCoverToWholeAlbum(bool overwriteExistingCovers = false) const; + + coverKey coverId() const { return m_coverKey; } + + QPixmap pixmap(CoverSize size) const; + void popup() const; + +private: + QString coverLocation(CoverSize size) const; + bool convertOldStyleCover() const; + + FileHandle m_file; + bool m_hasCover; + bool m_haveCheckedForCover; + mutable coverKey m_coverKey; + mutable bool m_needsConverting; +}; +#endif + -- cgit v1.2.1