-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathuMain.dfm
122 lines (122 loc) · 2.52 KB
/
uMain.dfm
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
object FrmMain: TFrmMain
Left = 0
Top = 0
Caption = 'Drone Delivery'
ClientHeight = 530
ClientWidth = 852
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poMainFormCenter
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object GroupBoxDrones: TGroupBox
Left = 8
Top = 32
Width = 401
Height = 185
Caption = 'Insert Drones'
TabOrder = 0
object EditName: TLabeledEdit
Left = 16
Top = 40
Width = 337
Height = 21
EditLabel.Width = 27
EditLabel.Height = 13
EditLabel.Caption = 'Name'
TabOrder = 0
end
object EditDroneWeight: TLabeledEdit
Left = 16
Top = 88
Width = 121
Height = 21
EditLabel.Width = 66
EditLabel.Height = 13
EditLabel.Caption = 'Drone Weight'
NumbersOnly = True
TabOrder = 1
end
object btnSave: TButton
Left = 160
Top = 136
Width = 75
Height = 25
Action = ActionSaveDrone
TabOrder = 2
end
end
object GroupBoxLocation: TGroupBox
Left = 8
Top = 232
Width = 401
Height = 201
Caption = 'Delivery Location'
TabOrder = 1
object EditLocation: TLabeledEdit
Left = 16
Top = 40
Width = 121
Height = 21
EditLabel.Width = 40
EditLabel.Height = 13
EditLabel.Caption = 'Location'
TabOrder = 0
end
object EditPackageWeight: TLabeledEdit
Left = 16
Top = 88
Width = 121
Height = 21
EditLabel.Width = 77
EditLabel.Height = 13
EditLabel.Caption = 'Package Weight'
TabOrder = 1
end
object Button1: TButton
Left = 160
Top = 152
Width = 75
Height = 25
Action = ActionSaveDelivery
TabOrder = 2
end
end
object btnTrip: TButton
Left = 136
Top = 447
Width = 75
Height = 25
Action = ActionTripDrone
TabOrder = 2
end
object MemoEvent: TMemo
Left = 415
Top = 40
Width = 378
Height = 393
TabOrder = 3
end
object ActionList: TActionList
Left = 800
Top = 40
object ActionSaveDrone: TAction
Caption = 'Save Drone'
OnExecute = ActionSaveDroneExecute
end
object ActionSaveDelivery: TAction
Caption = 'Save Delivery'
OnExecute = ActionSaveDeliveryExecute
end
object ActionTripDrone: TAction
Caption = 'Trip'
OnExecute = ActionTripDroneExecute
end
end
end