CEF4Delphi/demos/ToolBoxBrowser/uMainForm.dfm
Salvador Díaz Fau 26c6f6696d Update to CEF 3.3239.1700.g385b2d4
- New TCEFServerComponent. The new CEF3 includes a http and websockets server for communication between applications in localhost.
- New JSDialogBrowser demo to showhow to use custom forms in javascript dialogs.
- New SimpleServer demo which uses TCEFServerComponent.
- Removed all the code that could be removed from the DPR files and moved to another units.
- Now the GlogalCEFApp checks all the CEF3 binaries and stores the missing files in GlogalCEFApp.MissingLibFiles. The default error message gives a list of missing files.
- New GlobalCEFApp.Status property. Use it with GlobalCEFApp.ShowMessageDlg set to False if you want to show customized error messages.
- Now TCEFClient only creates the necessary handlers if you use any their events in TChromium.
- Fixed a destruction bug in OSRExternalPumpBrowser
- Added the procedures to handle WM_ENTERMENULOOP and WM_EXITMENULOOP to all the demos.
2017-12-18 19:38:56 +01:00

50 lines
1000 B
Plaintext

object MainForm: TMainForm
Left = 0
Top = 0
BorderIcons = [biSystemMenu]
BorderStyle = bsSingle
Caption = 'Initializing browser. Please wait...'
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
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object ButtonPnl: TPanel
Left = 0
Top = 0
Width = 357
Height = 37
Align = alClient
BevelOuter = bvNone
Enabled = False
ShowCaption = False
TabOrder = 0
object Edit1: TEdit
Left = 8
Top = 8
Width = 286
Height = 21
TabOrder = 0
Text = 'https://www.google.com'
end
object Button1: TButton
Left = 300
Top = 6
Width = 51
Height = 25
Caption = 'Open'
TabOrder = 1
OnClick = Button1Click
end
end
end