qt5base-lts/tests/auto/tools/uic/baseline/Widget.ui.h
Lars Knoll 7968543bb0 Don't use the deprecated translate() method anymore
The Encoding argument of QCoreApplication::translate()
is deprecated and source code is always assumed to be
encoded in Utf8. Simply remove the encoding argument
from the generated .ui.h files.

Change-Id: If6c40f6df13abd45a0303c863077972c3d1fb685
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
2012-05-18 22:38:55 +02:00

82 lines
2.2 KiB
C++

/********************************************************************************
** Form generated from reading UI file 'Widget.ui'
**
** Created: Fri Sep 4 10:17:15 2009
** by: Qt User Interface Compiler version 4.6.0
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef WIDGET_H
#define WIDGET_H
#include <QtCore/QVariant>
#include <QtWidgets/QAction>
#include <QtWidgets/QApplication>
#include <QtWidgets/QButtonGroup>
#include <QtWidgets/QGroupBox>
#include <QtWidgets/QHeaderView>
#include <QtWidgets/QLabel>
#include <QtWidgets/QPushButton>
#include <QtWidgets/QVBoxLayout>
#include <QtWidgets/QWidget>
QT_BEGIN_NAMESPACE
class Ui_Form
{
public:
QVBoxLayout *vboxLayout;
QLabel *Alabel;
QGroupBox *groupBox;
QPushButton *pushButton;
void setupUi(QWidget *Form)
{
if (Form->objectName().isEmpty())
Form->setObjectName(QStringLiteral("Form"));
Form->resize(400, 300);
vboxLayout = new QVBoxLayout(Form);
vboxLayout->setObjectName(QStringLiteral("vboxLayout"));
Alabel = new QLabel(Form);
Alabel->setObjectName(QStringLiteral("Alabel"));
vboxLayout->addWidget(Alabel);
groupBox = new QGroupBox(Form);
groupBox->setObjectName(QStringLiteral("groupBox"));
vboxLayout->addWidget(groupBox);
pushButton = new QPushButton(Form);
pushButton->setObjectName(QStringLiteral("pushButton"));
vboxLayout->addWidget(pushButton);
retranslateUi(Form);
QMetaObject::connectSlotsByName(Form);
} // setupUi
void retranslateUi(QWidget *Form)
{
Form->setWindowTitle(QApplication::translate("Form", "Form", 0));
Alabel->setText(QApplication::translate("Form", "A label.\n"
"One new line.\n"
"Another new line.\n"
"Last line.", 0));
groupBox->setTitle(QApplication::translate("Form", "A Group Box", 0));
pushButton->setText(QApplication::translate("Form", "PushButton", 0));
} // retranslateUi
};
namespace Ui {
class Form: public Ui_Form {};
} // namespace Ui
QT_END_NAMESPACE
#endif // WIDGET_H