da3cb1deb6
Add a enum and formatting for member function pointer based connections. Now preferably use member function pointer for Qt classes or parameterless connections. This should not require qOverload() within Qt classes after the Signal/Slot disambiguation. Add command line option to force either syntax for all connections. Task-number: QTBUG-76375 Change-Id: Icdb4051e1173172a71cd536bdbc7d1ab1edf267d Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
75 lines
2.4 KiB
C++
75 lines
2.4 KiB
C++
/********************************************************************************
|
|
** Form generated from reading UI file 'bug18156QTreeWidget.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 BUG18156QTREEWIDGET_H
|
|
#define BUG18156QTREEWIDGET_H
|
|
|
|
#include <QtCore/QVariant>
|
|
#include <QtWidgets/QAbstractButton>
|
|
#include <QtWidgets/QApplication>
|
|
#include <QtWidgets/QDialog>
|
|
#include <QtWidgets/QDialogButtonBox>
|
|
#include <QtWidgets/QGridLayout>
|
|
#include <QtWidgets/QHeaderView>
|
|
#include <QtWidgets/QTreeWidget>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class Ui_Dialog
|
|
{
|
|
public:
|
|
QGridLayout *gridLayout;
|
|
QTreeWidget *treeWidget;
|
|
QDialogButtonBox *buttonBox;
|
|
|
|
void setupUi(QDialog *Dialog)
|
|
{
|
|
if (Dialog->objectName().isEmpty())
|
|
Dialog->setObjectName(QString::fromUtf8("Dialog"));
|
|
Dialog->resize(400, 300);
|
|
gridLayout = new QGridLayout(Dialog);
|
|
gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
|
|
treeWidget = new QTreeWidget(Dialog);
|
|
treeWidget->headerItem()->setText(0, QString());
|
|
treeWidget->headerItem()->setText(2, QString());
|
|
treeWidget->setObjectName(QString::fromUtf8("treeWidget"));
|
|
|
|
gridLayout->addWidget(treeWidget, 0, 0, 1, 1);
|
|
|
|
buttonBox = new QDialogButtonBox(Dialog);
|
|
buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
|
|
buttonBox->setOrientation(Qt::Horizontal);
|
|
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
|
|
|
|
gridLayout->addWidget(buttonBox, 1, 0, 1, 1);
|
|
|
|
|
|
retranslateUi(Dialog);
|
|
QObject::connect(buttonBox, &QDialogButtonBox::accepted, Dialog, &QDialog::accept);
|
|
QObject::connect(buttonBox, &QDialogButtonBox::rejected, Dialog, &QDialog::reject);
|
|
|
|
QMetaObject::connectSlotsByName(Dialog);
|
|
} // setupUi
|
|
|
|
void retranslateUi(QDialog *Dialog)
|
|
{
|
|
Dialog->setWindowTitle(QCoreApplication::translate("Dialog", "Dialog", nullptr));
|
|
QTreeWidgetItem *___qtreewidgetitem = treeWidget->headerItem();
|
|
___qtreewidgetitem->setText(1, QCoreApplication::translate("Dialog", "4", nullptr));
|
|
} // retranslateUi
|
|
|
|
};
|
|
|
|
namespace Ui {
|
|
class Dialog: public Ui_Dialog {};
|
|
} // namespace Ui
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
#endif // BUG18156QTREEWIDGET_H
|