umbrello 2.38.4
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
codeimportingwizard.h
Go to the documentation of this file.
1/*
2 SPDX-FileCopyrightText: 2011 Andi Fischer <andi.fischer@hispeed.ch>
3
4 SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
5*/
6#ifndef CODEIMPORTINGWIZARD_H
7#define CODEIMPORTINGWIZARD_H
8
9// qt includes
10#include <QWizard>
11
12class QFileInfo;
13class QWizardPage;
16
20class CodeImportingWizard : public QWizard
21{
22 Q_OBJECT
23public:
25
28
29 QList<QFileInfo> selectedFiles();
30
31private:
32 QWizardPage* createSelectionPage();
33 QWizardPage* createStatusPage();
34
37
38};
39
40#endif
Definition codeimpselectpage.h:22
Definition codeimpstatuspage.h:31
Definition codeimportingwizard.h:21
~CodeImportingWizard()
Definition codeimportingwizard.cpp:42
CodeImpSelectPage * m_SelectionPage
Definition codeimportingwizard.h:35
@ SelectionPage
Definition codeimportingwizard.h:24
@ StatusPage
Definition codeimportingwizard.h:24
QWizardPage * createStatusPage()
Definition codeimportingwizard.cpp:62
CodeImportingWizard()
Definition codeimportingwizard.cpp:27
CodeImpStatusPage * m_StatusPage
Definition codeimportingwizard.h:36
QList< QFileInfo > selectedFiles()
Definition codeimportingwizard.cpp:74
QWizardPage * createSelectionPage()
Definition codeimportingwizard.cpp:51