Executes a QgsMapHitTest in a background thread.
More...
#include <qgsmaphittest.h>
|
bool | run () override |
| Performs the task's operation. More...
|
|
virtual void | finished (bool result) |
| If the task is managed by a QgsTaskManager, this will be called after the task has finished (whether through successful completion or via early termination). More...
|
|
bool | isCanceled () const |
| Will return true if task should terminate ASAP. More...
|
|
virtual bool | run ()=0 |
| Performs the task's operation. More...
|
|
|
enum | Flag {
CanCancel = 1 << 1
, CancelWithoutPrompt = 1 << 2
, Hidden = 1 << 3
, Silent = 1 << 4
,
AllFlags = CanCancel
} |
| Task flags. More...
|
|
enum | SubTaskDependency { SubTaskIndependent = 0
, ParentDependsOnSubTask
} |
| Controls how subtasks relate to their parent task. More...
|
|
enum | TaskStatus {
Queued
, OnHold
, Running
, Complete
,
Terminated
} |
| Status of tasks. More...
|
|
void | begun () |
| Will be emitted by task to indicate its commencement. More...
|
|
void | progressChanged (double progress) |
| Will be emitted by task when its progress changes. More...
|
|
void | statusChanged (int status) |
| Will be emitted by task when its status changes. More...
|
|
void | taskCompleted () |
| Will be emitted by task to indicate its successful completion. More...
|
|
void | taskTerminated () |
| Will be emitted by task if it has terminated for any reason other then completion (e.g., when a task has been canceled or encountered an internal error). More...
|
|
void | setProgress (double progress) |
| Sets the task's current progress. More...
|
|
Executes a QgsMapHitTest in a background thread.
- Since
- QGIS 3.32
Definition at line 156 of file qgsmaphittest.h.
◆ QgsMapHitTestTask()
◆ cancel()
void QgsMapHitTestTask::cancel |
( |
| ) |
|
|
overridevirtual |
Notifies the task that it should terminate.
Calling this is not guaranteed to immediately end the task, rather it sets the isCanceled() flag which task subclasses can check and terminate their operations at an appropriate time. Any subtasks owned by this task will also be canceled. Derived classes must ensure that the base class implementation is called from any overridden version.
- See also
- isCanceled()
Reimplemented from QgsTask.
Definition at line 356 of file qgsmaphittest.cpp.
◆ results()
QMap< QString, QSet< QString > > QgsMapHitTestTask::results |
( |
| ) |
const |
Returns the hit test results, which are a map of layer ID to visible symbol legend keys.
- Note
- Not available in Python bindings
Definition at line 300 of file qgsmaphittest.cpp.
◆ run()
bool QgsMapHitTestTask::run |
( |
| ) |
|
|
overrideprotectedvirtual |
Performs the task's operation.
This method will be called when the task commences (ie via calling start() ), and subclasses should implement the operation they wish to perform in the background within this method.
A task must return a boolean value to indicate whether the task was completed successfully or terminated before completion.
Implements QgsTask.
Definition at line 364 of file qgsmaphittest.cpp.
The documentation for this class was generated from the following files: