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
f66e08c1
Commit
f66e08c1
authored
Dec 08, 2010
by
Mariano Lizarraga
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Finished making changes to use new GoogleEarth and OSG views. None of them yet working
parent
b6ea114f
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
12 deletions
+13
-12
mapnetwork.cpp
lib/QMapControl/src/mapnetwork.cpp
+1
-1
qgroundcontrol.pri
qgroundcontrol.pri
+2
-1
MainWindow.cc
src/ui/MainWindow.cc
+1
-1
SlugsVideoCamControl.cpp
src/ui/SlugsVideoCamControl.cpp
+4
-4
WaypointList.cc
src/ui/WaypointList.cc
+5
-5
No files found.
lib/QMapControl/src/mapnetwork.cpp
View file @
f66e08c1
...
...
@@ -95,7 +95,7 @@ namespace qmapcontrol
}
else
{
qDebug
()
<<
"NETWORK_PIXMAP_ERROR: "
<<
ax
;
//
qDebug() << "NETWORK_PIXMAP_ERROR: " << ax;
}
}
...
...
qgroundcontrol.pri
View file @
f66e08c1
...
...
@@ -123,10 +123,11 @@ macx {
-framework GEOS \
-framework SQLite3 \
-framework osgFX \
-framework osgTerrain
\
-framework osgTerrain
DEFINES += QGC_OSGEARTH_ENABLED
}
exists(/opt/local/include/libfreenect) {
message("Building support for libfreenect")
DEPENDENCIES_PRESENT += libfreenect
...
...
src/ui/MainWindow.cc
View file @
f66e08c1
...
...
@@ -235,7 +235,7 @@ void MainWindow::connectWidgets()
connect
(
waypointsDockWidget
->
widget
(),
SIGNAL
(
createWaypointAtMap
(
QPointF
)),
mapWidget
,
SLOT
(
createWaypointGraphAtMap
(
QPointF
)));
// it notifies that a waypoint global change it¥s position by spinBox on Widget WaypointView
//connect(waypointsDockWidget->widget(), SIGNAL(changePositionWPGlobalBySpinBox(int,float,float)), mapWidget, SLOT(changeGlobalWaypointPositionBySpinBox(int,float,float)));
connect
(
waypointsDockWidget
->
widget
(),
SIGNAL
(
changePositionWPGlobalBySpinBox
(
int
,
float
,
float
)),
mapWidget
,
SLOT
(
changeGlobalWaypointPositionBySpinBox
(
int
,
float
,
float
)));
//
connect(waypointsDockWidget->widget(), SIGNAL(changePositionWPGlobalBySpinBox(int,float,float)), mapWidget, SLOT(changeGlobalWaypointPositionBySpinBox(int,float,float)));
connect
(
slugsCamControlWidget
->
widget
(),
SIGNAL
(
viewCamBorderAtMap
(
bool
)),
mapWidget
,
SLOT
(
drawBorderCamAtMap
(
bool
)));
connect
(
slugsCamControlWidget
->
widget
(),
SIGNAL
(
changeCamPosition
(
double
,
double
,
QString
)),
mapWidget
,
SLOT
(
updateCameraPosition
(
double
,
double
,
QString
)));
...
...
src/ui/SlugsVideoCamControl.cpp
View file @
f66e08c1
...
...
@@ -19,13 +19,13 @@
SlugsVideoCamControl
::
SlugsVideoCamControl
(
QWidget
*
parent
)
:
QWidget
(
parent
),
ui
(
new
Ui
::
SlugsVideoCamControl
)
,
dragging
(
0
)
ui
(
new
Ui
::
SlugsVideoCamControl
)
//
dragging(0)
{
ui
->
setupUi
(
this
);
x1
=
0
;
y1
=
0
;
//
x1= 0;
//
y1 = 0;
connect
(
ui
->
viewCamBordeatMap_checkBox
,
SIGNAL
(
clicked
(
bool
)),
this
,
SLOT
(
changeViewCamBorderAtMapStatus
(
bool
)));
// tL = ui->padCamContro_frame->frameGeometry().topLeft();
// bR = ui->padCamContro_frame->frameGeometry().bottomRight();
...
...
src/ui/WaypointList.cc
View file @
f66e08c1
...
...
@@ -487,10 +487,10 @@ void WaypointList::on_clearWPListButton_clicked()
}
else
{
if
(
isGlobalWP
)
{
emit
clearPathclicked
();
}
//
if(isGlobalWP)
//
{
//
emit clearPathclicked();
//
}
}
}
...
...
@@ -573,5 +573,5 @@ void WaypointList::setIsLoadFileWP()
void
WaypointList
::
setIsReadGlobalWP
(
bool
value
)
{
readGlobalWP
=
value
;
//
readGlobalWP = value;
}
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