2012-10-04 19:33:47 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
|
|
|
***************************************************************************
|
|
|
|
EditModelAction.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
|
|
|
|
2012-10-04 19:33:47 +02:00
|
|
|
# This will get replaced with a git SHA1 when you do a git archive
|
2013-10-01 20:52:22 +03:00
|
|
|
|
2012-10-04 19:33:47 +02:00
|
|
|
__revision__ = '$Format:%H$'
|
|
|
|
|
2018-02-22 00:36:30 +01:00
|
|
|
from qgis.PyQt.QtCore import QCoreApplication
|
2017-07-03 21:25:04 +10:00
|
|
|
from qgis.core import QgsApplication, QgsProcessingModelAlgorithm
|
2013-08-12 20:44:27 +02:00
|
|
|
from processing.gui.ContextAction import ContextAction
|
|
|
|
from processing.modeler.ModelerDialog import ModelerDialog
|
2015-08-22 14:29:41 +02:00
|
|
|
|
2016-05-27 19:04:25 +03:00
|
|
|
|
2012-09-15 18:25:25 +03:00
|
|
|
class EditModelAction(ContextAction):
|
|
|
|
|
|
|
|
def __init__(self):
|
2018-02-22 00:36:30 +01:00
|
|
|
self.name = QCoreApplication.translate('EditModelAction', 'Edit Model…')
|
2012-09-15 18:25:25 +03:00
|
|
|
|
|
|
|
def isEnabled(self):
|
2017-07-03 21:25:04 +10:00
|
|
|
return isinstance(self.itemData, QgsProcessingModelAlgorithm)
|
2012-09-15 18:25:25 +03:00
|
|
|
|
|
|
|
def execute(self):
|
2017-05-19 10:24:59 +10:00
|
|
|
alg = self.itemData
|
2017-05-01 17:00:10 +10:00
|
|
|
dlg = ModelerDialog(alg)
|
2016-10-31 14:37:12 +10:00
|
|
|
dlg.update_model.connect(self.updateModel)
|
|
|
|
dlg.show()
|
|
|
|
|
|
|
|
def updateModel(self):
|
2017-04-04 11:28:28 +10:00
|
|
|
QgsApplication.processingRegistry().providerById('model').refreshAlgorithms()
|