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 'itemlisteditor.ui'
33**
34** Created by: Qt User Interface Compiler version 5.15.9
35**
36** WARNING! All changes made in this file will be lost when recompiling UI file!
37********************************************************************************/
38
39#ifndef UI_ITEMLISTEDITOR_H
40#define UI_ITEMLISTEDITOR_H
41
42#include <QtCore/QVariant>
43#include <QtWidgets/QApplication>
44#include <QtWidgets/QHBoxLayout>
45#include <QtWidgets/QListWidget>
46#include <QtWidgets/QPushButton>
47#include <QtWidgets/QSpacerItem>
48#include <QtWidgets/QToolButton>
49#include <QtWidgets/QVBoxLayout>
50#include <QtWidgets/QWidget>
51
52QT_BEGIN_NAMESPACE
53
54namespace qdesigner_internal {
55
56class Ui_ItemListEditor
57{
58public:
59 QVBoxLayout *verticalLayout_2;
60 QWidget *widget;
61 QVBoxLayout *verticalLayout;
62 QListWidget *listWidget;
63 QHBoxLayout *buttonsLayout;
64 QToolButton *newListItemButton;
65 QToolButton *deleteListItemButton;
66 QSpacerItem *spacerItem;
67 QToolButton *moveListItemUpButton;
68 QToolButton *moveListItemDownButton;
69 QSpacerItem *horizontalSpacer;
70 QPushButton *showPropertiesButton;
71
72 void setupUi(QWidget *qdesigner_internal__ItemListEditor)
73 {
74 if (qdesigner_internal__ItemListEditor->objectName().isEmpty())
75 qdesigner_internal__ItemListEditor->setObjectName(QString::fromUtf8(str: "qdesigner_internal__ItemListEditor"));
76 qdesigner_internal__ItemListEditor->resize(w: 550, h: 360);
77 verticalLayout_2 = new QVBoxLayout(qdesigner_internal__ItemListEditor);
78 verticalLayout_2->setObjectName(QString::fromUtf8(str: "verticalLayout_2"));
79 widget = new QWidget(qdesigner_internal__ItemListEditor);
80 widget->setObjectName(QString::fromUtf8(str: "widget"));
81 verticalLayout = new QVBoxLayout(widget);
82 verticalLayout->setContentsMargins(left: 0, top: 0, right: 0, bottom: 0);
83 verticalLayout->setObjectName(QString::fromUtf8(str: "verticalLayout"));
84 listWidget = new QListWidget(widget);
85 listWidget->setObjectName(QString::fromUtf8(str: "listWidget"));
86 listWidget->setEnabled(true);
87
88 verticalLayout->addWidget(listWidget);
89
90 buttonsLayout = new QHBoxLayout();
91 buttonsLayout->setObjectName(QString::fromUtf8(str: "buttonsLayout"));
92 newListItemButton = new QToolButton(widget);
93 newListItemButton->setObjectName(QString::fromUtf8(str: "newListItemButton"));
94
95 buttonsLayout->addWidget(newListItemButton);
96
97 deleteListItemButton = new QToolButton(widget);
98 deleteListItemButton->setObjectName(QString::fromUtf8(str: "deleteListItemButton"));
99
100 buttonsLayout->addWidget(deleteListItemButton);
101
102 spacerItem = new QSpacerItem(16, 10, QSizePolicy::Expanding, QSizePolicy::Minimum);
103
104 buttonsLayout->addItem(spacerItem);
105
106 moveListItemUpButton = new QToolButton(widget);
107 moveListItemUpButton->setObjectName(QString::fromUtf8(str: "moveListItemUpButton"));
108
109 buttonsLayout->addWidget(moveListItemUpButton);
110
111 moveListItemDownButton = new QToolButton(widget);
112 moveListItemDownButton->setObjectName(QString::fromUtf8(str: "moveListItemDownButton"));
113
114 buttonsLayout->addWidget(moveListItemDownButton);
115
116 horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
117
118 buttonsLayout->addItem(horizontalSpacer);
119
120 showPropertiesButton = new QPushButton(widget);
121 showPropertiesButton->setObjectName(QString::fromUtf8(str: "showPropertiesButton"));
122
123 buttonsLayout->addWidget(showPropertiesButton);
124
125
126 verticalLayout->addLayout(layout: buttonsLayout);
127
128
129 verticalLayout_2->addWidget(widget);
130
131
132 retranslateUi(qdesigner_internal__ItemListEditor);
133
134 QMetaObject::connectSlotsByName(o: qdesigner_internal__ItemListEditor);
135 } // setupUi
136
137 void retranslateUi(QWidget *qdesigner_internal__ItemListEditor)
138 {
139 qdesigner_internal__ItemListEditor->setWindowTitle(QString());
140#if QT_CONFIG(tooltip)
141 listWidget->setToolTip(QCoreApplication::translate(context: "qdesigner_internal::ItemListEditor", key: "Items List", disambiguation: nullptr));
142#endif // QT_CONFIG(tooltip)
143#if QT_CONFIG(tooltip)
144 newListItemButton->setToolTip(QCoreApplication::translate(context: "qdesigner_internal::ItemListEditor", key: "New Item", disambiguation: nullptr));
145#endif // QT_CONFIG(tooltip)
146 newListItemButton->setText(QCoreApplication::translate(context: "qdesigner_internal::ItemListEditor", key: "&New", disambiguation: nullptr));
147#if QT_CONFIG(tooltip)
148 deleteListItemButton->setToolTip(QCoreApplication::translate(context: "qdesigner_internal::ItemListEditor", key: "Delete Item", disambiguation: nullptr));
149#endif // QT_CONFIG(tooltip)
150 deleteListItemButton->setText(QCoreApplication::translate(context: "qdesigner_internal::ItemListEditor", key: "&Delete", disambiguation: nullptr));
151#if QT_CONFIG(tooltip)
152 moveListItemUpButton->setToolTip(QCoreApplication::translate(context: "qdesigner_internal::ItemListEditor", key: "Move Item Up", disambiguation: nullptr));
153#endif // QT_CONFIG(tooltip)
154 moveListItemUpButton->setText(QCoreApplication::translate(context: "qdesigner_internal::ItemListEditor", key: "U", disambiguation: nullptr));
155#if QT_CONFIG(tooltip)
156 moveListItemDownButton->setToolTip(QCoreApplication::translate(context: "qdesigner_internal::ItemListEditor", key: "Move Item Down", disambiguation: nullptr));
157#endif // QT_CONFIG(tooltip)
158 moveListItemDownButton->setText(QCoreApplication::translate(context: "qdesigner_internal::ItemListEditor", key: "D", disambiguation: nullptr));
159 showPropertiesButton->setText(QCoreApplication::translate(context: "qdesigner_internal::ItemListEditor", key: "Properties &>>", disambiguation: nullptr));
160 } // retranslateUi
161
162};
163
164} // namespace qdesigner_internal
165
166namespace qdesigner_internal {
167namespace Ui {
168 class ItemListEditor: public Ui_ItemListEditor {};
169} // namespace Ui
170} // namespace qdesigner_internal
171
172QT_END_NAMESPACE
173
174#endif // UI_ITEMLISTEDITOR_H
175

source code of qttools/src/designer/src/components/lib/.uic/ui_itemlisteditor.h