File indexing completed on 2024-05-12 05:07:34

0001 /*
0002     SPDX-FileCopyrightText: 2017 Ralf Habacker <ralf.habacker@freenet.de>
0003     SPDX-FileCopyrightText: 2017 Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>
0004     SPDX-FileCopyrightText: 2020 Thomas Baumgart <tbaumgart@kde.org>
0005     SPDX-License-Identifier: GPL-2.0-or-later
0006 */
0007 
0008 #ifndef KTEMPLATEEXPORTDLG_H
0009 #define KTEMPLATEEXPORTDLG_H
0010 
0011 #include "kmm_templates_export.h"
0012 
0013 #include <QDialog>
0014 
0015 namespace Ui {
0016 class KTemplateExportDlg;
0017 }
0018 
0019 class KMM_TEMPLATES_EXPORT KTemplateExportDlg : public QDialog
0020 {
0021     Q_OBJECT
0022 
0023 public:
0024     explicit KTemplateExportDlg(QWidget *parent = nullptr);
0025     ~KTemplateExportDlg();
0026 
0027     QString title() const;
0028     QString shortDescription() const;
0029     QString longDescription() const;
0030 
0031 private:
0032     Ui::KTemplateExportDlg *ui;
0033 };
0034 
0035 #endif // KTEMPLATEEXPORTDLG_H