You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdemultimedia/juk/playlistitem.h

214 lines
6.5 KiB

/***************************************************************************
begin : Sun Feb 17 2002
copyright : (C) 2002 - 2004 by Scott Wheeler
email : wheeler@kde.org
***************************************************************************/
/***************************************************************************
* *
* 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 PLAYLISTITEM_H
#define PLAYLISTITEM_H
#include <tdelistview.h>
#include <ksharedptr.h>
#include <kdebug.h>
#include <tqvaluevector.h>
#include <tqptrdict.h>
#include "tagguesser.h"
#include "filehandle.h"
class Playlist;
class PlaylistItem;
class CollectionListItem;
class CollectionList;
typedef TQValueList<PlaylistItem *> PlaylistItemList;
/**
* Items for the Playlist and the baseclass for CollectionListItem.
* The constructors and destructor are protected and new items should be
* created via Playlist::createItem(). Items should be removed by
* Playlist::clear(), Playlist::deleteFromDisk(), Playlist::clearItem() or
* Playlist::clearItem().
*/
class PlaylistItem : public TDEListViewItem
{
friend class Playlist;
friend class SearchPlaylist;
friend class UpcomingPlaylist;
friend class CollectionList;
friend class CollectionListItem;
friend class TQPtrDict<PlaylistItem>;
friend class Pointer;
public:
enum ColumnType { TrackColumn = 0,
ArtistColumn = 1,
AlbumColumn = 2,
CoverColumn = 3,
TrackNumberColumn = 4,
GenreColumn = 5,
YearColumn = 6,
LengthColumn = 7,
BitrateColumn = 8,
CommentColumn = 9,
FileNameColumn = 10,
FullPathColumn = 11 };
/**
* A helper class to implement guarded pointer semantics.
*/
class Pointer
{
public:
Pointer() : m_item(0) {}
Pointer(PlaylistItem *item);
Pointer(const Pointer &p);
~Pointer();
Pointer &operator=(PlaylistItem *item);
bool operator==(const Pointer &p) const { return m_item == p.m_item; }
bool operator!=(const Pointer &p) const { return m_item != p.m_item; }
PlaylistItem *operator->() const { return m_item; }
PlaylistItem &operator*() const { return *m_item; }
operator PlaylistItem*() const { return m_item; }
static void clear(PlaylistItem *item);
private:
PlaylistItem *m_item;
static TQMap<PlaylistItem *, TQValueList<Pointer *> > m_map;
};
friend class Pointer;
static int lastColumn() { return FullPathColumn; }
void setFile(const FileHandle &file);
void setFile(const TQString &file);
FileHandle file() const;
virtual const TQPixmap *pixmap(int column) const;
virtual TQString text(int column) const;
virtual void setText(int column, const TQString &text);
void setPlaying(bool playing = true, bool master = true);
virtual void setSelected(bool selected);
void guessTagInfo(TagGuesser::Type type);
Playlist *playlist() const;
virtual CollectionListItem *collectionItem() const { return m_collectionItem; }
/**
* The widths of items are cached when they're updated for us in computations
* in the "weighted" listview column width mode.
*/
TQValueVector<int> cachedWidths() const;
/**
* This just refreshes from the in memory data. This may seem pointless at
* first, but this data is shared between all of the list view items that are
* based on the same file, so if another one of those items changes its data
* it is important to refresh the others.
*/
virtual void refresh();
/**
* This rereads the tag from disk. This affects all PlaylistItems based on
* the same file.
*/
virtual void refreshFromDisk();
/**
* Asks the item's playlist to remove the item (which uses deleteLater()).
*/
virtual void clear();
/**
* Returns properly casted item below this one.
*/
PlaylistItem *itemBelow() { return static_cast<PlaylistItem *>(TDEListViewItem::itemBelow()); }
/**
* Returns properly casted item above this one.
*/
PlaylistItem *itemAbove() { return static_cast<PlaylistItem *>(TDEListViewItem::itemAbove()); }
/**
* Returns a reference to the list of the currnetly playing items, with the
* first being the "master" item (i.e. the item from which the next track is
* chosen).
*/
static const PlaylistItemList &playingItems() { return m_playingItems; }
protected:
/**
* Items should always be created using Playlist::createItem() or through a
* subclss or friend class.
*/
PlaylistItem(CollectionListItem *item, Playlist *parent);
PlaylistItem(CollectionListItem *item, Playlist *parent, TQListViewItem *after);
/**
* This is the constructor that shold be used by subclasses.
*/
PlaylistItem(CollectionList *parent);
/**
* See the class documentation for an explanation of construction and deletion
* of PlaylistItems.
*/
virtual ~PlaylistItem();
virtual void paintCell(TQPainter *p, const TQColorGroup &cg, int column, int width, int align);
virtual void paintFocus(TQPainter *, const TQColorGroup &, const TQRect &) {}
virtual int compare(TQListViewItem *item, int column, bool ascending) const;
int compare(const PlaylistItem *firstItem, const PlaylistItem *secondItem, int column, bool ascending) const;
bool isValid() const;
struct Data : public TDEShared
{
Data() {}
Data(const TQFileInfo &info, const TQString &path) : fileHandle(info, path) {}
Data(const TQString &path) : fileHandle(path) {}
FileHandle fileHandle;
TQValueVector<TQCString> local8Bit;
TQValueVector<int> cachedWidths;
};
TDESharedPtr<Data> data() const { return d; }
private:
TDESharedPtr<Data> d;
void setup(CollectionListItem *item);
CollectionListItem *m_collectionItem;
bool m_watched;
static PlaylistItemList m_playingItems;
};
inline kdbgstream &operator<<(kdbgstream &s, const PlaylistItem &item)
{
if(&item == 0)
s << "(nil)";
else
s << item.text(PlaylistItem::TrackColumn);
return s;
}
#endif