2012-10-04 19:33:47 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
|
|
|
***************************************************************************
|
|
|
|
ModelerScene.py
|
|
|
|
---------------------
|
|
|
|
Date : August 2012
|
|
|
|
Copyright : (C) 2012 by Victor Olaya
|
|
|
|
Email : volayaf at gmail dot com
|
|
|
|
***************************************************************************
|
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
|
|
* (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
***************************************************************************
|
|
|
|
"""
|
|
|
|
|
|
|
|
__author__ = 'Victor Olaya'
|
|
|
|
__date__ = 'August 2012'
|
|
|
|
__copyright__ = '(C) 2012, Victor Olaya'
|
2013-10-01 20:52:22 +03:00
|
|
|
|
2020-03-04 09:45:02 +10:00
|
|
|
from qgis.gui import QgsModelGraphicsScene
|
2020-03-02 11:26:52 +10:00
|
|
|
from processing.modeler.ModelerGraphicItem import (
|
|
|
|
ModelerInputGraphicItem,
|
|
|
|
ModelerOutputGraphicItem,
|
2020-03-04 16:19:10 +10:00
|
|
|
ModelerChildAlgorithmGraphicItem
|
2020-03-02 10:55:37 +10:00
|
|
|
)
|
2013-10-01 20:52:22 +03:00
|
|
|
|
2015-08-22 14:29:41 +02:00
|
|
|
|
2020-03-02 08:55:24 +10:00
|
|
|
class ModelerScene(QgsModelGraphicsScene):
|
2020-03-04 09:45:02 +10:00
|
|
|
"""
|
|
|
|
IMPORTANT! This is intentionally a MINIMAL class, only containing code which HAS TO BE HERE
|
|
|
|
because it contains Python code for compatibility with deprecated methods ONLY.
|
|
|
|
|
|
|
|
Don't add anything here -- edit the c++ base class instead!
|
|
|
|
"""
|
2012-09-15 18:25:25 +03:00
|
|
|
|
2020-03-03 19:59:12 +10:00
|
|
|
def __init__(self, parent=None):
|
2020-03-02 08:55:24 +10:00
|
|
|
super().__init__(parent)
|
2020-01-31 15:15:52 +10:00
|
|
|
|
2020-03-04 09:45:02 +10:00
|
|
|
def createParameterGraphicItem(self, model, param):
|
|
|
|
return ModelerInputGraphicItem(param.clone(), model)
|
2020-01-31 15:15:52 +10:00
|
|
|
|
2020-03-04 09:45:02 +10:00
|
|
|
def createChildAlgGraphicItem(self, model, child):
|
|
|
|
return ModelerChildAlgorithmGraphicItem(child.clone(), model)
|
2020-03-02 11:36:14 +10:00
|
|
|
|
2020-03-04 09:45:02 +10:00
|
|
|
def createOutputGraphicItem(self, model, output):
|
|
|
|
return ModelerOutputGraphicItem(output.clone(), model)
|