Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
309fbf58
Commit
309fbf58
authored
Jun 04, 2013
by
Michael Carpenter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Addition of new RadioChannel displays for radio calibration
parent
e72400d1
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
979 additions
and
859 deletions
+979
-859
qgroundcontrol.pro
qgroundcontrol.pro
+2
-0
QGCVehicleConfig.ui
src/ui/QGCVehicleConfig.ui
+855
-859
QGCRadioChannelDisplay.cpp
src/ui/designer/QGCRadioChannelDisplay.cpp
+87
-0
QGCRadioChannelDisplay.h
src/ui/designer/QGCRadioChannelDisplay.h
+35
-0
No files found.
qgroundcontrol.pro
View file @
309fbf58
...
...
@@ -384,6 +384,7 @@ HEADERS += src/MG.h \
src
/
ui
/
uas
/
UASQuickViewItemSelect
.
h
\
src
/
ui
/
uas
/
UASQuickViewTextItem
.
h
\
src
/
ui
/
uas
/
UASActionsWidget
.
h
\
src
/
ui
/
designer
/
QGCRadioChannelDisplay
.
h
\
src
/
ui
/
QGCTabbedInfoView
.
h
\
src
/
ui
/
UASRawStatusView
.
h
...
...
@@ -557,6 +558,7 @@ SOURCES += src/main.cc \
src
/
ui
/
uas
/
UASQuickViewTextItem
.
cc
\
src
/
ui
/
uas
/
UASQuickViewItemSelect
.
cc
\
src
/
ui
/
uas
/
UASActionsWidget
.
cpp
\
src
/
ui
/
designer
/
QGCRadioChannelDisplay
.
cpp
\
src
/
ui
/
QGCTabbedInfoView
.
cpp
\
src
/
ui
/
UASRawStatusView
.
cpp
...
...
src/ui/QGCVehicleConfig.ui
View file @
309fbf58
This diff is collapsed.
Click to expand it.
src/ui/designer/QGCRadioChannelDisplay.cpp
0 → 100644
View file @
309fbf58
#include "QGCRadioChannelDisplay.h"
#include <QPainter>
QGCRadioChannelDisplay
::
QGCRadioChannelDisplay
(
QWidget
*
parent
)
:
QWidget
(
parent
)
{
m_showMinMax
=
true
;
m_min
=
500
;
m_max
=
1600
;
m_value
=
1500
;
m_orientation
=
Qt
::
Vertical
;
m_name
=
"Yaw"
;
}
void
QGCRadioChannelDisplay
::
setOrientation
(
Qt
::
Orientation
orient
)
{
m_orientation
=
orient
;
update
();
}
void
QGCRadioChannelDisplay
::
paintEvent
(
QPaintEvent
*
event
)
{
//Values range from 0-3000.
//1500 is the middle, static servo value.
QPainter
painter
(
this
);
if
(
m_orientation
==
Qt
::
Vertical
)
{
painter
.
drawRect
(
0
,
0
,
width
()
-
1
,(
height
()
-
1
)
-
(
painter
.
fontMetrics
().
height
()
*
2
));
painter
.
setBrush
(
Qt
::
SolidPattern
);
painter
.
setPen
(
QColor
::
fromRgb
(
50
,
255
,
50
));
int
newval
=
(
height
()
-
2
)
*
((
float
)
m_value
/
3000.0
);
painter
.
drawRect
(
1
,
newval
,
width
()
-
3
,((
height
()
-
2
)
-
newval
)
-
(
painter
.
fontMetrics
().
height
()
*
2
));
}
else
{
painter
.
drawRect
(
0
,
0
,
width
()
-
1
,(
height
()
-
1
)
-
(
painter
.
fontMetrics
().
height
()
*
2
));
painter
.
setBrush
(
Qt
::
SolidPattern
);
painter
.
setPen
(
QColor
::
fromRgb
(
50
,
255
,
50
));
painter
.
drawRect
(
1
,
1
,(
width
()
-
1
)
*
((
float
)
m_value
/
3000.0
),(
height
()
-
3
)
-
(
painter
.
fontMetrics
().
height
()
*
2
));
painter
.
setPen
(
QColor
::
fromRgb
(
255
,
255
,
255
));
QString
valstr
=
QString
::
number
(
m_value
);
painter
.
drawText
((
width
()
/
2.0
)
-
(
painter
.
fontMetrics
().
width
(
m_name
)
/
2.0
),((
height
()
-
3
)
-
(
painter
.
fontMetrics
().
height
()
*
1
)),
m_name
);
painter
.
drawText
((
width
()
/
2.0
)
-
(
painter
.
fontMetrics
().
width
(
valstr
)
/
2.0
),((
height
()
-
3
)
-
(
painter
.
fontMetrics
().
height
()
*
0
)),
valstr
);
if
(
m_showMinMax
)
{
painter
.
setBrush
(
Qt
::
NoBrush
);
painter
.
setPen
(
QColor
::
fromRgb
(
255
,
0
,
0
));
painter
.
drawRect
(
width
()
*
((
float
)
m_min
/
3000.0
),
2
,((
width
()
-
1
)
*
((
float
)
m_max
/
3000.0
))
-
(
width
()
*
((
float
)
m_min
/
3000.0
)),(
height
()
-
5
)
-
(
painter
.
fontMetrics
().
height
()
*
2
));
QString
minstr
=
QString
::
number
(
m_min
);
painter
.
drawText
((
width
()
*
((
float
)
m_min
/
3000.0
))
-
(
painter
.
fontMetrics
().
width
(
"min"
)
/
2.0
),((
height
()
-
3
)
-
(
painter
.
fontMetrics
().
height
()
*
1
)),
"min"
);
painter
.
drawText
((
width
()
*
((
float
)
m_min
/
3000.0
))
-
(
painter
.
fontMetrics
().
width
(
minstr
)
/
2.0
),((
height
()
-
3
)
-
(
painter
.
fontMetrics
().
height
()
*
0
)),
minstr
);
QString
maxstr
=
QString
::
number
(
m_max
);
painter
.
drawText
((
width
()
*
((
float
)
m_max
/
3000.0
))
-
(
painter
.
fontMetrics
().
width
(
"max"
)
/
2.0
),((
height
()
-
3
)
-
(
painter
.
fontMetrics
().
height
()
*
1
)),
"max"
);
painter
.
drawText
((
width
()
*
((
float
)
m_max
/
3000.0
))
-
(
painter
.
fontMetrics
().
width
(
maxstr
)
/
2.0
),((
height
()
-
3
)
-
(
painter
.
fontMetrics
().
height
()
*
0
)),
maxstr
);
}
}
}
void
QGCRadioChannelDisplay
::
setValue
(
int
value
)
{
m_value
=
value
;
update
();
}
void
QGCRadioChannelDisplay
::
showMinMax
()
{
m_showMinMax
=
true
;
update
();
}
void
QGCRadioChannelDisplay
::
hideMinMax
()
{
m_showMinMax
=
false
;
update
();
}
void
QGCRadioChannelDisplay
::
setMin
(
int
value
)
{
m_min
=
value
;
update
();
}
void
QGCRadioChannelDisplay
::
setMax
(
int
value
)
{
m_max
=
value
;
update
();
}
src/ui/designer/QGCRadioChannelDisplay.h
0 → 100644
View file @
309fbf58
#ifndef QGCRADIOCHANNELDISPLAY_H
#define QGCRADIOCHANNELDISPLAY_H
#include <QWidget>
class
QGCRadioChannelDisplay
:
public
QWidget
{
Q_OBJECT
public:
explicit
QGCRadioChannelDisplay
(
QWidget
*
parent
=
0
);
void
setOrientation
(
Qt
::
Orientation
orient
);
void
setValue
(
int
value
);
void
showMinMax
();
void
hideMinMax
();
void
setMin
(
int
value
);
void
setMax
(
int
value
);
int
value
()
{
return
m_value
;
}
int
min
()
{
return
m_min
;
}
int
max
()
{
return
m_max
;
}
protected:
void
paintEvent
(
QPaintEvent
*
event
);
private:
Qt
::
Orientation
m_orientation
;
int
m_value
;
int
m_min
;
int
m_max
;
bool
m_showMinMax
;
QString
m_name
;
signals:
public
slots
:
};
#endif // QGCRADIOCHANNELDISPLAY_H
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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