File indexing completed on 2024-04-28 05:26:14

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 #pragma once
0011 
0012 #include <QWizardPage>
0013 
0014 class KFileWidget;
0015 
0016 class SelectFilesPage : public QWizardPage
0017 {
0018     Q_OBJECT
0019 
0020 public:
0021     explicit SelectFilesPage(QWidget *parent = nullptr);
0022 
0023     void initializePage() override;
0024     bool isComplete() const override;
0025 
0026 private Q_SLOTS:
0027     void selectionChanged();
0028 
0029 private:
0030     KFileWidget *m_files;
0031 };