blob: c98a75f41a844aa2cf77bb1e311d4b75d5276321 (
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
|
// Copyright (C) 2016 Petar Perisin <petar.perisin@gmail.com>
// 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 QGroupBox;
class QPushButton;
class QRadioButton;
QT_END_NAMESPACE
namespace Git::Internal {
class BranchCheckoutDialog : public QDialog
{
public:
explicit BranchCheckoutDialog(QWidget *parent, const QString ¤tBranch,
const QString &nextBranch);
~BranchCheckoutDialog() override;
void foundNoLocalChanges();
void foundStashForNextBranch();
bool makeStashOfCurrentBranch() const;
bool moveLocalChangesToNextBranch() const;
bool discardLocalChanges() const;
bool popStashOfNextBranch() const;
bool hasStashForNextBranch() const;
bool hasLocalChanges() const;
bool diffRequested() const;
private:
void updatePopStashCheckBox(bool moveChangesChecked);
bool m_foundStashForNextBranch = false;
bool m_hasLocalChanges = true;
bool m_diffRequested = false;
QGroupBox *m_localChangesGroupBox = nullptr;
QRadioButton *m_makeStashRadioButton = nullptr;
QRadioButton *m_moveChangesRadioButton = nullptr;
QRadioButton *m_discardChangesRadioButton = nullptr;
QCheckBox *m_popStashCheckBox = nullptr;
QPushButton *m_diffButton = nullptr;
};
} // Git::Internal
|