SVN_SILENT made messages (.desktop file) - always resolve ours
[kdepim.git] / kalarm / lib / filedialog.h
bloba7574ba9eeb9caa96826b7b114d34020869a9ac1
1 /*
2 * filedialog.h - file save dialogue, with append option & confirm overwrite
3 * Program: kalarm
4 * Copyright © 2009 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.
21 #ifndef FILEDIALOG_H
22 #define FILEDIALOG_H
24 #include <KFileDialog>
26 class QCheckBox;
28 class FileDialog : public KFileDialog
30 Q_OBJECT
31 public:
32 FileDialog(const QUrl& startDir, const QString& filter,
33 QWidget* parent, QWidget* widget = Q_NULLPTR)
34 : KFileDialog(startDir, filter, parent, widget) {}
35 static QString getSaveFileName(const QUrl& dir = QUrl(), const QString& filter = QString(),
36 QWidget* parent = Q_NULLPTR, const QString& caption = QString(), bool* append = Q_NULLPTR);
38 private Q_SLOTS:
39 void appendToggled(bool);
41 private:
42 static QCheckBox* mAppendCheck;
45 #endif
47 // vim: et sw=4: