blob: 892646dbb10aabb234ae9e9222fdcd67943fbd0b (
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
// 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 "projectexplorer_export.h"
#include "projectnodes.h"
#include <coreplugin/generatedfile.h>
#include <coreplugin/iwizardfactory.h>
#include <utils/infolabel.h>
#include <utils/wizardpage.h>
#include <utils/treemodel.h>
QT_BEGIN_NAMESPACE
class QComboBox;
class QLabel;
class QPushButton;
class QModelIndex;
QT_END_NAMESPACE
namespace Utils { class TreeViewComboBox; }
namespace Core { class IVersionControl; }
namespace ProjectExplorer {
namespace Internal {
class AddNewTree;
}
// Documentation inside.
class PROJECTEXPLORER_EXPORT ProjectWizardPage : public Utils::WizardPage
{
Q_OBJECT
public:
explicit ProjectWizardPage(QWidget *parent = nullptr);
~ProjectWizardPage() override;
FolderNode *currentNode() const;
void setNoneLabel(const QString &label);
int versionControlIndex() const;
void setVersionControlIndex(int);
Core::IVersionControl *currentVersionControl();
// Returns the common path
void setFiles(const Utils::FilePaths &files);
Utils::Result<> runVersionControl(const QList<Core::GeneratedFile> &files);
void initializeProjectTree(Node *context, const Utils::FilePaths &paths,
Core::IWizardFactory::WizardKind kind,
ProjectAction action,
bool limitToSubproject);
void initializeVersionControls();
void setProjectUiVisible(bool visible);
void setStatus(const QString &text, Utils::InfoLabel::InfoType type);
void setStatusVisible(bool visible);
signals:
void projectNodeChanged();
void versionControlChanged(int);
protected:
void setVersionControlUiElementsVisible(bool visible);
private:
void projectChanged(int);
void manageVcs();
void setAdditionalInfo(const QString &text);
void setAddingSubProject(bool addingSubProject);
void setBestNode(ProjectExplorer::Internal::AddNewTree *tree);
void setVersionControls(const QStringList &);
void setProjectToolTip(const QString &);
bool expandTree(const QModelIndex &root);
QStringList m_projectToolTips;
Utils::TreeModel<> m_model;
QList<Core::IVersionControl*> m_activeVersionControls;
Utils::FilePath m_commonDirectory;
bool m_repositoryExists = false;
QLabel *m_projectLabel;
Utils::TreeViewComboBox *m_projectComboBox;
Utils::InfoLabel *m_infoLabel;
QLabel *m_additionalInfo;
QLabel *m_addToVersionControlLabel;
QComboBox *m_addToVersionControlComboBox;
QPushButton *m_vcsManageButton;
QLabel *m_filesLabel;
};
} // namespace ProjectExplorer
|