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>
115 lines
3.8 KiB
C++
115 lines
3.8 KiB
C++
/********************************************************************************
|
|
** Form generated from reading UI file 'addlinkdialog.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 ADDLINKDIALOG_H
|
|
#define ADDLINKDIALOG_H
|
|
|
|
#include <QtCore/QVariant>
|
|
#include <QtWidgets/QAbstractButton>
|
|
#include <QtWidgets/QApplication>
|
|
#include <QtWidgets/QDialog>
|
|
#include <QtWidgets/QDialogButtonBox>
|
|
#include <QtWidgets/QFormLayout>
|
|
#include <QtWidgets/QFrame>
|
|
#include <QtWidgets/QLabel>
|
|
#include <QtWidgets/QLineEdit>
|
|
#include <QtWidgets/QSpacerItem>
|
|
#include <QtWidgets/QVBoxLayout>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class Ui_AddLinkDialog
|
|
{
|
|
public:
|
|
QVBoxLayout *verticalLayout;
|
|
QFormLayout *formLayout;
|
|
QLabel *label;
|
|
QLineEdit *titleInput;
|
|
QLabel *label_2;
|
|
QLineEdit *urlInput;
|
|
QSpacerItem *verticalSpacer;
|
|
QFrame *line;
|
|
QDialogButtonBox *buttonBox;
|
|
|
|
void setupUi(QDialog *AddLinkDialog)
|
|
{
|
|
if (AddLinkDialog->objectName().isEmpty())
|
|
AddLinkDialog->setObjectName(QString::fromUtf8("AddLinkDialog"));
|
|
AddLinkDialog->setSizeGripEnabled(false);
|
|
AddLinkDialog->setModal(true);
|
|
verticalLayout = new QVBoxLayout(AddLinkDialog);
|
|
verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
|
|
formLayout = new QFormLayout();
|
|
formLayout->setObjectName(QString::fromUtf8("formLayout"));
|
|
label = new QLabel(AddLinkDialog);
|
|
label->setObjectName(QString::fromUtf8("label"));
|
|
|
|
formLayout->setWidget(0, QFormLayout::LabelRole, label);
|
|
|
|
titleInput = new QLineEdit(AddLinkDialog);
|
|
titleInput->setObjectName(QString::fromUtf8("titleInput"));
|
|
titleInput->setMinimumSize(QSize(337, 0));
|
|
|
|
formLayout->setWidget(0, QFormLayout::FieldRole, titleInput);
|
|
|
|
label_2 = new QLabel(AddLinkDialog);
|
|
label_2->setObjectName(QString::fromUtf8("label_2"));
|
|
|
|
formLayout->setWidget(1, QFormLayout::LabelRole, label_2);
|
|
|
|
urlInput = new QLineEdit(AddLinkDialog);
|
|
urlInput->setObjectName(QString::fromUtf8("urlInput"));
|
|
|
|
formLayout->setWidget(1, QFormLayout::FieldRole, urlInput);
|
|
|
|
|
|
verticalLayout->addLayout(formLayout);
|
|
|
|
verticalSpacer = new QSpacerItem(0, 0, QSizePolicy::Minimum, QSizePolicy::Expanding);
|
|
|
|
verticalLayout->addItem(verticalSpacer);
|
|
|
|
line = new QFrame(AddLinkDialog);
|
|
line->setObjectName(QString::fromUtf8("line"));
|
|
line->setFrameShape(QFrame::HLine);
|
|
line->setFrameShadow(QFrame::Sunken);
|
|
|
|
verticalLayout->addWidget(line);
|
|
|
|
buttonBox = new QDialogButtonBox(AddLinkDialog);
|
|
buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
|
|
buttonBox->setOrientation(Qt::Horizontal);
|
|
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
|
|
|
|
verticalLayout->addWidget(buttonBox);
|
|
|
|
|
|
retranslateUi(AddLinkDialog);
|
|
QObject::connect(buttonBox, &QDialogButtonBox::accepted, AddLinkDialog, &QDialog::accept);
|
|
QObject::connect(buttonBox, &QDialogButtonBox::rejected, AddLinkDialog, &QDialog::reject);
|
|
|
|
QMetaObject::connectSlotsByName(AddLinkDialog);
|
|
} // setupUi
|
|
|
|
void retranslateUi(QDialog *AddLinkDialog)
|
|
{
|
|
AddLinkDialog->setWindowTitle(QCoreApplication::translate("AddLinkDialog", "Insert Link", nullptr));
|
|
label->setText(QCoreApplication::translate("AddLinkDialog", "Title:", nullptr));
|
|
label_2->setText(QCoreApplication::translate("AddLinkDialog", "URL:", nullptr));
|
|
} // retranslateUi
|
|
|
|
};
|
|
|
|
namespace Ui {
|
|
class AddLinkDialog: public Ui_AddLinkDialog {};
|
|
} // namespace Ui
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
#endif // ADDLINKDIALOG_H
|