1 | /******************************************************************************** |
2 | ** Form generated from reading UI file 'gitlogdialog.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_GITLOGDIALOG_H |
10 | #define UI_GITLOGDIALOG_H |
11 | |
12 | #include <QtCore/QVariant> |
13 | #include <QtWidgets/QAction> |
14 | #include <QtWidgets/QApplication> |
15 | #include <QtWidgets/QDialog> |
16 | #include <QtWidgets/QFrame> |
17 | #include <QtWidgets/QHBoxLayout> |
18 | #include <QtWidgets/QHeaderView> |
19 | #include <QtWidgets/QPushButton> |
20 | #include <QtWidgets/QSpacerItem> |
21 | #include <QtWidgets/QTableView> |
22 | #include <QtWidgets/QVBoxLayout> |
23 | |
24 | QT_BEGIN_NAMESPACE |
25 | |
26 | class Ui_GitLogDialog |
27 | { |
28 | public: |
29 | QAction *actionReset; |
30 | QAction *actionRevert; |
31 | QAction *actionBranch; |
32 | QAction *actionTag; |
33 | QVBoxLayout *verticalLayout; |
34 | QTableView *tblLogs; |
35 | QFrame *frame; |
36 | QHBoxLayout *horizontalLayout; |
37 | QSpacerItem *horizontalSpacer; |
38 | QPushButton *btnClose; |
39 | |
40 | void setupUi(QDialog *GitLogDialog) |
41 | { |
42 | if (GitLogDialog->objectName().isEmpty()) |
43 | GitLogDialog->setObjectName(QString::fromUtf8("GitLogDialog" )); |
44 | GitLogDialog->resize(922, 613); |
45 | actionReset = new QAction(GitLogDialog); |
46 | actionReset->setObjectName(QString::fromUtf8("actionReset" )); |
47 | actionRevert = new QAction(GitLogDialog); |
48 | actionRevert->setObjectName(QString::fromUtf8("actionRevert" )); |
49 | actionBranch = new QAction(GitLogDialog); |
50 | actionBranch->setObjectName(QString::fromUtf8("actionBranch" )); |
51 | actionTag = new QAction(GitLogDialog); |
52 | actionTag->setObjectName(QString::fromUtf8("actionTag" )); |
53 | verticalLayout = new QVBoxLayout(GitLogDialog); |
54 | verticalLayout->setObjectName(QString::fromUtf8("verticalLayout" )); |
55 | tblLogs = new QTableView(GitLogDialog); |
56 | tblLogs->setObjectName(QString::fromUtf8("tblLogs" )); |
57 | tblLogs->setSelectionMode(QAbstractItemView::SingleSelection); |
58 | tblLogs->setSelectionBehavior(QAbstractItemView::SelectRows); |
59 | tblLogs->horizontalHeader()->setDefaultSectionSize(250); |
60 | tblLogs->horizontalHeader()->setStretchLastSection(true); |
61 | |
62 | verticalLayout->addWidget(tblLogs); |
63 | |
64 | frame = new QFrame(GitLogDialog); |
65 | frame->setObjectName(QString::fromUtf8("frame" )); |
66 | frame->setFrameShape(QFrame::StyledPanel); |
67 | frame->setFrameShadow(QFrame::Raised); |
68 | horizontalLayout = new QHBoxLayout(frame); |
69 | horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout" )); |
70 | horizontalLayout->setContentsMargins(0, 0, 0, 0); |
71 | horizontalSpacer = new QSpacerItem(795, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); |
72 | |
73 | horizontalLayout->addItem(horizontalSpacer); |
74 | |
75 | btnClose = new QPushButton(frame); |
76 | btnClose->setObjectName(QString::fromUtf8("btnClose" )); |
77 | |
78 | horizontalLayout->addWidget(btnClose); |
79 | |
80 | |
81 | verticalLayout->addWidget(frame); |
82 | |
83 | |
84 | retranslateUi(GitLogDialog); |
85 | |
86 | QMetaObject::connectSlotsByName(GitLogDialog); |
87 | } // setupUi |
88 | |
89 | void retranslateUi(QDialog *GitLogDialog) |
90 | { |
91 | GitLogDialog->setWindowTitle(QCoreApplication::translate("GitLogDialog" , "Git Log" , nullptr)); |
92 | actionReset->setText(QCoreApplication::translate("GitLogDialog" , "Reset" , nullptr)); |
93 | actionRevert->setText(QCoreApplication::translate("GitLogDialog" , "Revert" , nullptr)); |
94 | actionBranch->setText(QCoreApplication::translate("GitLogDialog" , "branch" , nullptr)); |
95 | actionTag->setText(QCoreApplication::translate("GitLogDialog" , "Tag" , nullptr)); |
96 | btnClose->setText(QCoreApplication::translate("GitLogDialog" , "Close" , nullptr)); |
97 | } // retranslateUi |
98 | |
99 | }; |
100 | |
101 | namespace Ui { |
102 | class GitLogDialog: public Ui_GitLogDialog {}; |
103 | } // namespace Ui |
104 | |
105 | QT_END_NAMESPACE |
106 | |
107 | #endif // UI_GITLOGDIALOG_H |
108 | |