Fix for windows installation, and fix export macros
[kworship.git] / kworship / songdb / KwSongdbSong.h
blobcc9d0a17c67ef8f51ec8cb2f89323173088d4bf0
1 /***************************************************************************
2 * This file is part of KWorship. *
3 * Copyright 2008 James Hogan <james@albanarts.com> *
4 * *
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. *
9 * *
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. *
14 * *
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 _KwSongdbSong_h_
21 #define _KwSongdbSong_h_
23 /**
24 * @file KwSongdbSong.h
25 * @brief A song from the database.
26 * @author James Hogan <james@albanarts.com>
29 #include "KwSongdbExport.h"
31 #include <QString>
32 #include <QList>
34 class KwSongdbVersion;
36 /// A song from the database.
37 class KWSONGDB_EXPORT KwSongdbSong
39 public:
42 * Types
45 /// Version data fields.
46 enum Field
48 Name = 0x1,
49 AlternateName = 0x2
51 Q_DECLARE_FLAGS(Fields, Field)
54 * Constructors + destructor
57 /** Construct a new song for database insertion.
58 * This constructs a blank song which will be inserted into the
59 * database when it is saved.
61 KwSongdbSong();
63 /** Construct from the database.
64 * Loads the song information from the database.
65 * @param id Database id of song.
67 KwSongdbSong(int id);
69 /// Destructor.
70 virtual ~KwSongdbSong();
73 * Accessors
76 /// Get the id.
77 int id() const;
79 /// Get the name of the song.
80 QString name() const;
82 /// Get the alternate name of the song.
83 QString alternateName() const;
85 /// Get list of song versions.
86 QList<KwSongdbVersion*> versions();
89 * Mutators
92 /// Set the name.
93 void setName(const QString& name);
95 /// Set the alternate name.
96 void setAlternateName(const QString& name);
98 /// Save changes to the song data.
99 void save();
101 /// Register a version object.
102 void registerVersion(KwSongdbVersion* version);
104 private:
107 * Variables
110 /// Song id.
111 int m_id;
113 /// Which fields have been modified.
114 Fields m_modifiedFields;
116 /// Name.
117 QString m_name;
119 /// Alternate name.
120 QString m_alternateName;
122 /// Whether versions have been loaded.
123 bool m_versionsLoaded;
125 /// Version ids.
126 QList<int> m_versionIds;
129 Q_DECLARE_OPERATORS_FOR_FLAGS(KwSongdbSong::Fields)
131 #endif // _KwSongdbSong_h_