mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2024-11-16 08:15:55 +01:00
830117e0ca
Faster browser destruction. All timers have been removed from the demos. Removed unnecessary client handler class in TChromium. Now there's only an interface. Fixed an old memory leak in popup windows.
38 lines
734 B
Plaintext
38 lines
734 B
Plaintext
object MainForm: TMainForm
|
|
Left = 0
|
|
Top = 0
|
|
BorderIcons = [biSystemMenu]
|
|
BorderStyle = bsSingle
|
|
Caption = 'Toolbox Browser demo'
|
|
ClientHeight = 37
|
|
ClientWidth = 357
|
|
Color = clBtnFace
|
|
Font.Charset = DEFAULT_CHARSET
|
|
Font.Color = clWindowText
|
|
Font.Height = -11
|
|
Font.Name = 'Tahoma'
|
|
Font.Style = []
|
|
OldCreateOrder = False
|
|
Position = poScreenCenter
|
|
OnCreate = FormCreate
|
|
PixelsPerInch = 96
|
|
TextHeight = 13
|
|
object Button1: TButton
|
|
Left = 300
|
|
Top = 6
|
|
Width = 51
|
|
Height = 25
|
|
Caption = 'Open'
|
|
TabOrder = 0
|
|
OnClick = Button1Click
|
|
end
|
|
object Edit1: TEdit
|
|
Left = 8
|
|
Top = 8
|
|
Width = 286
|
|
Height = 21
|
|
TabOrder = 1
|
|
Text = 'https://www.google.com'
|
|
end
|
|
end
|