-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathupdatechecker.lfm
62 lines (62 loc) · 1.63 KB
/
updatechecker.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
object UpdateCheckerForm: TUpdateCheckerForm
Left = 347
Height = 150
Top = 250
Width = 306
AutoSize = True
BorderIcons = []
BorderStyle = bsDialog
ChildSizing.LeftRightSpacing = 15
ChildSizing.TopBottomSpacing = 15
ChildSizing.HorizontalSpacing = 6
ChildSizing.VerticalSpacing = 6
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 150
ClientWidth = 306
Constraints.MaxWidth = 500
OnCreate = FormCreate
Position = poOwnerFormCenter
LCLVersion = '2.2.4.0'
object MsgLabel: TLabel
Left = 15
Height = 15
Top = 15
Width = 300
Caption = 'Checking for updates...'
Constraints.MinWidth = 300
ParentColor = False
WordWrap = True
end
object ProgressBar: TProgressBar
Left = 15
Height = 20
Top = 36
Width = 300
Style = pbstMarquee
TabOrder = 0
end
object ButtonPanel1: TButtonPanel
AnchorSideTop.Control = MsgLabel
AnchorSideTop.Side = asrBottom
Left = 15
Height = 84
Top = 51
Width = 276
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Top = 15
OKButton.Name = 'OKButton'
OKButton.DefaultCaption = True
OKButton.OnClick = OKButtonClick
HelpButton.Name = 'HelpButton'
HelpButton.DefaultCaption = True
CloseButton.Name = 'CloseButton'
CloseButton.DefaultCaption = True
CancelButton.Name = 'CancelButton'
CancelButton.DefaultCaption = True
CancelButton.OnClick = CancelButtonClick
TabOrder = 1
ShowButtons = [pbOK, pbCancel, pbClose]
ShowGlyphs = [pbOK, pbCancel]
end
end