9 #ifndef UI_NATGRP_OPTIONS_WID_H
10 #define UI_NATGRP_OPTIONS_WID_H
12 #include <QtCore/QVariant>
13 #include <QtGui/QAction>
14 #include <QtGui/QApplication>
15 #include <QtGui/QButtonGroup>
16 #include <QtGui/QCheckBox>
17 #include <QtGui/QGridLayout>
18 #include <QtGui/QHeaderView>
19 #include <QtGui/QLabel>
20 #include <QtGui/QLineEdit>
21 #include <QtGui/QToolButton>
22 #include <QtGui/QWidget>
29 QGridLayout *gridLayout;
30 QToolButton *swapToolButton;
31 QLineEdit *stepLineEdit;
32 QCheckBox *autoStepCheckBox;
34 QLineEdit *mnLineEdit;
35 QLineEdit *mxLineEdit;
37 void setupUi(QWidget *NatgrpOptionsWid)
39 if (NatgrpOptionsWid->objectName().isEmpty())
40 NatgrpOptionsWid->setObjectName(QString::fromUtf8(
"NatgrpOptionsWid"));
41 NatgrpOptionsWid->resize(435, 48);
42 gridLayout =
new QGridLayout(NatgrpOptionsWid);
43 gridLayout->setObjectName(QString::fromUtf8(
"gridLayout"));
44 swapToolButton =
new QToolButton(NatgrpOptionsWid);
45 swapToolButton->setObjectName(QString::fromUtf8(
"swapToolButton"));
47 icon.addFile(QString::fromUtf8(
":/icons/swap.png"), QSize(), QIcon::Normal, QIcon::Off);
48 swapToolButton->setIcon(icon);
50 gridLayout->addWidget(swapToolButton, 0, 2, 1, 1);
52 stepLineEdit =
new QLineEdit(NatgrpOptionsWid);
53 stepLineEdit->setObjectName(QString::fromUtf8(
"stepLineEdit"));
55 gridLayout->addWidget(stepLineEdit, 0, 5, 1, 1);
57 autoStepCheckBox =
new QCheckBox(NatgrpOptionsWid);
58 autoStepCheckBox->setObjectName(QString::fromUtf8(
"autoStepCheckBox"));
60 gridLayout->addWidget(autoStepCheckBox, 0, 4, 1, 1);
62 nameLabel =
new QLabel(NatgrpOptionsWid);
63 nameLabel->setObjectName(QString::fromUtf8(
"nameLabel"));
65 gridLayout->addWidget(nameLabel, 0, 0, 1, 1);
67 mnLineEdit =
new QLineEdit(NatgrpOptionsWid);
68 mnLineEdit->setObjectName(QString::fromUtf8(
"mnLineEdit"));
70 gridLayout->addWidget(mnLineEdit, 0, 1, 1, 1);
72 mxLineEdit =
new QLineEdit(NatgrpOptionsWid);
73 mxLineEdit->setObjectName(QString::fromUtf8(
"mxLineEdit"));
75 gridLayout->addWidget(mxLineEdit, 0, 3, 1, 1);
77 QWidget::setTabOrder(mnLineEdit, swapToolButton);
78 QWidget::setTabOrder(swapToolButton, mxLineEdit);
79 QWidget::setTabOrder(mxLineEdit, autoStepCheckBox);
80 QWidget::setTabOrder(autoStepCheckBox, stepLineEdit);
82 retranslateUi(NatgrpOptionsWid);
84 QMetaObject::connectSlotsByName(NatgrpOptionsWid);
87 void retranslateUi(QWidget *NatgrpOptionsWid)
89 NatgrpOptionsWid->setWindowTitle(QApplication::translate(
"NatgrpOptionsWid",
"Form", 0, QApplication::UnicodeUTF8));
90 swapToolButton->setText(QString());
91 stepLineEdit->setText(QApplication::translate(
"NatgrpOptionsWid",
"1", 0, QApplication::UnicodeUTF8));
92 autoStepCheckBox->setText(QApplication::translate(
"NatgrpOptionsWid",
"Step:", 0, QApplication::UnicodeUTF8));
93 nameLabel->setText(QApplication::translate(
"NatgrpOptionsWid",
"Coord_name:", 0, QApplication::UnicodeUTF8));
94 mnLineEdit->setText(QApplication::translate(
"NatgrpOptionsWid",
"0", 0, QApplication::UnicodeUTF8));
95 mxLineEdit->setText(QApplication::translate(
"NatgrpOptionsWid",
"100", 0, QApplication::UnicodeUTF8));
106 #endif // UI_NATGRP_OPTIONS_WID_H
Definition: ui_natgrp_options_wid.h:101
Definition: ui_natgrp_options_wid.h:26