CEF4Delphi/demos/Delphi_VCL/SchemeRegistrationBrowser/uSchemeRegistrationBrowser.dfm
Salvador Diaz Fau 1299a6f596 Added ConsoleBrowser2 and WebpageSnapshot demos
- Split the Lazarus demos directory into "Lazarus_Windows" and "Lazarus_Linux".
- Added OSRExternalPumpBrowser and TinyBrowser2 demos to "Lazarus_Linux".
- Set TBufferPanel.GetScreenScale as virtual.
- Added DevTools to the SchemeRegistrationBrowser demo.
- Modified the SchemeRegistrationBrowser demo to receive XMLHttpRequest requests from JavaScript.
2020-12-13 18:36:10 +01:00

87 lines
1.9 KiB
Plaintext

object SchemeRegistrationBrowserFrm: TSchemeRegistrationBrowserFrm
Left = 0
Top = 0
Caption = 'SchemeRegistrationBrowser'
ClientHeight = 652
ClientWidth = 980
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poScreenCenter
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object AddressBarPnl: TPanel
Left = 0
Top = 0
Width = 980
Height = 30
Align = alTop
BevelOuter = bvNone
DoubleBuffered = True
Enabled = False
Padding.Left = 5
Padding.Top = 5
Padding.Right = 5
Padding.Bottom = 5
ParentDoubleBuffered = False
TabOrder = 0
object GoBtn: TButton
Left = 944
Top = 5
Width = 31
Height = 20
Margins.Left = 5
Align = alRight
Caption = 'Go'
TabOrder = 0
OnClick = GoBtnClick
end
object AddressCbx: TComboBox
Left = 5
Top = 5
Width = 939
Height = 21
Align = alClient
ItemIndex = 1
TabOrder = 1
Text = 'hello://localhost/test.html'
Items.Strings = (
'https://www.google.com'
'hello://localhost/test.html'
'file://test.html')
end
end
object CEFWindowParent1: TCEFWindowParent
Left = 0
Top = 30
Width = 980
Height = 622
Align = alClient
TabOrder = 1
end
object Chromium1: TChromium
OnBeforeContextMenu = Chromium1BeforeContextMenu
OnContextMenuCommand = Chromium1ContextMenuCommand
OnBeforePopup = Chromium1BeforePopup
OnAfterCreated = Chromium1AfterCreated
OnBeforeClose = Chromium1BeforeClose
OnClose = Chromium1Close
Left = 16
Top = 40
end
object Timer1: TTimer
Enabled = False
Interval = 300
OnTimer = Timer1Timer
Left = 16
Top = 96
end
end