blob: 48b2f6b036c3a51ead9bb9ed5e162b11bbb84a5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include "utils_global.h"
#include "filepath.h"
#include "infolabel.h"
#include "wizardpage.h"
namespace Utils {
class QTCREATOR_UTILS_EXPORT ProjectIntroPage : public WizardPage
{
Q_OBJECT
Q_PROPERTY(QString description READ description WRITE setDescription DESIGNABLE true)
Q_PROPERTY(Utils::FilePath filePath READ filePath WRITE setFilePath DESIGNABLE true)
Q_PROPERTY(QString projectName READ projectName WRITE setProjectName DESIGNABLE true)
Q_PROPERTY(bool useAsDefaultPath READ useAsDefaultPath WRITE setUseAsDefaultPath DESIGNABLE true)
Q_PROPERTY(bool forceSubProject READ forceSubProject WRITE setForceSubProject DESIGNABLE true)
public:
explicit ProjectIntroPage(QWidget *parent = nullptr);
~ProjectIntroPage() override;
QString projectName() const;
FilePath filePath() const;
QString description() const;
bool useAsDefaultPath() const;
bool isComplete() const override;
bool forceSubProject() const;
void setForceSubProject(bool force);
void setProjectList(const QStringList &projectList);
void setProjectDirectories(const FilePaths &directoryList);
int projectIndex() const;
bool validateProjectName(const QString &name, QString *errorMessage);
// Calls slotChanged() - i.e. tell the page that some of its fields have been updated.
// This function is useful if you programmatically update the fields of the page (i.e. from
// your client code).
void fieldsUpdated();
signals:
void activated();
void statusMessageChanged(InfoLabel::InfoType type, const QString &message);
public slots:
void setFilePath(const FilePath &path);
void setProjectName(const QString &name);
void setDescription(const QString &description);
void setUseAsDefaultPath(bool u);
void setProjectNameRegularExpression(const QRegularExpression ®Ex, const QString &userErrorMessage);
private:
void slotChanged();
void slotActivated();
bool validate();
void displayStatusMessage(InfoLabel::InfoType t, const QString &);
void hideStatusLabel();
class ProjectIntroPagePrivate *d;
};
} // namespace Utils
|