1 | /* |
2 | ********************************************************************* |
3 | ** |
4 | ** Copyright (C) 2016 The Qt Company Ltd. |
5 | ** Contact: https://www.qt.io/licensing/ |
6 | ** |
7 | ** This file is part of the Qt Designer of the Qt Toolkit. |
8 | ** |
9 | ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ |
10 | ** Commercial License Usage |
11 | ** Licensees holding valid commercial Qt licenses may use this file in |
12 | ** accordance with the commercial license agreement provided with the |
13 | ** Software or, alternatively, in accordance with the terms contained in |
14 | ** a written agreement between you and The Qt Company. For licensing terms |
15 | ** and conditions see https://www.qt.io/terms-conditions. For further |
16 | ** information use the contact form at https://www.qt.io/contact-us. |
17 | ** |
18 | ** GNU General Public License Usage |
19 | ** Alternatively, this file may be used under the terms of the GNU |
20 | ** General Public License version 3 as published by the Free Software |
21 | ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT |
22 | ** included in the packaging of this file. Please review the following |
23 | ** information to ensure the GNU General Public License requirements will |
24 | ** be met: https://www.gnu.org/licenses/gpl-3.0.html. |
25 | ** |
26 | ** $QT_END_LICENSE$ |
27 | ** |
28 | ********************************************************************* |
29 | */ |
30 | |
31 | /******************************************************************************** |
32 | ** Form generated from reading UI file 'plugindialog.ui' |
33 | ** |
34 | ** Created by: Qt User Interface Compiler version 5.15.2 |
35 | ** |
36 | ** WARNING! All changes made in this file will be lost when recompiling UI file! |
37 | ********************************************************************************/ |
38 | |
39 | #ifndef UI_PLUGINDIALOG_H |
40 | #define UI_PLUGINDIALOG_H |
41 | |
42 | #include <QtCore/QVariant> |
43 | #include <QtWidgets/QApplication> |
44 | #include <QtWidgets/QDialog> |
45 | #include <QtWidgets/QDialogButtonBox> |
46 | #include <QtWidgets/QHBoxLayout> |
47 | #include <QtWidgets/QHeaderView> |
48 | #include <QtWidgets/QLabel> |
49 | #include <QtWidgets/QTreeWidget> |
50 | #include <QtWidgets/QVBoxLayout> |
51 | |
52 | QT_BEGIN_NAMESPACE |
53 | |
54 | class Ui_PluginDialog |
55 | { |
56 | public: |
57 | QVBoxLayout *vboxLayout; |
58 | QLabel *label; |
59 | QTreeWidget *treeWidget; |
60 | QLabel *message; |
61 | QHBoxLayout *hboxLayout; |
62 | QDialogButtonBox *buttonBox; |
63 | |
64 | void setupUi(QDialog *PluginDialog) |
65 | { |
66 | if (PluginDialog->objectName().isEmpty()) |
67 | PluginDialog->setObjectName(QString::fromUtf8(str: "PluginDialog" )); |
68 | PluginDialog->resize(w: 401, h: 331); |
69 | vboxLayout = new QVBoxLayout(PluginDialog); |
70 | #ifndef Q_OS_MAC |
71 | vboxLayout->setSpacing(6); |
72 | #endif |
73 | vboxLayout->setContentsMargins(left: 8, top: 8, right: 8, bottom: 8); |
74 | vboxLayout->setObjectName(QString::fromUtf8(str: "vboxLayout" )); |
75 | label = new QLabel(PluginDialog); |
76 | label->setObjectName(QString::fromUtf8(str: "label" )); |
77 | label->setText(QString::fromUtf8(str: "TextLabel" )); |
78 | label->setWordWrap(true); |
79 | |
80 | vboxLayout->addWidget(label); |
81 | |
82 | treeWidget = new QTreeWidget(PluginDialog); |
83 | treeWidget->setObjectName(QString::fromUtf8(str: "treeWidget" )); |
84 | treeWidget->setTextElideMode(Qt::ElideNone); |
85 | |
86 | vboxLayout->addWidget(treeWidget); |
87 | |
88 | message = new QLabel(PluginDialog); |
89 | message->setObjectName(QString::fromUtf8(str: "message" )); |
90 | message->setText(QString::fromUtf8(str: "TextLabel" )); |
91 | message->setWordWrap(true); |
92 | |
93 | vboxLayout->addWidget(message); |
94 | |
95 | hboxLayout = new QHBoxLayout(); |
96 | #ifndef Q_OS_MAC |
97 | hboxLayout->setSpacing(6); |
98 | #endif |
99 | hboxLayout->setContentsMargins(left: 0, top: 0, right: 0, bottom: 0); |
100 | hboxLayout->setObjectName(QString::fromUtf8(str: "hboxLayout" )); |
101 | |
102 | vboxLayout->addLayout(layout: hboxLayout); |
103 | |
104 | buttonBox = new QDialogButtonBox(PluginDialog); |
105 | buttonBox->setObjectName(QString::fromUtf8(str: "buttonBox" )); |
106 | buttonBox->setOrientation(Qt::Horizontal); |
107 | buttonBox->setStandardButtons(QDialogButtonBox::Close); |
108 | |
109 | vboxLayout->addWidget(buttonBox); |
110 | |
111 | |
112 | retranslateUi(PluginDialog); |
113 | QObject::connect(sender: buttonBox, SIGNAL(rejected()), receiver: PluginDialog, SLOT(reject())); |
114 | |
115 | QMetaObject::connectSlotsByName(o: PluginDialog); |
116 | } // setupUi |
117 | |
118 | void retranslateUi(QDialog *PluginDialog) |
119 | { |
120 | PluginDialog->setWindowTitle(QCoreApplication::translate(context: "PluginDialog" , key: "Plugin Information" , disambiguation: nullptr)); |
121 | QTreeWidgetItem *___qtreewidgetitem = treeWidget->headerItem(); |
122 | ___qtreewidgetitem->setText(column: 0, atext: QCoreApplication::translate(context: "PluginDialog" , key: "1" , disambiguation: nullptr)); |
123 | } // retranslateUi |
124 | |
125 | }; |
126 | |
127 | namespace Ui { |
128 | class PluginDialog: public Ui_PluginDialog {}; |
129 | } // namespace Ui |
130 | |
131 | QT_END_NAMESPACE |
132 | |
133 | #endif // UI_PLUGINDIALOG_H |
134 | |