mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
22 lines
559 B
Plaintext
22 lines
559 B
Plaintext
/** \ingroup gui
|
|
* \class QgsTaskManagerWidget
|
|
* A widget which displays tasks from a QgsTaskManager and allows for interaction with the manager
|
|
* @see QgsTaskManager
|
|
* @note introduced in QGIS 3.0
|
|
*/
|
|
class QgsTaskManagerWidget : QWidget
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgstaskmanagerwidget.h>
|
|
%End
|
|
public:
|
|
|
|
/** Constructor for QgsTaskManagerWidget
|
|
* @param manager task manager associated with widget
|
|
* @param parent parent widget
|
|
*/
|
|
QgsTaskManagerWidget( QgsTaskManager* manager, QWidget* parent /TransferThis/ = nullptr );
|
|
|
|
};
|
|
|