source: projectionDesigner/trunk/projdesignerplugins/defaultplugin/ui_defaultteapotscenewidget.h

Last change on this file was 49, checked in by Torben Dannhauer, 14 years ago
File size: 4.5 KB
Line 
1/********************************************************************************
2** Form generated from reading UI file 'defaultteapotscenewidget.ui'
3**
4** Created: Wed 19. May 11:52:16 2010
5**      by: Qt User Interface Compiler version 4.6.2
6**
7** WARNING! All changes made in this file will be lost when recompiling UI file!
8********************************************************************************/
9
10#ifndef UI_DEFAULTTEAPOTSCENEWIDGET_H
11#define UI_DEFAULTTEAPOTSCENEWIDGET_H
12
13#include <QtCore/QVariant>
14#include <QtGui/QAction>
15#include <QtGui/QApplication>
16#include <QtGui/QButtonGroup>
17#include <QtGui/QCheckBox>
18#include <QtGui/QGridLayout>
19#include <QtGui/QGroupBox>
20#include <QtGui/QHBoxLayout>
21#include <QtGui/QHeaderView>
22#include <QtGui/QLabel>
23#include <QtGui/QSpacerItem>
24#include <QtGui/QSpinBox>
25#include <QtGui/QVBoxLayout>
26#include <QtGui/QWidget>
27
28QT_BEGIN_NAMESPACE
29
30class Ui_DefaultTeapotSceneWidget
31{
32public:
33    QGridLayout *gridLayout;
34    QGroupBox *projectionGroup;
35    QVBoxLayout *vboxLayout;
36    QHBoxLayout *hboxLayout;
37    QCheckBox *wireframeCheckBox;
38    QLabel *widthLabel;
39    QSpinBox *widthSpinBox;
40    QSpacerItem *spacerItem;
41
42    void setupUi(QWidget *DefaultTeapotSceneWidget)
43    {
44        if (DefaultTeapotSceneWidget->objectName().isEmpty())
45            DefaultTeapotSceneWidget->setObjectName(QString::fromUtf8("DefaultTeapotSceneWidget"));
46        DefaultTeapotSceneWidget->resize(227, 79);
47        gridLayout = new QGridLayout(DefaultTeapotSceneWidget);
48        gridLayout->setSpacing(0);
49        gridLayout->setContentsMargins(0, 0, 0, 0);
50        gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
51        projectionGroup = new QGroupBox(DefaultTeapotSceneWidget);
52        projectionGroup->setObjectName(QString::fromUtf8("projectionGroup"));
53        vboxLayout = new QVBoxLayout(projectionGroup);
54#ifndef Q_OS_MAC
55        vboxLayout->setSpacing(6);
56#endif
57#ifndef Q_OS_MAC
58        vboxLayout->setContentsMargins(9, 9, 9, 9);
59#endif
60        vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
61        hboxLayout = new QHBoxLayout();
62#ifndef Q_OS_MAC
63        hboxLayout->setSpacing(6);
64#endif
65#ifndef Q_OS_MAC
66        hboxLayout->setContentsMargins(0, 0, 0, 0);
67#endif
68        hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
69        wireframeCheckBox = new QCheckBox(projectionGroup);
70        wireframeCheckBox->setObjectName(QString::fromUtf8("wireframeCheckBox"));
71
72        hboxLayout->addWidget(wireframeCheckBox);
73
74        widthLabel = new QLabel(projectionGroup);
75        widthLabel->setObjectName(QString::fromUtf8("widthLabel"));
76        widthLabel->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
77
78        hboxLayout->addWidget(widthLabel);
79
80        widthSpinBox = new QSpinBox(projectionGroup);
81        widthSpinBox->setObjectName(QString::fromUtf8("widthSpinBox"));
82        widthSpinBox->setMaximum(10);
83        widthSpinBox->setMinimum(1);
84        widthSpinBox->setValue(1);
85
86        hboxLayout->addWidget(widthSpinBox);
87
88
89        vboxLayout->addLayout(hboxLayout);
90
91        spacerItem = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding);
92
93        vboxLayout->addItem(spacerItem);
94
95
96        gridLayout->addWidget(projectionGroup, 0, 0, 1, 1);
97
98
99        retranslateUi(DefaultTeapotSceneWidget);
100        QObject::connect(widthLabel, SIGNAL(linkActivated(QString)), widthSpinBox, SLOT(selectAll()));
101
102        QMetaObject::connectSlotsByName(DefaultTeapotSceneWidget);
103    } // setupUi
104
105    void retranslateUi(QWidget *DefaultTeapotSceneWidget)
106    {
107        DefaultTeapotSceneWidget->setWindowTitle(QApplication::translate("DefaultTeapotSceneWidget", "Projection Settings", 0, QApplication::UnicodeUTF8));
108        projectionGroup->setTitle(QApplication::translate("DefaultTeapotSceneWidget", "Teapot Properties", 0, QApplication::UnicodeUTF8));
109        wireframeCheckBox->setText(QApplication::translate("DefaultTeapotSceneWidget", "Wireframe", 0, QApplication::UnicodeUTF8));
110        widthLabel->setText(QApplication::translate("DefaultTeapotSceneWidget", "Width", 0, QApplication::UnicodeUTF8));
111        widthSpinBox->setSuffix(QApplication::translate("DefaultTeapotSceneWidget", " px", 0, QApplication::UnicodeUTF8));
112    } // retranslateUi
113
114};
115
116namespace Ui {
117    class DefaultTeapotSceneWidget: public Ui_DefaultTeapotSceneWidget {};
118} // namespace Ui
119
120QT_END_NAMESPACE
121
122#endif // UI_DEFAULTTEAPOTSCENEWIDGET_H
Note: See TracBrowser for help on using the repository browser.