aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/qmmp/volume.h3
-rw-r--r--src/qmmpui/playlistmodel.h15
2 files changed, 18 insertions, 0 deletions
diff --git a/src/qmmp/volume.h b/src/qmmp/volume.h
index 7cd169aa3..e0f3f1b77 100644
--- a/src/qmmp/volume.h
+++ b/src/qmmp/volume.h
@@ -69,6 +69,9 @@ public:
virtual bool hasNotifySignal() const;
signals:
+ /*!
+ * Emitted if volume is changed.
+ */
void changed();
};
diff --git a/src/qmmpui/playlistmodel.h b/src/qmmpui/playlistmodel.h
index 549339b2e..d8602d531 100644
--- a/src/qmmpui/playlistmodel.h
+++ b/src/qmmpui/playlistmodel.h
@@ -81,6 +81,21 @@ struct SimpleSelection
*
* @author Vladimir Kuznetsov <vovanec@gmail.com>
* @author Ilya Kotov <forkotov02@hotmail.ru>
+ *
+ * Playlist Structure
+ * -----------------------
+ * | item | track | item |
+ * | index | index | type |
+ * -----------------------
+ * | 0 | | group |
+ * | 1 | 0 | track |
+ * | 2 | 1 | track |
+ * | 3 | 2 | track |
+ * | 4 | 3 | track |
+ * | 5 | | group |
+ * | 6 | 4 | track |
+ * | 7 | 5 | track |
+ * | 8 | 6 | track |
*/
class PlayListModel : public QObject
{