CEF4Delphi/demos/Lazarus/SimpleBrowser/uSimpleBrowser.lfm

74 lines
1.5 KiB
Plaintext
Raw Normal View History

2017-01-27 18:14:48 +01:00
object Form1: TForm1
2019-06-16 10:31:13 +02:00
Left = 601
Height = 624
2019-06-16 10:31:13 +02:00
Top = 107
Width = 1038
2017-12-07 10:49:51 +01:00
Caption = 'Initializing browser. Please wait...'
ClientHeight = 624
ClientWidth = 1038
2017-01-27 18:14:48 +01:00
Color = clBtnFace
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
2018-03-31 18:08:18 +02:00
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
2017-01-27 18:14:48 +01:00
OnShow = FormShow
Position = poScreenCenter
LCLVersion = '2.0.4.0'
2017-01-27 18:14:48 +01:00
object ChromiumWindow1: TChromiumWindow
Left = 0
Height = 603
Top = 21
Width = 1038
2017-01-27 18:14:48 +01:00
Align = alClient
TabStop = True
2017-01-27 18:14:48 +01:00
TabOrder = 0
2018-03-31 18:08:18 +02:00
OnClose = ChromiumWindow1Close
OnBeforeClose = ChromiumWindow1BeforeClose
OnAfterCreated = ChromiumWindow1AfterCreated
2017-01-27 18:14:48 +01:00
end
object AddressPnl: TPanel
2017-01-27 18:14:48 +01:00
Left = 0
Height = 21
2017-01-27 18:14:48 +01:00
Top = 0
Width = 1038
2017-01-27 18:14:48 +01:00
Align = alTop
BevelOuter = bvNone
ClientHeight = 21
ClientWidth = 1038
Enabled = False
2017-01-27 18:14:48 +01:00
TabOrder = 1
object AddressEdt: TEdit
Left = 0
Height = 21
Top = 0
Width = 1007
2017-01-27 18:14:48 +01:00
Align = alClient
TabOrder = 0
Text = 'http://www.google.com'
end
object GoBtn: TButton
Left = 1007
Height = 21
Top = 0
2017-01-27 18:14:48 +01:00
Width = 31
Align = alRight
Caption = 'Go'
OnClick = GoBtnClick
TabOrder = 1
2017-01-27 18:14:48 +01:00
end
end
2017-11-01 09:38:38 +01:00
object Timer1: TTimer
Enabled = False
Interval = 300
2017-11-01 09:38:38 +01:00
OnTimer = Timer1Timer
left = 56
top = 88
2017-11-01 09:38:38 +01:00
end
object CEFSentinel1: TCEFSentinel
OnClose = CEFSentinel1Close
left = 56
top = 154
end
2017-01-27 18:14:48 +01:00
end