type ICefCommandHandler = interface(ICefBaseRefCounted)
Implement this interface to handle events related to commands. The functions of this interface will be called on the UI thread.
UNKNOWN
<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/cef_command_handler_capi.h">CEF source file: /include/capi/cef_command_handler_capi.h (cef_command_handler_t))
![]() |
function OnChromeCommand(const browser: ICefBrowser; command_id: integer; disposition: TCefWindowOpenDisposition): boolean; |
![]() |
function OnIsChromeAppMenuItemVisible(const browser: ICefBrowser; command_id: integer): boolean; |
![]() |
function OnIsChromeAppMenuItemEnabled(const browser: ICefBrowser; command_id: integer): boolean; |
![]() |
function OnIsChromePageActionIconVisible(icon_type: TCefChromePageActionIconType): boolean; |
![]() |
function OnIsChromeToolbarButtonVisible(button_type: TCefChromeToolbarButtonType): boolean; |
![]() |
procedure RemoveReferences; |
![]() |
function OnChromeCommand(const browser: ICefBrowser; command_id: integer; disposition: TCefWindowOpenDisposition): boolean; |
Called to execute a Chrome command triggered via menu selection or keyboard shortcut. Use the cef_id_for_command_id_name() function for version-safe mapping of command IDC names from cef_command_ids.h to version-specific numerical |command_id| values. |disposition| provides information about the intended command target. Return true (1) if the command was handled or false (0) for the default implementation. For context menu commands this will be called after ICefContextMenuHandler.OnContextMenuCommand. Only used with Chrome style. Attributes
|
![]() |
function OnIsChromeAppMenuItemVisible(const browser: ICefBrowser; command_id: integer): boolean; |
Called to check if a Chrome app menu item should be visible. Use the cef_id_for_command_id_name() function for version-safe mapping of command IDC names from cef_command_ids.h to version-specific numerical |command_id| values. Only called for menu items that would be visible by default. Only used with Chrome style. |
![]() |
function OnIsChromeAppMenuItemEnabled(const browser: ICefBrowser; command_id: integer): boolean; |
Called to check if a Chrome app menu item should be enabled. Use the cef_id_for_command_id_name() function for version-safe mapping of command IDC names from cef_command_ids.h to version-specific numerical |command_id| values. Only called for menu items that would be enabled by default. Only used with Chrome style. |
![]() |
function OnIsChromePageActionIconVisible(icon_type: TCefChromePageActionIconType): boolean; |
Called during browser creation to check if a Chrome page action icon should be visible. Only called for icons that would be visible by default. Only used with Chrome style. |
![]() |
function OnIsChromeToolbarButtonVisible(button_type: TCefChromeToolbarButtonType): boolean; |
Called during browser creation to check if a Chrome toolbar button should be visible. Only called for buttons that would be visible by default. Only used with Chrome style. |
![]() |
procedure RemoveReferences; |
Custom procedure to clear all references. |