| 1 | /******************************************************************************** |
| 2 | ** Form generated from reading UI file 'gitbranchdialog.ui' |
| 3 | ** |
| 4 | ** Created by: Qt User Interface Compiler version 5.15.3 |
| 5 | ** |
| 6 | ** WARNING! All changes made in this file will be lost when recompiling UI file! |
| 7 | ********************************************************************************/ |
| 8 | |
| 9 | #ifndef UI_GITBRANCHDIALOG_H |
| 10 | #define UI_GITBRANCHDIALOG_H |
| 11 | |
| 12 | #include <QtCore/QVariant> |
| 13 | #include <QtWidgets/QApplication> |
| 14 | #include <QtWidgets/QCheckBox> |
| 15 | #include <QtWidgets/QComboBox> |
| 16 | #include <QtWidgets/QDialog> |
| 17 | #include <QtWidgets/QGridLayout> |
| 18 | #include <QtWidgets/QGroupBox> |
| 19 | #include <QtWidgets/QHBoxLayout> |
| 20 | #include <QtWidgets/QLineEdit> |
| 21 | #include <QtWidgets/QPushButton> |
| 22 | #include <QtWidgets/QRadioButton> |
| 23 | #include <QtWidgets/QSpacerItem> |
| 24 | #include <QtWidgets/QVBoxLayout> |
| 25 | #include <QtWidgets/QWidget> |
| 26 | |
| 27 | QT_BEGIN_NAMESPACE |
| 28 | |
| 29 | class Ui_GitBranchDialog |
| 30 | { |
| 31 | public: |
| 32 | QVBoxLayout *verticalLayout; |
| 33 | QGroupBox *groupBox; |
| 34 | QGridLayout *gridLayout_2; |
| 35 | QRadioButton *rbBranch; |
| 36 | QComboBox *lstBranches; |
| 37 | QGroupBox *grpOptions; |
| 38 | QGridLayout *gridLayout; |
| 39 | QCheckBox *chkForce; |
| 40 | QGroupBox *groupBox_3; |
| 41 | QHBoxLayout *horizontalLayout; |
| 42 | QRadioButton *rbForceTrack; |
| 43 | QRadioButton *rbForceNoTrack; |
| 44 | QRadioButton *rbNonSpecifyTrack; |
| 45 | QLineEdit *txtNewBranch; |
| 46 | QCheckBox *chkCreate; |
| 47 | QCheckBox *chkMerge; |
| 48 | QCheckBox *chkForceCreation; |
| 49 | QSpacerItem *verticalSpacer; |
| 50 | QWidget *widget; |
| 51 | QHBoxLayout *horizontalLayout_2; |
| 52 | QSpacerItem *horizontalSpacer; |
| 53 | QPushButton *btnOk; |
| 54 | QPushButton *btnCancel; |
| 55 | |
| 56 | void setupUi(QDialog *GitBranchDialog) |
| 57 | { |
| 58 | if (GitBranchDialog->objectName().isEmpty()) |
| 59 | GitBranchDialog->setObjectName(QString::fromUtf8("GitBranchDialog" )); |
| 60 | GitBranchDialog->resize(705, 506); |
| 61 | verticalLayout = new QVBoxLayout(GitBranchDialog); |
| 62 | verticalLayout->setObjectName(QString::fromUtf8("verticalLayout" )); |
| 63 | groupBox = new QGroupBox(GitBranchDialog); |
| 64 | groupBox->setObjectName(QString::fromUtf8("groupBox" )); |
| 65 | gridLayout_2 = new QGridLayout(groupBox); |
| 66 | gridLayout_2->setObjectName(QString::fromUtf8("gridLayout_2" )); |
| 67 | rbBranch = new QRadioButton(groupBox); |
| 68 | rbBranch->setObjectName(QString::fromUtf8("rbBranch" )); |
| 69 | |
| 70 | gridLayout_2->addWidget(rbBranch, 0, 0, 1, 1); |
| 71 | |
| 72 | lstBranches = new QComboBox(groupBox); |
| 73 | lstBranches->setObjectName(QString::fromUtf8("lstBranches" )); |
| 74 | QSizePolicy sizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
| 75 | sizePolicy.setHorizontalStretch(0); |
| 76 | sizePolicy.setVerticalStretch(0); |
| 77 | sizePolicy.setHeightForWidth(lstBranches->sizePolicy().hasHeightForWidth()); |
| 78 | lstBranches->setSizePolicy(sizePolicy); |
| 79 | |
| 80 | gridLayout_2->addWidget(lstBranches, 0, 1, 1, 1); |
| 81 | |
| 82 | |
| 83 | verticalLayout->addWidget(groupBox); |
| 84 | |
| 85 | grpOptions = new QGroupBox(GitBranchDialog); |
| 86 | grpOptions->setObjectName(QString::fromUtf8("grpOptions" )); |
| 87 | gridLayout = new QGridLayout(grpOptions); |
| 88 | gridLayout->setObjectName(QString::fromUtf8("gridLayout" )); |
| 89 | chkForce = new QCheckBox(grpOptions); |
| 90 | chkForce->setObjectName(QString::fromUtf8("chkForce" )); |
| 91 | |
| 92 | gridLayout->addWidget(chkForce, 1, 0, 1, 2); |
| 93 | |
| 94 | groupBox_3 = new QGroupBox(grpOptions); |
| 95 | groupBox_3->setObjectName(QString::fromUtf8("groupBox_3" )); |
| 96 | horizontalLayout = new QHBoxLayout(groupBox_3); |
| 97 | horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout" )); |
| 98 | rbForceTrack = new QRadioButton(groupBox_3); |
| 99 | rbForceTrack->setObjectName(QString::fromUtf8("rbForceTrack" )); |
| 100 | |
| 101 | horizontalLayout->addWidget(rbForceTrack); |
| 102 | |
| 103 | rbForceNoTrack = new QRadioButton(groupBox_3); |
| 104 | rbForceNoTrack->setObjectName(QString::fromUtf8("rbForceNoTrack" )); |
| 105 | |
| 106 | horizontalLayout->addWidget(rbForceNoTrack); |
| 107 | |
| 108 | rbNonSpecifyTrack = new QRadioButton(groupBox_3); |
| 109 | rbNonSpecifyTrack->setObjectName(QString::fromUtf8("rbNonSpecifyTrack" )); |
| 110 | |
| 111 | horizontalLayout->addWidget(rbNonSpecifyTrack); |
| 112 | |
| 113 | |
| 114 | gridLayout->addWidget(groupBox_3, 3, 0, 1, 2); |
| 115 | |
| 116 | txtNewBranch = new QLineEdit(grpOptions); |
| 117 | txtNewBranch->setObjectName(QString::fromUtf8("txtNewBranch" )); |
| 118 | |
| 119 | gridLayout->addWidget(txtNewBranch, 0, 1, 1, 1); |
| 120 | |
| 121 | chkCreate = new QCheckBox(grpOptions); |
| 122 | chkCreate->setObjectName(QString::fromUtf8("chkCreate" )); |
| 123 | |
| 124 | gridLayout->addWidget(chkCreate, 0, 0, 1, 1); |
| 125 | |
| 126 | chkMerge = new QCheckBox(grpOptions); |
| 127 | chkMerge->setObjectName(QString::fromUtf8("chkMerge" )); |
| 128 | |
| 129 | gridLayout->addWidget(chkMerge, 2, 0, 1, 2); |
| 130 | |
| 131 | chkForceCreation = new QCheckBox(grpOptions); |
| 132 | chkForceCreation->setObjectName(QString::fromUtf8("chkForceCreation" )); |
| 133 | |
| 134 | gridLayout->addWidget(chkForceCreation, 4, 0, 1, 2); |
| 135 | |
| 136 | |
| 137 | verticalLayout->addWidget(grpOptions); |
| 138 | |
| 139 | verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); |
| 140 | |
| 141 | verticalLayout->addItem(verticalSpacer); |
| 142 | |
| 143 | widget = new QWidget(GitBranchDialog); |
| 144 | widget->setObjectName(QString::fromUtf8("widget" )); |
| 145 | horizontalLayout_2 = new QHBoxLayout(widget); |
| 146 | horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2" )); |
| 147 | horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); |
| 148 | |
| 149 | horizontalLayout_2->addItem(horizontalSpacer); |
| 150 | |
| 151 | btnOk = new QPushButton(widget); |
| 152 | btnOk->setObjectName(QString::fromUtf8("btnOk" )); |
| 153 | |
| 154 | horizontalLayout_2->addWidget(btnOk); |
| 155 | |
| 156 | btnCancel = new QPushButton(widget); |
| 157 | btnCancel->setObjectName(QString::fromUtf8("btnCancel" )); |
| 158 | |
| 159 | horizontalLayout_2->addWidget(btnCancel); |
| 160 | |
| 161 | |
| 162 | verticalLayout->addWidget(widget); |
| 163 | |
| 164 | |
| 165 | retranslateUi(GitBranchDialog); |
| 166 | |
| 167 | QMetaObject::connectSlotsByName(GitBranchDialog); |
| 168 | } // setupUi |
| 169 | |
| 170 | void retranslateUi(QDialog *GitBranchDialog) |
| 171 | { |
| 172 | GitBranchDialog->setWindowTitle(QCoreApplication::translate("GitBranchDialog" , "Branch/Switch" , nullptr)); |
| 173 | groupBox->setTitle(QCoreApplication::translate("GitBranchDialog" , "Switch To" , nullptr)); |
| 174 | rbBranch->setText(QCoreApplication::translate("GitBranchDialog" , "Branch" , nullptr)); |
| 175 | grpOptions->setTitle(QCoreApplication::translate("GitBranchDialog" , "Options" , nullptr)); |
| 176 | chkForce->setText(QCoreApplication::translate("GitBranchDialog" , "Overwrite working tree changed(force)" , nullptr)); |
| 177 | groupBox_3->setTitle(QCoreApplication::translate("GitBranchDialog" , "Track" , nullptr)); |
| 178 | #if QT_CONFIG(tooltip) |
| 179 | rbForceTrack->setToolTip(QCoreApplication::translate("GitBranchDialog" , "Pass --track to git" , nullptr)); |
| 180 | #endif // QT_CONFIG(tooltip) |
| 181 | rbForceTrack->setText(QCoreApplication::translate("GitBranchDialog" , "Force Track" , nullptr)); |
| 182 | #if QT_CONFIG(tooltip) |
| 183 | rbForceNoTrack->setToolTip(QCoreApplication::translate("GitBranchDialog" , "Pass --no-track to git" , nullptr)); |
| 184 | #endif // QT_CONFIG(tooltip) |
| 185 | rbForceNoTrack->setText(QCoreApplication::translate("GitBranchDialog" , "Force No Track" , nullptr)); |
| 186 | #if QT_CONFIG(tooltip) |
| 187 | rbNonSpecifyTrack->setToolTip(QCoreApplication::translate("GitBranchDialog" , "Neither --track nor --no-track is passed to git" , nullptr)); |
| 188 | #endif // QT_CONFIG(tooltip) |
| 189 | rbNonSpecifyTrack->setText(QCoreApplication::translate("GitBranchDialog" , "Not Specifiied" , nullptr)); |
| 190 | chkCreate->setText(QCoreApplication::translate("GitBranchDialog" , "Create New Branch" , nullptr)); |
| 191 | #if QT_CONFIG(tooltip) |
| 192 | chkMerge->setToolTip(QCoreApplication::translate("GitBranchDialog" , "Merge between original branch, working tree contents and the branch to switch to" , nullptr)); |
| 193 | #endif // QT_CONFIG(tooltip) |
| 194 | chkMerge->setText(QCoreApplication::translate("GitBranchDialog" , "Merge" , nullptr)); |
| 195 | #if QT_CONFIG(tooltip) |
| 196 | chkForceCreation->setToolTip(QString()); |
| 197 | #endif // QT_CONFIG(tooltip) |
| 198 | chkForceCreation->setText(QCoreApplication::translate("GitBranchDialog" , "Force Creation (Reset branch if exists)" , nullptr)); |
| 199 | btnOk->setText(QCoreApplication::translate("GitBranchDialog" , "Ok" , nullptr)); |
| 200 | btnCancel->setText(QCoreApplication::translate("GitBranchDialog" , "Cancel" , nullptr)); |
| 201 | } // retranslateUi |
| 202 | |
| 203 | }; |
| 204 | |
| 205 | namespace Ui { |
| 206 | class GitBranchDialog: public Ui_GitBranchDialog {}; |
| 207 | } // namespace Ui |
| 208 | |
| 209 | QT_END_NAMESPACE |
| 210 | |
| 211 | #endif // UI_GITBRANCHDIALOG_H |
| 212 | |