2009-08-06 15:42:19 +02:00
|
|
|
(*
|
|
|
|
* CDDL HEADER START
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the terms of the
|
|
|
|
* Common Development and Distribution License, Version 1.0 only
|
|
|
|
* (the "License"). You may not use this file except in compliance
|
|
|
|
* with the License.
|
|
|
|
*
|
|
|
|
* You can obtain a copy of the license at
|
|
|
|
* http://www.opensource.org/licenses/cddl1.php.
|
|
|
|
* See the License for the specific language governing permissions
|
|
|
|
* and limitations under the License.
|
|
|
|
*
|
|
|
|
* When distributing Covered Code, include this CDDL HEADER in each
|
|
|
|
* file and include the License file at
|
|
|
|
* http://www.opensource.org/licenses/cddl1.php. If applicable,
|
|
|
|
* add the following below this CDDL HEADER, with the fields enclosed
|
|
|
|
* by brackets "[]" replaced with your own identifying * information:
|
|
|
|
* Portions Copyright [yyyy] [name of copyright owner]
|
|
|
|
*
|
|
|
|
* CDDL HEADER END
|
|
|
|
*
|
|
|
|
*
|
2015-05-11 19:30:23 +02:00
|
|
|
* Portions Copyright 2015 Andreas Schneider
|
|
|
|
* Portions Copyright 2015 StaticZ
|
2009-08-06 15:42:19 +02:00
|
|
|
*)
|
|
|
|
unit UfrmBoundaries;
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
2009-09-02 03:21:39 +02:00
|
|
|
Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, StdCtrls,
|
2015-05-13 19:02:33 +02:00
|
|
|
ComCtrls, Spin, ExtCtrls, UfrmToolWindow, USelectionHelper;
|
2009-08-06 15:42:19 +02:00
|
|
|
|
|
|
|
type
|
|
|
|
|
|
|
|
{ TfrmBoundaries }
|
|
|
|
|
2009-09-02 03:21:39 +02:00
|
|
|
TfrmBoundaries = class(TfrmToolWindow)
|
2015-05-13 19:02:33 +02:00
|
|
|
btnSelectArea: TButton;
|
|
|
|
btnClear: TButton;
|
2015-05-11 19:30:23 +02:00
|
|
|
gbZRestriction: TGroupBox;
|
|
|
|
gbViewRestriction: TGroupBox;
|
|
|
|
lblYSep: TLabel;
|
|
|
|
lblXSep: TLabel;
|
|
|
|
lblY: TLabel;
|
|
|
|
lblX: TLabel;
|
2008-08-17 15:38:54 +02:00
|
|
|
lblMaxZ: TLabel;
|
|
|
|
lblMinZ: TLabel;
|
|
|
|
seMaxZ: TSpinEdit;
|
2009-08-06 15:42:19 +02:00
|
|
|
seMinZ: TSpinEdit;
|
2015-05-11 19:30:23 +02:00
|
|
|
seMinX: TSpinEdit;
|
|
|
|
seMaxX: TSpinEdit;
|
|
|
|
seMinY: TSpinEdit;
|
|
|
|
seMaxY: TSpinEdit;
|
2009-08-06 15:42:19 +02:00
|
|
|
tbMaxZ: TTrackBar;
|
2015-05-11 19:30:23 +02:00
|
|
|
tbMinZ: TTrackBar;
|
2015-05-13 19:02:33 +02:00
|
|
|
procedure btnSelectAreaClick(Sender: TObject);
|
|
|
|
procedure btnClearClick(Sender: TObject);
|
2015-05-11 19:30:23 +02:00
|
|
|
procedure FormCreate(Sender: TObject);
|
|
|
|
procedure seMaxXChange(Sender: TObject);
|
|
|
|
procedure seMaxYChange(Sender: TObject);
|
2009-08-06 15:42:19 +02:00
|
|
|
procedure seMaxZChange(Sender: TObject);
|
2015-05-11 19:30:23 +02:00
|
|
|
procedure seMinXChange(Sender: TObject);
|
|
|
|
procedure seMinYChange(Sender: TObject);
|
2009-08-06 15:42:19 +02:00
|
|
|
procedure seMinZChange(Sender: TObject);
|
|
|
|
procedure tbMaxZChange(Sender: TObject);
|
|
|
|
procedure tbMinZChange(Sender: TObject);
|
2015-05-13 19:02:33 +02:00
|
|
|
protected
|
|
|
|
procedure RangeSelected(AX1, AY1, AX2, AY2: Word);
|
2009-08-06 15:42:19 +02:00
|
|
|
public
|
|
|
|
{ public declarations }
|
|
|
|
end;
|
|
|
|
|
|
|
|
var
|
|
|
|
frmBoundaries: TfrmBoundaries;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
uses
|
|
|
|
UfrmMain;
|
|
|
|
|
|
|
|
{ TfrmBoundaries }
|
|
|
|
|
2015-05-11 19:30:23 +02:00
|
|
|
procedure TfrmBoundaries.FormCreate(Sender: TObject);
|
|
|
|
begin
|
|
|
|
seMinX.MaxValue := frmMain.Landscape.CellWidth - 1;
|
|
|
|
seMaxX.MaxValue := seMinX.MaxValue;
|
|
|
|
seMaxX.Value := seMaxX.MaxValue;
|
|
|
|
|
|
|
|
seMinY.MaxValue := frmMain.Landscape.CellHeight - 1;
|
|
|
|
seMaxY.MaxValue := seMinY.MaxValue;
|
|
|
|
seMaxY.Value := seMaxX.MaxValue;
|
|
|
|
end;
|
|
|
|
|
2015-05-13 19:02:33 +02:00
|
|
|
procedure TfrmBoundaries.btnSelectAreaClick(Sender: TObject);
|
|
|
|
begin
|
|
|
|
SelectRange(@RangeSelected);
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TfrmBoundaries.btnClearClick(Sender: TObject);
|
|
|
|
begin
|
|
|
|
seMinX.Value := 0;
|
|
|
|
seMinY.Value := 0;
|
|
|
|
seMaxX.Value := seMaxX.MaxValue;
|
|
|
|
seMaxY.Value := seMaxY.MaxValue;
|
|
|
|
frmMain.InvalidateFilter;
|
|
|
|
end;
|
|
|
|
|
2015-05-11 19:30:23 +02:00
|
|
|
procedure TfrmBoundaries.seMaxXChange(Sender: TObject);
|
|
|
|
begin
|
|
|
|
frmMain.InvalidateFilter;
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TfrmBoundaries.seMaxYChange(Sender: TObject);
|
|
|
|
begin
|
|
|
|
frmMain.InvalidateFilter;
|
|
|
|
end;
|
|
|
|
|
2009-08-06 15:42:19 +02:00
|
|
|
procedure TfrmBoundaries.seMaxZChange(Sender: TObject);
|
|
|
|
begin
|
|
|
|
tbMaxZ.Position := seMaxZ.Value;
|
2009-09-02 03:21:39 +02:00
|
|
|
frmMain.InvalidateFilter;
|
2009-08-06 15:42:19 +02:00
|
|
|
end;
|
|
|
|
|
2015-05-11 19:30:23 +02:00
|
|
|
procedure TfrmBoundaries.seMinXChange(Sender: TObject);
|
|
|
|
begin
|
|
|
|
frmMain.InvalidateFilter;
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TfrmBoundaries.seMinYChange(Sender: TObject);
|
|
|
|
begin
|
|
|
|
frmMain.InvalidateFilter;
|
|
|
|
end;
|
|
|
|
|
2009-08-06 15:42:19 +02:00
|
|
|
procedure TfrmBoundaries.seMinZChange(Sender: TObject);
|
|
|
|
begin
|
|
|
|
tbMinZ.Position := seMinZ.Value;
|
2009-09-02 03:21:39 +02:00
|
|
|
frmMain.InvalidateFilter;
|
2009-08-06 15:42:19 +02:00
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TfrmBoundaries.tbMaxZChange(Sender: TObject);
|
|
|
|
begin
|
|
|
|
seMaxZ.Value := tbMaxZ.Position;
|
2009-08-06 17:34:55 +02:00
|
|
|
frmMain.InvalidateFilter;
|
2009-08-06 15:42:19 +02:00
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TfrmBoundaries.tbMinZChange(Sender: TObject);
|
|
|
|
begin
|
|
|
|
seMinZ.Value := tbMinZ.Position;
|
2009-08-06 17:34:55 +02:00
|
|
|
frmMain.InvalidateFilter;
|
2009-08-06 15:42:19 +02:00
|
|
|
end;
|
|
|
|
|
2015-05-13 19:02:33 +02:00
|
|
|
procedure TfrmBoundaries.RangeSelected(AX1, AY1, AX2, AY2: Word);
|
|
|
|
begin
|
|
|
|
seMinX.Value := AX1;
|
|
|
|
seMinY.Value := AY1;
|
|
|
|
seMaxX.Value := AX2;
|
|
|
|
seMaxY.Value := AY2;
|
|
|
|
frmBoundaries.Show;
|
|
|
|
end;
|
|
|
|
|
2009-08-06 15:42:19 +02:00
|
|
|
initialization
|
|
|
|
{$I UfrmBoundaries.lrs}
|
|
|
|
|
|
|
|
end.
|
|
|
|
|