ff18b02f21
This reverts the following commits:d12d2949d1
26c3bec09b
49b08f96e8
We can't easily predict all code paths for QDesigner with such a microoptimization. We also don't want to generate three different string constructions depending on some sophisticated heuristics. [ChangeLog][uic] The -no-stringliteral option is now deprecated and UIC will not generate QStringLiteral anymore. Task-number: QTBUG-65251 Task-number: QTBUG-51602 Change-Id: I34a5a1934a8df19c5c84ac2ba8e5168ce5665037 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
80 lines
2.4 KiB
C++
80 lines
2.4 KiB
C++
/********************************************************************************
|
|
** Form generated from reading UI file 'gridalignment.ui'
|
|
**
|
|
** Created by: Qt User Interface Compiler version 5.0.0
|
|
**
|
|
** WARNING! All changes made in this file will be lost when recompiling UI file!
|
|
********************************************************************************/
|
|
|
|
#ifndef GRIDALIGNMENT_H
|
|
#define GRIDALIGNMENT_H
|
|
|
|
#include <QtCore/QVariant>
|
|
#include <QtWidgets/QApplication>
|
|
#include <QtWidgets/QGridLayout>
|
|
#include <QtWidgets/QPushButton>
|
|
#include <QtWidgets/QWidget>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class Ui_Form
|
|
{
|
|
public:
|
|
QGridLayout *gridLayout;
|
|
QPushButton *pushButton;
|
|
QPushButton *pushButton_3;
|
|
QPushButton *pushButton_2;
|
|
QPushButton *pushButton_4;
|
|
|
|
void setupUi(QWidget *Form)
|
|
{
|
|
if (Form->objectName().isEmpty())
|
|
Form->setObjectName(QString::fromUtf8("Form"));
|
|
Form->resize(279, 163);
|
|
gridLayout = new QGridLayout(Form);
|
|
gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
|
|
pushButton = new QPushButton(Form);
|
|
pushButton->setObjectName(QString::fromUtf8("pushButton"));
|
|
|
|
gridLayout->addWidget(pushButton, 0, 0, 1, 1, Qt::AlignLeft);
|
|
|
|
pushButton_3 = new QPushButton(Form);
|
|
pushButton_3->setObjectName(QString::fromUtf8("pushButton_3"));
|
|
|
|
gridLayout->addWidget(pushButton_3, 0, 1, 1, 1, Qt::AlignTop);
|
|
|
|
pushButton_2 = new QPushButton(Form);
|
|
pushButton_2->setObjectName(QString::fromUtf8("pushButton_2"));
|
|
|
|
gridLayout->addWidget(pushButton_2, 1, 0, 1, 1, Qt::AlignRight);
|
|
|
|
pushButton_4 = new QPushButton(Form);
|
|
pushButton_4->setObjectName(QString::fromUtf8("pushButton_4"));
|
|
|
|
gridLayout->addWidget(pushButton_4, 1, 1, 1, 1, Qt::AlignBottom);
|
|
|
|
|
|
retranslateUi(Form);
|
|
|
|
QMetaObject::connectSlotsByName(Form);
|
|
} // setupUi
|
|
|
|
void retranslateUi(QWidget *Form)
|
|
{
|
|
Form->setWindowTitle(QApplication::translate("Form", "Form", nullptr));
|
|
pushButton->setText(QApplication::translate("Form", "Left", nullptr));
|
|
pushButton_3->setText(QApplication::translate("Form", "Top", nullptr));
|
|
pushButton_2->setText(QApplication::translate("Form", "Right", nullptr));
|
|
pushButton_4->setText(QApplication::translate("Form", "Bottom", nullptr));
|
|
} // retranslateUi
|
|
|
|
};
|
|
|
|
namespace Ui {
|
|
class Form: public Ui_Form {};
|
|
} // namespace Ui
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
#endif // GRIDALIGNMENT_H
|