aboutsummaryrefslogtreecommitdiff
path: root/src/qmmpui/playlistgroup.h
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2014-04-29 11:11:54 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2014-04-29 11:11:54 +0000
commitb44d843f24cd7c2f8dd4cd76b5385507dc7b02b8 (patch)
treed8a1d0b7ebaa52c70bc570d75f5e48517c5ceba2 /src/qmmpui/playlistgroup.h
parentba0f4e2d0e07d46229335e4b06a6c14d252a9bcd (diff)
downloadqmmp-b44d843f24cd7c2f8dd4cd76b5385507dc7b02b8.tar.gz
qmmp-b44d843f24cd7c2f8dd4cd76b5385507dc7b02b8.tar.bz2
qmmp-b44d843f24cd7c2f8dd4cd76b5385507dc7b02b8.zip
fixed api documentation
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@4270 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/qmmpui/playlistgroup.h')
-rw-r--r--src/qmmpui/playlistgroup.h62
1 files changed, 56 insertions, 6 deletions
diff --git a/src/qmmpui/playlistgroup.h b/src/qmmpui/playlistgroup.h
index dbd21b806..8146b5aff 100644
--- a/src/qmmpui/playlistgroup.h
+++ b/src/qmmpui/playlistgroup.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2013 by Ilya Kotov *
+ * Copyright (C) 2013-2014 by Ilya Kotov *
* forkotov02@hotmail.ru *
* *
* This program is free software; you can redistribute it and/or modify *
@@ -24,32 +24,82 @@
#include "playlisttrack.h"
#include "playlistitem.h"
+/** @brief The PlayListTrack class provides a group for use with the PlayListModel class.
+ * @author Ilya Kotov <forkotov02@hotmail.ru>
+ */
class PlayListGroup : public PlayListItem
{
public:
+ /*!
+ * Constructor.
+ * @param formattedTitle Title of the group.
+ */
PlayListGroup(const QString &formattedTitle);
-
+ /*!
+ * Object destructor.
+ */
virtual ~PlayListGroup();
-
+ /*!
+ * First index of the group.
+ */
int firstIndex;
+ /*!
+ * Last index of the group.
+ */
int lastIndex;
-
+ /*!
+ * Returns formatted title of the group.
+ */
const QString formattedTitle();
+ /*!
+ * Adds track \b track to the the group.
+ */
void addTrack(PlayListTrack *track);
+ /*!
+ * Adds a list of tracks \b tracks to the the group.
+ */
void addTracks(QList<PlayListTrack *> tracks);
+ /*!
+ * Inserts a track \b tracks to the the group at the position \b pos.
+ */
void insertTrack(int pos, PlayListTrack *track);
+ /*!
+ * Returns \b true if the group contains track \b track.
+ * Otherwise returns \b false.
+ */
bool contains(PlayListTrack *track) const;
+ /*!
+ * Returns \b true if the group is empty.
+ * Otherwise returns \b false.
+ */
bool isEmpty() const;
+ /*!
+ * Returns track \b track from the group.
+ */
void remove(PlayListTrack *track);
+ /*!
+ * Returns a list of tracks if the group.
+ */
QList<PlayListTrack *> tracks();
+ /*!
+ * Returns number of tracks if the group.
+ */
int count() const;
/*!
* Returns formatted length of the item.
*/
const QString formattedLength() { return QString(); }
- virtual bool isGroup() const { return true; }
+ /*!
+ * Returns \b true.
+ */
+ bool isGroup() const;
+ /*!
+ * Moves the track from position \b from to position \b to.
+ */
void move(int from, int to);
-
+ /*!
+ * Removes all tracks from the group and returns a list of them.
+ */
QList<PlayListTrack *> takeAll();
private: