1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2024-12-14 09:42:54 +02:00
CEF4Delphi/demos/SimpleOSRBrowser/uSimpleOSRBrowser.dfm

90 lines
2.0 KiB
Plaintext
Raw Normal View History

2017-01-27 19:14:48 +02:00
object Form1: TForm1
Left = 0
Top = 0
Caption = 'Simple OSR Browser'
2017-07-12 17:00:34 +02:00
ClientHeight = 712
ClientWidth = 984
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
OnAfterMonitorDpiChanged = FormAfterMonitorDpiChanged
2017-01-27 19:14:48 +02:00
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object Panel1: TPanel
Left = 0
Top = 0
2017-07-12 17:00:34 +02:00
Width = 984
2017-01-27 19:14:48 +02:00
Height = 30
Align = alTop
BevelOuter = bvNone
Padding.Left = 5
Padding.Top = 5
Padding.Right = 5
Padding.Bottom = 5
ShowCaption = False
TabOrder = 0
2017-07-12 17:00:34 +02:00
ExplicitWidth = 677
2017-01-27 19:14:48 +02:00
object Edit1: TEdit
Left = 5
Top = 5
2017-07-12 17:00:34 +02:00
Width = 943
2017-01-27 19:14:48 +02:00
Height = 20
Margins.Right = 5
Align = alClient
TabOrder = 0
Text = 'http://www.google.com'
2017-07-12 17:00:34 +02:00
ExplicitWidth = 636
2017-01-27 19:14:48 +02:00
ExplicitHeight = 21
end
object Button1: TButton
2017-07-12 17:00:34 +02:00
Left = 948
2017-01-27 19:14:48 +02:00
Top = 5
Width = 31
Height = 20
Margins.Left = 5
Align = alRight
Caption = 'Go'
TabOrder = 1
OnClick = Button1Click
2017-07-12 17:00:34 +02:00
ExplicitLeft = 641
2017-01-27 19:14:48 +02:00
end
end
object PaintBox: TPaintBox32
Left = 0
Top = 30
2017-07-12 17:00:34 +02:00
Width = 984
Height = 682
2017-01-27 19:14:48 +02:00
Align = alClient
TabOrder = 1
OnMouseDown = PaintBoxMouseDown
OnMouseMove = PaintBoxMouseMove
OnMouseUp = PaintBoxMouseUp
OnMouseWheel = PaintBoxMouseWheel
OnResize = PaintBoxResize
2017-07-12 17:00:34 +02:00
ExplicitWidth = 677
ExplicitHeight = 548
2017-01-27 19:14:48 +02:00
end
object chrmosr: TChromium
OnGetRootScreenRect = chrmosrGetRootScreenRect
OnGetViewRect = chrmosrGetViewRect
OnGetScreenPoint = chrmosrGetScreenPoint
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