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>
110 lines
3.1 KiB
C++
110 lines
3.1 KiB
C++
/********************************************************************************
|
|
** Form generated from reading UI file 'textfinder.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 TEXTFINDER_H
|
|
#define TEXTFINDER_H
|
|
|
|
#include <QtCore/QVariant>
|
|
#include <QtWidgets/QApplication>
|
|
#include <QtWidgets/QGridLayout>
|
|
#include <QtWidgets/QLabel>
|
|
#include <QtWidgets/QLineEdit>
|
|
#include <QtWidgets/QPushButton>
|
|
#include <QtWidgets/QSpacerItem>
|
|
#include <QtWidgets/QTextEdit>
|
|
#include <QtWidgets/QVBoxLayout>
|
|
#include <QtWidgets/QWidget>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class Ui_Form
|
|
{
|
|
public:
|
|
QVBoxLayout *vboxLayout;
|
|
QGridLayout *gridLayout;
|
|
QLineEdit *lineEdit;
|
|
QLabel *searchLabel;
|
|
QPushButton *findButton;
|
|
QTextEdit *textEdit;
|
|
QSpacerItem *spacerItem;
|
|
|
|
void setupUi(QWidget *Form)
|
|
{
|
|
if (Form->objectName().isEmpty())
|
|
Form->setObjectName(QString::fromUtf8("Form"));
|
|
Form->resize(378, 158);
|
|
vboxLayout = new QVBoxLayout(Form);
|
|
#ifndef Q_OS_MAC
|
|
vboxLayout->setSpacing(6);
|
|
#endif
|
|
#ifndef Q_OS_MAC
|
|
vboxLayout->setContentsMargins(9, 9, 9, 9);
|
|
#endif
|
|
vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
|
|
gridLayout = new QGridLayout();
|
|
#ifndef Q_OS_MAC
|
|
gridLayout->setSpacing(6);
|
|
#endif
|
|
#ifndef Q_OS_MAC
|
|
gridLayout->setContentsMargins(0, 0, 0, 0);
|
|
#endif
|
|
gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
|
|
lineEdit = new QLineEdit(Form);
|
|
lineEdit->setObjectName(QString::fromUtf8("lineEdit"));
|
|
|
|
gridLayout->addWidget(lineEdit, 0, 1, 1, 1);
|
|
|
|
searchLabel = new QLabel(Form);
|
|
searchLabel->setObjectName(QString::fromUtf8("searchLabel"));
|
|
|
|
gridLayout->addWidget(searchLabel, 0, 0, 1, 1);
|
|
|
|
findButton = new QPushButton(Form);
|
|
findButton->setObjectName(QString::fromUtf8("findButton"));
|
|
|
|
gridLayout->addWidget(findButton, 0, 2, 1, 1);
|
|
|
|
|
|
vboxLayout->addLayout(gridLayout);
|
|
|
|
textEdit = new QTextEdit(Form);
|
|
textEdit->setObjectName(QString::fromUtf8("textEdit"));
|
|
|
|
vboxLayout->addWidget(textEdit);
|
|
|
|
spacerItem = new QSpacerItem(20, 16, QSizePolicy::Minimum, QSizePolicy::Expanding);
|
|
|
|
vboxLayout->addItem(spacerItem);
|
|
|
|
#if QT_CONFIG(shortcut)
|
|
searchLabel->setBuddy(lineEdit);
|
|
#endif // QT_CONFIG(shortcut)
|
|
|
|
retranslateUi(Form);
|
|
QObject::connect(lineEdit, &QLineEdit::returnPressed, findButton, &QPushButton::animateClick);
|
|
|
|
QMetaObject::connectSlotsByName(Form);
|
|
} // setupUi
|
|
|
|
void retranslateUi(QWidget *Form)
|
|
{
|
|
Form->setWindowTitle(QCoreApplication::translate("Form", "Find Text", nullptr));
|
|
searchLabel->setText(QCoreApplication::translate("Form", "&Keyword:", nullptr));
|
|
findButton->setText(QCoreApplication::translate("Form", "&Find", nullptr));
|
|
} // retranslateUi
|
|
|
|
};
|
|
|
|
namespace Ui {
|
|
class Form: public Ui_Form {};
|
|
} // namespace Ui
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
#endif // TEXTFINDER_H
|