-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathUMake_FormMain.dfm
executable file
·252 lines (252 loc) · 5.65 KB
/
UMake_FormMain.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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
object FormMain: TFormMain
Left = 396
Top = 293
AutoScroll = False
BorderIcons = [biSystemMenu]
Caption = 'UMake'
ClientHeight = 334
ClientWidth = 307
Color = clBtnFace
Constraints.MaxWidth = 315
Constraints.MinHeight = 113
Constraints.MinWidth = 315
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poDesktopCenter
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
OnDestroy = FormDestroy
OnShow = FormShow
DesignSize = (
307
334)
PixelsPerInch = 96
TextHeight = 13
object ButtonDetails: TButton
Left = 242
Top = 53
Width = 57
Height = 25
Anchors = [akTop, akRight]
BiDiMode = bdLeftToRight
Caption = '&Details'
ParentBiDiMode = False
TabOrder = 4
OnClick = ButtonDetailsClick
end
object ButtonAbort: TButton
Left = 181
Top = 53
Width = 57
Height = 25
Anchors = [akTop, akRight]
BiDiMode = bdLeftToRight
Caption = '&Abort'
Enabled = False
ParentBiDiMode = False
TabOrder = 3
OnClick = ButtonAbortClick
end
object ProgressBar: TProgressBar
Left = 8
Top = 30
Width = 290
Height = 12
Anchors = [akLeft, akTop, akRight]
Max = 1
Step = 1
TabOrder = 1
end
object ButtonOptions: TButton
Left = 8
Top = 53
Width = 73
Height = 25
Caption = '&Options...'
TabOrder = 2
OnClick = ButtonOptionsClick
end
object PageControlDetails: TPageControl
Left = 8
Top = 96
Width = 291
Height = 230
ActivePage = TabSheetError
Anchors = [akLeft, akTop, akRight, akBottom]
Enabled = False
TabOrder = 5
object TabSheetError: TTabSheet
Caption = 'Error'
OnResize = TabSheetErrorResize
DesignSize = (
283
202)
object ImageError: TImage
Left = 11
Top = 11
Width = 33
Height = 33
end
object LabelErrorTitle: TLabel
Left = 56
Top = 12
Width = 101
Height = 13
Caption = 'Compilation failed'
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
end
object LabelErrorLocation: TLabel
Left = 56
Top = 28
Width = 48
Height = 13
Caption = '(Location)'
end
object ButtonErrorEdit: TButton
Left = 218
Top = 170
Width = 57
Height = 25
Anchors = [akRight, akBottom]
Caption = '&Edit'
TabOrder = 0
OnClick = ButtonErrorEditClick
end
object RichEditError: TRichEdit
Left = 8
Top = 56
Width = 267
Height = 105
Anchors = [akLeft, akTop, akRight, akBottom]
PlainText = True
ScrollBars = ssBoth
TabOrder = 1
WantReturns = False
end
end
object TabSheetWarnings: TTabSheet
Caption = 'Warnings'
ImageIndex = 2
OnResize = TabSheetWarningsResize
DesignSize = (
283
202)
object ImageWarning: TImage
Left = 11
Top = 11
Width = 33
Height = 33
end
object LabelWarningTitle: TLabel
Left = 56
Top = 12
Width = 53
Height = 13
Caption = 'Warnings'
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
end
object LabelWarningLocation: TLabel
Left = 56
Top = 28
Width = 48
Height = 13
Caption = '(Location)'
end
object LabelWarningNumber: TLabel
Left = 113
Top = 12
Width = 36
Height = 13
Caption = '(0 of 0)'
end
object RichEditWarning: TRichEdit
Left = 8
Top = 56
Width = 267
Height = 105
Anchors = [akLeft, akTop, akRight, akBottom]
PlainText = True
ScrollBars = ssBoth
TabOrder = 0
WantReturns = False
end
object ButtonWarningEdit: TButton
Left = 218
Top = 170
Width = 57
Height = 25
Anchors = [akRight, akBottom]
Caption = '&Edit'
Enabled = False
TabOrder = 3
OnClick = ButtonErrorEditClick
end
object ButtonWarningNext: TButton
Left = 68
Top = 170
Width = 57
Height = 25
Anchors = [akLeft, akBottom]
Caption = '&Next '#8250#8250
Enabled = False
TabOrder = 1
OnClick = ButtonWarningNextClick
end
object ButtonWarningPrev: TButton
Left = 8
Top = 170
Width = 57
Height = 25
Anchors = [akLeft, akBottom]
Caption = #8249#8249' &Prev'
Enabled = False
TabOrder = 2
OnClick = ButtonWarningPrevClick
end
end
object TabSheetMessages: TTabSheet
Caption = 'Messages'
object RichEditMessages: TRichEdit
Left = 0
Top = 0
Width = 283
Height = 202
Align = alClient
PlainText = True
ScrollBars = ssBoth
TabOrder = 0
WantReturns = False
end
end
end
object StaticTextProgress: TStaticText
Left = 8
Top = 8
Width = 291
Height = 17
Anchors = [akLeft, akTop, akRight]
AutoSize = False
Caption = 'Initializing'
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 0
end
end