CEF4Delphi/demos/SimpleOSRBrowser/uSimpleOSRBrowser.dfm

148 lines
3.3 KiB
Plaintext
Raw Normal View History

2017-01-27 18:14:48 +01:00
object Form1: TForm1
Left = 0
Top = 0
Caption = 'Simple OSR Browser'
ClientHeight = 510
ClientWidth = 800
2017-01-27 18:14:48 +01: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
OnDestroy = FormDestroy
OnHide = FormHide
2017-01-27 18:14:48 +01:00
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object NavControlPnl: TPanel
2017-01-27 18:14:48 +01:00
Left = 0
Top = 0
Width = 800
2017-01-27 18:14:48 +01:00
Height = 30
Align = alTop
BevelOuter = bvNone
Enabled = False
2017-01-27 18:14:48 +01:00
Padding.Left = 5
Padding.Top = 5
Padding.Right = 5
Padding.Bottom = 5
ShowCaption = False
TabOrder = 1
object ComboBox1: TComboBox
Left = 5
Top = 5
Width = 721
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 18:14:48 +01:00
end
object Panel2: TPanel
Left = 726
Top = 5
Width = 69
Height = 20
Margins.Left = 2
Margins.Top = 2
Margins.Right = 2
Margins.Bottom = 2
Align = alRight
BevelOuter = bvNone
Padding.Left = 4
ShowCaption = False
TabOrder = 1
object GoBtn: TButton
Left = 4
Top = 0
Width = 31
Height = 20
Margins.Left = 5
Align = alLeft
Caption = 'Go'
TabOrder = 0
OnClick = GoBtnClick
end
object SnapshotBtn: TButton
Left = 38
Top = 0
Width = 31
Height = 20
Hint = 'Take snapshot'
Margins.Left = 5
Align = alRight
Caption = #181
Font.Charset = SYMBOL_CHARSET
Font.Color = clWindowText
Font.Height = -24
Font.Name = 'Webdings'
Font.Style = []
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 1
OnClick = SnapshotBtnClick
end
end
2017-01-27 18:14:48 +01:00
end
object Panel1: TPanel
2017-01-27 18:14:48 +01:00
Left = 0
Top = 30
Width = 800
Height = 480
2017-01-27 18:14:48 +01:00
Align = alClient
BevelOuter = bvNone
ShowCaption = False
TabOrder = 0
TabStop = True
OnEnter = Panel1Enter
OnExit = Panel1Exit
object PaintBox: TPaintBox32
Left = 0
Top = 0
Width = 800
Height = 480
Align = alClient
TabOrder = 0
OnClick = PaintBoxClick
OnMouseDown = PaintBoxMouseDown
OnMouseMove = PaintBoxMouseMove
OnMouseUp = PaintBoxMouseUp
OnMouseWheel = PaintBoxMouseWheel
OnMouseLeave = PaintBoxMouseLeave
OnResize = PaintBoxResize
end
2017-01-27 18:14:48 +01:00
end
object chrmosr: TChromium
OnAfterCreated = chrmosrAfterCreated
2017-01-27 18:14:48 +01:00
OnGetViewRect = chrmosrGetViewRect
OnGetScreenPoint = chrmosrGetScreenPoint
OnGetScreenInfo = chrmosrGetScreenInfo
OnPopupShow = chrmosrPopupShow
OnPopupSize = chrmosrPopupSize
2017-01-27 18:14:48 +01:00
OnPaint = chrmosrPaint
OnCursorChange = chrmosrCursorChange
2017-07-12 17:00:34 +02:00
Left = 24
Top = 56
2017-01-27 18:14:48 +01:00
end
object AppEvents: TApplicationEvents
OnMessage = AppEventsMessage
2017-07-12 17:00:34 +02:00
Left = 24
Top = 128
2017-01-27 18:14:48 +01:00
end
object SaveDialog1: TSaveDialog
DefaultExt = 'bmp'
Filter = 'Bitmap files (*.bmp)|*.BMP'
Title = 'Save snapshot'
Left = 544
Top = 62
end
2017-01-27 18:14:48 +01:00
end