2016-04-15 07:35:22 +10:00
|
|
|
/** \ingroup gui
|
|
|
|
* \class QgsTaskManagerWidget
|
|
|
|
* A widget which displays tasks from a QgsTaskManager and allows for interaction with the manager
|
|
|
|
* @see QgsTaskManager
|
2016-11-29 15:57:01 +10:00
|
|
|
* @note introduced in QGIS 3.0
|
2016-04-15 07:35:22 +10:00
|
|
|
*/
|
2016-04-19 22:24:34 +10:00
|
|
|
class QgsTaskManagerWidget : QWidget
|
2016-04-15 07:35:22 +10:00
|
|
|
{
|
|
|
|
%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 );
|
|
|
|
|
|
|
|
};
|
|
|
|
|