diff options
author | axis <qt-info@nokia.com> | 2009-04-24 11:34:15 (GMT) |
---|---|---|
committer | axis <qt-info@nokia.com> | 2009-04-24 11:34:15 (GMT) |
commit | 8f427b2b914d5b575a4a7c0ed65d2fb8f45acc76 (patch) | |
tree | a17e1a767a89542ab59907462206d7dcf2e504b2 /tests/auto/uic/baseline/form.ui.h | |
download | Qt-8f427b2b914d5b575a4a7c0ed65d2fb8f45acc76.zip Qt-8f427b2b914d5b575a4a7c0ed65d2fb8f45acc76.tar.gz Qt-8f427b2b914d5b575a4a7c0ed65d2fb8f45acc76.tar.bz2 |
Long live Qt for S60!
Diffstat (limited to 'tests/auto/uic/baseline/form.ui.h')
-rw-r--r-- | tests/auto/uic/baseline/form.ui.h | 144 |
1 files changed, 144 insertions, 0 deletions
diff --git a/tests/auto/uic/baseline/form.ui.h b/tests/auto/uic/baseline/form.ui.h new file mode 100644 index 0000000..2a79c26 --- /dev/null +++ b/tests/auto/uic/baseline/form.ui.h @@ -0,0 +1,144 @@ +/******************************************************************************** +** Form generated from reading ui file 'form.ui' +** +** Created: Thu Jul 10 09:47:34 2008 +** by: Qt User Interface Compiler version 4.5.0 +** +** WARNING! All changes made in this file will be lost when recompiling ui file! +********************************************************************************/ + +#ifndef FORM_H +#define FORM_H + +#include <QtCore/QVariant> +#include <QtGui/QAction> +#include <QtGui/QApplication> +#include <QtGui/QButtonGroup> +#include <QtGui/QHBoxLayout> +#include <QtGui/QHeaderView> +#include <QtGui/QLabel> +#include <QtGui/QSpacerItem> +#include <QtGui/QSpinBox> +#include <QtGui/QTimeEdit> +#include <QtGui/QVBoxLayout> +#include <QtGui/QWidget> +#include "worldtimeclock.h" + +QT_BEGIN_NAMESPACE + +class Ui_WorldTimeForm +{ +public: + QHBoxLayout *hboxLayout; + WorldTimeClock *worldTimeClock; + QVBoxLayout *vboxLayout; + QSpacerItem *spacerItem; + QHBoxLayout *hboxLayout1; + QLabel *label; + QTimeEdit *timeEdit; + QHBoxLayout *hboxLayout2; + QLabel *label_2; + QSpinBox *spinBox; + QSpacerItem *spacerItem1; + + void setupUi(QWidget *WorldTimeForm) + { + if (WorldTimeForm->objectName().isEmpty()) + WorldTimeForm->setObjectName(QString::fromUtf8("WorldTimeForm")); + WorldTimeForm->resize(400, 300); + hboxLayout = new QHBoxLayout(WorldTimeForm); +#ifndef Q_OS_MAC + hboxLayout->setSpacing(6); +#endif +#ifndef Q_OS_MAC + hboxLayout->setMargin(9); +#endif + hboxLayout->setObjectName(QString::fromUtf8("hboxLayout")); + worldTimeClock = new WorldTimeClock(WorldTimeForm); + worldTimeClock->setObjectName(QString::fromUtf8("worldTimeClock")); + + hboxLayout->addWidget(worldTimeClock); + + vboxLayout = new QVBoxLayout(); +#ifndef Q_OS_MAC + vboxLayout->setSpacing(6); +#endif + vboxLayout->setMargin(1); + vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); + spacerItem = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + vboxLayout->addItem(spacerItem); + + hboxLayout1 = new QHBoxLayout(); +#ifndef Q_OS_MAC + hboxLayout1->setSpacing(6); +#endif + hboxLayout1->setMargin(1); + hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1")); + label = new QLabel(WorldTimeForm); + label->setObjectName(QString::fromUtf8("label")); + + hboxLayout1->addWidget(label); + + timeEdit = new QTimeEdit(WorldTimeForm); + timeEdit->setObjectName(QString::fromUtf8("timeEdit")); + timeEdit->setReadOnly(true); + + hboxLayout1->addWidget(timeEdit); + + + vboxLayout->addLayout(hboxLayout1); + + hboxLayout2 = new QHBoxLayout(); +#ifndef Q_OS_MAC + hboxLayout2->setSpacing(6); +#endif + hboxLayout2->setMargin(1); + hboxLayout2->setObjectName(QString::fromUtf8("hboxLayout2")); + label_2 = new QLabel(WorldTimeForm); + label_2->setObjectName(QString::fromUtf8("label_2")); + + hboxLayout2->addWidget(label_2); + + spinBox = new QSpinBox(WorldTimeForm); + spinBox->setObjectName(QString::fromUtf8("spinBox")); + spinBox->setMaximum(12); + spinBox->setMinimum(-12); + + hboxLayout2->addWidget(spinBox); + + + vboxLayout->addLayout(hboxLayout2); + + spacerItem1 = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + vboxLayout->addItem(spacerItem1); + + + hboxLayout->addLayout(vboxLayout); + + + retranslateUi(WorldTimeForm); + QObject::connect(spinBox, SIGNAL(valueChanged(int)), worldTimeClock, SLOT(setTimeZone(int))); + QObject::connect(worldTimeClock, SIGNAL(updated(QTime)), timeEdit, SLOT(setTime(QTime))); + + QMetaObject::connectSlotsByName(WorldTimeForm); + } // setupUi + + void retranslateUi(QWidget *WorldTimeForm) + { + WorldTimeForm->setWindowTitle(QApplication::translate("WorldTimeForm", "World Time Clock", 0, QApplication::UnicodeUTF8)); + label->setText(QApplication::translate("WorldTimeForm", "Current time:", 0, QApplication::UnicodeUTF8)); + label_2->setText(QApplication::translate("WorldTimeForm", "Set time zone:", 0, QApplication::UnicodeUTF8)); + Q_UNUSED(WorldTimeForm); + } // retranslateUi + +}; + +namespace Ui { + class WorldTimeForm: public Ui_WorldTimeForm {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // FORM_H |