1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/processing/qgsprocessingalgorithmdialogbase.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
class QgsProcessingAlgorithmDialogBase : QDialog, QgsProcessingParametersGenerator, QgsProcessingContextGenerator
{
%Docstring(signature="appended")
Base class for processing algorithm dialogs.
.. note::
This is not considered stable API and may change in future QGIS versions.
%End
%TypeHeaderCode
#include "qgsprocessingalgorithmdialogbase.h"
%End
public:
enum LogFormat
{
FormatPlainText,
FormatHtml,
};
enum class DialogMode
{
Single,
Batch,
};
QgsProcessingAlgorithmDialogBase( QWidget *parent /TransferThis/ = 0, Qt::WindowFlags flags = Qt::WindowFlags(), QgsProcessingAlgorithmDialogBase::DialogMode mode = QgsProcessingAlgorithmDialogBase::DialogMode::Single );
%Docstring
Constructor for QgsProcessingAlgorithmDialogBase.
%End
~QgsProcessingAlgorithmDialogBase();
void setAlgorithm( QgsProcessingAlgorithm *algorithm /Transfer/ );
%Docstring
Sets the ``algorithm`` to run in the dialog.
Ownership of the algorithm instance is transferred to the dialog.
.. seealso:: :py:func:`algorithm`
%End
QgsProcessingAlgorithm *algorithm();
%Docstring
Returns the algorithm running in the dialog.
.. seealso:: :py:func:`setAlgorithm`
%End
void setMainWidget( QgsPanelWidget *widget /Transfer/ );
%Docstring
Sets the main ``widget`` for the dialog, usually a panel for configuring
algorithm parameters.
.. seealso:: :py:func:`mainWidget`
%End
QgsPanelWidget *mainWidget();
%Docstring
Returns the main widget for the dialog, usually a panel for configuring
algorithm parameters.
.. seealso:: :py:func:`setMainWidget`
%End
void showLog();
%Docstring
Switches the dialog to the log page.
%End
bool wasExecuted() const;
%Docstring
Returns ``True`` if an algorithm was executed in the dialog.
.. seealso:: :py:func:`results`
.. seealso:: :py:func:`setExecuted`
%End
QVariantMap results() const;
%Docstring
Returns the results returned by the algorithm executed.
.. seealso:: :py:func:`wasExecuted`
.. seealso:: :py:func:`setResults`
%End
QgsProcessingFeedback *createFeedback() /Factory/;
%Docstring
Creates a new processing feedback object, automatically connected to the
appropriate slots in this dialog.
%End
void saveLogToFile( const QString &path, LogFormat format = FormatPlainText );
%Docstring
Saves the log contents to a text file (specified by the file ``path``),
in the given ``format``.
.. seealso:: :py:func:`saveLog`
.. versionadded:: 3.2
%End
Qgis::ProcessingLogLevel logLevel() const;
%Docstring
Returns the logging level to use when running algorithms from the
dialog.
.. seealso:: :py:func:`setLogLevel`
.. versionadded:: 3.20
%End
void setLogLevel( Qgis::ProcessingLogLevel level );
%Docstring
Sets the logging ``level`` to use when running algorithms from the
dialog.
.. seealso:: :py:func:`logLevel`
.. versionadded:: 3.20
%End
virtual void setParameters( const QVariantMap &values );
%Docstring
Sets the parameter ``values`` to show in the dialog.
.. versionadded:: 3.24
%End
public slots:
void reportError( const QString &error, bool fatalError );
%Docstring
Reports an ``error`` string to the dialog's log.
If ``fatalError`` is ``True``, the error prevented the algorithm from
executing.
%End
void pushWarning( const QString &warning );
%Docstring
Pushes a warning information string to the dialog's log.
%End
void pushInfo( const QString &info );
%Docstring
Pushes an information string to the dialog's log.
%End
void pushFormattedMessage( const QString &html );
%Docstring
Pushes a pre-formatted message to the dialog's log
This can be used to push formatted HTML messages to the dialog.
.. versionadded:: 3.36
%End
void pushDebugInfo( const QString &message );
%Docstring
Pushes a debug info string to the dialog's log.
%End
void pushCommandInfo( const QString &info );
%Docstring
Pushes command info to the dialog's log.
%End
void setPercentage( double percent );
%Docstring
Sets the percentage progress for the dialog, between 0 and 100.
%End
void setProgressText( const QString &text );
%Docstring
Sets a progress text message.
%End
void pushConsoleInfo( const QString &info );
%Docstring
Pushes a console info string to the dialog's log.
%End
QDialog *createProgressDialog();
%Docstring
Creates a modal progress dialog showing progress and log messages from
this dialog.
%End
void clearLog();
%Docstring
Clears the current log contents.
.. versionadded:: 3.2
%End
void saveLog();
%Docstring
Opens a dialog allowing users to save the current log contents.
.. seealso:: :py:func:`saveLogToFile`
.. versionadded:: 3.2
%End
void copyLogToClipboard();
%Docstring
Copies the current log contents to the clipboard.
.. versionadded:: 3.2
%End
void showParameters();
%Docstring
Switches the dialog to the parameters page.
%End
virtual void reject();
protected:
virtual void closeEvent( QCloseEvent *e );
QPushButton *runButton();
%Docstring
Returns the dialog's run button.
%End
QPushButton *cancelButton();
%Docstring
Returns the dialog's cancel button.
%End
QPushButton *changeParametersButton();
%Docstring
Returns the dialog's change parameters button.
%End
QDialogButtonBox *buttonBox();
%Docstring
Returns the dialog's button box.
%End
QTabWidget *tabWidget();
%Docstring
Returns the dialog's tab widget.
%End
void clearProgress();
%Docstring
Clears any current progress from the dialog.
%End
void setExecuted( bool executed );
%Docstring
Sets whether the algorithm was executed through the dialog.
.. seealso:: :py:func:`wasExecuted`
.. seealso:: :py:func:`setResults`
%End
void setExecutedAnyResult( bool executedAnyResult );
%Docstring
Sets whether the algorithm was executed through the dialog (no matter
the result).
%End
void setResults( const QVariantMap &results );
%Docstring
Sets the algorithm results.
.. seealso:: :py:func:`results`
.. seealso:: :py:func:`setExecuted`
%End
void setInfo( const QString &message, bool isError = false, bool escapeHtml = true, bool isWarning = false );
%Docstring
Displays an info ``message`` in the dialog's log.
%End
void resetGui();
%Docstring
Resets the dialog's gui, ready for another algorithm execution.
%End
virtual void resetAdditionalGui();
%Docstring
For subclasses to register their own GUI controls to be reset, ready for
another algorithm execution.
%End
void updateRunButtonVisibility();
%Docstring
Sets visibility for mutually exclusive buttons Run and Change
Parameters.
%End
void blockControlsWhileRunning();
%Docstring
Blocks run and changeParameters buttons and parameters tab while the
algorithm is running.
%End
virtual void blockAdditionalControlsWhileRunning();
%Docstring
For subclasses to register their own GUI controls to be blocked while
the algorithm is running.
%End
QgsMessageBar *messageBar();
%Docstring
Returns the dialog's message bar.
%End
void hideShortHelp();
%Docstring
Hides the short help panel.
%End
void setCurrentTask( QgsProcessingAlgRunnerTask *task /Transfer/ );
%Docstring
Sets the current ``task`` running in the dialog. The task will
automatically be started by the dialog. Ownership of ``task`` is
transferred to the dialog.
%End
static QString formatStringForLog( const QString &string );
%Docstring
Formats an input ``string`` for display in the log tab.
%End
virtual bool isFinalized();
%Docstring
Returns ``True`` if the dialog is all finalized and can be safely
deleted.
.. versionadded:: 3.26
%End
void applyContextOverrides( QgsProcessingContext *context );
%Docstring
Applies any defined overrides for Processing context settings to the
specified ``context``.
This allows the dialog to override default Processing settings for an
individual algorithm execution.
.. versionadded:: 3.32
%End
signals:
void algorithmAboutToRun( QgsProcessingContext *context );
%Docstring
Emitted when the algorithm is about to run in the specified ``context``.
This signal can be used to tweak the ``context`` prior to the algorithm
execution.
.. versionadded:: 3.38
%End
void algorithmFinished( bool successful, const QVariantMap &result );
%Docstring
Emitted whenever an algorithm has finished executing in the dialog.
.. versionadded:: 3.14
%End
protected slots:
virtual void finished( bool successful, const QVariantMap &result, QgsProcessingContext &context, QgsProcessingFeedback *feedback );
%Docstring
Called when the algorithm has finished executing.
%End
virtual void runAlgorithm();
%Docstring
Called when the dialog's algorithm should be run. Must be overridden by
subclasses.
%End
virtual void algExecuted( bool successful, const QVariantMap &results );
%Docstring
Called when an algorithm task has completed.
.. versionadded:: 3.26
%End
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/processing/qgsprocessingalgorithmdialogbase.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
|