mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2024-11-16 08:15:55 +01:00
140 lines
3.3 KiB
Plaintext
140 lines
3.3 KiB
Plaintext
|
object Form1: TForm1
|
||
|
Left = 282
|
||
|
Height = 565
|
||
|
Top = 185
|
||
|
Width = 800
|
||
|
Caption = 'Simple OSR Browser - Initializing browser. Please wait...'
|
||
|
ClientHeight = 565
|
||
|
ClientWidth = 800
|
||
|
Color = clBtnFace
|
||
|
Font.Color = clWindowText
|
||
|
Font.Height = -11
|
||
|
Font.Name = 'Tahoma'
|
||
|
OnCloseQuery = FormCloseQuery
|
||
|
OnCreate = FormCreate
|
||
|
OnDestroy = FormDestroy
|
||
|
OnHide = FormHide
|
||
|
OnShow = FormShow
|
||
|
Position = poScreenCenter
|
||
|
LCLVersion = '1.8.4.0'
|
||
|
object NavControlPnl: TPanel
|
||
|
Left = 0
|
||
|
Height = 21
|
||
|
Top = 0
|
||
|
Width = 800
|
||
|
Align = alTop
|
||
|
BevelOuter = bvNone
|
||
|
ClientHeight = 21
|
||
|
ClientWidth = 800
|
||
|
Enabled = False
|
||
|
TabOrder = 0
|
||
|
object ComboBox1: TComboBox
|
||
|
Left = 0
|
||
|
Height = 21
|
||
|
Top = 0
|
||
|
Width = 731
|
||
|
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 = 731
|
||
|
Height = 21
|
||
|
Top = 0
|
||
|
Width = 69
|
||
|
Align = alRight
|
||
|
BevelOuter = bvNone
|
||
|
ClientHeight = 21
|
||
|
ClientWidth = 69
|
||
|
TabOrder = 1
|
||
|
object GoBtn: TButton
|
||
|
Left = 4
|
||
|
Height = 21
|
||
|
Top = 0
|
||
|
Width = 31
|
||
|
Caption = 'Go'
|
||
|
OnClick = GoBtnClick
|
||
|
OnEnter = GoBtnEnter
|
||
|
TabOrder = 0
|
||
|
end
|
||
|
object SnapshotBtn: TButton
|
||
|
Left = 38
|
||
|
Height = 21
|
||
|
Hint = 'Take snapshot'
|
||
|
Top = 0
|
||
|
Width = 31
|
||
|
Caption = 'µ'
|
||
|
Font.CharSet = SYMBOL_CHARSET
|
||
|
Font.Color = clWindowText
|
||
|
Font.Height = -24
|
||
|
Font.Name = 'Webdings'
|
||
|
OnClick = SnapshotBtnClick
|
||
|
OnEnter = SnapshotBtnEnter
|
||
|
ParentFont = False
|
||
|
ParentShowHint = False
|
||
|
ShowHint = True
|
||
|
TabOrder = 1
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
object Panel1: TBufferPanel
|
||
|
Left = 0
|
||
|
Height = 544
|
||
|
Top = 21
|
||
|
Width = 800
|
||
|
Align = alClient
|
||
|
Caption = 'Panel1'
|
||
|
TabOrder = 1
|
||
|
TabStop = True
|
||
|
OnClick = Panel1Click
|
||
|
OnEnter = Panel1Enter
|
||
|
OnExit = Panel1Exit
|
||
|
OnMouseDown = Panel1MouseDown
|
||
|
OnMouseMove = Panel1MouseMove
|
||
|
OnMouseUp = Panel1MouseUp
|
||
|
OnMouseWheel = Panel1MouseWheel
|
||
|
OnKeyDown = Panel1KeyDown
|
||
|
OnKeyPress = Panel1KeyPress
|
||
|
OnKeyUp = Panel1KeyUp
|
||
|
OnResize = Panel1Resize
|
||
|
end
|
||
|
object chrmosr: TChromium
|
||
|
OnTooltip = chrmosrTooltip
|
||
|
OnBeforePopup = chrmosrBeforePopup
|
||
|
OnAfterCreated = chrmosrAfterCreated
|
||
|
OnBeforeClose = chrmosrBeforeClose
|
||
|
OnClose = chrmosrClose
|
||
|
OnGetViewRect = chrmosrGetViewRect
|
||
|
OnGetScreenPoint = chrmosrGetScreenPoint
|
||
|
OnGetScreenInfo = chrmosrGetScreenInfo
|
||
|
OnPopupShow = chrmosrPopupShow
|
||
|
OnPopupSize = chrmosrPopupSize
|
||
|
OnPaint = chrmosrPaint
|
||
|
OnCursorChange = chrmosrCursorChange
|
||
|
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
|