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

#pragma once

#include <QCoreApplication>
#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
{
    Q_DECLARE_TR_FUNCTIONS(GitLab::GitLabCloneDialog)
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