mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2024-11-16 08:15:55 +01:00
b47a8e2d52
- New Delphi package called CEF4Delphi_FMX.dpk that includes VCL and FMX components. - New FMX comopnents : TFMXChromium, TFMXBufferPanel and TFMXWorkScheduler. - New FMX demo : FMXExternalPumpBrowser - Improved WorkScheduler for VCL too. - New GlobalCEFApp.DisableWebSecurity property.
92 lines
2.5 KiB
Plaintext
92 lines
2.5 KiB
Plaintext
object FMXExternalPumpBrowserFrm: TFMXExternalPumpBrowserFrm
|
|
Left = 0
|
|
Top = 0
|
|
Caption = 'Initializing browser. Please wait...'
|
|
ClientHeight = 534
|
|
ClientWidth = 800
|
|
Position = ScreenCenter
|
|
FormFactor.Width = 320
|
|
FormFactor.Height = 480
|
|
FormFactor.Devices = [Desktop]
|
|
OnCreate = FormCreate
|
|
OnCloseQuery = FormCloseQuery
|
|
OnDestroy = FormDestroy
|
|
OnShow = FormShow
|
|
OnHide = FormHide
|
|
DesignerMasterStyle = 0
|
|
object AddressPnl: TPanel
|
|
Align = Top
|
|
Padding.Left = 5.000000000000000000
|
|
Padding.Top = 5.000000000000000000
|
|
Padding.Right = 5.000000000000000000
|
|
Padding.Bottom = 5.000000000000000000
|
|
Size.Width = 800.000000000000000000
|
|
Size.Height = 33.000000000000000000
|
|
Size.PlatformDefault = False
|
|
TabOrder = 1
|
|
object GoBtn: TButton
|
|
Align = Right
|
|
Position.X = 759.000000000000000000
|
|
Position.Y = 5.000000000000000000
|
|
Size.Width = 36.000000000000000000
|
|
Size.Height = 23.000000000000000000
|
|
Size.PlatformDefault = False
|
|
TabOrder = 1
|
|
Text = 'Go'
|
|
OnClick = GoBtnClick
|
|
OnEnter = GoBtnEnter
|
|
end
|
|
object AddressEdt: TEdit
|
|
Touch.InteractiveGestures = [LongTap, DoubleTap]
|
|
Align = Client
|
|
TabOrder = 0
|
|
Text = 'https://www.google.com'
|
|
Size.Width = 754.000000000000000000
|
|
Size.Height = 23.000000000000000000
|
|
Size.PlatformDefault = False
|
|
OnEnter = AddressEdtEnter
|
|
end
|
|
end
|
|
object Panel1: TFMXBufferPanel
|
|
Align = Client
|
|
TabOrder = 0
|
|
Color = claTomato
|
|
CanFocus = True
|
|
Size.Width = 800.000000000000000000
|
|
Size.Height = 501.000000000000000000
|
|
Size.PlatformDefault = False
|
|
OnEnter = Panel1Enter
|
|
OnExit = Panel1Exit
|
|
OnResize = Panel1Resize
|
|
OnClick = Panel1Click
|
|
OnMouseDown = Panel1MouseDown
|
|
OnMouseMove = Panel1MouseMove
|
|
OnMouseUp = Panel1MouseUp
|
|
OnMouseLeave = Panel1MouseLeave
|
|
OnMouseWheel = Panel1MouseWheel
|
|
OnKeyUp = Panel1KeyUp
|
|
OnKeyDown = Panel1KeyDown
|
|
end
|
|
object Timer1: TTimer
|
|
Enabled = False
|
|
Interval = 300
|
|
OnTimer = Timer1Timer
|
|
Left = 384
|
|
Top = 313
|
|
end
|
|
object chrmosr: TFMXChromium
|
|
OnAfterCreated = chrmosrAfterCreated
|
|
OnBeforeClose = chrmosrBeforeClose
|
|
OnClose = chrmosrClose
|
|
OnGetViewRect = chrmosrGetViewRect
|
|
OnGetScreenPoint = chrmosrGetScreenPoint
|
|
OnGetScreenInfo = chrmosrGetScreenInfo
|
|
OnPopupShow = chrmosrPopupShow
|
|
OnPopupSize = chrmosrPopupSize
|
|
OnPaint = chrmosrPaint
|
|
OnCursorChange = chrmosrCursorChange
|
|
Left = 272
|
|
Top = 313
|
|
end
|
|
end
|