2017-01-27 19:14:48 +02:00
|
|
|
object Form1: TForm1
|
|
|
|
Left = 0
|
|
|
|
Top = 0
|
|
|
|
Caption = 'Simple OSR Browser'
|
2017-07-18 17:50:28 +02:00
|
|
|
ClientHeight = 716
|
|
|
|
ClientWidth = 992
|
2017-01-27 19:14:48 +02:00
|
|
|
Color = clBtnFace
|
|
|
|
Font.Charset = DEFAULT_CHARSET
|
|
|
|
Font.Color = clWindowText
|
|
|
|
Font.Height = -11
|
|
|
|
Font.Name = 'Tahoma'
|
|
|
|
Font.Style = []
|
|
|
|
OldCreateOrder = False
|
2017-07-12 17:00:34 +02:00
|
|
|
Position = poScreenCenter
|
2017-04-24 12:57:16 +02:00
|
|
|
OnAfterMonitorDpiChanged = FormAfterMonitorDpiChanged
|
2017-07-18 17:50:28 +02:00
|
|
|
OnCreate = FormCreate
|
|
|
|
OnDestroy = FormDestroy
|
|
|
|
OnHide = FormHide
|
2017-01-27 19:14:48 +02:00
|
|
|
OnShow = FormShow
|
|
|
|
PixelsPerInch = 96
|
|
|
|
TextHeight = 13
|
2017-07-18 17:50:28 +02:00
|
|
|
object NavControlPnl: TPanel
|
2017-01-27 19:14:48 +02:00
|
|
|
Left = 0
|
|
|
|
Top = 0
|
2017-07-18 17:50:28 +02:00
|
|
|
Width = 992
|
2017-01-27 19:14:48 +02:00
|
|
|
Height = 30
|
|
|
|
Align = alTop
|
|
|
|
BevelOuter = bvNone
|
2017-07-18 17:50:28 +02:00
|
|
|
Enabled = False
|
2017-01-27 19:14:48 +02:00
|
|
|
Padding.Left = 5
|
|
|
|
Padding.Top = 5
|
|
|
|
Padding.Right = 5
|
|
|
|
Padding.Bottom = 5
|
|
|
|
ShowCaption = False
|
2017-07-18 17:50:28 +02:00
|
|
|
TabOrder = 1
|
|
|
|
object GoBtn: TButton
|
|
|
|
Left = 956
|
2017-01-27 19:14:48 +02:00
|
|
|
Top = 5
|
|
|
|
Width = 31
|
|
|
|
Height = 20
|
|
|
|
Margins.Left = 5
|
|
|
|
Align = alRight
|
|
|
|
Caption = 'Go'
|
|
|
|
TabOrder = 1
|
2017-07-18 17:50:28 +02:00
|
|
|
OnClick = GoBtnClick
|
|
|
|
end
|
|
|
|
object ComboBox1: TComboBox
|
|
|
|
Left = 5
|
|
|
|
Top = 5
|
|
|
|
Width = 951
|
|
|
|
Height = 21
|
|
|
|
Align = alClient
|
|
|
|
ItemIndex = 0
|
|
|
|
TabOrder = 0
|
|
|
|
Text = 'https://www.google.com'
|
|
|
|
Items.Strings = (
|
|
|
|
'https://www.google.com'
|
|
|
|
'https://html5demos.com/drag')
|
2017-01-27 19:14:48 +02:00
|
|
|
end
|
|
|
|
end
|
2017-07-18 17:50:28 +02:00
|
|
|
object Panel1: TPanel
|
2017-01-27 19:14:48 +02:00
|
|
|
Left = 0
|
|
|
|
Top = 30
|
2017-07-18 17:50:28 +02:00
|
|
|
Width = 992
|
|
|
|
Height = 686
|
2017-01-27 19:14:48 +02:00
|
|
|
Align = alClient
|
2017-07-18 17:50:28 +02:00
|
|
|
BevelOuter = bvNone
|
|
|
|
ShowCaption = False
|
|
|
|
TabOrder = 0
|
|
|
|
TabStop = True
|
|
|
|
OnEnter = Panel1Enter
|
|
|
|
OnExit = Panel1Exit
|
|
|
|
object PaintBox: TPaintBox32
|
|
|
|
Left = 0
|
|
|
|
Top = 0
|
|
|
|
Width = 992
|
|
|
|
Height = 686
|
|
|
|
Align = alClient
|
|
|
|
TabOrder = 0
|
|
|
|
OnClick = PaintBoxClick
|
|
|
|
OnMouseDown = PaintBoxMouseDown
|
|
|
|
OnMouseMove = PaintBoxMouseMove
|
|
|
|
OnMouseUp = PaintBoxMouseUp
|
|
|
|
OnMouseWheel = PaintBoxMouseWheel
|
|
|
|
OnResize = PaintBoxResize
|
|
|
|
end
|
2017-01-27 19:14:48 +02:00
|
|
|
end
|
|
|
|
object chrmosr: TChromium
|
2017-07-18 17:50:28 +02:00
|
|
|
OnAfterCreated = chrmosrAfterCreated
|
2017-01-27 19:14:48 +02:00
|
|
|
OnGetRootScreenRect = chrmosrGetRootScreenRect
|
|
|
|
OnGetViewRect = chrmosrGetViewRect
|
|
|
|
OnGetScreenPoint = chrmosrGetScreenPoint
|
2017-04-24 12:57:16 +02:00
|
|
|
OnPopupShow = chrmosrPopupShow
|
|
|
|
OnPopupSize = chrmosrPopupSize
|
2017-01-27 19:14:48 +02:00
|
|
|
OnPaint = chrmosrPaint
|
|
|
|
OnCursorChange = chrmosrCursorChange
|
2017-07-12 17:00:34 +02:00
|
|
|
Left = 24
|
|
|
|
Top = 56
|
2017-01-27 19:14:48 +02:00
|
|
|
end
|
|
|
|
object AppEvents: TApplicationEvents
|
|
|
|
OnMessage = AppEventsMessage
|
2017-07-12 17:00:34 +02:00
|
|
|
Left = 24
|
|
|
|
Top = 128
|
2017-01-27 19:14:48 +02:00
|
|
|
end
|
|
|
|
end
|