forked from Wiering/Tile-Studio
-
Notifications
You must be signed in to change notification settings - Fork 1
/
InfoForm.lfm
77 lines (77 loc) · 1.36 KB
/
InfoForm.lfm
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
object Info: TInfo
Left = 216
Top = 241
BorderStyle = bsDialog
Caption = 'Project Information'
ClientHeight = 383
ClientWidth = 440
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
Position = poDesktopCenter
PixelsPerInch = 96
object L0: TLabel
Left = 16
Top = 8
Width = 34
Height = 13
Caption = 'Author:'
end
object Label1: TLabel
Left = 16
Top = 256
Width = 79
Height = 13
Caption = 'Copyright notice:'
end
object Label2: TLabel
Left = 16
Top = 56
Width = 31
Height = 13
Caption = 'Notes:'
end
object Author: TEdit
Left = 16
Top = 24
Width = 409
Height = 21
TabOrder = 0
end
object Notes: TMemo
Left = 16
Top = 72
Width = 409
Height = 177
TabOrder = 1
end
object Copyright: TMemo
Left = 16
Top = 272
Width = 409
Height = 41
TabOrder = 2
end
object CloseButton: TButton
Left = 352
Top = 344
Width = 73
Height = 25
Hint = 'Return to tile editor'
Caption = '&Close'
Default = True
TabOrder = 3
OnClick = CloseButtonClick
end
object Startup: TCheckBox
Left = 16
Top = 328
Width = 193
Height = 17
Caption = '&Show project information at startup'
TabOrder = 4
end
end