1/********************************************************************************
2** Form generated from reading UI file 'BranchDlg.ui'
3**
4** Created by: Qt User Interface Compiler version 5.15.7
5**
6** WARNING! All changes made in this file will be lost when recompiling UI file!
7********************************************************************************/
8
9#ifndef UI_BRANCHDLG_H
10#define UI_BRANCHDLG_H
11
12#include <QtCore/QVariant>
13#include <QtWidgets/QApplication>
14#include <QtWidgets/QDialog>
15#include <QtWidgets/QGridLayout>
16#include <QtWidgets/QLineEdit>
17#include <QtWidgets/QPushButton>
18#include <QtWidgets/QSpacerItem>
19#include "CheckBox.h"
20
21QT_BEGIN_NAMESPACE
22
23class Ui_BranchDlg
24{
25public:
26 QGridLayout *gridLayout;
27 QPushButton *pbCancel;
28 QLineEdit *leNewName;
29 QSpacerItem *horizontalSpacer;
30 QPushButton *pbAccept;
31 QLineEdit *leOldName;
32 CheckBox *chbCopyRemote;
33
34 void setupUi(QDialog *BranchDlg)
35 {
36 if (BranchDlg->objectName().isEmpty())
37 BranchDlg->setObjectName(QString::fromUtf8("BranchDlg"));
38 BranchDlg->resize(400, 130);
39 gridLayout = new QGridLayout(BranchDlg);
40 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
41 pbCancel = new QPushButton(BranchDlg);
42 pbCancel->setObjectName(QString::fromUtf8("pbCancel"));
43
44 gridLayout->addWidget(pbCancel, 3, 0, 1, 1);
45
46 leNewName = new QLineEdit(BranchDlg);
47 leNewName->setObjectName(QString::fromUtf8("leNewName"));
48
49 gridLayout->addWidget(leNewName, 2, 0, 1, 3);
50
51 horizontalSpacer = new QSpacerItem(207, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
52
53 gridLayout->addItem(horizontalSpacer, 3, 1, 1, 1);
54
55 pbAccept = new QPushButton(BranchDlg);
56 pbAccept->setObjectName(QString::fromUtf8("pbAccept"));
57
58 gridLayout->addWidget(pbAccept, 3, 2, 1, 1);
59
60 leOldName = new QLineEdit(BranchDlg);
61 leOldName->setObjectName(QString::fromUtf8("leOldName"));
62 leOldName->setEnabled(false);
63
64 gridLayout->addWidget(leOldName, 0, 0, 1, 3);
65
66 chbCopyRemote = new CheckBox(BranchDlg);
67 chbCopyRemote->setObjectName(QString::fromUtf8("chbCopyRemote"));
68
69 gridLayout->addWidget(chbCopyRemote, 1, 0, 1, 3);
70
71 QWidget::setTabOrder(leOldName, leNewName);
72 QWidget::setTabOrder(leNewName, pbAccept);
73 QWidget::setTabOrder(pbAccept, pbCancel);
74
75 retranslateUi(BranchDlg);
76
77 QMetaObject::connectSlotsByName(BranchDlg);
78 } // setupUi
79
80 void retranslateUi(QDialog *BranchDlg)
81 {
82 BranchDlg->setWindowTitle(QCoreApplication::translate("BranchDlg", "Dialog", nullptr));
83 pbCancel->setText(QCoreApplication::translate("BranchDlg", "Cancel", nullptr));
84 leNewName->setPlaceholderText(QCoreApplication::translate("BranchDlg", "Set the branch name", nullptr));
85 pbAccept->setText(QCoreApplication::translate("BranchDlg", "Create", nullptr));
86 chbCopyRemote->setText(QCoreApplication::translate("BranchDlg", "Same as remote branch name", nullptr));
87 } // retranslateUi
88
89};
90
91namespace Ui {
92 class BranchDlg: public Ui_BranchDlg {};
93} // namespace Ui
94
95QT_END_NAMESPACE
96
97#endif // UI_BRANCHDLG_H
98