type TChromium = class(TChromiumCore)
VCL and LCL version of TChromiumCore that puts together all browser procedures, functions, properties and events in one place. It has all you need to create, modify and destroy a web browser.
function GetParentFormHandle: TCefWindowHandle; override; |
|
function GetParentForm: TCustomForm; |
|
procedure InitializeDevToolsWindowInfo(aDevTools : TWinControl); virtual; |
|
procedure InitializeDragAndDrop(const aDropTargetCtrl : TWinControl); |
|
procedure ShowDevTools(inspectElementAt: TPoint; const aDevTools : TWinControl = nil); |
|
procedure CloseDevTools(const aDevTools : TWinControl = nil); |
|
procedure MoveFormTo(const x, y: Integer); |
|
procedure MoveFormBy(const x, y: Integer); |
|
procedure ResizeFormWidthTo(const x : Integer); |
|
procedure ResizeFormHeightTo(const y : Integer); |
|
procedure SetFormLeftTo(const x : Integer); |
|
procedure SetFormTopTo(const y : Integer); |
|
function CreateBrowser(const aBrowserParent : TWinControl = nil; const aWindowName : ustring = ''; const aContext : ICefRequestContext = nil; const aExtraInfo : ICefDictionaryValue = nil) : boolean; overload; virtual; |
|
function SaveAsBitmapStream(const aStream : TStream) : boolean; |
|
function TakeSnapshot(var aBitmap : TBitmap) : boolean; |
function GetParentFormHandle: TCefWindowHandle; override; |
|
This item has no description. |
function GetParentForm: TCustomForm; |
|
This item has no description. |
procedure InitializeDevToolsWindowInfo(aDevTools : TWinControl); virtual; |
|
This item has no description. |
procedure InitializeDragAndDrop(const aDropTargetCtrl : TWinControl); |
|
Used with browsers in OSR mode to initialize drag and drop in Windows. |
procedure CloseDevTools(const aDevTools : TWinControl = nil); |
|
Close the developer tools. |
procedure MoveFormTo(const x, y: Integer); |
|
Move the parent form to the x and y coordinates. |
procedure MoveFormBy(const x, y: Integer); |
|
Move the parent form adding x and y to the coordinates. |
procedure ResizeFormWidthTo(const x : Integer); |
|
Add x to the parent form width. |
procedure ResizeFormHeightTo(const y : Integer); |
|
Add y to the parent form height. |
procedure SetFormLeftTo(const x : Integer); |
|
Set the parent form left property to x. |
procedure SetFormTopTo(const y : Integer); |
|
Set the parent form top property to y. |
function CreateBrowser(const aBrowserParent : TWinControl = nil; const aWindowName : ustring = ''; const aContext : ICefRequestContext = nil; const aExtraInfo : ICefDictionaryValue = nil) : boolean; overload; virtual; |
|
Used to create the browser after the global request context has been initialized. You need to set all properties and events before calling this function because it will only create the internal handlers needed for those events and the property values will be used in the browser initialization. The browser will be fully initialized when the TChromiumCore.OnAfterCreated event is triggered. |