4
4
import logging
5
5
from typing import TYPE_CHECKING
6
6
7
- from qgis .core import (
8
- QgsExpressionContextUtils ,
9
- QgsProject ,
10
- QgsVectorLayer ,
11
- )
7
+ from qgis .core import QgsExpressionContextUtils , QgsProject , QgsVectorLayer , QgsWkbTypes
12
8
from qgis .gui import QgsMapToolDigitizeFeature
13
9
from qgis .PyQt .QtWidgets import QDialog , QMessageBox
14
10
40
36
RegulationGroupLayer ,
41
37
plan_layers ,
42
38
)
43
- from arho_feature_template .resources .template_libraries import library_config_files
39
+ from arho_feature_template .resources .libraries .feature_templates import feature_template_library_config_files
40
+ from arho_feature_template .resources .libraries .regulation_groups import regulation_group_library_config_files
44
41
from arho_feature_template .utils .db_utils import get_existing_database_connection_names
45
42
from arho_feature_template .utils .misc_utils import (
46
43
check_layer_changes ,
68
65
class PlanDigitizeMapTool (QgsMapToolDigitizeFeature ): ...
69
66
70
67
71
- class PlanFeatureDigitizeMapTool (QgsMapToolDigitizeFeature ): ...
68
+ class PlanFeatureDigitizeMapTool (QgsMapToolDigitizeFeature ):
69
+ def __init__ (self , mode : QgsMapToolDigitizeFeature .CaptureMode ):
70
+ super ().__init__ (iface .mapCanvas (), iface .cadDockWidget (), mode )
72
71
73
72
74
73
class PlanManager :
75
74
def __init__ (self ):
76
75
self .json_plan_path = None
77
76
self .json_plan_outline_path = None
78
77
79
- self .digitize_map_tool = PlanDigitizeMapTool (iface .mapCanvas (), iface .cadDockWidget ())
80
- self .digitize_map_tool .digitizingCompleted .connect (self ._plan_geom_digitized )
81
-
82
- # Initialize new feature dock
78
+ # Initialize libraries
83
79
self .feature_template_libraries = [
84
- FeatureTemplateLibrary .from_config_file (config_file ) for config_file in library_config_files ()
80
+ FeatureTemplateLibrary .from_config_file (file ) for file in feature_template_library_config_files ()
85
81
]
86
- # self.feature_template_libraries = []
87
-
88
- # TODO: change
89
- import os
90
- from pathlib import Path
91
-
92
- from arho_feature_template .qgis_plugin_tools .tools .resources import resources_path
93
-
94
- katja_asemakaava_path = Path (os .path .join (resources_path (), "katja_asemakaava.yaml" ))
95
82
self .regulation_group_libraries = [
96
- RegulationGroupLibrary .from_config_file (katja_asemakaava_path ),
97
- regulation_group_library_from_active_plan (),
83
+ RegulationGroupLibrary .from_config_file (file ) for file in regulation_group_library_config_files ()
98
84
]
85
+ self .regulation_group_libraries .append (regulation_group_library_from_active_plan ())
99
86
87
+ # Initialize new feature dock
100
88
self .new_feature_dock = NewFeatureDock (self .feature_template_libraries )
101
- self .new_feature_dock .start_digitize_btn . clicked .connect (self .add_new_plan_feature )
89
+ self .new_feature_dock .tool_activated .connect (self .add_new_plan_feature )
102
90
self .new_feature_dock .hide ()
103
91
104
- self .feature_digitize_map_tool = PlanFeatureDigitizeMapTool (iface .mapCanvas (), iface .cadDockWidget ())
92
+ # Initialize digitize tools
93
+ self .digitize_map_tool = PlanDigitizeMapTool (iface .mapCanvas (), iface .cadDockWidget ())
94
+ self .digitize_map_tool .digitizingCompleted .connect (self ._plan_geom_digitized )
95
+
96
+ self .feature_digitize_map_tool = None
97
+ self .initialize_feature_digitize_map_tool ()
98
+
99
+ def initialize_feature_digitize_map_tool (self , layer : QgsVectorLayer | None = None ):
100
+ # Get matcing capture mode for given layer
101
+ if layer is None :
102
+ mode = PlanFeatureDigitizeMapTool .CaptureMode .CaptureNone
103
+ elif layer .geometryType () == QgsWkbTypes .PointGeometry :
104
+ mode = PlanFeatureDigitizeMapTool .CaptureMode .CapturePoint
105
+ elif layer .geometryType () == QgsWkbTypes .LineGeometry :
106
+ mode = PlanFeatureDigitizeMapTool .CaptureMode .CaptureLine
107
+ elif layer .geometryType () == QgsWkbTypes .PolygonGeometry :
108
+ mode = PlanFeatureDigitizeMapTool .CaptureMode .CapturePolygon
109
+
110
+ # Disconnect signals first to not trigger them unwantedly
111
+ if self .feature_digitize_map_tool :
112
+ self .feature_digitize_map_tool .digitizingCompleted .disconnect ()
113
+ self .feature_digitize_map_tool .digitizingFinished .disconnect ()
114
+
115
+ # Reinitialize and reconnect signals
116
+ self .feature_digitize_map_tool = PlanFeatureDigitizeMapTool (mode )
105
117
self .feature_digitize_map_tool .digitizingCompleted .connect (self ._plan_feature_geom_digitized )
118
+ self .feature_digitize_map_tool .digitizingFinished .connect (self .new_feature_dock .deactivate_and_clear_selections )
119
+
120
+ # Set layer if given
121
+ if layer :
122
+ self .feature_digitize_map_tool .setLayer (layer )
106
123
107
124
def add_new_plan (self ):
108
125
"""Initiate the process to add a new plan to the Kaava layer."""
@@ -125,8 +142,6 @@ def add_new_plan(self):
125
142
iface .mapCanvas ().setMapTool (self .digitize_map_tool )
126
143
127
144
def add_new_plan_feature (self ):
128
- self .previous_map_tool = iface .mapCanvas ().mapTool ()
129
-
130
145
if not handle_unsaved_changes ():
131
146
return
132
147
@@ -141,10 +156,9 @@ def add_new_plan_feature(self):
141
156
msg = f"Could not find plan feature layer class for layer name { layer_name } "
142
157
raise ValueError (msg )
143
158
layer = layer_class .get_from_project ()
144
-
145
159
layer .startEditing ()
146
- self . feature_digitize_map_tool . clean () # Is this needed? add_new_plan does not call this
147
- self .feature_digitize_map_tool . setLayer (layer )
160
+
161
+ self .initialize_feature_digitize_map_tool (layer )
148
162
iface .mapCanvas ().setMapTool (self .feature_digitize_map_tool )
149
163
150
164
def _plan_geom_digitized (self , feature : QgsFeature ):
@@ -187,8 +201,6 @@ def _plan_feature_geom_digitized(self, feature: QgsFeature):
187
201
if attribute_form .exec_ ():
188
202
save_plan_feature (attribute_form .model )
189
203
190
- iface .mapCanvas ().setMapTool (self .previous_map_tool )
191
-
192
204
def set_active_plan (self , plan_id : str | None ):
193
205
"""Update the project layers based on the selected land use plan.
194
206
0 commit comments