Interface ICefBrowserHost

Description
Hierarchy
Fields
Methods
Properties

Unit

Declaration

type ICefBrowserHost = interface(ICefBaseRefCounted)

Description

Interface used to represent the browser process aspects of a browser. The functions of this interface can only be called in the browser process. They may be called on any thread in that process unless otherwise indicated in the comments.

UNKNOWN

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

Hierarchy

Overview

Methods

Public function GetBrowser: ICefBrowser;
Public procedure CloseBrowser(forceClose: Boolean);
Public function TryCloseBrowser: Boolean;
Public procedure SetFocus(focus: Boolean);
Public function GetWindowHandle: TCefWindowHandle;
Public function GetOpenerWindowHandle: TCefWindowHandle;
Public function HasView: Boolean;
Public function GetClient: ICefClient;
Public function GetRequestContext: ICefRequestContext;
Public function CanZoom(command: TCefZoomCommand): boolean;
Public procedure Zoom(command: TCefZoomCommand);
Public function GetDefaultZoomLevel: Double;
Public function GetZoomLevel: Double;
Public procedure SetZoomLevel(const zoomLevel: Double);
Public procedure RunFileDialog(mode: TCefFileDialogMode; const title, defaultFilePath: ustring; const acceptFilters: TStrings; const callback: ICefRunFileDialogCallback);
Public procedure RunFileDialogProc(mode: TCefFileDialogMode; const title, defaultFilePath: ustring; const acceptFilters: TStrings; const callback: TCefRunFileDialogCallbackProc);
Public procedure StartDownload(const url: ustring);
Public procedure DownloadImage(const imageUrl: ustring; isFavicon: Boolean; maxImageSize: cardinal; bypassCache: Boolean; const callback: ICefDownloadImageCallback);
Public procedure Print;
Public procedure PrintToPdf(const path: ustring; settings: PCefPdfPrintSettings; const callback: ICefPdfPrintCallback);
Public procedure PrintToPdfProc(const path: ustring; settings: PCefPdfPrintSettings; const callback: TOnPdfPrintFinishedProc);
Public procedure Find(const searchText: ustring; forward_, matchCase, findNext: Boolean);
Public procedure StopFinding(clearSelection: Boolean);
Public procedure ShowDevTools(const windowInfo: PCefWindowInfo; const client: ICefClient; const settings: PCefBrowserSettings; inspectElementAt: PCefPoint);
Public procedure CloseDevTools;
Public function HasDevTools: Boolean;
Public function SendDevToolsMessage(const message_: ustring): boolean;
Public function ExecuteDevToolsMethod(message_id: integer; const method: ustring; const params: ICefDictionaryValue): Integer;
Public function AddDevToolsMessageObserver(const observer: ICefDevToolsMessageObserver): ICefRegistration;
Public procedure GetNavigationEntries(const visitor: ICefNavigationEntryVisitor; currentOnly: Boolean);
Public procedure GetNavigationEntriesProc(const proc: TCefNavigationEntryVisitorProc; currentOnly: Boolean);
Public procedure ReplaceMisspelling(const word: ustring);
Public procedure AddWordToDictionary(const word: ustring);
Public function IsWindowRenderingDisabled: Boolean;
Public procedure WasResized;
Public procedure WasHidden(hidden: Boolean);
Public procedure NotifyScreenInfoChanged;
Public procedure Invalidate(kind: TCefPaintElementType);
Public procedure SendExternalBeginFrame;
Public procedure SendKeyEvent(const event: PCefKeyEvent);
Public procedure SendMouseClickEvent(const event: PCefMouseEvent; type_: TCefMouseButtonType; mouseUp: Boolean; clickCount: Integer);
Public procedure SendMouseMoveEvent(const event: PCefMouseEvent; mouseLeave: Boolean);
Public procedure SendMouseWheelEvent(const event: PCefMouseEvent; deltaX, deltaY: Integer);
Public procedure SendTouchEvent(const event: PCefTouchEvent);
Public procedure SendCaptureLostEvent;
Public procedure NotifyMoveOrResizeStarted;
Public function GetWindowlessFrameRate: Integer;
Public procedure SetWindowlessFrameRate(frameRate: Integer);
Public procedure IMESetComposition(const text: ustring; const underlines : TCefCompositionUnderlineDynArray; const replacement_range, selection_range : PCefRange);
Public procedure IMECommitText(const text: ustring; const replacement_range : PCefRange; relative_cursor_pos : integer);
Public procedure IMEFinishComposingText(keep_selection : boolean);
Public procedure IMECancelComposition;
Public procedure DragTargetDragEnter(const dragData: ICefDragData; const event: PCefMouseEvent; allowedOps: TCefDragOperations);
Public procedure DragTargetDragOver(const event: PCefMouseEvent; allowedOps: TCefDragOperations);
Public procedure DragTargetDragLeave;
Public procedure DragTargetDrop(const event: PCefMouseEvent);
Public procedure DragSourceEndedAt(x, y: Integer; op: TCefDragOperation);
Public procedure DragSourceSystemDragEnded;
Public function GetVisibleNavigationEntry: ICefNavigationEntry;
Public procedure SetAccessibilityState(accessibilityState: TCefState);
Public procedure SetAutoResizeEnabled(enabled: boolean; const min_size, max_size: PCefSize);
Public function GetExtension: ICefExtension;
Public function IsBackgroundHost: boolean;
Public procedure SetAudioMuted(mute: boolean);
Public function IsAudioMuted: boolean;
Public function IsFullscreen: boolean;
Public procedure ExitFullscreen(will_cause_resize: boolean);
Public function CanExecuteChromeCommand(command_id: integer): boolean;
Public procedure ExecuteChromeCommand(command_id: integer; disposition: TCefWindowOpenDisposition);
Public function IsRenderProcessUnresponsive: boolean;
Public function GetRuntimeStyle: TCefRuntimeStyle;

Properties

Public property Browser : ICefBrowser read GetBrowser;
Public property WindowHandle : TCefWindowHandle read GetWindowHandle;
Public property OpenerWindowHandle : TCefWindowHandle read GetOpenerWindowHandle;
Public property ZoomLevel : Double read GetZoomLevel write SetZoomLevel;
Public property DefaultZoomLevel : Double read GetDefaultZoomLevel;
Public property RequestContext : ICefRequestContext read GetRequestContext;
Public property VisibleNavigationEntry : ICefNavigationEntry read GetVisibleNavigationEntry;
Public property RuntimeStyle : TCefRuntimeStyle read GetRuntimeStyle;

Description

Methods

Public function GetBrowser: ICefBrowser;

Returns the hosted browser object.

Attributes
GUID['{53AE02FF-EF5D-48C3-A43E-069DA9535424}']
Public procedure CloseBrowser(forceClose: Boolean);

Request that the browser close. The JavaScript 'onbeforeunload' event will be fired. If |force_close| is false (0) the event handler, if any, will be allowed to prompt the user and the user can optionally cancel the close. If |force_close| is true (1) the prompt will not be displayed and the close will proceed. Results in a call to ICefLifeSpanHandler.DoClose() if the event handler allows the close or if |force_close| is true (1). See ICefLifeSpanHandler.DoClose() documentation for additional usage information.

Public function TryCloseBrowser: Boolean;

Helper for closing a browser. Call this function from the top-level window close handler (if any). Internally this calls CloseBrowser(false (0)) if the close has not yet been initiated. This function returns false (0) while the close is pending and true (1) after the close has completed. See CloseBrowser() and ICefLifeSpanHandler.DoClose() documentation for additional usage information. This function must be called on the browser process UI thread.

Public procedure SetFocus(focus: Boolean);

Set whether the browser is focused.

Public function GetWindowHandle: TCefWindowHandle;

Retrieve the window handle (if any) for this browser. If this browser is wrapped in a ICefBrowserView this function should be called on the browser process UI thread and it will return the handle for the top-level native window.

Public function GetOpenerWindowHandle: TCefWindowHandle;

Retrieve the window handle (if any) of the browser that opened this browser. Will return NULL for non-popup browsers or if this browser is wrapped in a ICefBrowserView. This function can be used in combination with custom handling of modal windows.

Public function HasView: Boolean;

Returns true (1) if this browser is wrapped in a ICefBrowserView.

Public function GetClient: ICefClient;

Returns the client for this browser.

Public function GetRequestContext: ICefRequestContext;

Returns the request context for this browser.

Public function CanZoom(command: TCefZoomCommand): boolean;

Returns true (1) if this browser can execute the specified zoom command. This function can only be called on the UI thread.

Public procedure Zoom(command: TCefZoomCommand);

Execute a zoom command in this browser. If called on the UI thread the change will be applied immediately. Otherwise, the change will be applied asynchronously on the UI thread.

Public function GetDefaultZoomLevel: Double;

Get the default zoom level. This value will be 0.0 by default but can be configured with the Chrome runtime. This function can only be called on the UI thread.

Public function GetZoomLevel: Double;

Get the current zoom level. This function can only be called on the UI thread.

Public procedure SetZoomLevel(const zoomLevel: Double);

Change the zoom level to the specified value. Specify 0.0 to reset the zoom level to the default. If called on the UI thread the change will be applied immediately. Otherwise, the change will be applied asynchronously on the UI thread.

Public procedure RunFileDialog(mode: TCefFileDialogMode; const title, defaultFilePath: ustring; const acceptFilters: TStrings; const callback: ICefRunFileDialogCallback);

Call to run a file chooser dialog. Only a single file chooser dialog may be pending at any given time. |mode| represents the type of dialog to display. |title| to the title to be used for the dialog and may be NULL to show the default title ("Open" or "Save" depending on the mode). |default_file_path| is the path with optional directory and/or file name component that will be initially selected in the dialog. |accept_filters| are used to restrict the selectable file types and may any combination of (a) valid lower-cased MIME types (e.g. "text/*" or "image/*"), (b) individual file extensions (e.g. ".txt" or ".png"), or (c) combined description and file extension delimited using "|" and ";" (e.g. "Image Types|.png;.gif;.jpg"). |callback| will be executed after the dialog is dismissed or immediately if another dialog is already pending. The dialog will be initiated asynchronously on the UI thread.

Public procedure RunFileDialogProc(mode: TCefFileDialogMode; const title, defaultFilePath: ustring; const acceptFilters: TStrings; const callback: TCefRunFileDialogCallbackProc);

Call to run a file chooser dialog. Only a single file chooser dialog may be pending at any given time. |mode| represents the type of dialog to display. |title| to the title to be used for the dialog and may be NULL to show the default title ("Open" or "Save" depending on the mode). |default_file_path| is the path with optional directory and/or file name component that will be initially selected in the dialog. |accept_filters| are used to restrict the selectable file types and may any combination of (a) valid lower-cased MIME types (e.g. "text/*" or "image/*"), (b) individual file extensions (e.g. ".txt" or ".png"), or (c) combined description and file extension delimited using "|" and ";" (e.g. "Image Types|.png;.gif;.jpg"). |callback| will be executed after the dialog is dismissed or immediately if another dialog is already pending. The dialog will be initiated asynchronously on the UI thread.

Public procedure StartDownload(const url: ustring);

Download the file at |url| using ICefDownloadHandler.

Public procedure DownloadImage(const imageUrl: ustring; isFavicon: Boolean; maxImageSize: cardinal; bypassCache: Boolean; const callback: ICefDownloadImageCallback);

Download |image_url| and execute |callback| on completion with the images received from the renderer. If |is_favicon| is true (1) then cookies are not sent and not accepted during download. Images with density independent pixel (DIP) sizes larger than |max_image_size| are filtered out from the image results. Versions of the image at different scale factors may be downloaded up to the maximum scale factor supported by the system. If there are no image results <= |max_image_size| then the smallest image is resized to |max_image_size| and is the only result. A |max_image_size| of 0 means unlimited. If |bypass_cache| is true (1) then |image_url| is requested from the server even if it is present in the browser cache.

Public procedure Print;

Print the current browser contents.

Public procedure PrintToPdf(const path: ustring; settings: PCefPdfPrintSettings; const callback: ICefPdfPrintCallback);

Print the current browser contents to the PDF file specified by |path| and execute |callback| on completion. The caller is responsible for deleting |path| when done. For PDF printing to work on Linux you must implement the ICefPrintHandler.GetPdfPaperSize function.

Public procedure PrintToPdfProc(const path: ustring; settings: PCefPdfPrintSettings; const callback: TOnPdfPrintFinishedProc);

Print the current browser contents to the PDF file specified by |path| and execute |callback| on completion. The caller is responsible for deleting |path| when done. For PDF printing to work on Linux you must implement the ICefPrintHandler.GetPdfPaperSize function.

Public procedure Find(const searchText: ustring; forward_, matchCase, findNext: Boolean);

Search for |searchText|. |forward| indicates whether to search forward or backward within the page. |matchCase| indicates whether the search should be case-sensitive. |findNext| indicates whether this is the first request or a follow-up. The search will be restarted if |searchText| or |matchCase| change. The search will be stopped if |searchText| is NULL. The ICefFindHandler instance, if any, returned via ICefClient.GetFindHandler will be called to report find results.

Public procedure StopFinding(clearSelection: Boolean);

Cancel all searches that are currently going on.

Public procedure ShowDevTools(const windowInfo: PCefWindowInfo; const client: ICefClient; const settings: PCefBrowserSettings; inspectElementAt: PCefPoint);

Open developer tools (DevTools) in its own browser. The DevTools browser will remain associated with this browser. If the DevTools browser is already open then it will be focused, in which case the |windowInfo|, |client| and |settings| parameters will be ignored. If |inspectElementAt| is non-NULL then the element at the specified (x,y) location will be inspected. The |windowInfo| parameter will be ignored if this browser is wrapped in a ICefBrowserView.

Public procedure CloseDevTools;

Explicitly close the associated DevTools browser, if any.

Public function HasDevTools: Boolean;

Returns true (1) if this browser currently has an associated DevTools browser. Must be called on the browser process UI thread.

Public function SendDevToolsMessage(const message_: ustring): boolean;

Send a function call message over the DevTools protocol. |message| must be a UTF8-encoded JSON dictionary that contains "id" (int), "function" (string) and "params" (dictionary, optional) values. See the DevTools protocol documentation at https://chromedevtools.github.io/devtools- protocol/ for details of supported functions and the expected "params" dictionary contents. |message| will be copied if necessary. This function will return true (1) if called on the UI thread and the message was successfully submitted for validation, otherwise false (0). Validation will be applied asynchronously and any messages that fail due to formatting errors or missing parameters may be discarded without notification. Prefer ExecuteDevToolsMethod if a more structured approach to message formatting is desired.

Every valid function call will result in an asynchronous function result or error message that references the sent message "id". Event messages are received while notifications are enabled (for example, between function calls for "Page.enable" and "Page.disable"). All received messages will be delivered to the observer(s) registered with AddDevToolsMessageObserver. See ICefDevToolsMessageObserver.OnDevToolsMessage documentation for details of received message contents.

Usage of the SendDevToolsMessage, ExecuteDevToolsMethod and AddDevToolsMessageObserver functions does not require an active DevTools front-end or remote-debugging session. Other active DevTools sessions will continue to function independently. However, any modification of global browser state by one session may not be reflected in the UI of other sessions.

Communication with the DevTools front-end (when displayed) can be logged for development purposes by passing the `–devtools-protocol-log- file=<path>` command-line flag.

Public function ExecuteDevToolsMethod(message_id: integer; const method: ustring; const params: ICefDictionaryValue): Integer;

Execute a function call over the DevTools protocol. This is a more structured version of SendDevToolsMessage. |message_id| is an incremental number that uniquely identifies the message (pass 0 to have the next number assigned automatically based on previous values). |function| is the function name. |params| are the function parameters, which may be NULL. See the DevTools protocol documentation (linked above) for details of supported functions and the expected |params| dictionary contents. This function will return the assigned message ID if called on the UI thread and the message was successfully submitted for validation, otherwise 0. See the SendDevToolsMessage documentation for additional usage information.

Public function AddDevToolsMessageObserver(const observer: ICefDevToolsMessageObserver): ICefRegistration;

Add an observer for DevTools protocol messages (function results and events). The observer will remain registered until the returned Registration object is destroyed. See the SendDevToolsMessage documentation for additional usage information.

Public procedure GetNavigationEntries(const visitor: ICefNavigationEntryVisitor; currentOnly: Boolean);

Retrieve a snapshot of current navigation entries as values sent to the specified visitor. If |current_only| is true (1) only the current navigation entry will be sent, otherwise all navigation entries will be sent.

Public procedure GetNavigationEntriesProc(const proc: TCefNavigationEntryVisitorProc; currentOnly: Boolean);

Retrieve a snapshot of current navigation entries as values sent to the specified visitor. If |current_only| is true (1) only the current navigation entry will be sent, otherwise all navigation entries will be sent.

Public procedure ReplaceMisspelling(const word: ustring);

If a misspelled word is currently selected in an editable node calling this function will replace it with the specified |word|.

Public procedure AddWordToDictionary(const word: ustring);

Add the specified |word| to the spelling dictionary.

Public function IsWindowRenderingDisabled: Boolean;

Returns true (1) if window rendering is disabled.

Public procedure WasResized;

Notify the browser that the widget has been resized. The browser will first call ICefRenderHandler.GetViewRect to get the new size and then call ICefRenderHandler.OnPaint asynchronously with the updated regions. This function is only used when window rendering is disabled.

Public procedure WasHidden(hidden: Boolean);

Notify the browser that it has been hidden or shown. Layouting and ICefRenderHandler.OnPaint notification will stop when the browser is hidden. This function is only used when window rendering is disabled.

Public procedure NotifyScreenInfoChanged;

Send a notification to the browser that the screen info has changed. The browser will then call ICefRenderHandler.GetScreenInfo to update the screen information with the new values. This simulates moving the webview window from one display to another, or changing the properties of the current display. This function is only used when window rendering is disabled.

Public procedure Invalidate(kind: TCefPaintElementType);

Invalidate the view. The browser will call ICefRenderHandler.OnPaint asynchronously. This function is only used when window rendering is disabled.

Public procedure SendExternalBeginFrame;

Issue a BeginFrame request to Chromium. Only valid when TCefWindowInfo.external_begin_frame_enabled is set to true (1).

Public procedure SendKeyEvent(const event: PCefKeyEvent);

Send a key event to the browser.

Public procedure SendMouseClickEvent(const event: PCefMouseEvent; type_: TCefMouseButtonType; mouseUp: Boolean; clickCount: Integer);

Send a mouse click event to the browser. The |x| and |y| coordinates are relative to the upper-left corner of the view.

Public procedure SendMouseMoveEvent(const event: PCefMouseEvent; mouseLeave: Boolean);

Send a mouse move event to the browser. The |x| and |y| coordinates are relative to the upper-left corner of the view.

Public procedure SendMouseWheelEvent(const event: PCefMouseEvent; deltaX, deltaY: Integer);

Send a mouse wheel event to the browser. The |x| and |y| coordinates are relative to the upper-left corner of the view. The |deltaX| and |deltaY| values represent the movement delta in the X and Y directions respectively. In order to scroll inside select popups with window rendering disabled ICefRenderHandler.GetScreenPoint should be implemented properly.

Public procedure SendTouchEvent(const event: PCefTouchEvent);

Send a touch event to the browser for a windowless browser.

Public procedure SendCaptureLostEvent;

Send a capture lost event to the browser.

Public procedure NotifyMoveOrResizeStarted;

Notify the browser that the window hosting it is about to be moved or resized. This function is only used on Windows and Linux.

Public function GetWindowlessFrameRate: Integer;

Returns the maximum rate in frames per second (fps) that ICefRenderHandler.OnPaint will be called for a windowless browser. The actual fps may be lower if the browser cannot generate frames at the requested rate. The minimum value is 1 and the maximum value is 60 (default 30). This function can only be called on the UI thread.

Public procedure SetWindowlessFrameRate(frameRate: Integer);

Set the maximum rate in frames per second (fps) that ICefRenderHandler.OnPaint will be called for a windowless browser. The actual fps may be lower if the browser cannot generate frames at the requested rate. The minimum value is 1 and the maximum value is 60 (default 30). Can also be set at browser creation via TCefBrowserSettings.windowless_frame_rate.

Public procedure IMESetComposition(const text: ustring; const underlines : TCefCompositionUnderlineDynArray; const replacement_range, selection_range : PCefRange);

Begins a new composition or updates the existing composition. Blink has a special node (a composition node) that allows the input function to change text without affecting other DOM nodes. |text| is the optional text that will be inserted into the composition node. |underlines| is an optional set of ranges that will be underlined in the resulting text. |replacement_range| is an optional range of the existing text that will be replaced. |selection_range| is an optional range of the resulting text that will be selected after insertion or replacement. The |replacement_range| value is only used on OS X.

This function may be called multiple times as the composition changes. When the client is done making changes the composition should either be canceled or completed. To cancel the composition call ImeCancelComposition. To complete the composition call either ImeCommitText or ImeFinishComposingText. Completion is usually signaled when:

1. The client receives a WM_IME_COMPOSITION message with a GCS_RESULTSTR flag (on Windows), or; 2. The client receives a "commit" signal of GtkIMContext (on Linux), or; 3. insertText of NSTextInput is called (on Mac).

This function is only used when window rendering is disabled.

Public procedure IMECommitText(const text: ustring; const replacement_range : PCefRange; relative_cursor_pos : integer);

Completes the existing composition by optionally inserting the specified |text| into the composition node. |replacement_range| is an optional range of the existing text that will be replaced. |relative_cursor_pos| is where the cursor will be positioned relative to the current cursor position. See comments on ImeSetComposition for usage. The |replacement_range| and |relative_cursor_pos| values are only used on OS X. This function is only used when window rendering is disabled.

Public procedure IMEFinishComposingText(keep_selection : boolean);

Completes the existing composition by applying the current composition node contents. If |keep_selection| is false (0) the current selection, if any, will be discarded. See comments on ImeSetComposition for usage. This function is only used when window rendering is disabled.

Public procedure IMECancelComposition;

Cancels the existing composition and discards the composition node contents without applying them. See comments on ImeSetComposition for usage. This function is only used when window rendering is disabled.

Public procedure DragTargetDragEnter(const dragData: ICefDragData; const event: PCefMouseEvent; allowedOps: TCefDragOperations);

Call this function when the user drags the mouse into the web view (before calling DragTargetDragOver/DragTargetLeave/DragTargetDrop). |drag_data| should not contain file contents as this type of data is not allowed to be dragged into the web view. File contents can be removed using ICefDragData.ResetFileContents (for example, if |drag_data| comes from ICefRenderHandler.StartDragging). This function is only used when window rendering is disabled.

Public procedure DragTargetDragOver(const event: PCefMouseEvent; allowedOps: TCefDragOperations);

Call this function each time the mouse is moved across the web view during a drag operation (after calling DragTargetDragEnter and before calling DragTargetDragLeave/DragTargetDrop). This function is only used when window rendering is disabled.

Public procedure DragTargetDragLeave;

Call this function when the user drags the mouse out of the web view (after calling DragTargetDragEnter). This function is only used when window rendering is disabled.

Public procedure DragTargetDrop(const event: PCefMouseEvent);

Call this function when the user completes the drag operation by dropping the object onto the web view (after calling DragTargetDragEnter). The object being dropped is |drag_data|, given as an argument to the previous DragTargetDragEnter call. This function is only used when window rendering is disabled.

Public procedure DragSourceEndedAt(x, y: Integer; op: TCefDragOperation);

Call this function when the drag operation started by a ICefRenderHandler.StartDragging call has ended either in a drop or by being cancelled. |x| and |y| are mouse coordinates relative to the upper- left corner of the view. If the web view is both the drag source and the drag target then all DragTarget* functions should be called before DragSource* mthods. This function is only used when window rendering is disabled.

Public procedure DragSourceSystemDragEnded;

Call this function when the drag operation started by a ICefRenderHandler.StartDragging call has completed. This function may be called immediately without first calling DragSourceEndedAt to cancel a drag operation. If the web view is both the drag source and the drag target then all DragTarget* functions should be called before DragSource* mthods. This function is only used when window rendering is disabled.

Public function GetVisibleNavigationEntry: ICefNavigationEntry;

Returns the current visible navigation entry for this browser. This function can only be called on the UI thread.

Public procedure SetAccessibilityState(accessibilityState: TCefState);

Set accessibility state for all frames. |accessibility_state| may be default, enabled or disabled. If |accessibility_state| is STATE_DEFAULT then accessibility will be disabled by default and the state may be further controlled with the "force-renderer-accessibility" and "disable- renderer-accessibility" command-line switches. If |accessibility_state| is STATE_ENABLED then accessibility will be enabled. If |accessibility_state| is STATE_DISABLED then accessibility will be completely disabled.

For windowed browsers accessibility will be enabled in Complete mode (which corresponds to kAccessibilityModeComplete in Chromium). In this mode all platform accessibility objects will be created and managed by Chromium's internal implementation. The client needs only to detect the screen reader and call this function appropriately. For example, on macOS the client can handle the @"AXEnhancedUserStructure" accessibility attribute to detect VoiceOver state changes and on Windows the client can handle WM_GETOBJECT with OBJID_CLIENT to detect accessibility readers.

For windowless browsers accessibility will be enabled in TreeOnly mode (which corresponds to kAccessibilityModeWebContentsOnly in Chromium). In this mode renderer accessibility is enabled, the full tree is computed, and events are passed to CefAccessibiltyHandler, but platform accessibility objects are not created. The client may implement platform accessibility objects using CefAccessibiltyHandler callbacks if desired.

Public procedure SetAutoResizeEnabled(enabled: boolean; const min_size, max_size: PCefSize);

Enable notifications of auto resize via ICefDisplayHandler.OnAutoResize. Notifications are disabled by default. |min_size| and |max_size| define the range of allowed sizes.

Public function GetExtension: ICefExtension;

Returns the extension hosted in this browser or NULL if no extension is hosted. See ICefRequestContext.LoadExtension for details.

WARNING: This API is deprecated and will be removed in ~M127.

Public function IsBackgroundHost: boolean;

Returns true (1) if this browser is hosting an extension background script. Background hosts do not have a window and are not displayable. See ICefRequestContext.LoadExtension for details.

WARNING: This API is deprecated and will be removed in ~M127.

Public procedure SetAudioMuted(mute: boolean);

Set whether the browser's audio is muted.

Public function IsAudioMuted: boolean;

Returns true (1) if the browser's audio is muted. This function can only be called on the UI thread.

Public function IsFullscreen: boolean;

Returns true (1) if the renderer is currently in browser fullscreen. This differs from window fullscreen in that browser fullscreen is entered using the JavaScript Fullscreen API and modifies CSS attributes such as the ::backdrop pseudo-element and :fullscreen pseudo-structure. This function can only be called on the UI thread.

Public procedure ExitFullscreen(will_cause_resize: boolean);

Requests the renderer to exit browser fullscreen. In most cases exiting window fullscreen should also exit browser fullscreen. With the Alloy runtime this function should be called in response to a user action such as clicking the green traffic light button on MacOS (ICefWindowDelegate.OnWindowFullscreenTransition callback) or pressing the "ESC" key (ICefKeyboardHandler.OnPreKeyEvent callback). With the Chrome runtime these standard exit actions are handled internally but new/additional user actions can use this function. Set |will_cause_resize| to true (1) if exiting browser fullscreen will cause a view resize.

Public function CanExecuteChromeCommand(command_id: integer): boolean;

Returns true (1) if a Chrome command is supported and enabled. Values for |command_id| can be found in the cef_command_ids.h file. This function can only be called on the UI thread. Only used with the Chrome runtime.

See the IDC_* constants in uCEFConstants.pas for all the |command_id| values.

<see href="https://source.chromium.org/chromium/chromium/src/+/main:chrome/app/chrome_command_ids.h">The command_id values are also available in chrome/app/chrome_command_ids.h)

Public procedure ExecuteChromeCommand(command_id: integer; disposition: TCefWindowOpenDisposition);

Execute a Chrome command. Values for |command_id| can be found in the cef_command_ids.h file. |disposition| provides information about the intended command target. Only used with the Chrome runtime.

See the IDC_* constants in uCEFConstants.pas for all the |command_id| values.

<see href="https://source.chromium.org/chromium/chromium/src/+/main:chrome/app/chrome_command_ids.h">The command_id values are also available in chrome/app/chrome_command_ids.h)

Public function IsRenderProcessUnresponsive: boolean;

Returns true (1) if the render process associated with this browser is currently unresponsive as indicated by a lack of input event processing for at least 15 seconds. To receive associated state change notifications and optionally handle an unresponsive render process implement ICefRequestHandler.OnRenderProcessUnresponsive.

This function can only be called on the CEF UI thread.

Public function GetRuntimeStyle: TCefRuntimeStyle;

Returns the runtime style for this browser (ALLOY or CHROME). See TCefRuntimeStyle documentation for details.

This function can only be called on the CEF UI thread.

Properties

Public property Browser : ICefBrowser read GetBrowser;

Returns the hosted browser object.

Public property WindowHandle : TCefWindowHandle read GetWindowHandle;

Retrieve the window handle (if any) for this browser. If this browser is wrapped in a ICefBrowserView this function should be called on the browser process UI thread and it will return the handle for the top-level native window.

Public property OpenerWindowHandle : TCefWindowHandle read GetOpenerWindowHandle;

Retrieve the window handle (if any) of the browser that opened this browser. Will return NULL for non-popup browsers or if this browser is wrapped in a ICefBrowserView. This function can be used in combination with custom handling of modal windows.

Public property ZoomLevel : Double read GetZoomLevel write SetZoomLevel;

Get the current zoom level. The default zoom level is 0.0. This function can only be called on the UI thread.

Public property DefaultZoomLevel : Double read GetDefaultZoomLevel;

Get the default zoom level. This value will be 0.0 by default but can be configured with the Chrome runtime.

This property can only be used on the CEF UI thread.

Public property RequestContext : ICefRequestContext read GetRequestContext;

Returns the request context for this browser.

Public property VisibleNavigationEntry : ICefNavigationEntry read GetVisibleNavigationEntry;

Retrieve a snapshot of current navigation entries as values sent to the specified visitor. If |current_only| is true (1) only the current navigation entry will be sent, otherwise all navigation entries will be sent.

Public property RuntimeStyle : TCefRuntimeStyle read GetRuntimeStyle;

Returns the runtime style for this browser (ALLOY or CHROME). See TCefRuntimeStyle documentation for details.

This property can only be used on the CEF UI thread.


Generated by PasDoc 0.16.0-snapshot.