mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2024-11-16 08:15:55 +01:00
f764c39cc1
Remove the outdated license text. Use the main cef.inc file in all Delphi demos. Fixed issue #493.
77 lines
1.6 KiB
Plaintext
77 lines
1.6 KiB
Plaintext
object MainForm: TMainForm
|
|
Left = 0
|
|
Top = 0
|
|
Caption = 'Initializing. Please, wait...'
|
|
ClientHeight = 702
|
|
ClientWidth = 987
|
|
Color = clBtnFace
|
|
Font.Charset = DEFAULT_CHARSET
|
|
Font.Color = clWindowText
|
|
Font.Height = -11
|
|
Font.Name = 'Tahoma'
|
|
Font.Style = []
|
|
Position = poScreenCenter
|
|
OnCloseQuery = FormCloseQuery
|
|
OnCreate = FormCreate
|
|
OnDestroy = FormDestroy
|
|
OnShow = FormShow
|
|
TextHeight = 13
|
|
object BrowserPageCtrl: TPageControl
|
|
Left = 32
|
|
Top = 0
|
|
Width = 955
|
|
Height = 702
|
|
Align = alClient
|
|
TabOrder = 0
|
|
TabWidth = 150
|
|
OnChange = BrowserPageCtrlChange
|
|
end
|
|
object ButtonPnl: TPanel
|
|
Left = 0
|
|
Top = 0
|
|
Width = 32
|
|
Height = 702
|
|
Align = alLeft
|
|
BevelOuter = bvNone
|
|
Enabled = False
|
|
Padding.Left = 3
|
|
Padding.Top = 3
|
|
Padding.Right = 3
|
|
Padding.Bottom = 3
|
|
TabOrder = 1
|
|
object AddTabBtn: TSpeedButton
|
|
Left = 3
|
|
Top = 3
|
|
Width = 26
|
|
Height = 26
|
|
Caption = '+'
|
|
Font.Charset = DEFAULT_CHARSET
|
|
Font.Color = clWindowText
|
|
Font.Height = -24
|
|
Font.Name = 'Arial Black'
|
|
Font.Style = []
|
|
ParentFont = False
|
|
OnClick = AddTabBtnClick
|
|
end
|
|
object RemoveTabBtn: TSpeedButton
|
|
Left = 3
|
|
Top = 32
|
|
Width = 26
|
|
Height = 26
|
|
Caption = #8722
|
|
Font.Charset = DEFAULT_CHARSET
|
|
Font.Color = clWindowText
|
|
Font.Height = -24
|
|
Font.Name = 'Arial Black'
|
|
Font.Style = []
|
|
ParentFont = False
|
|
OnClick = RemoveTabBtnClick
|
|
end
|
|
end
|
|
object AppEvents: TApplicationEvents
|
|
OnMessage = AppEventsMessage
|
|
Left = 24
|
|
Top = 128
|
|
end
|
|
end
|