Revert previous commit, was incorrect
[amarok.git] / src / playlist / PlaylistAlbumGroup.h
blobd11f58291c41ba8f71c43f6799504117d6ef938e
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 02110-1301, USA. *
18 ***************************************************************************/
20 #ifndef PLAYLISTPLAYLISTALBUMGROUP_H
21 #define PLAYLISTPLAYLISTALBUMGROUP_H
23 #include <QList>
26 namespace Playlist
28 // The Order of this enum is important, do not change it.
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;
45 enum OffsetMode
47 OffsetNone = 0,
48 OffsetBetween,
49 OffsetAfter
52 /**
53 A helper class representing the group(s) of tracks for a specific album. For each album, the rows
54 of all tracks are added and this class keeps tracks of what kind of GroupMode each row should use
55 @author
57 class AlbumGroup
59 public:
60 AlbumGroup( );
62 ~AlbumGroup();
64 void addRow( int row );
65 int groupMode( int row );
67 bool alternate( int row );
69 void setCollapsed( int row, bool collapsed );
70 int elementsInGroup( int row );
72 int firstInGroup( int row );
73 int lastInGroup( int row );
74 void removeGroup( int row );
76 void removeBetween( int first, int last );
77 void offsetBetween( int first, int last, int offset );
79 int subgroupCount();
81 void printGroupRows();
83 private:
84 QList<Group> m_groups;
90 #endif