-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainWindow.dfm
200 lines (200 loc) · 3.74 KB
/
MainWindow.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
object Form1: TForm1
Left = 516
Top = 203
Caption = 'DungenGUI'
ClientHeight = 445
ClientWidth = 576
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
Menu = MainMenu
OldCreateOrder = False
Position = poDesigned
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object SeedLabel: TLabel
Left = 8
Top = 364
Width = 28
Height = 13
Caption = 'Seed:'
end
object WidthLabel: TLabel
Left = 11
Top = 390
Width = 32
Height = 13
Caption = 'Width:'
end
object HeightLabel: TLabel
Left = 8
Top = 414
Width = 35
Height = 13
Caption = 'Height:'
end
object MinSizeLabel: TLabel
Left = 96
Top = 390
Width = 96
Height = 13
Alignment = taRightJustify
Caption = 'Minimum Room Size:'
end
object DepthLabel: TLabel
Left = 109
Top = 414
Width = 83
Height = 13
Alignment = taRightJustify
Caption = 'Recursive Depth:'
end
object SplitVarLabel: TLabel
Left = 244
Top = 364
Width = 68
Height = 13
Caption = 'Split Variance:'
end
object SizeVarLabel: TLabel
Left = 245
Top = 390
Width = 67
Height = 13
Caption = 'Size Variance:'
end
object DoorVarLabel: TLabel
Left = 241
Top = 414
Width = 71
Height = 13
Caption = 'Door Variance:'
end
object TextBox: TMemo
Left = 8
Top = 8
Width = 560
Height = 345
Lines.Strings = (
'TextBox')
TabOrder = 0
end
object SeedTextBox: TEdit
Left = 42
Top = 359
Width = 95
Height = 21
Alignment = taRightJustify
TabOrder = 1
OnChange = SeedTextBoxChange
end
object WidthTextBox: TEdit
Left = 49
Top = 387
Width = 31
Height = 21
TabOrder = 2
Text = '80'
OnChange = WidthTextBoxChange
end
object HeightTextBox: TEdit
Left = 49
Top = 416
Width = 31
Height = 21
TabOrder = 3
Text = '80'
OnChange = HeightTextBoxChange
end
object MinRoomSizeTextBox: TEdit
Left = 206
Top = 387
Width = 19
Height = 21
TabOrder = 4
Text = '4'
OnChange = MinRoomSizeTextBoxChange
end
object depthTextBox: TEdit
Left = 206
Top = 414
Width = 19
Height = 21
TabOrder = 5
Text = '4'
OnChange = depthTextBoxChange
end
object NewSeedButton: TButton
Left = 150
Top = 359
Width = 75
Height = 25
Caption = 'New Seed'
TabOrder = 6
OnClick = NewSeedButtonClick
end
object SplitVarTextBox: TEdit
Left = 318
Top = 359
Width = 27
Height = 21
TabOrder = 7
Text = '0.5'
OnChange = SplitVarTextBoxChange
end
object SizeVarTextBox: TEdit
Left = 318
Top = 386
Width = 27
Height = 21
TabOrder = 8
Text = '0.5'
OnChange = SizeVarTextBoxChange
end
object DoorVarTextBox: TEdit
Left = 318
Top = 413
Width = 27
Height = 21
TabOrder = 9
Text = '0.5'
OnChange = DoorVarTextBoxChange
end
object GenerateButton: TButton
Left = 360
Top = 359
Width = 208
Height = 76
Caption = 'Generate'
TabOrder = 10
OnClick = GenerateButtonClick
end
object MainMenu: TMainMenu
Left = 504
Top = 24
object FileMenu: TMenuItem
Caption = 'File'
object NewFile: TMenuItem
Caption = 'New'
OnClick = NewFileClick
end
object SaveFile: TMenuItem
Caption = 'Save'
OnClick = SaveFileClick
end
object SaveFileAs: TMenuItem
Caption = 'Save As'
OnClick = SaveFileAsClick
end
object ExitProgram: TMenuItem
Caption = 'Exit'
OnClick = ExitProgramClick
end
end
end
end