-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathunit8.lfm
More file actions
93 lines (93 loc) · 1.78 KB
/
unit8.lfm
File metadata and controls
93 lines (93 loc) · 1.78 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
object fmEditor: TfmEditor
Left = 316
Height = 549
Top = 234
Width = 1004
BorderIcons = []
BorderStyle = bsDialog
Caption = 'Editor'
ClientHeight = 549
ClientWidth = 1004
KeyPreview = True
OnActivate = FormActivate
OnCreate = FormCreate
OnHide = FormHide
OnKeyDown = FormKeyDown
OnShow = FormShow
Position = poDesktopCenter
ShowInTaskBar = stNever
LCLVersion = '3.8.0.0'
object pnTasks: TPanel
Left = 0
Height = 37
Top = 512
Width = 1004
Align = alBottom
BevelOuter = bvNone
ClientHeight = 37
ClientWidth = 1004
ParentBackground = False
ParentColor = False
TabOrder = 0
object bnOK: TButton
Left = 912
Height = 32
Top = -5
Width = 75
Anchors = [akRight, akBottom]
Caption = 'Close'
TabOrder = 4
TabStop = False
OnClick = bnOKClick
end
object bnLeft: TButton
Left = 20
Height = 25
Top = 2
Width = 60
Caption = '←'
TabOrder = 0
OnClick = bnLeftClick
end
object bnUp: TButton
Left = 100
Height = 25
Top = 2
Width = 60
Caption = '↑'
TabOrder = 1
OnClick = bnUpClick
end
object bnDown: TButton
Left = 180
Height = 25
Top = 2
Width = 60
Caption = '↓'
TabOrder = 2
OnClick = bnDownClick
end
object bnRight: TButton
Left = 260
Height = 25
Top = 2
Width = 60
Caption = '→'
TabOrder = 3
OnClick = bnRightClick
end
end
object dbEditor: TMemo
Left = 10
Height = 492
Top = 10
Width = 984
Align = alClient
BorderSpacing.Around = 10
Color = 2632235
Font.Height = -19
ParentFont = False
ScrollBars = ssAutoVertical
TabOrder = 1
end
end