File indexing completed on 2024-04-28 16:26:32

0001 /*
0002  *  Copyright 2015  Andreas Cord-Landwehr <cordlandwehr@kde.org>
0003  *
0004  *  This program is free software; you can redistribute it and/or
0005  *  modify it under the terms of the GNU General Public License as
0006  *  published by the Free Software Foundation; either version 2 of
0007  *  the License, or (at your option) any later version.
0008  *
0009  *  This program is distributed in the hope that it will be useful,
0010  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
0011  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
0012  *  GNU General Public License for more details.
0013  *
0014  *  You should have received a copy of the GNU General Public License
0015  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
0016  */
0017 
0018 #ifndef KILEPROGRESSDIALOG_H
0019 #define KILEPROGRESSDIALOG_H
0020 
0021 #include <QMap>
0022 #include <QProgressDialog>
0023 
0024 namespace KileWidget {
0025 
0026 class ProgressDialog : public QProgressDialog
0027 {
0028     Q_OBJECT
0029 
0030 public:
0031     explicit ProgressDialog(QWidget *parent = Q_NULLPTR);
0032     ~ProgressDialog();
0033     virtual void closeEvent(QCloseEvent *event) Q_DECL_OVERRIDE;
0034 
0035 public:
0036 
0037 private:
0038 };
0039 }
0040 
0041 #endif