SVN_SILENT made messages (.desktop file)
[kdepim.git] / kalarm / templatepickdlg.h
blob64bb3691ec23722021c9cf8af9f500f4075644b8
1 /*
2 * templatepickdlg.h - dialog to choose an alarm template
3 * Program: kalarm
4 * Copyright © 2004-2011 by David Jarvie <djarvie@kde.org>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 #ifndef TEMPLATEPICKDLG_H
21 #define TEMPLATEPICKDLG_H
23 #include <kalarmcal/kaevent.h>
25 #include <QDialog>
26 class QPushButton;
27 class QResizeEvent;
28 namespace KCal { class Event; }
29 class TemplateListModel;
30 class TemplateListView;
32 using namespace KAlarmCal;
34 class TemplatePickDlg : public QDialog
36 Q_OBJECT
37 public:
38 explicit TemplatePickDlg(KAEvent::Actions, QWidget* parent = Q_NULLPTR);
39 KAEvent selectedTemplate() const;
40 protected:
41 void resizeEvent(QResizeEvent*) Q_DECL_OVERRIDE;
42 private Q_SLOTS:
43 void slotSelectionChanged();
44 private:
45 TemplateListModel* mListFilterModel;
46 TemplateListView* mListView;
47 QPushButton* mOkButton;
50 #endif // TEMPLATEPICKDLG_H
52 // vim: et sw=4: