1/********************************************************************************
2** Form generated from reading UI file 'PullDlg.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_PULLDLG_H
10#define UI_PULLDLG_H
11
12#include <QtCore/QVariant>
13#include <QtWidgets/QApplication>
14#include <QtWidgets/QDialog>
15#include <QtWidgets/QDialogButtonBox>
16#include <QtWidgets/QLabel>
17#include <QtWidgets/QVBoxLayout>
18
19QT_BEGIN_NAMESPACE
20
21class Ui_PullDlg
22{
23public:
24 QVBoxLayout *verticalLayout;
25 QLabel *lText;
26 QLabel *lQuestion;
27 QDialogButtonBox *buttonBox;
28
29 void setupUi(QDialog *PullDlg)
30 {
31 if (PullDlg->objectName().isEmpty())
32 PullDlg->setObjectName(QString::fromUtf8("PullDlg"));
33 PullDlg->resize(496, 140);
34 verticalLayout = new QVBoxLayout(PullDlg);
35 verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
36 lText = new QLabel(PullDlg);
37 lText->setObjectName(QString::fromUtf8("lText"));
38 lText->setWordWrap(true);
39
40 verticalLayout->addWidget(lText);
41
42 lQuestion = new QLabel(PullDlg);
43 lQuestion->setObjectName(QString::fromUtf8("lQuestion"));
44 QFont font;
45 font.setBold(true);
46 font.setWeight(75);
47 lQuestion->setFont(font);
48
49 verticalLayout->addWidget(lQuestion);
50
51 buttonBox = new QDialogButtonBox(PullDlg);
52 buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
53 buttonBox->setOrientation(Qt::Horizontal);
54 buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
55
56 verticalLayout->addWidget(buttonBox);
57
58
59 retranslateUi(PullDlg);
60 QObject::connect(buttonBox, SIGNAL(accepted()), PullDlg, SLOT(accept()));
61 QObject::connect(buttonBox, SIGNAL(rejected()), PullDlg, SLOT(reject()));
62
63 QMetaObject::connectSlotsByName(PullDlg);
64 } // setupUi
65
66 void retranslateUi(QDialog *PullDlg)
67 {
68 PullDlg->setWindowTitle(QCoreApplication::translate("PullDlg", "Dialog", nullptr));
69 lText->setText(QString());
70 lQuestion->setText(QCoreApplication::translate("PullDlg", "Would you like to pull the last changes?", nullptr));
71 } // retranslateUi
72
73};
74
75namespace Ui {
76 class PullDlg: public Ui_PullDlg {};
77} // namespace Ui
78
79QT_END_NAMESPACE
80
81#endif // UI_PULLDLG_H
82