LazMapViewer: refactor finding of point groups in TMarkerSelectAndDragPlugin
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@9693 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
parent
980bc6f436
commit
c3c6ce1223
@ -59,8 +59,12 @@
|
|||||||
<Linking>
|
<Linking>
|
||||||
<Debugging>
|
<Debugging>
|
||||||
<DebugInfoType Value="dsDwarf3"/>
|
<DebugInfoType Value="dsDwarf3"/>
|
||||||
<UseHeaptrc Value="True"/>
|
|
||||||
</Debugging>
|
</Debugging>
|
||||||
|
<Options>
|
||||||
|
<Win32>
|
||||||
|
<GraphicApplication Value="True"/>
|
||||||
|
</Win32>
|
||||||
|
</Options>
|
||||||
</Linking>
|
</Linking>
|
||||||
</CompilerOptions>
|
</CompilerOptions>
|
||||||
<Debugging>
|
<Debugging>
|
||||||
|
@ -155,14 +155,7 @@ var
|
|||||||
i: Integer;
|
i: Integer;
|
||||||
begin
|
begin
|
||||||
MapView.Active := true;
|
MapView.Active := true;
|
||||||
(*
|
|
||||||
AddGPSMarker( 0.0000000, 51.4825766, 'Greenwich');
|
|
||||||
AddGPSMarker( 2.2945500, 48.8582300, 'Tour d´Eiffel, Paris');
|
|
||||||
AddGPSMarker( -79.3884000, 43.6439500, 'CN Tower, Toronto');
|
|
||||||
AddMapMarker(-157.7739800, 21.2716900, 'Kahala Avenue, Honolulu');
|
|
||||||
AddMapMarker( 114.1497900, 22.2708100, 'The Peak, Hong Kong');
|
|
||||||
AddMapMarker( 13.377778, 52.5163890, 'Brandenburger Tor, Berlin');
|
|
||||||
*)
|
|
||||||
AddGPSMarker(RealPoint(51.4825766, 0.000000), 'Greenwich');
|
AddGPSMarker(RealPoint(51.4825766, 0.000000), 'Greenwich');
|
||||||
AddGPSMarker(RealPoint(48.8582300, 2.294550), 'Tour d´Eiffel, Paris');
|
AddGPSMarker(RealPoint(48.8582300, 2.294550), 'Tour d´Eiffel, Paris');
|
||||||
AddGPSMarker(RealPoint(43.6439500, -79.388400), 'CN Tower, Toronto');
|
AddGPSMarker(RealPoint(43.6439500, -79.388400), 'CN Tower, Toronto');
|
||||||
@ -205,9 +198,11 @@ begin
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TMainForm.btnConvertToTrackClick(Sender: TObject);
|
procedure TMainForm.btnConvertToTrackClick(Sender: TObject);
|
||||||
|
const
|
||||||
|
counter: Integer = 0;
|
||||||
begin
|
begin
|
||||||
case rgGpsObjOrMapItem.ItemIndex of
|
case rgGpsObjOrMapItem.ItemIndex of
|
||||||
0: with Plugin.ConvertSelectedPointsToGPSTrack(MapView, 2000) do
|
0: with Plugin.ConvertSelectedPointsToGPSTrack(MapView, 2000 + counter) do
|
||||||
begin
|
begin
|
||||||
LineColor := clGreen;
|
LineColor := clGreen;
|
||||||
lineWidth := 1.0;
|
lineWidth := 1.0;
|
||||||
@ -218,12 +213,15 @@ begin
|
|||||||
LineWidth := 1.0;
|
LineWidth := 1.0;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
inc(counter);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TMainForm.btnConvertToAreaClick(Sender: TObject);
|
procedure TMainForm.btnConvertToAreaClick(Sender: TObject);
|
||||||
|
var
|
||||||
|
counter: Integer = 0;
|
||||||
begin
|
begin
|
||||||
case rgGpsObjOrMapItem.ItemIndex of
|
case rgGpsObjOrMapItem.ItemIndex of
|
||||||
0: with Plugin.ConvertSelectedPointsToGPSArea(MapView, 2001) do
|
0: with Plugin.ConvertSelectedPointsToGPSArea(MapView, 3000 + counter) do
|
||||||
begin
|
begin
|
||||||
FillColor := clGray;
|
FillColor := clGray;
|
||||||
LineColor := clBlack;
|
LineColor := clBlack;
|
||||||
@ -236,6 +234,7 @@ begin
|
|||||||
Opacity := 0.5;
|
Opacity := 0.5;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
inc(counter);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TMainForm.cbMultiSelectChange(Sender: TObject);
|
procedure TMainForm.cbMultiSelectChange(Sender: TObject);
|
||||||
|
@ -119,6 +119,8 @@ type
|
|||||||
procedure DrawPoint(AMapView: TMapView; ADrawingEngine: TMvCustomDrawingEngine;
|
procedure DrawPoint(AMapView: TMapView; ADrawingEngine: TMvCustomDrawingEngine;
|
||||||
AGpsPoint: TGPSPoint; AScreenPoint: TPoint; AMarkerSize: Integer);
|
AGpsPoint: TGPSPoint; AScreenPoint: TPoint; AMarkerSize: Integer);
|
||||||
procedure DrawSelection(AMapView: TMapView);
|
procedure DrawSelection(AMapView: TMapView);
|
||||||
|
procedure FindContainerOfPoint(AMapView: TMapView; APoint: TGPSPoint; var AContainer: TGPSObj; var AIndex: Integer);
|
||||||
|
procedure FindMapCollection(AMapView: TMapView; APoint: TGPSPoint; var ACollection: TMapCollectionBase; var AIndex: Integer);
|
||||||
procedure MoveSelectionBy(AMapView: TMapView; dx, dy: Integer);
|
procedure MoveSelectionBy(AMapView: TMapView; dx, dy: Integer);
|
||||||
procedure ToggleSelected(AMapView: TMapView; APoint: TGPSPoint);
|
procedure ToggleSelected(AMapView: TMapView; APoint: TGPSPoint);
|
||||||
protected
|
protected
|
||||||
@ -522,92 +524,27 @@ end;
|
|||||||
procedure TMarkerSelectAndDragPlugin.DeleteFromList(AMapView: TMapView;
|
procedure TMarkerSelectAndDragPlugin.DeleteFromList(AMapView: TMapView;
|
||||||
APoint: TGPSPoint);
|
APoint: TGPSPoint);
|
||||||
var
|
var
|
||||||
i, j, k: Integer;
|
gpsObj: TGPSObj;
|
||||||
gpsLayer: TGPSObjectList;
|
collection: TMapCollectionBase = nil;
|
||||||
gpsPolyline: TGPSPolyLine;
|
idx: Integer = -1;
|
||||||
item: TGPSObj;
|
|
||||||
p: TMapPoint;
|
|
||||||
mapLayer: TMapLayer;
|
|
||||||
mapTrack: TMapTrack;
|
|
||||||
mapArea: TMapArea;
|
|
||||||
|
|
||||||
function IsSamePoint(AItem: TGPSObj): Boolean;
|
|
||||||
begin
|
begin
|
||||||
Result := (AItem is TGPSPoint) and TGPSPoint(AItem).RealPoint.Equal(APoint.RealPoint);
|
// Find the point in the GPS lists
|
||||||
|
FindContainerOfPoint(AMapView, APoint, gpsObj, idx);
|
||||||
|
if (gpsObj is TGPSObjectList) then
|
||||||
|
begin
|
||||||
|
TGPSObjectList(gpsObj).Delete(APoint);
|
||||||
|
exit;
|
||||||
|
end else
|
||||||
|
if (gpsObj is TGPSPolyLine) then
|
||||||
|
begin
|
||||||
|
TGPSPolyLine(gpsObj).Points.Delete(idx);
|
||||||
|
exit;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
begin
|
// Find the point in the map collections
|
||||||
// Check the 10 layers of GPSItems
|
FindMapCollection(AMapView, APoint, collection, idx);
|
||||||
for i := 0 to 9 do
|
if collection <> nil then
|
||||||
begin
|
collection.Delete(idx);
|
||||||
gpsLayer := AMapView.GPSLayer[i];
|
|
||||||
for j := 0 to gpsLayer.Count-1 do
|
|
||||||
begin
|
|
||||||
item := gpsLayer[j];
|
|
||||||
if IsSamePoint(item) then
|
|
||||||
begin
|
|
||||||
gpsLayer.Delete(item);
|
|
||||||
exit;
|
|
||||||
end;
|
|
||||||
if (item is TGPSPolyline) then
|
|
||||||
begin
|
|
||||||
gpsPolyLine := TGPSPolyLine(item);
|
|
||||||
for k := 0 to gpsPolyLine.Points.Count-1 do
|
|
||||||
begin
|
|
||||||
item := gpsPolyLine.Points[k];
|
|
||||||
if IsSamePoint(item) then
|
|
||||||
begin
|
|
||||||
gpsPolyLine.Points.Delete(k);
|
|
||||||
exit;
|
|
||||||
end;
|
|
||||||
end;
|
|
||||||
end;
|
|
||||||
end;
|
|
||||||
end;
|
|
||||||
|
|
||||||
// Check the map layers
|
|
||||||
for i := 0 to AMapView.Layers.Count-1 do
|
|
||||||
begin
|
|
||||||
mapLayer := AMapView.Layers[i];
|
|
||||||
// Points of interest?
|
|
||||||
for j := 0 to mapLayer.PointsOfInterest.Count-1 do
|
|
||||||
begin
|
|
||||||
p := mapLayer.PointsOfInterest[j];
|
|
||||||
if IsSamePoint(p.GPSObj) then
|
|
||||||
begin
|
|
||||||
mapLayer.PointsOfInterest.Delete(j);
|
|
||||||
exit;
|
|
||||||
end;
|
|
||||||
end;
|
|
||||||
// Tracks?
|
|
||||||
for j := 0 to mapLayer.Tracks.Count-1 do
|
|
||||||
begin
|
|
||||||
mapTrack := mapLayer.Tracks[j];
|
|
||||||
for k := 0 to mapTrack.Points.Count-1 do
|
|
||||||
begin
|
|
||||||
p := mapTrack.Points[k];
|
|
||||||
if IsSamePoint(p.GPSObj) then
|
|
||||||
begin
|
|
||||||
mapTrack.Points.Delete(k);
|
|
||||||
exit;
|
|
||||||
end;
|
|
||||||
end;
|
|
||||||
end;
|
|
||||||
// Areas?
|
|
||||||
for j := 0 to mapLayer.Areas.Count-1 do
|
|
||||||
begin
|
|
||||||
mapArea := mapLayer.Areas[j];
|
|
||||||
for k := 0 to mapArea.Points.Count-1 do
|
|
||||||
begin
|
|
||||||
p := mapArea.Points[k];
|
|
||||||
if IsSamePoint(p.GPSObj) then
|
|
||||||
begin
|
|
||||||
mapArea.Points.Delete(k);
|
|
||||||
exit;
|
|
||||||
end;
|
|
||||||
end;
|
|
||||||
end;
|
|
||||||
end;
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TMarkerSelectAndDragPlugin.DeleteSelectedPoints(AMapView: TMapView);
|
procedure TMarkerSelectAndDragPlugin.DeleteSelectedPoints(AMapView: TMapView);
|
||||||
@ -714,6 +651,125 @@ begin
|
|||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
procedure TMarkerSelectAndDragPlugin.FindContainerOfPoint(AMapView: TMapView;
|
||||||
|
APoint: TGPSPoint; var AContainer: TGPSObj; var AIndex: Integer);
|
||||||
|
var
|
||||||
|
i, j, k: Integer;
|
||||||
|
gpsLayer: TGPSObjectList;
|
||||||
|
gpsPolyline: TGPSPolyLine;
|
||||||
|
item: TGPSObj;
|
||||||
|
|
||||||
|
function IsSamePoint(AItem: TGPSObj): Boolean;
|
||||||
|
begin
|
||||||
|
Result := (AItem is TGPSPoint) and TGPSPoint(AItem).RealPoint.Equal(APoint.RealPoint);
|
||||||
|
end;
|
||||||
|
|
||||||
|
begin
|
||||||
|
// Iterate over the 10 layers of GPSItems
|
||||||
|
for i := 0 to 9 do
|
||||||
|
begin
|
||||||
|
gpsLayer := AMapView.GPSLayer[i];
|
||||||
|
for j := 0 to gpsLayer.Count-1 do
|
||||||
|
begin
|
||||||
|
item := gpsLayer[j];
|
||||||
|
if IsSamePoint(item) then
|
||||||
|
begin
|
||||||
|
AContainer := gpsLayer;
|
||||||
|
AIndex := j;
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
|
|
||||||
|
if (item is TGPSPolyline) then
|
||||||
|
begin
|
||||||
|
gpsPolyLine := TGPSPolyLine(item);
|
||||||
|
for k := 0 to gpsPolyLine.Points.Count-1 do
|
||||||
|
begin
|
||||||
|
item := gpsPolyLine.Points[k];
|
||||||
|
if IsSamePoint(item) then
|
||||||
|
begin
|
||||||
|
AContainer := gpsPolyLine;
|
||||||
|
AIndex := k;
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
// If we get here the point has not been found.
|
||||||
|
AContainer := nil;
|
||||||
|
AIndex := -1;
|
||||||
|
end;
|
||||||
|
|
||||||
|
{ Tries to find the point in one of the map-type collections of all layers.
|
||||||
|
If found, returns the collection and the index of the point in the collection.
|
||||||
|
Otherwise, nil and -1 are returned, respectively. }
|
||||||
|
procedure TMarkerSelectAndDragPlugin.FindMapCollection(AMapView: TMapView;
|
||||||
|
APoint: TGPSPoint; var ACollection: TMapCollectionBase; var AIndex: Integer);
|
||||||
|
var
|
||||||
|
i, j, k: Integer;
|
||||||
|
p: TMapPoint;
|
||||||
|
mapLayer: TMapLayer;
|
||||||
|
mapTrack: TMapTrack;
|
||||||
|
mapArea: TMapArea;
|
||||||
|
|
||||||
|
function IsSamePoint(AItem: TGPSObj): Boolean;
|
||||||
|
begin
|
||||||
|
Result := (AItem is TGPSPoint) and TGPSPoint(AItem).RealPoint.Equal(APoint.RealPoint);
|
||||||
|
end;
|
||||||
|
|
||||||
|
begin
|
||||||
|
// Iterate over all map-layers
|
||||||
|
for i := 0 to AMapView.Layers.Count-1 do
|
||||||
|
begin
|
||||||
|
mapLayer := AMapView.Layers[i];
|
||||||
|
// Points of interest?
|
||||||
|
for j := 0 to mapLayer.PointsOfInterest.Count-1 do
|
||||||
|
begin
|
||||||
|
p := mapLayer.PointsOfInterest[j];
|
||||||
|
if IsSamePoint(p.GPSObj) then
|
||||||
|
begin
|
||||||
|
ACollection := mapLayer.PointsOfInterest;
|
||||||
|
AIndex := j;
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
// Tracks?
|
||||||
|
for j := 0 to mapLayer.Tracks.Count-1 do
|
||||||
|
begin
|
||||||
|
mapTrack := mapLayer.Tracks[j];
|
||||||
|
for k := 0 to mapTrack.Points.Count-1 do
|
||||||
|
begin
|
||||||
|
p := mapTrack.Points[k];
|
||||||
|
if IsSamePoint(p.GPSObj) then
|
||||||
|
begin
|
||||||
|
ACollection := mapTrack.Points;
|
||||||
|
AIndex := k;
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
// Areas?
|
||||||
|
for j := 0 to mapLayer.Areas.Count-1 do
|
||||||
|
begin
|
||||||
|
mapArea := mapLayer.Areas[j];
|
||||||
|
for k := 0 to mapArea.Points.Count-1 do
|
||||||
|
begin
|
||||||
|
p := mapArea.Points[k];
|
||||||
|
if IsSamePoint(p.GPSObj) then
|
||||||
|
begin
|
||||||
|
ACollection := mapArea.Points;
|
||||||
|
AIndex := k;
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
// When we get here, the point has not been found.
|
||||||
|
ACollection := nil;
|
||||||
|
AIndex := -1;
|
||||||
|
end;
|
||||||
|
|
||||||
procedure TMarkerSelectAndDragPlugin.MoveSelectionBy(AMapView: TMapView; dx, dy: Integer);
|
procedure TMarkerSelectAndDragPlugin.MoveSelectionBy(AMapView: TMapView; dx, dy: Integer);
|
||||||
var
|
var
|
||||||
i: Integer;
|
i: Integer;
|
||||||
@ -791,20 +847,13 @@ end;
|
|||||||
procedure TMarkerSelectAndDragPlugin.SelectAllPointsOfShape(AMapView: TMapView;
|
procedure TMarkerSelectAndDragPlugin.SelectAllPointsOfShape(AMapView: TMapView;
|
||||||
APoint: TGPSPoint);
|
APoint: TGPSPoint);
|
||||||
var
|
var
|
||||||
i, j, k, L: Integer;
|
obj: TGPSObj = nil;
|
||||||
gpsLayer: TGPSObjectList;
|
collection: TMapCollectionBase = nil;
|
||||||
gpsPOI: TGPSPointOfInterest;
|
idx: Integer = -1;
|
||||||
|
i: Integer;
|
||||||
gpsPolyline: TGPSPolyLine;
|
gpsPolyline: TGPSPolyLine;
|
||||||
item: TGPSObj;
|
item: TGPSObj;
|
||||||
p: TMapPoint;
|
p: TMapPoint;
|
||||||
mapLayer: TMapLayer;
|
|
||||||
mapTrack: TMapTrack;
|
|
||||||
mapArea: TMapArea;
|
|
||||||
|
|
||||||
function IsSamePoint(AItem: TGPSObj): Boolean;
|
|
||||||
begin
|
|
||||||
Result := (AItem is TGPSPoint) and TGPSPoint(AItem).RealPoint.Equal(APoint.RealPoint);
|
|
||||||
end;
|
|
||||||
|
|
||||||
procedure Finished;
|
procedure Finished;
|
||||||
begin
|
begin
|
||||||
@ -814,98 +863,45 @@ var
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
begin
|
begin
|
||||||
// Check the 10 layers of GPSItems
|
// Find point in gpsObj-type of containers
|
||||||
for i := 0 to 9 do
|
FindContainerOfPoint(AMapView, APoint, obj, idx);
|
||||||
begin
|
// Is is a point of interest?
|
||||||
gpsLayer := AMapView.GPSLayer[i];
|
if obj is TGPSObjectList then
|
||||||
for j := 0 to gpsLayer.Count-1 do
|
|
||||||
begin
|
|
||||||
item := gpsLayer[j];
|
|
||||||
if (item is TGPSPointOfInterest) then
|
|
||||||
begin
|
|
||||||
gpsPOI := TGPSPointOfInterest(item);
|
|
||||||
if gpsPOI.RealPoint.Equal(APoint.RealPoint) then
|
|
||||||
begin
|
begin
|
||||||
|
item := TGPSObjectList(obj).Items[idx];
|
||||||
AddToSelection(AMapView, TGPSPoint(item));
|
AddToSelection(AMapView, TGPSPoint(item));
|
||||||
Finished;
|
Finished;
|
||||||
Exit;
|
exit;
|
||||||
end;
|
end else
|
||||||
end;
|
// ... or a track / layer?
|
||||||
if (item is TGPSPolyline) then
|
if obj is TGPSPolyLine then
|
||||||
begin
|
begin
|
||||||
gpsPolyLine := TGPSPolyLine(item);
|
gpsPolyLine := TGPSPolyLine(obj);
|
||||||
for k := 0 to gpsPolyLine.Points.Count-1 do
|
for i := 0 to gpsPolyLine.Points.Count-1 do
|
||||||
begin
|
begin
|
||||||
item := gpsPolyLine.Points[k];
|
item := TGPSPoint(gpsPolyLine.Points[i]);
|
||||||
if IsSamePoint(item) then
|
|
||||||
begin
|
|
||||||
for L := 0 to GPSPolyLine.Points.Count-1 do
|
|
||||||
begin
|
|
||||||
item := gpsPolyLine.Points[L];
|
|
||||||
AddToSelection(AMapView, TGPSPoint(item));
|
AddToSelection(AMapView, TGPSPoint(item));
|
||||||
end;
|
end;
|
||||||
Finished;
|
Finished;
|
||||||
exit;
|
exit;
|
||||||
end;
|
end;
|
||||||
end;
|
|
||||||
end;
|
|
||||||
end;
|
|
||||||
end;
|
|
||||||
|
|
||||||
// Check the map layers
|
// Find point in map-type collections
|
||||||
for i := 0 to AMapView.Layers.Count-1 do
|
FindMapCollection(AMapView, APoint, collection, idx);
|
||||||
begin
|
if collection is TMapPointsOfInterest then
|
||||||
mapLayer := AMapView.Layers[i];
|
|
||||||
// Points of interest?
|
|
||||||
for j := 0 to mapLayer.PointsOfInterest.Count-1 do
|
|
||||||
begin
|
|
||||||
p := mapLayer.PointsOfInterest[j];
|
|
||||||
if IsSamePoint(p.GPSObj) then
|
|
||||||
begin
|
begin
|
||||||
|
p := collection.Items[idx] as TMapPoint;
|
||||||
AddToSelection(AMapView, TGPSPoint(p.GPSObj));
|
AddToSelection(AMapView, TGPSPoint(p.GPSObj));
|
||||||
Finished;
|
end else
|
||||||
Exit;
|
if collection <> nil then
|
||||||
end;
|
|
||||||
end;
|
|
||||||
// Tracks?
|
|
||||||
for j := 0 to mapLayer.Tracks.Count-1 do
|
|
||||||
begin
|
begin
|
||||||
mapTrack := mapLayer.Tracks[j];
|
for i := 0 to collection.Count-1 do
|
||||||
for k := 0 to mapTrack.Points.Count-1 do
|
|
||||||
begin
|
begin
|
||||||
p := mapTrack.Points[k];
|
p := collection.Items[i] as TMapPoint;
|
||||||
if IsSamePoint(p.GPSObj) then
|
|
||||||
begin
|
|
||||||
for L := 0 to mapTrack.Points.Count-1 do
|
|
||||||
begin
|
|
||||||
p := mapTrack.Points[L];
|
|
||||||
AddToSelection(AMapView, TGPSPoint(p.GPSObj));
|
AddToSelection(AMapView, TGPSPoint(p.GPSObj));
|
||||||
end;
|
end;
|
||||||
Finished;
|
|
||||||
exit;
|
|
||||||
end;
|
|
||||||
end;
|
|
||||||
end;
|
|
||||||
// Areas?
|
|
||||||
for j := 0 to mapLayer.Areas.Count-1 do
|
|
||||||
begin
|
|
||||||
mapArea := mapLayer.Areas[j];
|
|
||||||
for k := 0 to mapArea.Points.Count-1 do
|
|
||||||
begin
|
|
||||||
p := mapArea.Points[k];
|
|
||||||
if IsSamePoint(p.GPSObj) then
|
|
||||||
begin
|
|
||||||
for L := 0 to mapArea.Points.Count-1 do
|
|
||||||
begin
|
|
||||||
p := mapArea.Points[L];
|
|
||||||
AddToSelection(AMapView, TGPSPoint(p.GPSObj));
|
|
||||||
end;
|
end;
|
||||||
Finished;
|
Finished;
|
||||||
exit;
|
|
||||||
end;
|
|
||||||
end;
|
|
||||||
end;
|
|
||||||
end;
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TMarkerSelectAndDragPlugin.SetMultiSelect(AValue: Boolean);
|
procedure TMarkerSelectAndDragPlugin.SetMultiSelect(AValue: Boolean);
|
||||||
|
Loading…
Reference in New Issue
Block a user