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
|
|
|
|
2018-02-22 00:36:30 +01:00
|
|
|
from qgis.PyQt.QtCore import QCoreApplication
|
2020-02-12 14:01:05 +01:00
|
|
|
from qgis.core import QgsApplication, QgsProcessingAlgorithm
|
2013-08-12 20:44:27 +02:00
|
|
|
from processing.gui.ContextAction import ContextAction
|
|
|
|
from processing.modeler.ModelerDialog import ModelerDialog
|
2019-01-23 14:02:42 +01:00
|
|
|
from qgis.core import Qgis
|
|
|
|
from qgis.utils import iface
|
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):
|
2019-02-01 12:22:23 +10:00
|
|
|
super().__init__()
|
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):
|
2020-02-25 12:27:15 +10:00
|
|
|
return isinstance(self.itemData, QgsProcessingAlgorithm) and self.itemData.provider().id() in ("model", "project")
|
2012-09-15 18:25:25 +03:00
|
|
|
|
|
|
|
def execute(self):
|
2017-05-19 10:24:59 +10:00
|
|
|
alg = self.itemData
|
2019-01-23 14:02:42 +01:00
|
|
|
ok, msg = alg.canExecute()
|
|
|
|
if not ok:
|
2019-01-24 10:50:19 +01:00
|
|
|
iface.messageBar().pushMessage(QCoreApplication.translate('EditModelAction', 'Cannot edit model: {}').format(msg), level=Qgis.Warning)
|
2019-01-23 14:02:42 +01:00
|
|
|
else:
|
2020-03-05 15:11:13 +10:00
|
|
|
dlg = ModelerDialog.create(alg)
|
2019-01-23 14:02:42 +01:00
|
|
|
dlg.update_model.connect(self.updateModel)
|
|
|
|
dlg.show()
|
2016-10-31 14:37:12 +10:00
|
|
|
|
|
|
|
def updateModel(self):
|
2017-04-04 11:28:28 +10:00
|
|
|
QgsApplication.processingRegistry().providerById('model').refreshAlgorithms()
|