mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-01-09 20:46:07 +01:00
96 lines
3.3 KiB
C
96 lines
3.3 KiB
C
|
/********************************************************************************
|
||
|
** Form generated from reading UI file 'TCPtelemetryoptionspage.ui'
|
||
|
**
|
||
|
** Created: Tue 22. Jun 21:46:31 2010
|
||
|
** by: Qt User Interface Compiler version 4.6.3
|
||
|
**
|
||
|
** WARNING! All changes made in this file will be lost when recompiling UI file!
|
||
|
********************************************************************************/
|
||
|
|
||
|
#ifndef UI_TCPTELEMETRYOPTIONSPAGE_H
|
||
|
#define UI_TCPTELEMETRYOPTIONSPAGE_H
|
||
|
|
||
|
#include <QtCore/QVariant>
|
||
|
#include <QtGui/QAction>
|
||
|
#include <QtGui/QApplication>
|
||
|
#include <QtGui/QButtonGroup>
|
||
|
#include <QtGui/QGridLayout>
|
||
|
#include <QtGui/QHeaderView>
|
||
|
#include <QtGui/QLabel>
|
||
|
#include <QtGui/QLineEdit>
|
||
|
#include <QtGui/QSpacerItem>
|
||
|
#include <QtGui/QSpinBox>
|
||
|
#include <QtGui/QWidget>
|
||
|
|
||
|
QT_BEGIN_NAMESPACE
|
||
|
|
||
|
class Ui_TCPtelemetryOptionsPage
|
||
|
{
|
||
|
public:
|
||
|
QGridLayout *gridLayout;
|
||
|
QLabel *label_2;
|
||
|
QSpacerItem *verticalSpacer;
|
||
|
QSpacerItem *horizontalSpacer;
|
||
|
QLineEdit *HostName;
|
||
|
QSpinBox *Port;
|
||
|
QLabel *label_3;
|
||
|
|
||
|
void setupUi(QWidget *TCPtelemetryOptionsPage)
|
||
|
{
|
||
|
if (TCPtelemetryOptionsPage->objectName().isEmpty())
|
||
|
TCPtelemetryOptionsPage->setObjectName(QString::fromUtf8("TCPtelemetryOptionsPage"));
|
||
|
TCPtelemetryOptionsPage->resize(355, 300);
|
||
|
gridLayout = new QGridLayout(TCPtelemetryOptionsPage);
|
||
|
gridLayout->setContentsMargins(0, 0, 0, 0);
|
||
|
gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
|
||
|
label_2 = new QLabel(TCPtelemetryOptionsPage);
|
||
|
label_2->setObjectName(QString::fromUtf8("label_2"));
|
||
|
|
||
|
gridLayout->addWidget(label_2, 0, 0, 1, 1);
|
||
|
|
||
|
verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding);
|
||
|
|
||
|
gridLayout->addItem(verticalSpacer, 2, 1, 3, 1);
|
||
|
|
||
|
horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
|
||
|
|
||
|
gridLayout->addItem(horizontalSpacer, 0, 3, 5, 1);
|
||
|
|
||
|
HostName = new QLineEdit(TCPtelemetryOptionsPage);
|
||
|
HostName->setObjectName(QString::fromUtf8("HostName"));
|
||
|
|
||
|
gridLayout->addWidget(HostName, 0, 1, 1, 1);
|
||
|
|
||
|
Port = new QSpinBox(TCPtelemetryOptionsPage);
|
||
|
Port->setObjectName(QString::fromUtf8("Port"));
|
||
|
|
||
|
gridLayout->addWidget(Port, 1, 1, 1, 1);
|
||
|
|
||
|
label_3 = new QLabel(TCPtelemetryOptionsPage);
|
||
|
label_3->setObjectName(QString::fromUtf8("label_3"));
|
||
|
|
||
|
gridLayout->addWidget(label_3, 1, 0, 1, 1);
|
||
|
|
||
|
|
||
|
retranslateUi(TCPtelemetryOptionsPage);
|
||
|
|
||
|
QMetaObject::connectSlotsByName(TCPtelemetryOptionsPage);
|
||
|
} // setupUi
|
||
|
|
||
|
void retranslateUi(QWidget *TCPtelemetryOptionsPage)
|
||
|
{
|
||
|
TCPtelemetryOptionsPage->setWindowTitle(QApplication::translate("TCPtelemetryOptionsPage", "Form", 0, QApplication::UnicodeUTF8));
|
||
|
label_2->setText(QApplication::translate("TCPtelemetryOptionsPage", "Host Name/Number", 0, QApplication::UnicodeUTF8));
|
||
|
label_3->setText(QApplication::translate("TCPtelemetryOptionsPage", "Port", 0, QApplication::UnicodeUTF8));
|
||
|
} // retranslateUi
|
||
|
|
||
|
};
|
||
|
|
||
|
namespace Ui {
|
||
|
class TCPtelemetryOptionsPage: public Ui_TCPtelemetryOptionsPage {};
|
||
|
} // namespace Ui
|
||
|
|
||
|
QT_END_NAMESPACE
|
||
|
|
||
|
#endif // UI_TCPTELEMETRYOPTIONSPAGE_H
|