Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustry committed Dec 11, 2024
1 parent 04780a0 commit 99bf45f
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions docs/extension-graphique.md
Original file line number Diff line number Diff line change
Expand Up @@ -482,3 +482,18 @@ Pour rappel, nous ne sommes pas obligé d'ouvrir la fenêtre de Processing, on p
lire le [chapitre précédent](./script-processing.md#utiliser-processing-en-python-avec-un-algorithme-existant). Il ne
faut pas oublier de donner la variable `layer` à notre `INPUT` si vous copiez/coller le code de `processing.run` du
chapitre précédent.


```python
def traitement_2_clicked(self):
layer = self.couche.currentLayer()

dialog = QgsExpressionBuilderDialog(layer)
result = dialog.exec()

if result != QDialog.DialogCode.Accepted:
return

content = dialog.expressionText()
iface.messageBar().pushMessage('Expression', content, Qgis.Success)
```

0 comments on commit 99bf45f

Please sign in to comment.