00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef UI_INPUTVECTOR_H
00011 #define UI_INPUTVECTOR_H
00012
00013 #include <QtCore/QVariant>
00014 #include <QtGui/QAction>
00015 #include <QtGui/QApplication>
00016 #include <QtGui/QButtonGroup>
00017 #include <QtGui/QDialog>
00018 #include <QtGui/QDoubleSpinBox>
00019 #include <QtGui/QGridLayout>
00020 #include <QtGui/QGroupBox>
00021 #include <QtGui/QHBoxLayout>
00022 #include <QtGui/QHeaderView>
00023 #include <QtGui/QLabel>
00024 #include <QtGui/QPushButton>
00025 #include <QtGui/QSpacerItem>
00026
00027 namespace Gui {
00028 namespace Dialog {
00029
00030 class Ui_InputVector
00031 {
00032 public:
00033 QGridLayout *gridLayout;
00034 QGroupBox *groupBox;
00035 QGridLayout *gridLayout1;
00036 QDoubleSpinBox *vectorZ;
00037 QDoubleSpinBox *vectorY;
00038 QDoubleSpinBox *vectorX;
00039 QLabel *label_3;
00040 QLabel *label_2;
00041 QLabel *label;
00042 QHBoxLayout *hboxLayout;
00043 QSpacerItem *spacerItem;
00044 QPushButton *okButton;
00045
00046 void setupUi(QDialog *Gui__Dialog__InputVector)
00047 {
00048 if (Gui__Dialog__InputVector->objectName().isEmpty())
00049 Gui__Dialog__InputVector->setObjectName(QString::fromUtf8("Gui__Dialog__InputVector"));
00050 Gui__Dialog__InputVector->resize(181, 177);
00051 gridLayout = new QGridLayout(Gui__Dialog__InputVector);
00052 #ifndef Q_OS_MAC
00053 gridLayout->setSpacing(6);
00054 #endif
00055 #ifndef Q_OS_MAC
00056 gridLayout->setMargin(9);
00057 #endif
00058 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
00059 groupBox = new QGroupBox(Gui__Dialog__InputVector);
00060 groupBox->setObjectName(QString::fromUtf8("groupBox"));
00061 gridLayout1 = new QGridLayout(groupBox);
00062 #ifndef Q_OS_MAC
00063 gridLayout1->setSpacing(6);
00064 #endif
00065 #ifndef Q_OS_MAC
00066 gridLayout1->setMargin(9);
00067 #endif
00068 gridLayout1->setObjectName(QString::fromUtf8("gridLayout1"));
00069 vectorZ = new QDoubleSpinBox(groupBox);
00070 vectorZ->setObjectName(QString::fromUtf8("vectorZ"));
00071 vectorZ->setMaximum(2.14748e+09);
00072 vectorZ->setMinimum(-2.14748e+09);
00073 vectorZ->setValue(1);
00074
00075 gridLayout1->addWidget(vectorZ, 2, 1, 1, 1);
00076
00077 vectorY = new QDoubleSpinBox(groupBox);
00078 vectorY->setObjectName(QString::fromUtf8("vectorY"));
00079 vectorY->setMaximum(2.14748e+09);
00080 vectorY->setMinimum(-2.14748e+09);
00081
00082 gridLayout1->addWidget(vectorY, 1, 1, 1, 1);
00083
00084 vectorX = new QDoubleSpinBox(groupBox);
00085 vectorX->setObjectName(QString::fromUtf8("vectorX"));
00086 vectorX->setMaximum(2.14748e+09);
00087 vectorX->setMinimum(-2.14748e+09);
00088
00089 gridLayout1->addWidget(vectorX, 0, 1, 1, 1);
00090
00091 label_3 = new QLabel(groupBox);
00092 label_3->setObjectName(QString::fromUtf8("label_3"));
00093
00094 gridLayout1->addWidget(label_3, 2, 0, 1, 1);
00095
00096 label_2 = new QLabel(groupBox);
00097 label_2->setObjectName(QString::fromUtf8("label_2"));
00098
00099 gridLayout1->addWidget(label_2, 1, 0, 1, 1);
00100
00101 label = new QLabel(groupBox);
00102 label->setObjectName(QString::fromUtf8("label"));
00103
00104 gridLayout1->addWidget(label, 0, 0, 1, 1);
00105
00106
00107 gridLayout->addWidget(groupBox, 0, 0, 1, 1);
00108
00109 hboxLayout = new QHBoxLayout();
00110 #ifndef Q_OS_MAC
00111 hboxLayout->setSpacing(6);
00112 #endif
00113 hboxLayout->setMargin(0);
00114 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
00115 spacerItem = new QSpacerItem(131, 31, QSizePolicy::Expanding, QSizePolicy::Minimum);
00116
00117 hboxLayout->addItem(spacerItem);
00118
00119 okButton = new QPushButton(Gui__Dialog__InputVector);
00120 okButton->setObjectName(QString::fromUtf8("okButton"));
00121
00122 hboxLayout->addWidget(okButton);
00123
00124
00125 gridLayout->addLayout(hboxLayout, 1, 0, 1, 1);
00126
00127 QWidget::setTabOrder(vectorX, vectorY);
00128 QWidget::setTabOrder(vectorY, vectorZ);
00129 QWidget::setTabOrder(vectorZ, okButton);
00130
00131 retranslateUi(Gui__Dialog__InputVector);
00132 QObject::connect(okButton, SIGNAL(clicked()), Gui__Dialog__InputVector, SLOT(accept()));
00133
00134 QMetaObject::connectSlotsByName(Gui__Dialog__InputVector);
00135 }
00136
00137 void retranslateUi(QDialog *Gui__Dialog__InputVector)
00138 {
00139 Gui__Dialog__InputVector->setWindowTitle(QApplication::translate("Gui::Dialog::InputVector", "Input vector", 0, QApplication::UnicodeUTF8));
00140 groupBox->setTitle(QApplication::translate("Gui::Dialog::InputVector", "Vector", 0, QApplication::UnicodeUTF8));
00141 label_3->setText(QApplication::translate("Gui::Dialog::InputVector", "Z:", 0, QApplication::UnicodeUTF8));
00142 label_2->setText(QApplication::translate("Gui::Dialog::InputVector", "Y:", 0, QApplication::UnicodeUTF8));
00143 label->setText(QApplication::translate("Gui::Dialog::InputVector", "X:", 0, QApplication::UnicodeUTF8));
00144 okButton->setText(QApplication::translate("Gui::Dialog::InputVector", "OK", 0, QApplication::UnicodeUTF8));
00145 Q_UNUSED(Gui__Dialog__InputVector);
00146 }
00147
00148 };
00149
00150 }
00151 }
00152
00153 namespace Gui {
00154 namespace Dialog {
00155 namespace Ui {
00156 class InputVector: public Ui_InputVector {};
00157 }
00158 }
00159 }
00160
00161 #endif // UI_INPUTVECTOR_H