Added playlist actions (insert, delete, move up, move down), with only insert working...
[kworship.git] / kworship / songdb / KwSongdbSongEditWidget.h
blobaddfa72c531137ca2b9cba5c92cada684b2ae9db
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 _KwSongdbSongEditWidget_h_
21 #define _KwSongdbSongEditWidget_h_
23 /**
24 * @file KwSongdbSongEditWidget.h
25 * @brief Widget for editing a song.
26 * @author James Hogan <james@albanarts.com>
29 #include "ui_KwSongdbSongEditWidget_base.h"
31 #include <QWidget>
33 class KwSongdbSong;
34 class KwSongdbVersion;
35 class KwSongdbVersionItem;
36 class KwSongdbSongBook;
38 /** Widget for editing a song.
39 * Allows editing of song information, song versions and lyrics.
41 class KwSongdbSongEditWidget : public QWidget, public Ui::KwSongdbSongEditWidget_base
43 Q_OBJECT
45 public:
48 * Constructors + destructor
51 /// Default constructor.
52 KwSongdbSongEditWidget();
54 /// Destructor.
55 virtual ~KwSongdbSongEditWidget();
57 public slots:
60 * Saving and loading
63 /// Load from database.
64 void load(KwSongdbSong* song, KwSongdbVersion* selectedVersion = 0);
66 /// Save to database.
67 void save();
69 /// Add a song version.
70 void addVersion();
72 signals:
75 * Signals
78 /// Emitted when the lyrics markup has changed.
79 void lyricsMarkupChangedSignal(const QString& lyricsMarkup);
81 /// Emitted when the song book is changed.
82 void songBookChangedSignal(KwSongdbSongBook* songBook);
84 /// Emitted when the changed state of the form changes.
85 void changed(bool changed);
87 private slots:
90 * Private slots
93 /// A different version has been selected.
94 void versionChanged(QListWidgetItem* current, QListWidgetItem* previous);
96 /// A different song book number has been selected.
97 void songBookNumberChanged(QListWidgetItem* current, QListWidgetItem* previous);
99 /// Lyrics markup edit box has been modified.
100 void lyricsMarkupChanged();
102 /// Selected song book has changed.
103 void songBookChanged(int index);
105 /// Button to edit song books has been clicked.
106 void editSongBooksClicked();
108 /// Update the list of song books.
109 void updateSongBooks();
111 /// Add a song book number to the version.
112 void addSongBookNumber();
114 /// Remove the selected song book number.
115 void removeSongBookNumber();
117 private:
120 * Variables
123 /// Song object.
124 KwSongdbSong* m_song;
126 /// Current version.
127 KwSongdbVersionItem* m_currentVersion;
131 #endif // _KwSongdbSongEditWidget_h_