Class TCustomDisplayHandler

Description
Hierarchy
Fields
Methods
Properties

Unit

Declaration

type TCustomDisplayHandler = class(TCefDisplayHandlerOwn)

Description

This item has no description. Showing description inherited from TCefDisplayHandlerOwn.

Event handler related to browser display state. The functions of this interface will be called on the UI thread.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/cef_display_handler_capi.h">CEF source file: /include/capi/cef_display_handler_capi.h (cef_display_handler_t))

Hierarchy

Overview

Fields

Protected FEvents: Pointer;

Methods

Protected procedure OnAddressChange(const browser: ICefBrowser; const frame: ICefFrame; const url: ustring); override;
Protected procedure OnTitleChange(const browser: ICefBrowser; const title: ustring); override;
Protected procedure OnFaviconUrlChange(const browser: ICefBrowser; const iconUrls: TStrings); override;
Protected procedure OnFullScreenModeChange(const browser: ICefBrowser; fullscreen: Boolean); override;
Protected function OnTooltip(const browser: ICefBrowser; var text: ustring): Boolean; override;
Protected procedure OnStatusMessage(const browser: ICefBrowser; const value: ustring); override;
Protected function OnConsoleMessage(const browser: ICefBrowser; level: TCefLogSeverity; const message_, source: ustring; line: Integer): Boolean; override;
Protected function OnAutoResize(const browser: ICefBrowser; const new_size: PCefSize): Boolean; override;
Protected procedure OnLoadingProgressChange(const browser: ICefBrowser; const progress: double); override;
Protected procedure OnCursorChange(const browser: ICefBrowser; cursor_: TCefCursorHandle; CursorType: TCefCursorType; const customCursorInfo: PCefCursorInfo; var aResult : boolean); override;
Protected procedure OnMediaAccessChange(const browser: ICefBrowser; has_video_access, has_audio_access: boolean); override;
Protected procedure RemoveReferences; override;
Public constructor Create(const events : IChromiumEvents); reintroduce; virtual;
Public destructor Destroy; override;

Description

Fields

Protected FEvents: Pointer;

This item has no description.

Methods

Protected procedure OnAddressChange(const browser: ICefBrowser; const frame: ICefFrame; const url: ustring); override;

This item has no description. Showing description inherited from TCefDisplayHandlerOwn.OnAddressChange.

Called when a frame's address has changed.

Protected procedure OnTitleChange(const browser: ICefBrowser; const title: ustring); override;

This item has no description. Showing description inherited from TCefDisplayHandlerOwn.OnTitleChange.

Called when the page title changes.

Protected procedure OnFaviconUrlChange(const browser: ICefBrowser; const iconUrls: TStrings); override;

This item has no description. Showing description inherited from TCefDisplayHandlerOwn.OnFaviconUrlChange.

Called when the page icon changes.

Protected procedure OnFullScreenModeChange(const browser: ICefBrowser; fullscreen: Boolean); override;

This item has no description. Showing description inherited from TCefDisplayHandlerOwn.OnFullScreenModeChange.

Called when web content in the page has toggled fullscreen mode. If |fullscreen| is true (1) the content will automatically be sized to fill the browser content area. If |fullscreen| is false (0) the content will automatically return to its original size and position. With the Alloy runtime the client is responsible for triggering the fullscreen transition (for example, by calling cef_window_t::SetFullscreen when using Views). With the Chrome runtime the fullscreen transition will be triggered automatically. The cef_window_delegate_t::OnWindowFullscreenTransition function will be called during the fullscreen transition for notification purposes.

Protected function OnTooltip(const browser: ICefBrowser; var text: ustring): Boolean; override;

This item has no description. Showing description inherited from TCefDisplayHandlerOwn.OnTooltip.

Called when the browser is about to display a tooltip. |text| contains the text that will be displayed in the tooltip. To handle the display of the tooltip yourself return true (1). Otherwise, you can optionally modify |text| and then return false (0) to allow the browser to display the tooltip. When window rendering is disabled the application is responsible for drawing tooltips and the return value is ignored.

Protected procedure OnStatusMessage(const browser: ICefBrowser; const value: ustring); override;

This item has no description. Showing description inherited from TCefDisplayHandlerOwn.OnStatusMessage.

Called when the browser receives a status message. |value| contains the text that will be displayed in the status message.

Protected function OnConsoleMessage(const browser: ICefBrowser; level: TCefLogSeverity; const message_, source: ustring; line: Integer): Boolean; override;

This item has no description. Showing description inherited from TCefDisplayHandlerOwn.OnConsoleMessage.

Called to display a console message. Return true (1) to stop the message from being output to the console.

Protected function OnAutoResize(const browser: ICefBrowser; const new_size: PCefSize): Boolean; override;

This item has no description. Showing description inherited from TCefDisplayHandlerOwn.OnAutoResize.

Called when auto-resize is enabled via ICefBrowserHost.SetAutoResizeEnabled and the contents have auto- resized. |new_size| will be the desired size in view coordinates. Return true (1) if the resize was handled or false (0) for default handling.

Protected procedure OnLoadingProgressChange(const browser: ICefBrowser; const progress: double); override;

This item has no description. Showing description inherited from TCefDisplayHandlerOwn.OnLoadingProgressChange.

Called when the overall page loading progress has changed. |progress| ranges from 0.0 to 1.0.

Protected procedure OnCursorChange(const browser: ICefBrowser; cursor_: TCefCursorHandle; CursorType: TCefCursorType; const customCursorInfo: PCefCursorInfo; var aResult : boolean); override;

This item has no description. Showing description inherited from TCefDisplayHandlerOwn.OnCursorChange.

Called when the browser's cursor has changed. If |type| is CT_CUSTOM then |custom_cursor_info| will be populated with the custom cursor information. Return true (1) if the cursor change was handled or false (0) for default handling.

Protected procedure OnMediaAccessChange(const browser: ICefBrowser; has_video_access, has_audio_access: boolean); override;

This item has no description. Showing description inherited from TCefDisplayHandlerOwn.OnMediaAccessChange.

Called when the browser's access to an audio and/or video source has changed.

Protected procedure RemoveReferences; override;

This item has no description. Showing description inherited from TCefDisplayHandlerOwn.RemoveReferences.

Custom procedure to clear all references.

Public constructor Create(const events : IChromiumEvents); reintroduce; virtual;

This item has no description.

Public destructor Destroy; override;

This item has no description.


Generated by PasDoc 0.16.0-snapshot.