-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainunit.pas
78 lines (59 loc) · 1.51 KB
/
mainunit.pas
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
unit MainUnit;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, ExtCtrls,
LCLType, Spin, SpinEx, FormAbout;
type
{ TMainForm }
TMainForm = class(TForm)
BtnAbout: TButton;
LblMs: TLabel;
LblMs1: TLabel;
LblResult: TLabel;
LblTitle: TLabel;
LblTotalDistance: TLabel;
LblTotalTime: TLabel;
SETotalDistance: TSpinEdit;
SETotalTime: TSpinEdit;
procedure BtnAboutClick(Sender: TObject);
procedure SETotalDistanceChange(Sender: TObject);
procedure Calc();
procedure SETotalTimeChange(Sender: TObject);
private
public
end;
var
MainForm: TMainForm;
implementation
{$R *.lfm}
{ TMainForm }
procedure TMainForm.Calc();
var
TotalDistance: Integer;
TotalTime: Integer;
CalculatedSpeed: Extended;
begin
TotalDistance := SETotalDistance.Value;
TotalTime := SETotalTime.Value;
if TotalTime = 0 then
begin
LblResult.Caption := 'Time cannot be zero. Please set time to another value.';
Exit;
end;
CalculatedSpeed := TotalDistance / TotalTime;
LblResult.Caption := PChar(Concat('Speed is: ', FloatToStr(CalculatedSpeed), 'm/s'));
end;
procedure TMainForm.SETotalTimeChange(Sender: TObject);
begin
Calc();
end;
procedure TMainForm.SETotalDistanceChange(Sender: TObject);
begin
Calc();
end;
procedure TMainForm.BtnAboutClick(Sender: TObject);
begin
AboutForm.ShowModal;
end;
end.