25 changed files with 623 additions and 29 deletions
@ -0,0 +1,11 @@ |
|||||||
|
#include "AdvancedParamConfig.h" |
||||||
|
|
||||||
|
|
||||||
|
AdvancedParamConfig::AdvancedParamConfig(QWidget *parent) : QWidget(parent) |
||||||
|
{ |
||||||
|
ui.setupUi(this); |
||||||
|
} |
||||||
|
|
||||||
|
AdvancedParamConfig::~AdvancedParamConfig() |
||||||
|
{ |
||||||
|
} |
@ -0,0 +1,19 @@ |
|||||||
|
#ifndef ADVANCEDPARAMCONFIG_H |
||||||
|
#define ADVANCEDPARAMCONFIG_H |
||||||
|
|
||||||
|
#include <QWidget> |
||||||
|
#include "ui_AdvancedParamConfig.h" |
||||||
|
|
||||||
|
class AdvancedParamConfig : public QWidget |
||||||
|
{ |
||||||
|
Q_OBJECT |
||||||
|
|
||||||
|
public: |
||||||
|
explicit AdvancedParamConfig(QWidget *parent = 0); |
||||||
|
~AdvancedParamConfig(); |
||||||
|
|
||||||
|
private: |
||||||
|
Ui::AdvancedParamConfig ui; |
||||||
|
}; |
||||||
|
|
||||||
|
#endif // ADVANCEDPARAMCONFIG_H
|
@ -0,0 +1,32 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<ui version="4.0"> |
||||||
|
<class>AdvancedParamConfig</class> |
||||||
|
<widget class="QWidget" name="AdvancedParamConfig"> |
||||||
|
<property name="geometry"> |
||||||
|
<rect> |
||||||
|
<x>0</x> |
||||||
|
<y>0</y> |
||||||
|
<width>400</width> |
||||||
|
<height>300</height> |
||||||
|
</rect> |
||||||
|
</property> |
||||||
|
<property name="windowTitle"> |
||||||
|
<string>Form</string> |
||||||
|
</property> |
||||||
|
<widget class="QLabel" name="label"> |
||||||
|
<property name="geometry"> |
||||||
|
<rect> |
||||||
|
<x>10</x> |
||||||
|
<y>10</y> |
||||||
|
<width>181</width> |
||||||
|
<height>31</height> |
||||||
|
</rect> |
||||||
|
</property> |
||||||
|
<property name="text"> |
||||||
|
<string><h2>Advanced Params</h2></string> |
||||||
|
</property> |
||||||
|
</widget> |
||||||
|
</widget> |
||||||
|
<resources/> |
||||||
|
<connections/> |
||||||
|
</ui> |
@ -0,0 +1,14 @@ |
|||||||
|
#include "ArduCopterPidConfig.h" |
||||||
|
#include "ui_ArduCopterPidConfig.h" |
||||||
|
|
||||||
|
ArduCopterPidConfig::ArduCopterPidConfig(QWidget *parent) : |
||||||
|
QWidget(parent), |
||||||
|
ui(new Ui::ArduCopterPidConfig) |
||||||
|
{ |
||||||
|
ui->setupUi(this); |
||||||
|
} |
||||||
|
|
||||||
|
ArduCopterPidConfig::~ArduCopterPidConfig() |
||||||
|
{ |
||||||
|
delete ui; |
||||||
|
} |
@ -0,0 +1,22 @@ |
|||||||
|
#ifndef ARDUCOPTERPIDCONFIG_H |
||||||
|
#define ARDUCOPTERPIDCONFIG_H |
||||||
|
|
||||||
|
#include <QWidget> |
||||||
|
|
||||||
|
namespace Ui { |
||||||
|
class ArduCopterPidConfig; |
||||||
|
} |
||||||
|
|
||||||
|
class ArduCopterPidConfig : public QWidget |
||||||
|
{ |
||||||
|
Q_OBJECT |
||||||
|
|
||||||
|
public: |
||||||
|
explicit ArduCopterPidConfig(QWidget *parent = 0); |
||||||
|
~ArduCopterPidConfig(); |
||||||
|
|
||||||
|
private: |
||||||
|
Ui::ArduCopterPidConfig *ui; |
||||||
|
}; |
||||||
|
|
||||||
|
#endif // ARDUCOPTERPIDCONFIG_H
|
@ -0,0 +1,32 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<ui version="4.0"> |
||||||
|
<class>ArduCopterPidConfig</class> |
||||||
|
<widget class="QWidget" name="ArduCopterPidConfig"> |
||||||
|
<property name="geometry"> |
||||||
|
<rect> |
||||||
|
<x>0</x> |
||||||
|
<y>0</y> |
||||||
|
<width>400</width> |
||||||
|
<height>300</height> |
||||||
|
</rect> |
||||||
|
</property> |
||||||
|
<property name="windowTitle"> |
||||||
|
<string>Form</string> |
||||||
|
</property> |
||||||
|
<widget class="QLabel" name="label"> |
||||||
|
<property name="geometry"> |
||||||
|
<rect> |
||||||
|
<x>20</x> |
||||||
|
<y>10</y> |
||||||
|
<width>181</width> |
||||||
|
<height>51</height> |
||||||
|
</rect> |
||||||
|
</property> |
||||||
|
<property name="text"> |
||||||
|
<string><h2>ArduCopter Pids</h2></string> |
||||||
|
</property> |
||||||
|
</widget> |
||||||
|
</widget> |
||||||
|
<resources/> |
||||||
|
<connections/> |
||||||
|
</ui> |
@ -0,0 +1,11 @@ |
|||||||
|
#include "BasicPidConfig.h" |
||||||
|
|
||||||
|
|
||||||
|
BasicPidConfig::BasicPidConfig(QWidget *parent) : QWidget(parent) |
||||||
|
{ |
||||||
|
ui.setupUi(this); |
||||||
|
} |
||||||
|
|
||||||
|
BasicPidConfig::~BasicPidConfig() |
||||||
|
{ |
||||||
|
} |
@ -0,0 +1,19 @@ |
|||||||
|
#ifndef BASICPIDCONFIG_H |
||||||
|
#define BASICPIDCONFIG_H |
||||||
|
|
||||||
|
#include <QWidget> |
||||||
|
#include "ui_BasicPidConfig.h" |
||||||
|
|
||||||
|
class BasicPidConfig : public QWidget |
||||||
|
{ |
||||||
|
Q_OBJECT |
||||||
|
|
||||||
|
public: |
||||||
|
explicit BasicPidConfig(QWidget *parent = 0); |
||||||
|
~BasicPidConfig(); |
||||||
|
|
||||||
|
private: |
||||||
|
Ui::BasicPidConfig ui; |
||||||
|
}; |
||||||
|
|
||||||
|
#endif // BASICPIDCONFIG_H
|
@ -0,0 +1,32 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<ui version="4.0"> |
||||||
|
<class>BasicPidConfig</class> |
||||||
|
<widget class="QWidget" name="BasicPidConfig"> |
||||||
|
<property name="geometry"> |
||||||
|
<rect> |
||||||
|
<x>0</x> |
||||||
|
<y>0</y> |
||||||
|
<width>400</width> |
||||||
|
<height>300</height> |
||||||
|
</rect> |
||||||
|
</property> |
||||||
|
<property name="windowTitle"> |
||||||
|
<string>Form</string> |
||||||
|
</property> |
||||||
|
<widget class="QLabel" name="label"> |
||||||
|
<property name="geometry"> |
||||||
|
<rect> |
||||||
|
<x>30</x> |
||||||
|
<y>20</y> |
||||||
|
<width>141</width> |
||||||
|
<height>31</height> |
||||||
|
</rect> |
||||||
|
</property> |
||||||
|
<property name="text"> |
||||||
|
<string><h2> Basic Pids</h2></string> |
||||||
|
</property> |
||||||
|
</widget> |
||||||
|
</widget> |
||||||
|
<resources/> |
||||||
|
<connections/> |
||||||
|
</ui> |
@ -0,0 +1,11 @@ |
|||||||
|
#include "FailSafeConfig.h" |
||||||
|
|
||||||
|
|
||||||
|
FailSafeConfig::FailSafeConfig(QWidget *parent) : QWidget(parent) |
||||||
|
{ |
||||||
|
ui.setupUi(this); |
||||||
|
} |
||||||
|
|
||||||
|
FailSafeConfig::~FailSafeConfig() |
||||||
|
{ |
||||||
|
} |
@ -0,0 +1,19 @@ |
|||||||
|
#ifndef FAILSAFECONFIG_H |
||||||
|
#define FAILSAFECONFIG_H |
||||||
|
|
||||||
|
#include <QWidget> |
||||||
|
#include "ui_FailSafeConfig.h" |
||||||
|
|
||||||
|
class FailSafeConfig : public QWidget |
||||||
|
{ |
||||||
|
Q_OBJECT |
||||||
|
|
||||||
|
public: |
||||||
|
explicit FailSafeConfig(QWidget *parent = 0); |
||||||
|
~FailSafeConfig(); |
||||||
|
|
||||||
|
private: |
||||||
|
Ui::FailSafeConfig ui; |
||||||
|
}; |
||||||
|
|
||||||
|
#endif // FAILSAFECONFIG_H
|
@ -0,0 +1,32 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<ui version="4.0"> |
||||||
|
<class>FailSafeConfig</class> |
||||||
|
<widget class="QWidget" name="FailSafeConfig"> |
||||||
|
<property name="geometry"> |
||||||
|
<rect> |
||||||
|
<x>0</x> |
||||||
|
<y>0</y> |
||||||
|
<width>400</width> |
||||||
|
<height>300</height> |
||||||
|
</rect> |
||||||
|
</property> |
||||||
|
<property name="windowTitle"> |
||||||
|
<string>Form</string> |
||||||
|
</property> |
||||||
|
<widget class="QLabel" name="label"> |
||||||
|
<property name="geometry"> |
||||||
|
<rect> |
||||||
|
<x>20</x> |
||||||
|
<y>20</y> |
||||||
|
<width>141</width> |
||||||
|
<height>31</height> |
||||||
|
</rect> |
||||||
|
</property> |
||||||
|
<property name="text"> |
||||||
|
<string><h2>Fail Safe</h2></string> |
||||||
|
</property> |
||||||
|
</widget> |
||||||
|
</widget> |
||||||
|
<resources/> |
||||||
|
<connections/> |
||||||
|
</ui> |
@ -0,0 +1,11 @@ |
|||||||
|
#include "GeoFenceConfig.h" |
||||||
|
|
||||||
|
|
||||||
|
GeoFenceConfig::GeoFenceConfig(QWidget *parent) : QWidget(parent) |
||||||
|
{ |
||||||
|
ui.setupUi(this); |
||||||
|
} |
||||||
|
|
||||||
|
GeoFenceConfig::~GeoFenceConfig() |
||||||
|
{ |
||||||
|
} |
@ -0,0 +1,19 @@ |
|||||||
|
#ifndef GEOFENCECONFIG_H |
||||||
|
#define GEOFENCECONFIG_H |
||||||
|
|
||||||
|
#include <QWidget> |
||||||
|
#include "ui_GeoFenceConfig.h" |
||||||
|
|
||||||
|
class GeoFenceConfig : public QWidget |
||||||
|
{ |
||||||
|
Q_OBJECT |
||||||
|
|
||||||
|
public: |
||||||
|
explicit GeoFenceConfig(QWidget *parent = 0); |
||||||
|
~GeoFenceConfig(); |
||||||
|
|
||||||
|
private: |
||||||
|
Ui::GeoFenceConfig ui; |
||||||
|
}; |
||||||
|
|
||||||
|
#endif // GEOFENCECONFIG_H
|
@ -0,0 +1,32 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<ui version="4.0"> |
||||||
|
<class>GeoFenceConfig</class> |
||||||
|
<widget class="QWidget" name="GeoFenceConfig"> |
||||||
|
<property name="geometry"> |
||||||
|
<rect> |
||||||
|
<x>0</x> |
||||||
|
<y>0</y> |
||||||
|
<width>400</width> |
||||||
|
<height>300</height> |
||||||
|
</rect> |
||||||
|
</property> |
||||||
|
<property name="windowTitle"> |
||||||
|
<string>Form</string> |
||||||
|
</property> |
||||||
|
<widget class="QLabel" name="label"> |
||||||
|
<property name="geometry"> |
||||||
|
<rect> |
||||||
|
<x>20</x> |
||||||
|
<y>20</y> |
||||||
|
<width>141</width> |
||||||
|
<height>51</height> |
||||||
|
</rect> |
||||||
|
</property> |
||||||
|
<property name="text"> |
||||||
|
<string><h2>Geo Fence</h2></string> |
||||||
|
</property> |
||||||
|
</widget> |
||||||
|
</widget> |
||||||
|
<resources/> |
||||||
|
<connections/> |
||||||
|
</ui> |
@ -0,0 +1,11 @@ |
|||||||
|
#include "StandardParamConfig.h" |
||||||
|
|
||||||
|
|
||||||
|
StandardParamConfig::StandardParamConfig(QWidget *parent) : QWidget(parent) |
||||||
|
{ |
||||||
|
ui.setupUi(this); |
||||||
|
} |
||||||
|
|
||||||
|
StandardParamConfig::~StandardParamConfig() |
||||||
|
{ |
||||||
|
} |
@ -0,0 +1,19 @@ |
|||||||
|
#ifndef STANDARDPARAMCONFIG_H |
||||||
|
#define STANDARDPARAMCONFIG_H |
||||||
|
|
||||||
|
#include <QWidget> |
||||||
|
#include "ui_StandardParamConfig.h" |
||||||
|
|
||||||
|
class StandardParamConfig : public QWidget |
||||||
|
{ |
||||||
|
Q_OBJECT |
||||||
|
|
||||||
|
public: |
||||||
|
explicit StandardParamConfig(QWidget *parent = 0); |
||||||
|
~StandardParamConfig(); |
||||||
|
|
||||||
|
private: |
||||||
|
Ui::StandardParamConfig ui; |
||||||
|
}; |
||||||
|
|
||||||
|
#endif // STANDARDPARAMCONFIG_H
|
@ -0,0 +1,32 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<ui version="4.0"> |
||||||
|
<class>StandardParamConfig</class> |
||||||
|
<widget class="QWidget" name="StandardParamConfig"> |
||||||
|
<property name="geometry"> |
||||||
|
<rect> |
||||||
|
<x>0</x> |
||||||
|
<y>0</y> |
||||||
|
<width>400</width> |
||||||
|
<height>300</height> |
||||||
|
</rect> |
||||||
|
</property> |
||||||
|
<property name="windowTitle"> |
||||||
|
<string>Form</string> |
||||||
|
</property> |
||||||
|
<widget class="QLabel" name="label"> |
||||||
|
<property name="geometry"> |
||||||
|
<rect> |
||||||
|
<x>20</x> |
||||||
|
<y>20</y> |
||||||
|
<width>201</width> |
||||||
|
<height>41</height> |
||||||
|
</rect> |
||||||
|
</property> |
||||||
|
<property name="text"> |
||||||
|
<string><h2>Standard Params</h2></string> |
||||||
|
</property> |
||||||
|
</widget> |
||||||
|
</widget> |
||||||
|
<resources/> |
||||||
|
<connections/> |
||||||
|
</ui> |
Loading…
Reference in new issue