-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMain.lfm
87 lines (87 loc) · 1.86 KB
/
Main.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
object Form1: TForm1
Left = 531
Height = 231
Top = 171
Width = 432
ActiveControl = Button1
Caption = ' 04 - HTTP Server'
ClientHeight = 231
ClientWidth = 432
Color = clBtnFace
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
OnCreate = FormCreate
OnDestroy = FormDestroy
OnShow = FormShow
LCLVersion = '1.5'
object Label1: TLabel
Left = 8
Height = 33
Top = 8
Width = 297
Alignment = taCenter
AutoSize = False
Font.Color = clTeal
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object Label2: TLabel
Left = 56
Height = 48
Top = 56
Width = 187
Alignment = taCenter
Caption = 'HTTP Server is running on 8080.'#13#10'Also serving /WebContent'#13#10'at localhost:8080/static'
ParentColor = False
WordWrap = True
end
object Button1: TButton
Left = 344
Height = 32
Top = 72
Width = 80
Caption = 'Quit'
OnClick = Button1Click
TabOrder = 0
end
object btnOpen: TButton
Left = 344
Height = 29
Top = 40
Width = 80
Caption = 'Open site'
OnClick = btnOpenClick
TabOrder = 1
end
object Memo1: TMemo
Left = 8
Height = 112
Top = 112
Width = 416
Anchors = [akTop, akLeft, akRight, akBottom]
Lines.Strings = (
'Memo1'
)
ScrollBars = ssVertical
TabOrder = 2
end
object btnRoot: TButton
Left = 344
Height = 29
Top = 8
Width = 80
Caption = 'Select root'
OnClick = btnRootClick
TabOrder = 3
end
object OpenDialog1: TOpenDialog
Filter = 'html|*.html|htm|*.htm|all|*.*'
Options = [ofReadOnly, ofHideReadOnly, ofAllowMultiSelect, ofFileMustExist, ofCreatePrompt, ofNoTestFileCreate, ofNoNetworkButton, ofEnableSizing, ofViewDetail, ofAutoPreview]
left = 274
top = 62
end
end