CEF4Delphi/demos/Lazarus_Windows/SimpleOSRBrowser2/usimplelazosrbrowser2.lfm
salvadordf bb26a4cf18 Added 2 OSR demos using OpenGL for Windows and Linux
Added the OSRExternalMessagePump2 demo for Lazarus in Linux
Added the SimpleOSRBrowser2 demo for Lazarus in Windows
2022-04-09 18:15:33 +02:00

120 lines
2.9 KiB
Plaintext

object Form1: TForm1
Left = 426
Height = 636
Top = 224
Width = 931
Caption = 'Simple OSR Browser 2 - Initializing browser. Please wait...'
ClientHeight = 636
ClientWidth = 931
Color = clBtnFace
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
OnDestroy = FormDestroy
OnHide = FormHide
OnShow = FormShow
Position = poScreenCenter
LCLVersion = '2.2.0.4'
object NavControlPnl: TPanel
Left = 0
Height = 21
Top = 0
Width = 931
Align = alTop
BevelOuter = bvNone
ClientHeight = 21
ClientWidth = 931
Enabled = False
TabOrder = 0
object ComboBox1: TComboBox
Left = 0
Height = 21
Top = 0
Width = 892
Align = alClient
ItemHeight = 13
Items.Strings = (
'https://www.google.co'
'https://www.w3schools.com/tags/tryit.asp?filename=tryhtml5_select_form'
'https://www.briskbard.com'
'https://frames-per-second.appspot.com/'
)
OnEnter = ComboBox1Enter
TabOrder = 0
Text = 'https://www.google.com'
end
object Panel2: TPanel
Left = 892
Height = 21
Top = 0
Width = 39
Align = alRight
BevelOuter = bvNone
ClientHeight = 21
ClientWidth = 39
TabOrder = 1
object GoBtn: TButton
Left = 4
Height = 21
Top = 0
Width = 31
Caption = 'Go'
OnClick = GoBtnClick
OnEnter = GoBtnEnter
TabOrder = 0
end
end
end
object OpenGLControl1: TOpenGLControl
Left = 0
Height = 615
Top = 21
Width = 931
Align = alClient
OnClick = OpenGLControl1Click
OnEnter = OpenGLControl1Enter
OnExit = OpenGLControl1Exit
OnKeyDown = OpenGLControl1KeyDown
OnKeyPress = OpenGLControl1KeyPress
OnKeyUp = OpenGLControl1KeyUp
OnMouseDown = OpenGLControl1MouseDown
OnMouseLeave = OpenGLControl1MouseLeave
OnMouseMove = OpenGLControl1MouseMove
OnMouseUp = OpenGLControl1MouseUp
OnMouseWheel = OpenGLControl1MouseWheel
OnPaint = OpenGLControl1Paint
OnResize = OpenGLControl1Resize
end
object chrmosr: TChromium
OnTooltip = chrmosrTooltip
OnCursorChange = chrmosrCursorChange
OnBeforePopup = chrmosrBeforePopup
OnAfterCreated = chrmosrAfterCreated
OnBeforeClose = chrmosrBeforeClose
OnGetViewRect = chrmosrGetViewRect
OnGetScreenPoint = chrmosrGetScreenPoint
OnGetScreenInfo = chrmosrGetScreenInfo
OnPopupShow = chrmosrPopupShow
OnPopupSize = chrmosrPopupSize
OnPaint = chrmosrPaint
Left = 24
Top = 56
end
object SaveDialog1: TSaveDialog
Title = 'Save snapshot'
DefaultExt = '.bmp'
Filter = 'Bitmap files (*.bmp)|*.BMP'
Left = 24
Top = 200
end
object Timer1: TTimer
Enabled = False
Interval = 300
OnTimer = Timer1Timer
Left = 24
Top = 128
end
end