Commit 632ddad3 authored by Michael Carpenter's avatar Michael Carpenter
Browse files

New configuration menu setup. Placeholders for now, waiting for functionality

parent c23dc4d6
#ifndef BATTERYMONITORCONFIG_H
#define BATTERYMONITORCONFIG_H
#include <QWidget>
#include "ui_BatteryMonitorConfig.h"
class BatteryMonitorConfig : public QWidget
{
Q_OBJECT
public:
explicit BatteryMonitorConfig(QWidget *parent = 0);
~BatteryMonitorConfig();
private:
Ui::BatteryMonitorConfig ui;
};
#endif // BATTERYMONITORCONFIG_H
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>BatteryMonitorConfig</class>
<widget class="QWidget" name="BatteryMonitorConfig">
<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>&lt;h2&gt;Battery Monitor&lt;/h2&gt;</string>
</property>
<property name="scaledContents">
<bool>false</bool>
</property>
</widget>
</widget>
<resources/>
<connections/>
</ui>
#include "CameraGimbalConfig.h"
CameraGimbalConfig::CameraGimbalConfig(QWidget *parent) : QWidget(parent)
{
ui.setupUi(this);
}
CameraGimbalConfig::~CameraGimbalConfig()
{
}
#ifndef CAMERAGIMBALCONFIG_H
#define CAMERAGIMBALCONFIG_H
#include <QWidget>
#include "ui_CameraGimbalConfig.h"
class CameraGimbalConfig : public QWidget
{
Q_OBJECT
public:
explicit CameraGimbalConfig(QWidget *parent = 0);
~CameraGimbalConfig();
private:
Ui::CameraGimbalConfig ui;
};
#endif // CAMERAGIMBALCONFIG_H
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>CameraGimbalConfig</class>
<widget class="QWidget" name="CameraGimbalConfig">
<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>131</width>
<height>31</height>
</rect>
</property>
<property name="text">
<string>&lt;h2&gt;Camera Gimbal&lt;/h2&gt;</string>
</property>
<property name="scaledContents">
<bool>false</bool>
</property>
</widget>
</widget>
<resources/>
<connections/>
</ui>
#include "CompassConfig.h"
CompassConfig::CompassConfig(QWidget *parent) : QWidget(parent)
{
ui.setupUi(this);
}
CompassConfig::~CompassConfig()
{
}
#ifndef COMPASSCONFIG_H
#define COMPASSCONFIG_H
#include <QWidget>
#include "ui_CompassConfig.h"
class CompassConfig : public QWidget
{
Q_OBJECT
public:
explicit CompassConfig(QWidget *parent = 0);
~CompassConfig();
private:
Ui::CompassConfig ui;
};
#endif // COMPASSCONFIG_H
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>CompassConfig</class>
<widget class="QWidget" name="CompassConfig">
<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>131</width>
<height>31</height>
</rect>
</property>
<property name="text">
<string>&lt;h2&gt;Compass&lt;/h2&gt;</string>
</property>
<property name="scaledContents">
<bool>false</bool>
</property>
</widget>
</widget>
<resources/>
<connections/>
</ui>
#include "FlightModeConfig.h"
FlightModeConfig::FlightModeConfig(QWidget *parent) : QWidget(parent)
{
ui.setupUi(this);
}
FlightModeConfig::~FlightModeConfig()
{
}
#ifndef FLIGHTMODECONFIG_H
#define FLIGHTMODECONFIG_H
#include <QWidget>
#include "ui_FlightModeConfig.h"
class FlightModeConfig : public QWidget
{
Q_OBJECT
public:
explicit FlightModeConfig(QWidget *parent = 0);
~FlightModeConfig();
private:
Ui::FlightModeConfig ui;
};
#endif // FLIGHTMODECONFIG_H
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>FlightModeConfig</class>
<widget class="QWidget" name="FlightModeConfig">
<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>20</y>
<width>131</width>
<height>31</height>
</rect>
</property>
<property name="text">
<string>&lt;h2&gt;Flight Modes&lt;/h2&gt;</string>
</property>
<property name="scaledContents">
<bool>false</bool>
</property>
</widget>
</widget>
<resources/>
<connections/>
</ui>
#include "FrameTypeConfig.h"
FrameTypeConfig::FrameTypeConfig(QWidget *parent) : QWidget(parent)
{
ui.setupUi(this);
}
FrameTypeConfig::~FrameTypeConfig()
{
}
#ifndef FRAMETYPECONFIG_H
#define FRAMETYPECONFIG_H
#include <QWidget>
#include "ui_FrameTypeConfig.h"
class FrameTypeConfig : public QWidget
{
Q_OBJECT
public:
explicit FrameTypeConfig(QWidget *parent = 0);
~FrameTypeConfig();
private:
Ui::FrameTypeConfig ui;
};
#endif // FRAMETYPECONFIG_H
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>FrameTypeConfig</class>
<widget class="QWidget" name="FrameTypeConfig">
<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>131</width>
<height>31</height>
</rect>
</property>
<property name="text">
<string>&lt;h2&gt;Frame Setup&lt;/h2&gt;</string>
</property>
<property name="scaledContents">
<bool>false</bool>
</property>
</widget>
</widget>
<resources/>
<connections/>
</ui>
#include "OpticalFlowConfig.h"
OpticalFlowConfig::OpticalFlowConfig(QWidget *parent) : QWidget(parent)
{
ui.setupUi(this);
}
OpticalFlowConfig::~OpticalFlowConfig()
{
}
#ifndef OPTICALFLOWCONFIG_H
#define OPTICALFLOWCONFIG_H
#include <QWidget>
#include "ui_OpticalFlowConfig.h"
class OpticalFlowConfig : public QWidget
{
Q_OBJECT
public:
explicit OpticalFlowConfig(QWidget *parent = 0);
~OpticalFlowConfig();
private:
Ui::OpticalFlowConfig ui;
};
#endif // OPTICALFLOWCONFIG_H
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>OpticalFlowConfig</class>
<widget class="QWidget" name="OpticalFlowConfig">
<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>131</width>
<height>31</height>
</rect>
</property>
<property name="text">
<string>&lt;h2&gt;Optical Flow&lt;/h2&gt;</string>
</property>
<property name="scaledContents">
<bool>false</bool>
</property>
</widget>
</widget>
<resources/>
<connections/>
</ui>
#include "OsdConfig.h"
OsdConfig::OsdConfig(QWidget *parent) : QWidget(parent)
{
ui.setupUi(this);
}
OsdConfig::~OsdConfig()
{
}
#ifndef OSDCONFIG_H
#define OSDCONFIG_H
#include <QWidget>
#include "ui_OsdConfig.h"
class OsdConfig : public QWidget
{
Q_OBJECT
public:
explicit OsdConfig(QWidget *parent = 0);
~OsdConfig();
private:
Ui::OsdConfig ui;
};
#endif // OSDCONFIG_H
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>OsdConfig</class>
<widget class="QWidget" name="OsdConfig">
<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>131</width>
<height>31</height>
</rect>
</property>
<property name="text">
<string>&lt;h2&gt;OSD&lt;/h2&gt;</string>
</property>
<property name="scaledContents">
<bool>false</bool>
</property>
</widget>
</widget>
<resources/>
<connections/>
</ui>
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment