File indexing completed on 2024-05-05 17:15:08

0001 /***************************************************************************
0002     date                 : Jan 22 2004
0003     version              : 0.10
0004     copyright            : (C) 2004 by Holger Danielsson
0005     email                : holger.danielsson@t-online.de
0006  ***************************************************************************/
0007 
0008 /***************************************************************************
0009  *                                                                         *
0010  *   This program is free software; you can redistribute it and/or modify  *
0011  *   it under the terms of the GNU General Public License as published by  *
0012  *   the Free Software Foundation; either version 2 of the License, or     *
0013  *   (at your option) any later version.                                   *
0014  *                                                                         *
0015  ***************************************************************************/
0016 
0017 #ifndef CLEANDIALOG_H
0018 #define CLEANDIALOG_H
0019 
0020 #include <QDialog>
0021 
0022 #include <QStringList>
0023 
0024 class QTreeWidget;
0025 
0026 /**
0027  * @author Holger Danielsson
0028  */
0029 
0030 namespace KileDialog
0031 {
0032 class Clean : public QDialog
0033 {
0034     Q_OBJECT
0035 
0036 public:
0037     Clean(QWidget *parent, const QString &filename, const QStringList &extlist);
0038     ~Clean();
0039     QStringList cleanList();
0040 
0041 private:
0042     QTreeWidget *m_listview;
0043     QStringList m_extlist;
0044 };
0045 }
0046 
0047 #endif