File indexing completed on 2024-04-28 16:43:21

0001 /*
0002  * This file is part of the KDE project
0003  *
0004  * SPDX-FileCopyrightText: 2010-2011 Alejandro Fiestas Olivares <afiestas@kde.org>
0005  * SPDX-FileCopyrightText: 2010-2011 UFO Coders <info@ufocoders.com>
0006  *
0007  * SPDX-License-Identifier: LGPL-2.0-or-later
0008  */
0009 
0010 #ifndef SELECTFILESPAGE_H
0011 #define SELECTFILESPAGE_H
0012 
0013 #include <QWizardPage>
0014 
0015 class KFileWidget;
0016 
0017 class SelectFilesPage : public QWizardPage
0018 {
0019     Q_OBJECT
0020 
0021 public:
0022     explicit SelectFilesPage(QWidget *parent = nullptr);
0023 
0024     void initializePage() override;
0025     bool isComplete() const override;
0026 
0027 private Q_SLOTS:
0028     void selectionChanged();
0029 
0030 private:
0031     KFileWidget *m_files;
0032 };
0033 
0034 #endif // SELECTFILESPAGE_H