Lots of work on album grouping in the playlist. Now handles ragging around stuff...
[amarok.git] / src / playlist / PlaylistAlbumGroup.h
blob1dcbfc2adf3ba499a8e0f5aca3ae4c0394deb281
1 /***************************************************************************
2 * Copyright (c) 2007 Nikolaj Hald Nielsen <nhnFreespirit@gmail.com> *
3 * *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation; either version 2 of the License, or *
7 * (at your option) any later version. *
8 * *
9 * This program is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12 * GNU General Public License for more details. *
13 * *
14 * You should have received a copy of the GNU General Public License *
15 * along with this program; if not, write to the *
16 * Free Software Foundation, Inc., *
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02111-1307, USA. *
18 ***************************************************************************/
20 #ifndef PLAYLISTPLAYLISTALBUMGROUP_H
21 #define PLAYLISTPLAYLISTALBUMGROUP_H
23 #include <QList>
26 namespace Playlist {
29 enum GroupMode
31 None = 1,
32 Head,
33 Head_Collapsed,
34 Body,
35 End,
36 Collapsed
39 struct Group {
41 QList < int > rows;
42 bool collapsed;
46 enum OffsetMode
48 OffsetNone = 0,
49 OffsetBetween,
50 OffsetAfter
55 /**
56 A helper class representing the group(s) of tracks for a specific album. For each album, the rows
57 of all tracks are added and this class keeps tracks of what kind of GroupMode each row should use
59 @author
61 class AlbumGroup{
62 public:
63 AlbumGroup( );
65 ~AlbumGroup();
67 void addRow( int row );
68 int groupMode( int row );
70 void setCollapsed( int row, bool collapsed );
71 int elementsInGroup( int row );
73 int firstInGroup( int row );
74 int lastInGroup( int row );
75 void removeGroup( int row );
77 void removeBetween( int first, int last );
78 void offsetBetween( int first, int last, int offset );
80 int subgroupCount();
82 void printGroupRows();
84 private:
86 QList< Group > m_groups;
92 #endif