-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathufmmain.pas
More file actions
executable file
·467 lines (419 loc) · 11.7 KB
/
ufmmain.pas
File metadata and controls
executable file
·467 lines (419 loc) · 11.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
unit ufmmain;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ExtCtrls,
StdCtrls, Buttons, Spin, ComCtrls, ActnList, Menus, UPoints;
const
CrossSize=3;
CrossWidth=2;
type
TPointsListState = (plsEmpty, plsSaved, plsChanged);
{ TfmMain }
TfmMain = class(TForm)
aiSaveToClipboard: TAction;
aiDeleteLastPoint: TAction;
aiNewLine: TAction;
aiSetX: TAction;
aiNewScale: TAction;
aiNewImage: TAction;
ActionList1: TActionList;
bnSaveOx: TBitBtn;
bnClearOx: TBitBtn;
bnUpdateImage: TButton;
bnChangeImage: TBitBtn;
bnSetXaxis: TButton;
bnSaveToClipboard: TButton;
bnNewLine: TButton;
bnDeleteLastPoint: TButton;
bnChangeScale: TButton;
edEndX: TEdit;
edFileName: TEdit;
edTest: TEdit;
edStartY: TEdit;
edAxisY2: TEdit;
edEndY: TEdit;
edDPI: TEdit;
edStartX: TEdit;
edX: TEdit;
edXpoint: TEdit;
edY: TEdit;
edYpoint: TEdit;
GroupBox1: TGroupBox;
GroupBox2: TGroupBox;
GroupBox3: TGroupBox;
Image1: TImage;
Label1: TLabel;
Label10: TLabel;
Label11: TLabel;
Label2: TLabel;
Label3: TLabel;
Label4: TLabel;
Label5: TLabel;
Label6: TLabel;
Label7: TLabel;
Label8: TLabel;
Label9: TLabel;
MenuItem1: TMenuItem;
MenuItem2: TMenuItem;
MenuItem4: TMenuItem;
MenuItem5: TMenuItem;
OpenDlg: TOpenDialog;
PopupMenu1: TPopupMenu;
sbImage: TScrollBox;
sedScale: TSpinEdit;
StatusBar: TStatusBar;
UnitsGroup: TRadioGroup;
procedure aiChangeImageClick(Sender: TObject);
procedure aiChangeScaleClick(Sender: TObject);
procedure aiNewLineClick(Sender: TObject);
procedure aiDeleteLastPointClick(Sender: TObject);
procedure aiSaveToClipboardClick(Sender: TObject);
procedure aiSetXaxisClick(Sender: TObject);
procedure bnClearOxClick(Sender: TObject);
procedure bnSaveOxClick(Sender: TObject);
procedure bnUpdateImageClick(Sender: TObject);
procedure FormCreate(Sender: TObject);
procedure FormDestroy(Sender: TObject);
procedure Image1Click(Sender: TObject);
procedure Image1MouseMove(Sender: TObject; Shift: TShiftState; X, Y: Integer);
procedure UnitsGroupClick(Sender: TObject);
private
fChangeAxis: integer;
fEndX: integer;
fEndY: integer;
fIsPictureLoaded: boolean;
fPointslist: TDigPointsList;
CursorX, CursorY: integer;
FPointsListState: TPointsListState;
fScale: byte;
fStartX: integer;
fStartY: integer;
OldCursor: TCursor;
SaveEndX, SaveEndY: integer;
fMyPicture: TPicture;
function GetEndX: integer;
function GetEndY: integer;
function GetStartX: integer;
function GetStartY: integer;
procedure SetEndX(AValue: integer);
procedure SetEndY(AValue: integer);
procedure SetMyPicture(AValue: TPicture);
procedure SetPointsList(AValue: TDigPointsList);
procedure SetPointsListState(AValue: TPointsListState);
procedure SetStartX(AValue: integer);
procedure SetStartY(AValue: integer);
procedure DrawCross(ix, iy: integer);
procedure UpdateStatusPanel;
procedure SaveOxToClipboard;
procedure ClearOx;
protected
procedure UpdateImage;
procedure ChangePictureScale;
property MyPicture: TPicture read FMyPicture write SetMyPicture;
property Scale: byte read fScale;
public
{ public declarations }
property PointsList: TDigPointsList read fPointsList write SetPointsList;
property ChangeAxis:integer read fChangeAxis write fChangeAxis;
property IsPictureLoaded: boolean read fIsPictureLoaded;
{Эти свойства хранят начало и конец оси Х. Причем соотвествующие поля (fXStart,
fXend и т.п. хранятся в пикселах, соответствующих масшиабу 1. А свойства
Xstart ... возвращают значения умножая на масштаб, а при присваивании записывают
в поле разделив на масштаб. Это необходимо, чтобы при изменении масштаба ось
Х не меняла своего положения}
property StartX: integer read GetStartX write SetStartX;
property EndX: integer read GetEndX write SetEndX;
property StartY: integer read GetStartY write SetStartY;
property EndY: integer read GetEndY write SetEndY;
property PointsListState: TPointsListState read FPointsListState write SetPointsListState;
end;
var
fmMain: TfmMain;
implementation
uses
Clipbrd;
{$R *.lfm}
{ TfmMain }
procedure TfmMain.FormCreate(Sender: TObject);
begin
inherited;
PointsList:=TDigPointsList.Create;
fIsPictureLoaded:=false;
MyPicture := TPicture.Create;
end;
procedure TfmMain.FormDestroy(Sender: TObject);
begin
PointsList := nil;
inherited;
end;
procedure TfmMain.aiChangeImageClick(Sender: TObject);
begin
OpenDlg.InitialDir:=GetCurrentDir;
if OpenDlg.Execute then
begin
MyPicture := TPicture.Create;
MyPicture.LoadFromFile(OpenDlg.FileName);
Image1.Picture.Clear;
ClearOx;
fIsPictureLoaded:=true;
UpdateImage;
edFileName.Text:=OpenDlg.FileName;
bnSetXaxis.Enabled:=true;
end;
end;
procedure TfmMain.SaveOxToClipboard;
var
StrList: TStringList;
str: string;
begin
StrList := TStringList.Create;
try
str := format('%d , %d',[fStartX,fStartY]);
StrList.Add(str);
str := format('%d , %d',[fEndX,fEndY]);
StrList.Add(str);
Clipboard.AsText := StrList.Text;
PointsListState := plsChanged;
finally
StrList.free;
end;
end;
procedure TfmMain.ClearOx;
begin
fScale := 1; // Принудительно 1, иначе начальные значения поделит на Scale
StartX:=0;
EndX:=MyPicture.Width;
StartY:=MyPicture.Height;
EndY:=StartY;
ChangePictureScale;
end;
procedure TfmMain.aiChangeScaleClick(Sender: TObject);
begin
ChangePictureScale;
UpdateImage;
end;
procedure TfmMain.ChangePictureScale;
begin
fScale := sedScale.Value;
Image1.Picture.Clear;
Image1.Width:=MyPicture.Width*Scale;
Image1.Height:=MyPicture.Height*Scale;
case UnitsGroup.ItemIndex of
0: PointsList.Scale:=1/Self.Scale; // pixels
1: PointsList.Scale:=25.4/StrToInt(edDPI.text)/self.Scale; // mm
end;
PointsList.Clear;
edStartX.Text:=IntToStr(StartX);
edStartY.Text:=IntToStr(StartY);
edEndX.Text:=IntToStr(EndX);
edEndY.Text:=IntToStr(EndY);
PointsList.SetXaxis(StartX, StartY, EndX, EndY);
end;
procedure TfmMain.UpdateImage;
var
i: integer;
begin
if not IsPictureLoaded then exit;
with Image1.Canvas do
begin
StretchDraw(Image1.DestRect,MyPicture.Graphic);
Pen.Mode:=pmCopy;
Pen.Color:=clBlue;
MoveTo(StartX,StartY);
LineTo(EndX,EndY);
Pen.Color:=clRed;
end;
for i:=0 to PointsList.Count-1 do
begin
DrawCross(round(PointsList.Points[i].X),round(PointsList.Points[i].Y));
end;
Image1.Repaint;
UpdateStatusPanel;
end;
procedure TfmMain.aiNewLineClick(Sender: TObject);
begin
PointsList.Clear;
UpdateImage;
end;
procedure TfmMain.aiDeleteLastPointClick(Sender: TObject);
begin
if PointsList.Count>0 then
PointsList.Delete(PointsList.Count-1);
if PointsList.Count=0 then
PointsListState := plsEmpty
else
PointsListState := plsChanged;
UpdateImage;
end;
procedure TfmMain.aiSaveToClipboardClick(Sender: TObject);
var
List: TStringList;
begin
List:=PointsList.SaveToText;
try
Clipboard.AsText := List.Text;
PointsListState := plsSaved;
finally
List.Free;
end;
end;
procedure TfmMain.aiSetXaxisClick(Sender: TObject);
begin
OldCursor:=Image1.Cursor;
ChangeAxis:=2;
Image1.Cursor:=crHandPoint;
end;
procedure TfmMain.bnClearOxClick(Sender: TObject);
begin
ClearOx;
UpdateImage;
end;
procedure TfmMain.bnSaveOxClick(Sender: TObject);
begin
SaveOxToClipboard;
end;
procedure TfmMain.bnUpdateImageClick(Sender: TObject);
begin
UpdateImage;
end;
procedure TfmMain.Image1Click(Sender: TObject);
begin
if not IsPictureLoaded then exit;
if ChangeAxis=2 then
begin
StartX := CursorX;
StartY := CursorY;
Image1.Canvas.MoveTo(CursorX,CursorY);
SaveEndX:=CursorX;
SaveEndY:=CursorY;
Image1.Canvas.Pen.Color:=clBlue;
Image1.Canvas.Pen.Mode:=pmNot;
ChangeAxis:=1;
end
else if ChangeAxis=1 then
begin
EndX := CursorX;
EndY := CursorY;
PointsList.SetXaxis(StartX,StartY,EndX,EndY);
SaveOxToClipboard;
Image1.Cursor:=crCross;
Image1.Canvas.Pen.Color:=clRed;
Image1.Canvas.Pen.Mode:=pmCopy;
ChangeAxis:=0;
end
else
begin
PointsList.AddPoint(CursorX, CursorY);
DrawCross(CursorX,CursorY);
PointsListState := plsChanged;
UpdateStatusPanel;
end;
end;
procedure TfmMain.Image1MouseMove(Sender: TObject; Shift: TShiftState; X,
Y: Integer);
begin
CursorX:=X;
CursorY:=Y;
PointsList.Current.Change(X,Y);
edX.Text:=IntToStr(CursorX);
edY.Text:=IntToStr(CursorY);
if not IsPictureLoaded then exit;
if ChangeAxis=1 then
with Image1.Canvas do
begin
MoveTo(StartX,StartY);
LineTo(SaveEndX,SaveEndY);
MoveTo(StartX,StartY);
LineTo(CursorX,CursorY);
SaveEndX:=CursorX;
SaveEndY:=CursorY;
exit;
end;
edXPoint.Text:=FormatFloat('#0.00',PointsList.CurrentX);
edYPoint.Text:=FormatFloat('#0.00',PointsList.CurrentY);
end;
procedure TfmMain.UnitsGroupClick(Sender: TObject);
begin
ChangePictureScale;
UpdateImage;
end;
procedure TfmMain.SetPointsList(AValue: TDigPointsList);
begin
if fPointsList=AValue then Exit;
PointsList.free;
PointsListState := plsEmpty;
fPointsList:=AValue;
end;
procedure TfmMain.SetPointsListState(AValue: TPointsListState);
begin
if fPointsListState=AValue then Exit;
fPointsListState:=AValue;
UpdateStatusPanel;
end;
procedure TfmMain.SetEndX(AValue: integer);
begin
fEndX:=AValue div Scale;
edEndX.Text:=IntToStr(EndX);
end;
function TfmMain.GetEndX: integer;
begin
result := fEndX*Scale;
end;
procedure TfmMain.SetEndY(AValue: integer);
begin
fEndY:=AValue div Scale;
edEndY.Text:=IntToStr(EndY);
end;
function TfmMain.GetEndY: integer;
begin
result := fEndY*Scale;
end;
procedure TfmMain.SetStartX(AValue: integer);
begin
fStartX:=AValue div Scale;
edStartX.Text:=IntToStr(StartX);
end;
function TfmMain.GetStartX: integer;
begin
result := fStartX*Scale;
end;
procedure TfmMain.SetStartY(AValue: integer);
begin
fStartY:=AValue div Scale;
edStartY.Text:=IntToStr(StartY);
end;
function TfmMain.GetStartY: integer;
begin
result := fStartY*Scale;
end;
procedure TfmMain.SetMyPicture(AValue: TPicture);
begin
if FMyPicture=AValue then Exit;
FreeAndNil(fMyPicture);
FMyPicture:=AValue;
end;
procedure TfmMain.DrawCross(ix, iy: integer);
begin
with Image1.Canvas do
begin
Pen.Mode:=pmCopy;
Pen.Color:=clRed;
Pen.Width:=CrossWidth;
MoveTo(ix-CrossSize,iy);
LineTo(ix+CrossSize,iy);
MoveTo(ix,iy-CrossSize);
LineTo(ix,iy+CrossSize);
end;
Image1.Repaint;
end;
procedure TfmMain.UpdateStatusPanel;
begin
StatusBar.Panels[1].Text := 'Points='+IntToStr(PointsList.Count);
case PointsListState of
plsEmpty: StatusBar.Panels[2].Text := 'Empty';
plsChanged: StatusBar.Panels[2].Text := 'Changed';
plsSaved: StatusBar.Panels[2].Text := 'Saved';
end;
end;
end.