Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
632ddad3
Commit
632ddad3
authored
Jun 19, 2013
by
Michael Carpenter
Browse files
New configuration menu setup. Placeholders for now, waiting for functionality
parent
c23dc4d6
Changes
49
Hide whitespace changes
Inline
Side-by-side
src/ui/configuration/BatteryMonitorConfig.h
0 → 100644
View file @
632ddad3
#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
src/ui/configuration/BatteryMonitorConfig.ui
0 → 100644
View file @
632ddad3
<?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>
<
h2
>
Battery Monitor
<
/h2
>
</string>
</property>
<property
name=
"scaledContents"
>
<bool>
false
</bool>
</property>
</widget>
</widget>
<resources/>
<connections/>
</ui>
src/ui/configuration/CameraGimbalConfig.cc
0 → 100644
View file @
632ddad3
#include
"CameraGimbalConfig.h"
CameraGimbalConfig
::
CameraGimbalConfig
(
QWidget
*
parent
)
:
QWidget
(
parent
)
{
ui
.
setupUi
(
this
);
}
CameraGimbalConfig
::~
CameraGimbalConfig
()
{
}
src/ui/configuration/CameraGimbalConfig.h
0 → 100644
View file @
632ddad3
#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
src/ui/configuration/CameraGimbalConfig.ui
0 → 100644
View file @
632ddad3
<?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>
<
h2
>
Camera Gimbal
<
/h2
>
</string>
</property>
<property
name=
"scaledContents"
>
<bool>
false
</bool>
</property>
</widget>
</widget>
<resources/>
<connections/>
</ui>
src/ui/configuration/CompassConfig.cc
0 → 100644
View file @
632ddad3
#include
"CompassConfig.h"
CompassConfig
::
CompassConfig
(
QWidget
*
parent
)
:
QWidget
(
parent
)
{
ui
.
setupUi
(
this
);
}
CompassConfig
::~
CompassConfig
()
{
}
src/ui/configuration/CompassConfig.h
0 → 100644
View file @
632ddad3
#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
src/ui/configuration/CompassConfig.ui
0 → 100644
View file @
632ddad3
<?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>
<
h2
>
Compass
<
/h2
>
</string>
</property>
<property
name=
"scaledContents"
>
<bool>
false
</bool>
</property>
</widget>
</widget>
<resources/>
<connections/>
</ui>
src/ui/configuration/FlightModeConfig.cc
0 → 100644
View file @
632ddad3
#include
"FlightModeConfig.h"
FlightModeConfig
::
FlightModeConfig
(
QWidget
*
parent
)
:
QWidget
(
parent
)
{
ui
.
setupUi
(
this
);
}
FlightModeConfig
::~
FlightModeConfig
()
{
}
src/ui/configuration/FlightModeConfig.h
0 → 100644
View file @
632ddad3
#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
src/ui/configuration/FlightModeConfig.ui
0 → 100644
View file @
632ddad3
<?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>
<
h2
>
Flight Modes
<
/h2
>
</string>
</property>
<property
name=
"scaledContents"
>
<bool>
false
</bool>
</property>
</widget>
</widget>
<resources/>
<connections/>
</ui>
src/ui/configuration/FrameTypeConfig.cc
0 → 100644
View file @
632ddad3
#include
"FrameTypeConfig.h"
FrameTypeConfig
::
FrameTypeConfig
(
QWidget
*
parent
)
:
QWidget
(
parent
)
{
ui
.
setupUi
(
this
);
}
FrameTypeConfig
::~
FrameTypeConfig
()
{
}
src/ui/configuration/FrameTypeConfig.h
0 → 100644
View file @
632ddad3
#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
src/ui/configuration/FrameTypeConfig.ui
0 → 100644
View file @
632ddad3
<?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>
<
h2
>
Frame Setup
<
/h2
>
</string>
</property>
<property
name=
"scaledContents"
>
<bool>
false
</bool>
</property>
</widget>
</widget>
<resources/>
<connections/>
</ui>
src/ui/configuration/OpticalFlowConfig.cc
0 → 100644
View file @
632ddad3
#include
"OpticalFlowConfig.h"
OpticalFlowConfig
::
OpticalFlowConfig
(
QWidget
*
parent
)
:
QWidget
(
parent
)
{
ui
.
setupUi
(
this
);
}
OpticalFlowConfig
::~
OpticalFlowConfig
()
{
}
src/ui/configuration/OpticalFlowConfig.h
0 → 100644
View file @
632ddad3
#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
src/ui/configuration/OpticalFlowConfig.ui
0 → 100644
View file @
632ddad3
<?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>
<
h2
>
Optical Flow
<
/h2
>
</string>
</property>
<property
name=
"scaledContents"
>
<bool>
false
</bool>
</property>
</widget>
</widget>
<resources/>
<connections/>
</ui>
src/ui/configuration/OsdConfig.cc
0 → 100644
View file @
632ddad3
#include
"OsdConfig.h"
OsdConfig
::
OsdConfig
(
QWidget
*
parent
)
:
QWidget
(
parent
)
{
ui
.
setupUi
(
this
);
}
OsdConfig
::~
OsdConfig
()
{
}
src/ui/configuration/OsdConfig.h
0 → 100644
View file @
632ddad3
#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
src/ui/configuration/OsdConfig.ui
0 → 100644
View file @
632ddad3
<?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>
<
h2
>
OSD
<
/h2
>
</string>
</property>
<property
name=
"scaledContents"
>
<bool>
false
</bool>
</property>
</widget>
</widget>
<resources/>
<connections/>
</ui>
Prev
1
2
3
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment