1 /***************************************************************************
2 * This file is part of KWorship. *
3 * Copyright 2008 James Hogan <james@albanarts.com> *
5 * KWorship is free software: you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation, either version 2 of the License, or *
8 * (at your option) any later version. *
10 * KWorship is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
15 * You should have received a copy of the GNU General Public License *
16 * along with KWorship. If not, write to the Free Software Foundation, *
17 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
18 ***************************************************************************/
20 #ifndef _KwSongdbSongBookSongItem_h_
21 #define _KwSongdbSongBookSongItem_h_
24 * @file KwSongdbSongBookSongItem.h
25 * @brief A list widget item for a song book song.
26 * @author James Hogan <james@albanarts.com>
30 #include <QListWidgetItem>
32 class KwSongdbVersion
;
33 class KwSongdbSongBook
;
34 class KwSongdbSongBookSong
;
36 /// A list widget item for a song book song.
37 class KwSongdbSongBookSongItem
: public QObject
, public QListWidgetItem
44 * Constructors + destructor
47 /// Construct a new song book song.
48 KwSongdbSongBookSongItem(QListWidget
* parent
= 0);
50 /// Construct from an existing song book song.
51 KwSongdbSongBookSongItem(KwSongdbSongBookSong
* songBookSong
, QListWidget
* parent
= 0);
54 virtual ~KwSongdbSongBookSongItem();
60 /// Get the song book.
61 KwSongdbSongBook
* songBook();
63 /// Get the song book number
64 int songNumber() const;
67 KwSongdbVersion
* version();
75 /// Save the changes to the song book object.
76 void save(KwSongdbVersion
* version
);
78 /// Set the song book.
79 void setSongBook(KwSongdbSongBook
* songBook
);
81 /// Set the song book number.
82 void setSongNumber(int songNumber
);
93 /// Song book song object.
94 KwSongdbSongBookSong
* m_songBookSong
;
97 KwSongdbSongBook
* m_songBook
;
103 KwSongdbVersion
* m_version
;
107 #endif // _KwSongdbSongBookSongItem_h_