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 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/processing/models/qgsmodelcomponentgraphicitem.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
class QgsModelComponentGraphicItem : QGraphicsObject
{
%Docstring(signature="appended")
Base class for graphic items representing model components in the model
designer.
.. warning::
Not stable API
.. versionadded:: 3.14
%End
%TypeHeaderCode
#include "qgsmodelcomponentgraphicitem.h"
%End
public:
enum State /BaseType=IntEnum/
{
Normal,
Selected,
Hover,
};
enum Flag /BaseType=IntEnum/
{
// For future API flexibility only and to avoid sip issues, remove when real entries are added to flags.
Unused,
};
typedef QFlags<QgsModelComponentGraphicItem::Flag> Flags;
QgsModelComponentGraphicItem( QgsProcessingModelComponent *component /Transfer/, QgsProcessingModelAlgorithm *model, QGraphicsItem *parent /TransferThis/ );
%Docstring
Constructor for QgsModelComponentGraphicItem for the specified
``component``, with the specified ``parent`` item.
The ``model`` argument specifies the associated processing model.
Ownership of ``model`` is not transferred, and it must exist for the
lifetime of this object.
Ownership of ``component`` is transferred to the item.
%End
~QgsModelComponentGraphicItem();
virtual Flags flags() const;
%Docstring
Returns item flags.
%End
QgsProcessingModelComponent *component();
%Docstring
Returns the model component associated with this item.
%End
QgsProcessingModelAlgorithm *model();
%Docstring
Returns the model associated with this item.
%End
QgsModelGraphicsView *view();
%Docstring
Returns the associated view.
%End
QFont font() const;
%Docstring
Returns the font used to render text in the item.
.. seealso:: :py:func:`setFont`
%End
void setFont( const QFont &font );
%Docstring
Sets the ``font`` used to render text in the item.
.. seealso:: :py:func:`font`
%End
void moveComponentBy( qreal dx, qreal dy );
%Docstring
Moves the component by the specified ``dx`` and ``dy``.
.. warning::
Call this method, not QGraphicsItem.moveBy!
%End
void previewItemMove( qreal dx, qreal dy );
%Docstring
Shows a preview of moving the item from its stored position by ``dx``,
``dy``.
%End
void setItemRect( QRectF rect );
%Docstring
Sets a new scene ``rect`` for the item.
%End
virtual void mouseDoubleClickEvent( QGraphicsSceneMouseEvent *event );
virtual void hoverEnterEvent( QGraphicsSceneHoverEvent *event );
virtual void hoverMoveEvent( QGraphicsSceneHoverEvent *event );
virtual void hoverLeaveEvent( QGraphicsSceneHoverEvent *event );
virtual QVariant itemChange( GraphicsItemChange change, const QVariant &value );
virtual QRectF boundingRect() const;
virtual bool contains( const QPointF &point ) const;
virtual void paint( QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0 );
QRectF itemRect( bool storedRect = false ) const;
%Docstring
Returns the rectangle representing the body of the item.
%End
QString label() const;
%Docstring
Returns the item's label text.
.. seealso:: :py:func:`setLabel`
%End
void setLabel( const QString &label );
%Docstring
Returns the item's ``label`` text.
.. seealso:: :py:func:`label`
%End
State state() const;
%Docstring
Returns the item's current state.
%End
virtual int linkPointCount( Qt::Edge edge ) const;
%Docstring
Returns the number of link points associated with the component on the
specified ``edge``.
%End
virtual QString linkPointText( Qt::Edge edge, int index ) const;
%Docstring
Returns the text to use for the link point with the specified ``index``
on the specified ``edge``.
%End
QPointF linkPoint( Qt::Edge edge, int index, bool incoming ) const;
%Docstring
Returns the location of the link point with the specified ``index`` on
the specified ``edge``.
%End
QPointF calculateAutomaticLinkPoint( QgsModelComponentGraphicItem *other, Qt::Edge &edge /Out/ ) const;
%Docstring
Returns the best link point to use for a link originating at a specified
``other`` item.
:param other: item at other end of link
:return: - calculated link point in item coordinates.
- edge: item edge for calculated best link point
%End
QPointF calculateAutomaticLinkPoint( const QPointF &point, Qt::Edge &edge /Out/ ) const;
%Docstring
Returns the best link point to use for a link originating at a specified
``other`` point.
:param other: point for other end of link (in scene coordinates)
:return: - calculated link point in item coordinates.
- edge: item edge for calculated best link point
%End
virtual void editComment();
%Docstring
Called when the comment attached to the item should be edited.
The default implementation does nothing.
%End
virtual bool canDeleteComponent();
%Docstring
Returns ``True`` if the component can be deleted.
%End
virtual void deleteComponent();
%Docstring
Called when the component should be deleted.
The default implementation does nothing.
%End
signals:
void requestModelRepaint();
%Docstring
Emitted by the item to request a repaint of the parent model scene.
%End
void aboutToChange( const QString &text, int id = 0 );
%Docstring
Emitted when the definition of the associated component is about to be
changed by the item.
The ``text`` argument gives the translated text describing the change
about to occur, and the optional ``id`` can be used to group the
associated undo commands.
%End
void changed();
%Docstring
Emitted when the definition of the associated component is changed by
the item.
%End
void repaintArrows();
%Docstring
Emitted when item requests that all connected arrows are repainted.
%End
void updateArrowPaths();
%Docstring
Emitted when item requires that all connected arrow paths are
recalculated.
%End
void sizePositionChanged();
%Docstring
Emitted when the item's size or position changes.
%End
protected slots:
virtual void editComponent();
%Docstring
Called when the component should be edited.
The default implementation does nothing.
%End
protected:
QString truncatedTextForItem( const QString &text ) const;
%Docstring
Truncates a ``text`` string so that it fits nicely within the item's
width, accounting for margins and interactive buttons.
%End
virtual QColor fillColor( State state ) const = 0;
%Docstring
Returns the fill color for the item for the specified ``state``.
%End
virtual QColor strokeColor( State state ) const = 0;
%Docstring
Returns the stroke color for the item for the specified ``state``.
%End
virtual QColor textColor( State state ) const = 0;
%Docstring
Returns the label text color for the item for the specified ``state``.
%End
virtual Qt::PenStyle strokeStyle( State state ) const;
%Docstring
Returns the stroke style to use while rendering the outline of the item.
%End
virtual Qt::Alignment titleAlignment() const;
%Docstring
Returns the title alignment
%End
virtual QPicture iconPicture() const;
%Docstring
Returns a QPicture version of the item's icon, if available.
%End
virtual QPixmap iconPixmap() const;
%Docstring
Returns a QPixmap version of the item's icon, if available.
%End
virtual void updateStoredComponentPosition( const QPointF &pos, const QSizeF &size ) = 0;
%Docstring
Updates the position and size stored in the model for the associated
comment
%End
void updateButtonPositions();
%Docstring
Updates the item's button positions, based on the current item rect.
%End
};
QFlags<QgsModelComponentGraphicItem::Flag> operator|(QgsModelComponentGraphicItem::Flag f1, QFlags<QgsModelComponentGraphicItem::Flag> f2);
class QgsModelParameterGraphicItem : QgsModelComponentGraphicItem
{
%Docstring(signature="appended")
A graphic item representing a model parameter (input) in the model
designer.
.. warning::
Not stable API
.. versionadded:: 3.14
%End
%TypeHeaderCode
#include "qgsmodelcomponentgraphicitem.h"
%End
public:
QgsModelParameterGraphicItem( QgsProcessingModelParameter *parameter /Transfer/, QgsProcessingModelAlgorithm *model, QGraphicsItem *parent /TransferThis/ );
%Docstring
Constructor for QgsModelParameterGraphicItem for the specified
``parameter``, with the specified ``parent`` item.
The ``model`` argument specifies the associated processing model.
Ownership of ``model`` is not transferred, and it must exist for the
lifetime of this object.
Ownership of ``parameter`` is transferred to the item.
%End
virtual void contextMenuEvent( QGraphicsSceneContextMenuEvent *event );
virtual bool canDeleteComponent();
protected:
virtual QColor fillColor( State state ) const;
virtual QColor strokeColor( State state ) const;
virtual QColor textColor( State state ) const;
virtual QPicture iconPicture() const;
virtual void updateStoredComponentPosition( const QPointF &pos, const QSizeF &size );
protected slots:
virtual void deleteComponent();
};
class QgsModelChildAlgorithmGraphicItem : QgsModelComponentGraphicItem
{
%Docstring(signature="appended")
A graphic item representing a child algorithm in the model designer.
.. warning::
Not stable API
.. versionadded:: 3.14
%End
%TypeHeaderCode
#include "qgsmodelcomponentgraphicitem.h"
%End
public:
QgsModelChildAlgorithmGraphicItem( QgsProcessingModelChildAlgorithm *child /Transfer/, QgsProcessingModelAlgorithm *model, QGraphicsItem *parent /TransferThis/ );
%Docstring
Constructor for QgsModelChildAlgorithmGraphicItem for the specified
``child``, with the specified ``parent`` item.
The ``model`` argument specifies the associated processing model.
Ownership of ``model`` is not transferred, and it must exist for the
lifetime of this object.
Ownership of ``child`` is transferred to the item.
%End
virtual void contextMenuEvent( QGraphicsSceneContextMenuEvent *event );
virtual bool canDeleteComponent();
void setResults( const QgsProcessingModelChildAlgorithmResult &results );
%Docstring
Sets the ``results`` obtained for this child algorithm for the last
model execution through the dialog.
%End
signals:
void runFromHere();
%Docstring
Emitted when the user opts to run the model from this child algorithm.
.. versionadded:: 3.38
%End
void runSelected();
%Docstring
Emitted when the user opts to run selected steps from the model.
.. versionadded:: 3.38
%End
void showPreviousResults();
%Docstring
Emitted when the user opts to view previous results from this child
algorithm.
.. versionadded:: 3.38
%End
void showLog();
%Docstring
Emitted when the user opts to view the previous log from this child
algorithm.
.. versionadded:: 3.38
%End
protected:
virtual QColor fillColor( State state ) const;
virtual QColor strokeColor( State state ) const;
virtual QColor textColor( State state ) const;
virtual QPixmap iconPixmap() const;
virtual QPicture iconPicture() const;
virtual int linkPointCount( Qt::Edge edge ) const;
virtual QString linkPointText( Qt::Edge edge, int index ) const;
virtual void updateStoredComponentPosition( const QPointF &pos, const QSizeF &size );
protected slots:
virtual void deleteComponent();
};
class QgsModelOutputGraphicItem : QgsModelComponentGraphicItem
{
%Docstring(signature="appended")
A graphic item representing a model output in the model designer.
.. warning::
Not stable API
.. versionadded:: 3.14
%End
%TypeHeaderCode
#include "qgsmodelcomponentgraphicitem.h"
%End
public:
QgsModelOutputGraphicItem( QgsProcessingModelOutput *output /Transfer/, QgsProcessingModelAlgorithm *model, QGraphicsItem *parent /TransferThis/ );
%Docstring
Constructor for QgsModelOutputGraphicItem for the specified ``output``,
with the specified ``parent`` item.
The ``model`` argument specifies the associated processing model.
Ownership of ``model`` is not transferred, and it must exist for the
lifetime of this object.
Ownership of ``output`` is transferred to the item.
%End
virtual bool canDeleteComponent();
protected:
virtual QColor fillColor( State state ) const;
virtual QColor strokeColor( State state ) const;
virtual QColor textColor( State state ) const;
virtual QPicture iconPicture() const;
virtual void updateStoredComponentPosition( const QPointF &pos, const QSizeF &size );
protected slots:
virtual void deleteComponent();
};
class QgsModelCommentGraphicItem : QgsModelComponentGraphicItem
{
%Docstring(signature="appended")
A graphic item representing a model comment in the model designer.
.. warning::
Not stable API
.. versionadded:: 3.14
%End
%TypeHeaderCode
#include "qgsmodelcomponentgraphicitem.h"
%End
public:
QgsModelCommentGraphicItem( QgsProcessingModelComment *comment /Transfer/, QgsModelComponentGraphicItem *parentItem, QgsProcessingModelAlgorithm *model, QGraphicsItem *parent /TransferThis/ );
%Docstring
Constructor for QgsModelCommentGraphicItem for the specified
``comment``, with the specified ``parent`` item.
The ``model`` argument specifies the associated processing model.
Ownership of ``model`` is not transferred, and it must exist for the
lifetime of this object.
Ownership of ``output`` is transferred to the item.
%End
~QgsModelCommentGraphicItem();
virtual void contextMenuEvent( QGraphicsSceneContextMenuEvent *event );
virtual bool canDeleteComponent();
QgsModelComponentGraphicItem *parentComponentItem() const;
%Docstring
Returns the parent model component item.
%End
protected:
virtual QColor fillColor( State state ) const;
virtual QColor strokeColor( State state ) const;
virtual QColor textColor( State state ) const;
virtual Qt::PenStyle strokeStyle( State state ) const;
virtual void updateStoredComponentPosition( const QPointF &pos, const QSizeF &size );
protected slots:
virtual void deleteComponent();
virtual void editComponent();
};
class QgsModelGroupBoxGraphicItem : QgsModelComponentGraphicItem
{
%Docstring(signature="appended")
A graphic item representing a group box in the model designer.
.. warning::
Not stable API
.. versionadded:: 3.14
%End
%TypeHeaderCode
#include "qgsmodelcomponentgraphicitem.h"
%End
public:
QgsModelGroupBoxGraphicItem( QgsProcessingModelGroupBox *box /Transfer/, QgsProcessingModelAlgorithm *model, QGraphicsItem *parent /TransferThis/ );
%Docstring
Constructor for QgsModelGroupBoxGraphicItem for the specified group
``box``, with the specified ``parent`` item.
The ``model`` argument specifies the associated processing model.
Ownership of ``model`` is not transferred, and it must exist for the
lifetime of this object.
Ownership of ``output`` is transferred to the item.
%End
~QgsModelGroupBoxGraphicItem();
virtual void contextMenuEvent( QGraphicsSceneContextMenuEvent *event );
virtual bool canDeleteComponent();
protected:
virtual QColor fillColor( State state ) const;
virtual QColor strokeColor( State state ) const;
virtual QColor textColor( State state ) const;
virtual Qt::PenStyle strokeStyle( State state ) const;
virtual Qt::Alignment titleAlignment() const;
virtual void updateStoredComponentPosition( const QPointF &pos, const QSizeF &size );
protected slots:
virtual void deleteComponent();
virtual void editComponent();
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/processing/models/qgsmodelcomponentgraphicitem.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
|