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
8c2dfea5
Commit
8c2dfea5
authored
Jun 08, 2013
by
Bryant
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
The QuickView now properly resets after the last UAS is deleted.
parent
a37f8489
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
4 deletions
+25
-4
UASQuickView.cc
src/ui/uas/UASQuickView.cc
+21
-4
UASQuickView.h
src/ui/uas/UASQuickView.h
+4
-0
No files found.
src/ui/uas/UASQuickView.cc
View file @
8c2dfea5
...
...
@@ -15,7 +15,14 @@ UASQuickView::UASQuickView(QWidget *parent) :
}
this
->
setContextMenuPolicy
(
Qt
::
ActionsContextMenu
);
addDefaultActions
();
updateTimer
=
new
QTimer
(
this
);
connect
(
updateTimer
,
SIGNAL
(
timeout
()),
this
,
SLOT
(
updateTimerTick
()));
}
void
UASQuickView
::
addDefaultActions
()
{
{
QAction
*
action
=
new
QAction
(
tr
(
"latitude"
),
this
);
action
->
setCheckable
(
true
);
...
...
@@ -75,10 +82,8 @@ UASQuickView::UASQuickView(QWidget *parent) :
this
->
layout
()
->
addWidget
(
item
);
uasPropertyToLabelMap
[
"distToWaypoint"
]
=
item
;
}
updateTimer
=
new
QTimer
(
this
);
connect
(
updateTimer
,
SIGNAL
(
timeout
()),
this
,
SLOT
(
updateTimerTick
()));
}
void
UASQuickView
::
updateTimerTick
()
{
for
(
int
i
=
0
;
i
<
uasPropertyList
.
size
();
i
++
)
...
...
@@ -108,13 +113,25 @@ void UASQuickView::setActiveUAS(UASInterface* uas)
{
uasPropertyList
.
clear
();
uasPropertyValueMap
.
clear
();
foreach
(
UASQuickViewItem
*
i
,
uasPropertyToLabelMap
.
values
())
{
i
->
deleteLater
();
}
uasPropertyToLabelMap
.
clear
();
updateTimer
->
stop
();
this
->
actions
().
clear
();
foreach
(
QAction
*
i
,
this
->
actions
())
{
i
->
deleteLater
();
}
}
// Update the UAS to point to the new one.
this
->
uas
=
uas
;
// And re-add the default actions.
addDefaultActions
();
// And connect the new one if it exists.
if
(
this
->
uas
)
{
...
...
src/ui/uas/UASQuickView.h
View file @
8c2dfea5
...
...
@@ -14,6 +14,10 @@ class UASQuickView : public QWidget
public:
UASQuickView
(
QWidget
*
parent
=
0
);
private:
/**
* Adds a default set of actions to the widget's menu.
*/
void
addDefaultActions
();
UASInterface
*
uas
;
QList
<
QString
>
uasPropertyList
;
QMap
<
QString
,
double
>
uasPropertyValueMap
;
...
...
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