forked from Wiering/Tile-Studio
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Create.lfm
135 lines (135 loc) · 2.36 KB
/
Create.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
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
object NewForm: TNewForm
Left = 829
Top = 588
BorderStyle = bsDialog
ClientHeight = 181
ClientWidth = 218
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
Position = poDesktopCenter
OnShow = FormShow
PixelsPerInch = 96
object L1: TLabel
Left = 8
Top = 44
Width = 51
Height = 13
Caption = 'Tile Width:'
end
object L2: TLabel
Left = 8
Top = 68
Width = 54
Height = 13
Caption = 'Tile Height:'
end
object L0: TLabel
Left = 8
Top = 12
Width = 43
Height = 13
Caption = 'Identifier:'
end
object L3: TLabel
Left = 8
Top = 92
Width = 76
Height = 13
Caption = 'Vertical overlap:'
end
object TileWidth: TSpinEdit
Left = 152
Top = 40
Width = 57
Height = 22
MaxValue = 1024
MinValue = 1
TabOrder = 1
Value = 32
OnKeyDown = IdentifierKeyDown
end
object TileHeight: TSpinEdit
Left = 152
Top = 64
Width = 57
Height = 22
MaxValue = 1024
MinValue = 1
TabOrder = 3
Value = 32
OnKeyDown = IdentifierKeyDown
end
object Identifier: TEdit
Left = 88
Top = 8
Width = 121
Height = 21
TabOrder = 0
OnKeyDown = IdentifierKeyDown
end
object OkButton: TButton
Left = 32
Top = 147
Width = 73
Height = 25
Caption = 'OK'
Default = True
TabOrder = 6
OnClick = OkButtonClick
end
object CancelButton: TButton
Left = 112
Top = 147
Width = 73
Height = 25
Caption = 'Cancel'
TabOrder = 7
OnClick = CancelButtonClick
end
object NH: TSpinEdit
Left = 152
Top = 40
Width = 57
Height = 22
MaxValue = 1024
MinValue = 1
TabOrder = 2
Value = 1
OnKeyDown = IdentifierKeyDown
end
object NV: TSpinEdit
Left = 152
Top = 64
Width = 57
Height = 22
MaxValue = 1024
MinValue = 1
TabOrder = 4
Value = 1
OnKeyDown = IdentifierKeyDown
end
object Overlap: TSpinEdit
Left = 152
Top = 88
Width = 57
Height = 22
MaxValue = 0
MinValue = 0
TabOrder = 5
Value = 0
OnEnter = OverlapEnter
OnKeyDown = IdentifierKeyDown
end
object Skip: TCheckBox
Left = 8
Top = 120
Width = 201
Height = 17
Caption = 'Skip for code generation'
TabOrder = 8
end
end