Skip to content

Commit 1c30d61

Browse files
SrNetoChannyalldawson
authored andcommittedAug 5, 2023
Try to clean all traces of the Graphical modeler and replace by Model Designer
1 parent b252da6 commit 1c30d61

File tree

6 files changed

+36
-36
lines changed

6 files changed

+36
-36
lines changed
 

‎README.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,23 @@ QGIS is a full-featured, user-friendly, free-and-open-source (FOSS) geographical
1010

1111
<!-- TOC generated with https://freelance-tech-writer.github.io/table-of-contents-generator/index.html -->
1212

13-
* [Features](#features)
14-
* [1. Flexible and powerful spatial data management](#1-flexible-and-powerful-spatial-data-management)
15-
* [2. Beautiful cartography](#2-beautiful-cartography)
16-
* [3. Advanced and robust geospatial analysis](#3-advanced-and-robust-geospatial-analysis)
17-
* [4. Powerful customization and extensibility](#4-powerful-customization-and-extensibility)
18-
* [5. QGIS Server](#5-qgis-server)
19-
* [Under the hood](#under-the-hood)
20-
* [Versions and release cycle](#versions-and-release-cycle)
21-
* [Free and Open Source](#free-and-open-source)
22-
* [Installing and using QGIS](#installing-and-using-qgis)
23-
* [Documentation](#documentation)
24-
* [Help and support channels](#help-and-support-channels)
25-
* [Get involved with the community](#get-involved-with-the-community)
26-
* [Bug reporting and bug fixing](#bug-reporting-and-bug-fixing)
27-
* [New features and enhancements](#new-features-and-enhancements)
28-
* [Translations](#translations)
29-
* [Other ways to contribute](#other-ways-to-contribute)
13+
- [Features](#features)
14+
- [1. Flexible and powerful spatial data management](#1-flexible-and-powerful-spatial-data-management)
15+
- [2. Beautiful cartography](#2-beautiful-cartography)
16+
- [3. Advanced and robust geospatial analysis](#3-advanced-and-robust-geospatial-analysis)
17+
- [4. Powerful customization and extensibility](#4-powerful-customization-and-extensibility)
18+
- [5. QGIS Server](#5-qgis-server)
19+
- [Under the hood](#under-the-hood)
20+
- [Versions and release cycle](#versions-and-release-cycle)
21+
- [Free and Open Source](#free-and-open-source)
22+
- [Installing and using QGIS](#installing-and-using-qgis)
23+
- [Documentation](#documentation)
24+
- [Help and support channels](#help-and-support-channels)
25+
- [Get involved with the community](#get-involved-with-the-community)
26+
- [Bug reporting and bug fixing](#bug-reporting-and-bug-fixing)
27+
- [New features and enhancements](#new-features-and-enhancements)
28+
- [Translations](#translations)
29+
- [Other ways to contribute](#other-ways-to-contribute)
3030

3131
## Features
3232

@@ -78,15 +78,15 @@ For more maps created with QGIS, visit the [QGIS Map Showcase Flickr Group](http
7878
- Access to 1000+ processing algorithms via providers such as GDAL, SAGA, GRASS, OrfeoToolbox, as well as custom models and processing scripts
7979
- Geospatial database engine (filters, joins, relations, forms, etc.), as close to datasource- and format-independent as possible
8080
- Immediate visualization of geospatial query and geoprocessing results
81-
- Graphical modeler and batch processing
81+
- Model designer and batch processing
8282

8383
*Example: Travel isochrones*
8484

8585
![Example: Travel isochrones](images/README-md/network_analysis_2.png "Travel isochrones")
8686

87-
*Example: Graphical model*
87+
*Example: Model designer*
8888

89-
![Example: graphical model](https://docs.qgis.org/latest/en/_images/models_model.png "Graphical model")
89+
![Example: model designer](https://docs.qgis.org/latest/en/_images/models_model.png "Model designer")
9090

9191
### 4. Powerful customization and extensibility
9292

‎python/core/auto_generated/processing/models/qgsprocessingmodelcomponent.sip.in

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,21 +42,21 @@ Sets the friendly ``description`` text for the component.
4242

4343
QPointF position() const;
4444
%Docstring
45-
Returns the position of the model component within the graphical modeler.
45+
Returns the position of the model component within the model designer.
4646

4747
.. seealso:: :py:func:`setPosition`
4848
%End
4949

5050
void setPosition( QPointF position );
5151
%Docstring
52-
Sets the ``position`` of the model component within the graphical modeler.
52+
Sets the ``position`` of the model component within the model designer.
5353

5454
.. seealso:: :py:func:`position`
5555
%End
5656

5757
QSizeF size() const;
5858
%Docstring
59-
Returns the size of the model component within the graphical modeler.
59+
Returns the size of the model component within the model designer.
6060

6161
.. seealso:: :py:func:`setSize`
6262

@@ -65,7 +65,7 @@ Returns the size of the model component within the graphical modeler.
6565

6666
void setSize( QSizeF size );
6767
%Docstring
68-
Sets the ``size`` of the model component within the graphical modeler.
68+
Sets the ``size`` of the model component within the model designer.
6969

7070
.. seealso:: :py:func:`size`
7171

@@ -74,7 +74,7 @@ Sets the ``size`` of the model component within the graphical modeler.
7474

7575
QColor color() const;
7676
%Docstring
77-
Returns the color of the model component within the graphical modeler.
77+
Returns the color of the model component within the model designer.
7878

7979
An invalid color indicates that the default color for the component should be used.
8080

@@ -85,7 +85,7 @@ An invalid color indicates that the default color for the component should be us
8585

8686
void setColor( const QColor &color );
8787
%Docstring
88-
Sets the ``color`` of the model component within the graphical modeler. An invalid ``color``
88+
Sets the ``color`` of the model component within the model designer. An invalid ``color``
8989
indicates that the default color for the component should be used.
9090

9191
.. seealso:: :py:func:`color`

‎python/plugins/grassprovider/grass7.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ A short guide for creating and editing GRASS GIS 7 algorithms:
22
-----------------------------------------------------------------------
33

44
Each GRASS command, to be executed from a processing framework element such as the toolbox
5-
or the graphical modeler, needs to be described to let it know the inputs
5+
or the model designer, needs to be described to let it know the inputs
66
required by the commands, the output it generates and the parameters that are
77
used to configure it. Each command is described in a separate text file, although
88
some commands might be split in several algorithms, thus needing several files

‎python/plugins/processing/ProcessingPlugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ def initGui(self):
262262

263263
self.modelerAction = QAction(
264264
QgsApplication.getThemeIcon("/processingModel.svg"),
265-
QCoreApplication.translate('ProcessingPlugin', '&Graphical Modeler…'), self.iface.mainWindow())
265+
QCoreApplication.translate('ProcessingPlugin', '&Model Designer…'), self.iface.mainWindow())
266266
self.modelerAction.setObjectName('modelerAction')
267267
self.modelerAction.triggered.connect(self.openModeler)
268268
self.iface.registerMainWindowAction(self.modelerAction,

‎src/core/processing/models/qgsprocessingmodelcomponent.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -52,33 +52,33 @@ class CORE_EXPORT QgsProcessingModelComponent
5252
void setDescription( const QString &description );
5353

5454
/**
55-
* Returns the position of the model component within the graphical modeler.
55+
* Returns the position of the model component within the model designer.
5656
* \see setPosition()
5757
*/
5858
QPointF position() const;
5959

6060
/**
61-
* Sets the \a position of the model component within the graphical modeler.
61+
* Sets the \a position of the model component within the model designer.
6262
* \see position()
6363
*/
6464
void setPosition( QPointF position );
6565

6666
/**
67-
* Returns the size of the model component within the graphical modeler.
67+
* Returns the size of the model component within the model designer.
6868
* \see setSize()
6969
* \since QGIS 3.14
7070
*/
7171
QSizeF size() const;
7272

7373
/**
74-
* Sets the \a size of the model component within the graphical modeler.
74+
* Sets the \a size of the model component within the model designer.
7575
* \see size()
7676
* \since QGIS 3.14
7777
*/
7878
void setSize( QSizeF size );
7979

8080
/**
81-
* Returns the color of the model component within the graphical modeler.
81+
* Returns the color of the model component within the model designer.
8282
*
8383
* An invalid color indicates that the default color for the component should be used.
8484
*
@@ -88,7 +88,7 @@ class CORE_EXPORT QgsProcessingModelComponent
8888
QColor color() const;
8989

9090
/**
91-
* Sets the \a color of the model component within the graphical modeler. An invalid \a color
91+
* Sets the \a color of the model component within the model designer. An invalid \a color
9292
* indicates that the default color for the component should be used.
9393
*
9494
* \see color()
@@ -104,7 +104,7 @@ class CORE_EXPORT QgsProcessingModelComponent
104104

105105
/**
106106
* Sets whether the link points for the specified \a edge for this component should be shown collapsed
107-
* in the graphical modeler.
107+
* in the model designer.
108108
* \see linksCollapsed()
109109
*/
110110
void setLinksCollapsed( Qt::Edge edge, bool collapsed );

‎src/ui/processing/qgsmodeldesignerdialogbase.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</rect>
1212
</property>
1313
<property name="windowTitle">
14-
<string>Graphical Modeler</string>
14+
<string>Model Designer</string>
1515
</property>
1616
<widget class="QWidget" name="centralwidget">
1717
<layout class="QVBoxLayout" name="mainLayout">

0 commit comments

Comments
 (0)
Please sign in to comment.