1 | /******************************************************************************** |
2 | ** Form generated from reading UI file 'toolsgitwidget.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_TOOLSGITWIDGET_H |
10 | #define UI_TOOLSGITWIDGET_H |
11 | |
12 | #include <QtCore/QVariant> |
13 | #include <QtGui/QIcon> |
14 | #include <QtWidgets/QApplication> |
15 | #include <QtWidgets/QGridLayout> |
16 | #include <QtWidgets/QLabel> |
17 | #include <QtWidgets/QLineEdit> |
18 | #include <QtWidgets/QPushButton> |
19 | #include <QtWidgets/QSpacerItem> |
20 | #include <QtWidgets/QToolButton> |
21 | #include <QtWidgets/QWidget> |
22 | |
23 | QT_BEGIN_NAMESPACE |
24 | |
25 | class Ui_ToolsGitWidget |
26 | { |
27 | public: |
28 | QGridLayout *gridLayout; |
29 | QPushButton *btnTestGit; |
30 | QToolButton *btnBrowseGit; |
31 | QLineEdit *txtGitPath; |
32 | QSpacerItem *verticalSpacer; |
33 | QLabel *label; |
34 | QLabel *lblGitInfo; |
35 | |
36 | void setupUi(QWidget *ToolsGitWidget) |
37 | { |
38 | if (ToolsGitWidget->objectName().isEmpty()) |
39 | ToolsGitWidget->setObjectName(QString::fromUtf8("ToolsGitWidget" )); |
40 | ToolsGitWidget->resize(555, 300); |
41 | gridLayout = new QGridLayout(ToolsGitWidget); |
42 | gridLayout->setObjectName(QString::fromUtf8("gridLayout" )); |
43 | btnTestGit = new QPushButton(ToolsGitWidget); |
44 | btnTestGit->setObjectName(QString::fromUtf8("btnTestGit" )); |
45 | |
46 | gridLayout->addWidget(btnTestGit, 0, 3, 1, 1); |
47 | |
48 | btnBrowseGit = new QToolButton(ToolsGitWidget); |
49 | btnBrowseGit->setObjectName(QString::fromUtf8("btnBrowseGit" )); |
50 | QIcon icon; |
51 | icon.addFile(QString::fromUtf8(":/icons/images/newlook24/053-open.png" ), QSize(), QIcon::Normal, QIcon::Off); |
52 | btnBrowseGit->setIcon(icon); |
53 | |
54 | gridLayout->addWidget(btnBrowseGit, 0, 2, 1, 1); |
55 | |
56 | txtGitPath = new QLineEdit(ToolsGitWidget); |
57 | txtGitPath->setObjectName(QString::fromUtf8("txtGitPath" )); |
58 | |
59 | gridLayout->addWidget(txtGitPath, 0, 1, 1, 1); |
60 | |
61 | verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); |
62 | |
63 | gridLayout->addItem(verticalSpacer, 2, 0, 1, 1); |
64 | |
65 | label = new QLabel(ToolsGitWidget); |
66 | label->setObjectName(QString::fromUtf8("label" )); |
67 | |
68 | gridLayout->addWidget(label, 0, 0, 1, 1); |
69 | |
70 | lblGitInfo = new QLabel(ToolsGitWidget); |
71 | lblGitInfo->setObjectName(QString::fromUtf8("lblGitInfo" )); |
72 | lblGitInfo->setAlignment(Qt::AlignCenter); |
73 | |
74 | gridLayout->addWidget(lblGitInfo, 1, 0, 1, 4); |
75 | |
76 | |
77 | retranslateUi(ToolsGitWidget); |
78 | |
79 | QMetaObject::connectSlotsByName(ToolsGitWidget); |
80 | } // setupUi |
81 | |
82 | void retranslateUi(QWidget *ToolsGitWidget) |
83 | { |
84 | ToolsGitWidget->setWindowTitle(QCoreApplication::translate("ToolsGitWidget" , "Git" , nullptr)); |
85 | btnTestGit->setText(QCoreApplication::translate("ToolsGitWidget" , "Test" , nullptr)); |
86 | #if QT_CONFIG(tooltip) |
87 | btnBrowseGit->setToolTip(QCoreApplication::translate("ToolsGitWidget" , "Browse" , nullptr)); |
88 | #endif // QT_CONFIG(tooltip) |
89 | btnBrowseGit->setText(QCoreApplication::translate("ToolsGitWidget" , "..." , nullptr)); |
90 | label->setText(QCoreApplication::translate("ToolsGitWidget" , "Path to Git Executable:" , nullptr)); |
91 | lblGitInfo->setText(QCoreApplication::translate("ToolsGitWidget" , "TextLabel" , nullptr)); |
92 | } // retranslateUi |
93 | |
94 | }; |
95 | |
96 | namespace Ui { |
97 | class ToolsGitWidget: public Ui_ToolsGitWidget {}; |
98 | } // namespace Ui |
99 | |
100 | QT_END_NAMESPACE |
101 | |
102 | #endif // UI_TOOLSGITWIDGET_H |
103 | |