1 /***************************************************************************
2 * Copyright (c) 2007 Nikolaj Hald Nielsen <nhnFreespirit@gmail.com> *
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. *
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. *
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
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
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
);
82 void printGroupRows();
86 QList
< Group
> m_groups
;