diff options
Diffstat (limited to 'src/qmmpui/playlistmodel.h')
| -rw-r--r-- | src/qmmpui/playlistmodel.h | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/src/qmmpui/playlistmodel.h b/src/qmmpui/playlistmodel.h index c26572fe4..d61dea152 100644 --- a/src/qmmpui/playlistmodel.h +++ b/src/qmmpui/playlistmodel.h @@ -108,8 +108,13 @@ public: * Object destructor. */ ~PlayListModel(); - + /*! + * Returns playlist name. + */ QString name() const; + /*! + * Sets the name of the playlist to \b name. + */ void setName(const QString &name); /*! * Returns number of items. @@ -119,7 +124,9 @@ public: * Returns the current item. */ PlayListItem* currentItem(); - + /*! + * Returns the next playing item or 0 if next item is unknown. + */ PlayListItem* nextItem(); /*! * Returns the row of the \b item @@ -249,6 +256,10 @@ public: */ bool isShuffle() const; /*! + * Returns \b true if the playlist contains an item with URL \b url; otherwise returns \b false. + */ + bool contains(const QString &url); + /*! * Enum of available sort modes */ enum SortMode @@ -388,7 +399,11 @@ public slots: /*! * Removes invalid items from playlist */ - void clearInvalidItems(); + void removeInvalidItems(); + /*! + * Removes duplicate items by URL. + */ + //void removeDuplicates(); private: /*! |
