139f416237
For moc, rcc and uic, then it's friendly for tools like ccache. ccache is using md5 to check file modification, but the different timestamp info will cause different md5 for same meaningful contents, it will disabled ccache. Updated the autotest for uic and rcc. Task-number: QTBUG-26589 Change-Id: I9f1dcf6cd826ad9603af6e183757bcd748c32bd1 Reviewed-by: Olivier Goffart <ogoffart@woboq.com>
81 lines
2.1 KiB
C++
81 lines
2.1 KiB
C++
/********************************************************************************
|
|
** Form generated from reading UI file 'Widget.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 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
|