forked from apsystems/GrblHoming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui_options.h
116 lines (104 loc) · 4.85 KB
/
ui_options.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/********************************************************************************
** Form generated from reading UI file 'options.ui'
**
** Created: Wed 15. Aug 12:44:49 2012
** by: Qt User Interface Compiler version 4.8.0
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef UI_OPTIONS_H
#define UI_OPTIONS_H
#include <QtCore/QVariant>
#include <QtGui/QAction>
#include <QtGui/QApplication>
#include <QtGui/QButtonGroup>
#include <QtGui/QCheckBox>
#include <QtGui/QDialog>
#include <QtGui/QDialogButtonBox>
#include <QtGui/QFrame>
#include <QtGui/QGroupBox>
#include <QtGui/QHeaderView>
#include <QtGui/QLineEdit>
QT_BEGIN_NAMESPACE
class Ui_Options
{
public:
QDialogButtonBox *buttonBox;
QGroupBox *groupBoxStream;
QCheckBox *chkGoHome;
QCheckBox *chkToolChange;
QFrame *XYZframe;
QLineEdit *lineEditTCX;
QLineEdit *lineEditTCY;
QLineEdit *lineEditTCZ;
QGroupBox *groupBoxAxis;
QCheckBox *chkInvX;
QCheckBox *chkInvY;
QCheckBox *chkInvZ;
void setupUi(QDialog *Options)
{
if (Options->objectName().isEmpty())
Options->setObjectName(QString::fromUtf8("Options"));
Options->resize(400, 300);
buttonBox = new QDialogButtonBox(Options);
buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setGeometry(QRect(30, 260, 341, 32));
buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
groupBoxStream = new QGroupBox(Options);
groupBoxStream->setObjectName(QString::fromUtf8("groupBoxStream"));
groupBoxStream->setGeometry(QRect(40, 130, 301, 121));
chkGoHome = new QCheckBox(groupBoxStream);
chkGoHome->setObjectName(QString::fromUtf8("chkGoHome"));
chkGoHome->setGeometry(QRect(20, 20, 211, 21));
chkToolChange = new QCheckBox(groupBoxStream);
chkToolChange->setObjectName(QString::fromUtf8("chkToolChange"));
chkToolChange->setGeometry(QRect(20, 50, 211, 17));
XYZframe = new QFrame(groupBoxStream);
XYZframe->setObjectName(QString::fromUtf8("XYZframe"));
XYZframe->setGeometry(QRect(40, 70, 161, 41));
XYZframe->setFrameShape(QFrame::StyledPanel);
XYZframe->setFrameShadow(QFrame::Raised);
lineEditTCX = new QLineEdit(XYZframe);
lineEditTCX->setObjectName(QString::fromUtf8("lineEditTCX"));
lineEditTCX->setGeometry(QRect(10, 10, 41, 20));
lineEditTCY = new QLineEdit(XYZframe);
lineEditTCY->setObjectName(QString::fromUtf8("lineEditTCY"));
lineEditTCY->setGeometry(QRect(60, 10, 41, 20));
lineEditTCZ = new QLineEdit(XYZframe);
lineEditTCZ->setObjectName(QString::fromUtf8("lineEditTCZ"));
lineEditTCZ->setGeometry(QRect(110, 10, 41, 20));
groupBoxAxis = new QGroupBox(Options);
groupBoxAxis->setObjectName(QString::fromUtf8("groupBoxAxis"));
groupBoxAxis->setGeometry(QRect(40, 10, 151, 101));
chkInvX = new QCheckBox(groupBoxAxis);
chkInvX->setObjectName(QString::fromUtf8("chkInvX"));
chkInvX->setGeometry(QRect(10, 20, 151, 17));
chkInvY = new QCheckBox(groupBoxAxis);
chkInvY->setObjectName(QString::fromUtf8("chkInvY"));
chkInvY->setGeometry(QRect(10, 50, 141, 17));
chkInvZ = new QCheckBox(groupBoxAxis);
chkInvZ->setObjectName(QString::fromUtf8("chkInvZ"));
chkInvZ->setGeometry(QRect(10, 80, 141, 17));
retranslateUi(Options);
QObject::connect(buttonBox, SIGNAL(accepted()), Options, SLOT(accept()));
QObject::connect(buttonBox, SIGNAL(rejected()), Options, SLOT(reject()));
QMetaObject::connectSlotsByName(Options);
} // setupUi
void retranslateUi(QDialog *Options)
{
Options->setWindowTitle(QApplication::translate("Options", "Dialog", 0, QApplication::UnicodeUTF8));
groupBoxStream->setTitle(QApplication::translate("Options", "Send Gcode", 0, QApplication::UnicodeUTF8));
chkGoHome->setText(QApplication::translate("Options", "Return home at completion", 0, QApplication::UnicodeUTF8));
chkToolChange->setText(QApplication::translate("Options", "Enable Tool Change", 0, QApplication::UnicodeUTF8));
groupBoxAxis->setTitle(QApplication::translate("Options", "Invert Axis", 0, QApplication::UnicodeUTF8));
chkInvX->setText(QApplication::translate("Options", "X Axis", 0, QApplication::UnicodeUTF8));
chkInvY->setText(QApplication::translate("Options", "Y Axis", 0, QApplication::UnicodeUTF8));
chkInvZ->setText(QApplication::translate("Options", "Z Axis", 0, QApplication::UnicodeUTF8));
} // retranslateUi
};
namespace Ui {
class Options: public Ui_Options {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_OPTIONS_H