├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE ├── __init__.py ├── infrastructure ├── __init__.py └── debugging.py ├── py.typed ├── requirements-dev.in ├── requirements-dev.txt ├── resources └── ui │ └── progress_dialog.ui ├── setup.cfg ├── setup.py ├── test ├── __init__.py ├── conftest.py ├── fixtures │ ├── file.xml │ └── text.txt ├── pytest.ini ├── test_decorations.py ├── test_i18n.py ├── test_init.py ├── test_layers.py ├── test_logging.py ├── test_misc_utils.py ├── test_network.py ├── test_raster_layers.py ├── test_setings.py ├── test_tasks.py └── ui │ ├── __init__.py │ └── test_progress_dialog.py ├── tools ├── __init__.py ├── algorithm_processing.py ├── custom_logging.py ├── decorations.py ├── exceptions.py ├── fields.py ├── ghost_layers.py ├── i18n.py ├── layers.py ├── logger_processing.py ├── messages.py ├── misc_utils.py ├── network.py ├── raster_layers.py ├── resources.py ├── settings.py ├── tasks.py ├── ui.py └── version.py └── widgets ├── __init__.py ├── grid_layout_utils.py ├── json_editor.py ├── list_fields_selection.py ├── list_layers_selection.py ├── progress_dialog.py └── selectable_combobox.py /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/LICENSE -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/__init__.py -------------------------------------------------------------------------------- /infrastructure/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/infrastructure/__init__.py -------------------------------------------------------------------------------- /infrastructure/debugging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/infrastructure/debugging.py -------------------------------------------------------------------------------- /py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements-dev.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/requirements-dev.in -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /resources/ui/progress_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/resources/ui/progress_dialog.ui -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/fixtures/file.xml: -------------------------------------------------------------------------------- 1 | 2 | ]> 3 | <_/> 4 | -------------------------------------------------------------------------------- /test/fixtures/text.txt: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /test/pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | timeout = 60 3 | -------------------------------------------------------------------------------- /test/test_decorations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/test/test_decorations.py -------------------------------------------------------------------------------- /test/test_i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/test/test_i18n.py -------------------------------------------------------------------------------- /test/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/test/test_init.py -------------------------------------------------------------------------------- /test/test_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/test/test_layers.py -------------------------------------------------------------------------------- /test/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/test/test_logging.py -------------------------------------------------------------------------------- /test/test_misc_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/test/test_misc_utils.py -------------------------------------------------------------------------------- /test/test_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/test/test_network.py -------------------------------------------------------------------------------- /test/test_raster_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/test/test_raster_layers.py -------------------------------------------------------------------------------- /test/test_setings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/test/test_setings.py -------------------------------------------------------------------------------- /test/test_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/test/test_tasks.py -------------------------------------------------------------------------------- /test/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/ui/test_progress_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/test/ui/test_progress_dialog.py -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/tools/__init__.py -------------------------------------------------------------------------------- /tools/algorithm_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/tools/algorithm_processing.py -------------------------------------------------------------------------------- /tools/custom_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/tools/custom_logging.py -------------------------------------------------------------------------------- /tools/decorations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/tools/decorations.py -------------------------------------------------------------------------------- /tools/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/tools/exceptions.py -------------------------------------------------------------------------------- /tools/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/tools/fields.py -------------------------------------------------------------------------------- /tools/ghost_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/tools/ghost_layers.py -------------------------------------------------------------------------------- /tools/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/tools/i18n.py -------------------------------------------------------------------------------- /tools/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/tools/layers.py -------------------------------------------------------------------------------- /tools/logger_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/tools/logger_processing.py -------------------------------------------------------------------------------- /tools/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/tools/messages.py -------------------------------------------------------------------------------- /tools/misc_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/tools/misc_utils.py -------------------------------------------------------------------------------- /tools/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/tools/network.py -------------------------------------------------------------------------------- /tools/raster_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/tools/raster_layers.py -------------------------------------------------------------------------------- /tools/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/tools/resources.py -------------------------------------------------------------------------------- /tools/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/tools/settings.py -------------------------------------------------------------------------------- /tools/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/tools/tasks.py -------------------------------------------------------------------------------- /tools/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/tools/ui.py -------------------------------------------------------------------------------- /tools/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/tools/version.py -------------------------------------------------------------------------------- /widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /widgets/grid_layout_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/widgets/grid_layout_utils.py -------------------------------------------------------------------------------- /widgets/json_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/widgets/json_editor.py -------------------------------------------------------------------------------- /widgets/list_fields_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/widgets/list_fields_selection.py -------------------------------------------------------------------------------- /widgets/list_layers_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/widgets/list_layers_selection.py -------------------------------------------------------------------------------- /widgets/progress_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/widgets/progress_dialog.py -------------------------------------------------------------------------------- /widgets/selectable_combobox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/qgis_plugin_tools/HEAD/widgets/selectable_combobox.py --------------------------------------------------------------------------------