-
Notifications
You must be signed in to change notification settings - Fork 4
/
mapexiportprops.lfm
120 lines (120 loc) · 2.16 KB
/
mapexiportprops.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
object MapExportForm: TMapExportForm
Left = 1400
Height = 265
Top = 397
Width = 358
BorderStyle = bsDialog
Caption = 'Map Export Properties'
ClientHeight = 265
ClientWidth = 358
LCLVersion = '3.4.0.0'
object EditName: TEdit
Left = 96
Height = 23
Top = 24
Width = 211
MaxLength = 20
ParentFont = False
TabOrder = 0
end
object MapName: TLabel
Left = 53
Height = 15
Top = 26
Width = 32
Caption = 'Name'
ParentColor = False
ParentFont = False
end
object MapType: TLabel
Left = 34
Height = 15
Top = 102
Width = 51
Caption = 'Map Type'
ParentColor = False
ParentFont = False
end
object ComboMap: TComboBox
Left = 96
Height = 23
Top = 102
Width = 211
ItemHeight = 15
ParentFont = False
Style = csDropDownList
TabOrder = 1
end
object CompilerType: TLabel
Left = 36
Height = 15
Top = 64
Width = 49
Caption = 'Compiler'
ParentColor = False
ParentFont = False
end
object ComboCompiler: TComboBox
Left = 96
Height = 23
Top = 64
Width = 211
ItemHeight = 15
ParentFont = False
Style = csDropDownList
TabOrder = 2
OnChange = ComboCompilerChange
end
object WidthLabel: TLabel
Left = 16
Height = 15
Top = 152
Width = 69
Caption = 'Export Width'
ParentColor = False
ParentFont = False
end
object HeightLabel: TLabel
Left = 12
Height = 15
Top = 184
Width = 73
Caption = 'Export Height'
ParentColor = False
ParentFont = False
end
object OKButton: TButton
Left = 248
Height = 25
Top = 216
Width = 75
Caption = 'OK'
ParentFont = False
TabOrder = 3
OnClick = OKButtonClick
end
object SpinEditExportWidth: TSpinEditEx
Left = 96
Height = 23
Top = 152
Width = 71
MaxLength = 0
NumbersOnly = True
TabOrder = 4
MaxValue = 256
NullValue = 0
Value = 0
end
object SpinEditExportHeight: TSpinEditEx
Left = 96
Height = 23
Top = 184
Width = 71
MaxLength = 0
NumbersOnly = True
TabOrder = 5
MaxValue = 256
NullValue = 0
Value = 0
end
end