mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-23 20:10:48 +08:00
108 lines
3.3 KiB
C++
108 lines
3.3 KiB
C++
/*
|
|
|
|
* Copyright (C) 2016 The Qt Company Ltd.
|
|
* SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
*/
|
|
|
|
/********************************************************************************
|
|
** Form generated from reading UI file 'plugindialog.ui'
|
|
**
|
|
** Created by: Qt User Interface Compiler version 6.0.0
|
|
**
|
|
** WARNING! All changes made in this file will be lost when recompiling UI file!
|
|
********************************************************************************/
|
|
|
|
#ifndef PLUGINDIALOG_H
|
|
#define PLUGINDIALOG_H
|
|
|
|
#include <QtCore/QVariant>
|
|
#include <QtWidgets/QAbstractButton>
|
|
#include <QtWidgets/QApplication>
|
|
#include <QtWidgets/QDialog>
|
|
#include <QtWidgets/QDialogButtonBox>
|
|
#include <QtWidgets/QHBoxLayout>
|
|
#include <QtWidgets/QHeaderView>
|
|
#include <QtWidgets/QLabel>
|
|
#include <QtWidgets/QTreeWidget>
|
|
#include <QtWidgets/QVBoxLayout>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class Ui_PluginDialog
|
|
{
|
|
public:
|
|
QVBoxLayout *vboxLayout;
|
|
QLabel *label;
|
|
QTreeWidget *treeWidget;
|
|
QLabel *message;
|
|
QHBoxLayout *hboxLayout;
|
|
QDialogButtonBox *buttonBox;
|
|
|
|
void setupUi(QDialog *PluginDialog)
|
|
{
|
|
if (PluginDialog->objectName().isEmpty())
|
|
PluginDialog->setObjectName("PluginDialog");
|
|
PluginDialog->resize(401, 331);
|
|
vboxLayout = new QVBoxLayout(PluginDialog);
|
|
vboxLayout->setSpacing(6);
|
|
vboxLayout->setObjectName("vboxLayout");
|
|
vboxLayout->setContentsMargins(8, 8, 8, 8);
|
|
label = new QLabel(PluginDialog);
|
|
label->setObjectName("label");
|
|
label->setWordWrap(true);
|
|
|
|
vboxLayout->addWidget(label);
|
|
|
|
treeWidget = new QTreeWidget(PluginDialog);
|
|
treeWidget->setObjectName("treeWidget");
|
|
treeWidget->setTextElideMode(Qt::ElideNone);
|
|
|
|
vboxLayout->addWidget(treeWidget);
|
|
|
|
message = new QLabel(PluginDialog);
|
|
message->setObjectName("message");
|
|
message->setWordWrap(true);
|
|
|
|
vboxLayout->addWidget(message);
|
|
|
|
hboxLayout = new QHBoxLayout();
|
|
hboxLayout->setSpacing(6);
|
|
hboxLayout->setObjectName("hboxLayout");
|
|
hboxLayout->setContentsMargins(0, 0, 0, 0);
|
|
|
|
vboxLayout->addLayout(hboxLayout);
|
|
|
|
buttonBox = new QDialogButtonBox(PluginDialog);
|
|
buttonBox->setObjectName("buttonBox");
|
|
buttonBox->setOrientation(Qt::Horizontal);
|
|
buttonBox->setStandardButtons(QDialogButtonBox::Close);
|
|
|
|
vboxLayout->addWidget(buttonBox);
|
|
|
|
|
|
retranslateUi(PluginDialog);
|
|
QObject::connect(buttonBox, &QDialogButtonBox::rejected, PluginDialog, qOverload<>(&QDialog::reject));
|
|
|
|
QMetaObject::connectSlotsByName(PluginDialog);
|
|
} // setupUi
|
|
|
|
void retranslateUi(QDialog *PluginDialog)
|
|
{
|
|
PluginDialog->setWindowTitle(QCoreApplication::translate("PluginDialog", "Plugin Information", nullptr));
|
|
label->setText(QCoreApplication::translate("PluginDialog", "TextLabel", nullptr));
|
|
QTreeWidgetItem *___qtreewidgetitem = treeWidget->headerItem();
|
|
___qtreewidgetitem->setText(0, QCoreApplication::translate("PluginDialog", "1", nullptr));
|
|
message->setText(QCoreApplication::translate("PluginDialog", "TextLabel", nullptr));
|
|
} // retranslateUi
|
|
|
|
};
|
|
|
|
namespace Ui {
|
|
class PluginDialog: public Ui_PluginDialog {};
|
|
} // namespace Ui
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
#endif // PLUGINDIALOG_H
|