aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/gitlab/gitlabclonedialog.h
blob: 351175fa59bf18b0bdf8a6ba6e90c50ccbdafe7c (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
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#pragma once

#include <QDialog>

QT_BEGIN_NAMESPACE
class QCheckBox;
class QComboBox;
class QPlainTextEdit;
class QPushButton;
QT_END_NAMESPACE

namespace Utils {
class FancyLineEdit;
class InfoLabel;
class PathChooser;
}

namespace VcsBase { class VcsCommand; }

namespace GitLab {

class Project;

class GitLabCloneDialog : public QDialog
{
public:
    explicit GitLabCloneDialog(const Project &project, QWidget *parent = nullptr);

private:
    void updateUi();
    void cloneProject();
    void cancel();
    void cloneFinished(bool success);

    QComboBox * m_repositoryCB = nullptr;
    QCheckBox *m_submodulesCB = nullptr;
    QPushButton *m_cloneButton = nullptr;
    QPushButton *m_cancelButton = nullptr;
    QPlainTextEdit *m_cloneOutput = nullptr;
    Utils::PathChooser *m_pathChooser = nullptr;
    Utils::FancyLineEdit *m_directoryLE = nullptr;
    Utils::InfoLabel *m_infoLabel = nullptr;
    VcsBase::VcsCommand *m_command = nullptr;
    bool m_commandRunning = false;
};

} // namespace GitLab