Files
qt-creator/src/plugins/projectexplorer/projectwizardpage.h

92 lines
2.4 KiB
C
Raw Normal View History

// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
2008-12-02 16:19:05 +01:00
#pragma once
2008-12-02 12:01:29 +01:00
#include "projectnodes.h"
#include <coreplugin/generatedfile.h>
#include <coreplugin/iwizardfactory.h>
#include <utils/wizardpage.h>
#include <utils/treemodel.h>
2008-12-02 12:01:29 +01:00
QT_BEGIN_NAMESPACE
class QComboBox;
class QLabel;
class QPushButton;
class QModelIndex;
QT_END_NAMESPACE
namespace Utils { class TreeViewComboBox; }
namespace Core { class IVersionControl; }
2008-12-02 12:01:29 +01:00
namespace ProjectExplorer {
namespace Internal {
class AddNewTree;
2008-12-02 12:01:29 +01:00
// Documentation inside.
class ProjectWizardPage : public Utils::WizardPage
{
2008-12-02 12:01:29 +01:00
Q_OBJECT
2008-12-02 12:01:29 +01:00
public:
explicit ProjectWizardPage(QWidget *parent = nullptr);
~ProjectWizardPage() override;
2008-12-02 12:01:29 +01:00
FolderNode *currentNode() const;
2008-12-02 12:01:29 +01:00
void setNoneLabel(const QString &label);
2008-12-02 12:01:29 +01:00
int versionControlIndex() const;
void setVersionControlIndex(int);
Core::IVersionControl *currentVersionControl();
2008-12-02 12:01:29 +01:00
// Returns the common path
void setFiles(const Utils::FilePaths &files);
2008-12-02 12:01:29 +01:00
bool runVersionControl(const QList<Core::GeneratedFile> &files, QString *errorMessage);
void initializeProjectTree(Node *context, const Utils::FilePaths &paths,
Core::IWizardFactory::WizardKind kind,
ProjectAction action);
void initializeVersionControls();
void setProjectUiVisible(bool visible);
signals:
void projectNodeChanged();
void versionControlChanged(int);
private:
void projectChanged(int);
void manageVcs();
void hideVersionControlUiElements();
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;
QLabel *m_additionalInfo;
QLabel *m_addToVersionControlLabel;
QComboBox *m_addToVersionControlComboBox;
QPushButton *m_vcsManageButton;
QLabel *m_filesLabel;
2008-12-02 12:01:29 +01:00
};
2008-12-02 16:19:05 +01:00
} // namespace Internal
} // namespace ProjectExplorer