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
05db34b0
Commit
05db34b0
authored
Mar 01, 2014
by
Thomas Gubler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mapripper: autocontinue to next zoom level after 3s
parent
755ce85a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
+9
-3
mapripper.cpp
libs/opmapcontrol/src/mapwidget/mapripper.cpp
+9
-3
No files found.
libs/opmapcontrol/src/mapwidget/mapripper.cpp
View file @
05db34b0
...
...
@@ -25,6 +25,9 @@
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "mapripper.h"
#include <qtimer.h>
namespace
mapcontrol
{
...
...
@@ -53,12 +56,15 @@ namespace mapcontrol
{
++
zoom
;
QMessageBox
msgBox
;
msgBox
.
setText
(
QString
(
"Continue Ripping at zoom level %1?"
).
arg
(
zoom
));
msgBox
.
setText
(
QString
(
"Continue Ripping at zoom level %1?
(Continuing automatically after 3s)
"
).
arg
(
zoom
));
// msgBox.setInformativeText("Do you want to save your changes?");
msgBox
.
setStandardButtons
(
QMessageBox
::
Yes
|
QMessageBox
::
No
);
msgBox
.
setDefaultButton
(
QMessageBox
::
Yes
);
int
ret
=
msgBox
.
exec
();
if
(
ret
==
QMessageBox
::
Yes
)
QTimer
::
singleShot
(
3000
,
&
msgBox
,
SLOT
(
accept
()));
msgBox
.
exec
();
int
ret
=
msgBox
.
result
();
if
(
ret
==
QMessageBox
::
Yes
||
ret
==
1
)
{
points
.
clear
();
points
=
core
->
Projection
()
->
GetAreaTileList
(
area
,
zoom
,
0
);
...
...
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