blob: f743b8d16dc41c6b0df02fa158f382fde2ceac8a (
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
|
// 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 <QDialog>
QT_BEGIN_NAMESPACE
class QLabel;
class QTreeView;
QT_END_NAMESPACE
namespace Utils { class FilePath; }
namespace Git::Internal {
class RemoteModel;
class RemoteDialog : public QDialog
{
public:
explicit RemoteDialog(QWidget *parent = nullptr);
~RemoteDialog() override;
void refresh(const Utils::FilePath &repository, bool force);
private:
void refreshRemotes();
void addRemote();
void removeRemote();
void pushToRemote();
void fetchFromRemote();
void updateButtonState();
RemoteModel *m_remoteModel;
QLabel *m_repositoryLabel;
QTreeView *m_remoteView;
QPushButton *m_addButton;
QPushButton *m_fetchButton;
QPushButton *m_pushButton;
QPushButton *m_removeButton;
};
} // Git::Internal
|