2020-05-05 18:10:33 +02:00
|
|
|
unit uCEFWindowComponent;
|
|
|
|
|
|
|
|
{$IFDEF FPC}
|
|
|
|
{$MODE OBJFPC}{$H+}
|
|
|
|
{$ENDIF}
|
|
|
|
|
|
|
|
{$I cef.inc}
|
|
|
|
|
2022-02-19 18:56:41 +01:00
|
|
|
{$IFNDEF TARGET_64BITS}{$ALIGN ON}{$ENDIF}
|
|
|
|
{$MINENUMSIZE 4}
|
|
|
|
|
2020-05-05 18:10:33 +02:00
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
|
|
|
{$IFDEF DELPHI16_UP}
|
|
|
|
{$IFDEF MSWINDOWS}WinApi.Windows,{$ENDIF} System.Classes,
|
|
|
|
{$ELSE}
|
|
|
|
{$IFDEF MSWINDOWS}Windows,{$ENDIF} Classes,
|
|
|
|
{$IFDEF FPC}
|
|
|
|
LCLProc, LCLType, LCLIntf, LResources, InterfaceBase,
|
|
|
|
{$ENDIF}
|
|
|
|
{$ENDIF}
|
2022-10-14 16:35:50 +02:00
|
|
|
uCEFTypes, uCEFInterfaces, uCEFConstants, uCEFViewsFrameworkEvents, uCEFPanelComponent;
|
2020-05-05 18:10:33 +02:00
|
|
|
|
|
|
|
type
|
2022-10-14 16:35:50 +02:00
|
|
|
{$IFNDEF FPC}{$IFDEF DELPHI16_UP}[ComponentPlatformsAttribute(pfidWindows or pfidOSX or pfidLinux)]{$ENDIF}{$ENDIF}
|
2020-05-05 18:10:33 +02:00
|
|
|
TCEFWindowComponent = class(TCEFPanelComponent, ICefWindowDelegateEvents)
|
|
|
|
protected
|
2023-04-21 16:05:10 +02:00
|
|
|
FWindow : ICefWindow;
|
|
|
|
FWindowDlg : ICefWindowDelegate;
|
2020-05-05 18:10:33 +02:00
|
|
|
|
|
|
|
// ICefWindowDelegateEvents
|
2023-04-21 16:05:10 +02:00
|
|
|
FOnWindowCreated : TOnWindowCreatedEvent;
|
|
|
|
FOnWindowClosing : TOnWindowClosingEvent;
|
|
|
|
FOnWindowDestroyed : TOnWindowDestroyedEvent;
|
|
|
|
FOnWindowActivationChanged : TOnWindowActivationChangedEvent;
|
|
|
|
FOnWindowBoundsChanged : TOnWindowBoundsChangedEvent;
|
|
|
|
FOnGetParentWindow : TOnGetParentWindowEvent;
|
2023-07-30 18:47:35 +02:00
|
|
|
FOnIsWindowModalDialog : TOnIsWindowModalDialogEvent;
|
2023-04-21 16:05:10 +02:00
|
|
|
FOnGetInitialBounds : TOnGetInitialBoundsEvent;
|
|
|
|
FOnGetInitialShowState : TOnGetInitialShowStateEvent;
|
|
|
|
FOnIsFrameless : TOnIsFramelessEvent;
|
|
|
|
FOnWithStandardWindowButtons : TOnWithStandardWindowButtonsEvent;
|
|
|
|
FOnGetTitlebarHeight : TOnGetTitlebarHeightEvent;
|
|
|
|
FOnCanResize : TOnCanResizeEvent;
|
|
|
|
FOnCanMaximize : TOnCanMaximizeEvent;
|
|
|
|
FOnCanMinimize : TOnCanMinimizeEvent;
|
|
|
|
FOnCanClose : TOnCanCloseEvent;
|
|
|
|
FOnAccelerator : TOnAcceleratorEvent;
|
|
|
|
FOnKeyEvent : TOnWindowKeyEventEvent;
|
|
|
|
FOnWindowFullscreenTransition : TOnWindowFullscreenTransitionEvent;
|
2020-05-05 18:10:33 +02:00
|
|
|
|
|
|
|
procedure DestroyView; override;
|
|
|
|
procedure Initialize; override;
|
|
|
|
|
|
|
|
function GetInitialized : boolean; override;
|
|
|
|
function GetAsView : ICefView; override;
|
|
|
|
function GetAsPanel : ICefPanel; override;
|
|
|
|
function GetAsWindow : ICefWindow; override;
|
|
|
|
function GetIsClosed : boolean;
|
|
|
|
function GetIsActive : boolean;
|
|
|
|
function GetIsAlwaysOnTop : boolean;
|
|
|
|
function GetIsMaximized : boolean;
|
|
|
|
function GetIsMinimized : boolean;
|
|
|
|
function GetIsFullscreen : boolean;
|
|
|
|
function GetTitle : ustring;
|
|
|
|
function GetWindowIcon : ICefImage;
|
|
|
|
function GetWindowAppIcon : ICefImage;
|
|
|
|
function GetDisplay : ICefDisplay;
|
|
|
|
function GetClientAreaBoundsInScreen : TCefRect;
|
|
|
|
function GetWindowHandle : TCefWindowHandle;
|
|
|
|
|
|
|
|
procedure SetAlwaysOnTop(on_top: boolean);
|
|
|
|
procedure SetFullscreen(fullscreen: boolean);
|
|
|
|
procedure SetTitle(const title_: ustring);
|
|
|
|
procedure SetWindowIcon(const image: ICefImage);
|
|
|
|
procedure SetWindowAppIcon(const image: ICefImage);
|
|
|
|
|
|
|
|
// ICefWindowDelegateEvents
|
|
|
|
procedure doOnWindowCreated(const window_: ICefWindow);
|
2022-12-16 11:29:15 +01:00
|
|
|
procedure doOnWindowClosing(const window_: ICefWindow);
|
2020-05-05 18:10:33 +02:00
|
|
|
procedure doOnWindowDestroyed(const window_: ICefWindow);
|
2022-05-26 13:08:20 +02:00
|
|
|
procedure doOnWindowActivationChanged(const window_: ICefWindow; active: boolean);
|
2022-12-16 11:29:15 +01:00
|
|
|
procedure doOnWindowBoundsChanged(const window_: ICefWindow; const new_bounds: TCefRect);
|
2020-05-05 18:10:33 +02:00
|
|
|
procedure doOnGetParentWindow(const window_: ICefWindow; var is_menu, can_activate_menu: boolean; var aResult : ICefWindow);
|
2023-07-30 18:47:35 +02:00
|
|
|
procedure doOnIsWindowModalDialog(const window_: ICefWindow; var aResult : boolean);
|
2020-09-10 11:21:39 +02:00
|
|
|
procedure doOnGetInitialBounds(const window_: ICefWindow; var aResult : TCefRect);
|
2021-09-27 12:04:33 +02:00
|
|
|
procedure doOnGetInitialShowState(const window_: ICefWindow; var aResult : TCefShowState);
|
2020-05-05 18:10:33 +02:00
|
|
|
procedure doOnIsFrameless(const window_: ICefWindow; var aResult : boolean);
|
2023-03-10 16:55:57 +01:00
|
|
|
procedure doOnWithStandardWindowButtons(const window_: ICefWindow; var aResult : boolean);
|
|
|
|
procedure doOnGetTitlebarHeight(const window_: ICefWindow; var titlebar_height: Single; var aResult : boolean);
|
2020-05-05 18:10:33 +02:00
|
|
|
procedure doOnCanResize(const window_: ICefWindow; var aResult : boolean);
|
|
|
|
procedure doOnCanMaximize(const window_: ICefWindow; var aResult : boolean);
|
|
|
|
procedure doOnCanMinimize(const window_: ICefWindow; var aResult : boolean);
|
|
|
|
procedure doOnCanClose(const window_: ICefWindow; var aResult : boolean);
|
|
|
|
procedure doOnAccelerator(const window_: ICefWindow; command_id: Integer; var aResult : boolean);
|
|
|
|
procedure doOnKeyEvent(const window_: ICefWindow; const event: TCefKeyEvent; var aResult : boolean);
|
2023-04-21 16:05:10 +02:00
|
|
|
procedure doOnWindowFullscreenTransition(const window_: ICefWindow; is_completed: boolean);
|
2020-05-05 18:10:33 +02:00
|
|
|
|
|
|
|
// ICefViewDelegateEvents
|
|
|
|
procedure doCreateCustomView; override;
|
|
|
|
|
|
|
|
public
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Create a new Window.
|
|
|
|
/// </summary>
|
2020-05-05 18:10:33 +02:00
|
|
|
procedure CreateTopLevelWindow;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Show the Window.
|
|
|
|
/// </summary>
|
2020-05-05 18:10:33 +02:00
|
|
|
procedure Show;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Show the Window as a browser modal dialog relative to |browser_view|. A
|
|
|
|
/// parent Window must be returned via
|
2023-11-16 16:58:47 +01:00
|
|
|
/// ICefWindowDelegate.OnGetParentWindow and |browser_view| must belong
|
2023-09-29 19:23:38 +02:00
|
|
|
/// to that parent Window. While this Window is visible, |browser_view| will
|
|
|
|
/// be disabled while other controls in the parent Window remain enabled.
|
|
|
|
/// Navigating or destroying the |browser_view| will close this Window
|
|
|
|
/// automatically. Alternately, use show() and return true (1) from
|
2023-11-16 16:58:47 +01:00
|
|
|
/// ICefWindowDelegate.OnIsWindowModalDialog for a window modal dialog
|
2023-09-29 19:23:38 +02:00
|
|
|
/// where all controls in the parent Window are disabled.
|
|
|
|
/// </summary>
|
|
|
|
procedure ShowAsBrowserModalDialog(const browser_view: ICefBrowserView);
|
|
|
|
/// <summary>
|
|
|
|
/// Hide the Window.
|
|
|
|
/// </summary>
|
2020-05-05 18:10:33 +02:00
|
|
|
procedure Hide;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Sizes the Window to |size| and centers it in the current display.
|
|
|
|
/// </summary>
|
2020-05-05 18:10:33 +02:00
|
|
|
procedure CenterWindow(const size_: TCefSize);
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Close the Window.
|
|
|
|
/// </summary>
|
2020-05-05 18:10:33 +02:00
|
|
|
procedure Close;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Activate the Window, assuming it already exists and is visible.
|
|
|
|
/// </summary>
|
2020-05-05 18:10:33 +02:00
|
|
|
procedure Activate;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Deactivate the Window, making the next Window in the Z order the active
|
|
|
|
/// Window.
|
|
|
|
/// </summary>
|
2020-05-05 18:10:33 +02:00
|
|
|
procedure Deactivate;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Bring this Window to the top of other Windows in the Windowing system.
|
|
|
|
/// </summary>
|
2020-05-05 18:10:33 +02:00
|
|
|
procedure BringToTop;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Maximize the Window.
|
|
|
|
/// </summary>
|
2020-05-05 18:10:33 +02:00
|
|
|
procedure Maximize;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Minimize the Window.
|
|
|
|
/// </summary>
|
2020-05-05 18:10:33 +02:00
|
|
|
procedure Minimize;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Restore the Window.
|
|
|
|
/// </summary>
|
2020-05-05 18:10:33 +02:00
|
|
|
procedure Restore;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// <para>Add a View that will be overlayed on the Window contents with absolute
|
|
|
|
/// positioning and high z-order. Positioning is controlled by |docking_mode|
|
|
|
|
/// as described below. The returned cef_overlay_controller_t object is used
|
|
|
|
/// to control the overlay. Overlays are hidden by default.</para>
|
|
|
|
/// <para>With CEF_DOCKING_MODE_CUSTOM:</para>
|
|
|
|
/// <code>
|
|
|
|
/// 1. The overlay is initially hidden, sized to |view|'s preferred size,
|
|
|
|
/// and positioned in the top-left corner.
|
|
|
|
/// 2. Optionally change the overlay position and/or size by calling
|
|
|
|
/// CefOverlayController methods.
|
|
|
|
/// 3. Call CefOverlayController::SetVisible(true) to show the overlay.
|
|
|
|
/// 4. The overlay will be automatically re-sized if |view|'s layout
|
|
|
|
/// changes. Optionally change the overlay position and/or size when
|
|
|
|
/// OnLayoutChanged is called on the Window's delegate to indicate a
|
|
|
|
/// change in Window bounds.</code>
|
|
|
|
/// <para>With other docking modes:</para>
|
|
|
|
/// <code>
|
|
|
|
/// 1. The overlay is initially hidden, sized to |view|'s preferred size,
|
|
|
|
/// and positioned based on |docking_mode|.
|
|
|
|
/// 2. Call CefOverlayController::SetVisible(true) to show the overlay.
|
|
|
|
/// 3. The overlay will be automatically re-sized if |view|'s layout changes
|
|
|
|
/// and re-positioned as appropriate when the Window resizes.</code>
|
|
|
|
/// <para>Overlays created by this function will receive a higher z-order then any
|
|
|
|
/// child Views added previously. It is therefore recommended to call this
|
|
|
|
/// function last after all other child Views have been added so that the
|
|
|
|
/// overlay displays as the top-most child of the Window.</para>
|
|
|
|
/// </summary>
|
2021-09-27 12:04:33 +02:00
|
|
|
function AddOverlayView(const view: ICefView; docking_mode: TCefDockingMode): ICefOverlayController;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Show a menu with contents |menu_model|. |screen_point| specifies the menu
|
|
|
|
/// position in screen coordinates. |anchor_position| specifies how the menu
|
|
|
|
/// will be anchored relative to |screen_point|.
|
|
|
|
/// </summary>
|
2020-05-05 18:10:33 +02:00
|
|
|
procedure ShowMenu(const menu_model: ICefMenuModel; const screen_point: TCefPoint; anchor_position : TCefMenuAnchorPosition);
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Cancel the menu that is currently showing, if any.
|
|
|
|
/// </summary>
|
2020-05-05 18:10:33 +02:00
|
|
|
procedure CancelMenu;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Set the regions where mouse events will be intercepted by this Window to
|
|
|
|
/// support drag operations. Call this function with an NULL vector to clear
|
|
|
|
/// the draggable regions. The draggable region bounds should be in window
|
|
|
|
/// coordinates.
|
|
|
|
/// </summary>
|
2020-05-05 18:10:33 +02:00
|
|
|
procedure SetDraggableRegions(regionsCount: NativeUInt; const regions: PCefDraggableRegionArray);
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Simulate a key press. |key_code| is the VKEY_* value from Chromium's
|
|
|
|
/// ui/events/keycodes/keyboard_codes.h header (VK_* values on Windows).
|
|
|
|
/// |event_flags| is some combination of EVENTFLAG_SHIFT_DOWN,
|
|
|
|
/// EVENTFLAG_CONTROL_DOWN and/or EVENTFLAG_ALT_DOWN. This function is exposed
|
|
|
|
/// primarily for testing purposes.
|
|
|
|
/// </summary>
|
2020-05-05 18:10:33 +02:00
|
|
|
procedure SendKeyPress(key_code: Integer; event_flags: cardinal);
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Simulate a mouse move. The mouse cursor will be moved to the specified
|
|
|
|
/// (screen_x, screen_y) position. This function is exposed primarily for
|
|
|
|
/// testing purposes.
|
|
|
|
/// </summary>
|
2020-05-05 18:10:33 +02:00
|
|
|
procedure SendMouseMove(screen_x, screen_y: Integer);
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Simulate mouse down and/or mouse up events. |button| is the mouse button
|
|
|
|
/// type. If |mouse_down| is true (1) a mouse down event will be sent. If
|
|
|
|
/// |mouse_up| is true (1) a mouse up event will be sent. If both are true (1)
|
|
|
|
/// a mouse down event will be sent followed by a mouse up event (equivalent
|
|
|
|
/// to clicking the mouse button). The events will be sent using the current
|
|
|
|
/// cursor position so make sure to call send_mouse_move() first to position
|
|
|
|
/// the mouse. This function is exposed primarily for testing purposes.
|
|
|
|
/// </summary>
|
2020-05-05 18:10:33 +02:00
|
|
|
procedure SendMouseEvents(button: TCefMouseButtonType; mouse_down, mouse_up: boolean);
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
2023-11-16 16:58:47 +01:00
|
|
|
/// <para>Set the keyboard accelerator for the specified |command_id|. |key_code|
|
|
|
|
/// can be any virtual key or character value. Required modifier keys are
|
|
|
|
/// specified by |shift_pressed|, |ctrl_pressed| and/or |alt_pressed|.
|
|
|
|
/// ICefWindowDelegate.OnAccelerator will be called if the keyboard
|
|
|
|
/// combination is triggered while this window has focus.</para>
|
|
|
|
/// <para>The |high_priority| value will be considered if a child ICefBrowserView
|
|
|
|
/// has focus when the keyboard combination is triggered. If |high_priority|
|
|
|
|
/// is true (1) then the key event will not be forwarded to the web content
|
|
|
|
/// (`keydown` event handler) or ICefKeyboardHandler first. If
|
|
|
|
/// |high_priority| is false (0) then the behavior will depend on the
|
|
|
|
/// ICefBrowserView.SetPreferAccelerators configuration.</para>
|
2023-09-29 19:23:38 +02:00
|
|
|
/// </summary>
|
2023-11-16 16:58:47 +01:00
|
|
|
procedure SetAccelerator(command_id, key_code : Integer; shift_pressed, ctrl_pressed, alt_pressed, high_priority: boolean);
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Remove the keyboard accelerator for the specified |command_id|.
|
|
|
|
/// </summary>
|
2020-05-05 18:10:33 +02:00
|
|
|
procedure RemoveAccelerator(command_id: Integer);
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Remove all keyboard accelerators.
|
|
|
|
/// </summary>
|
2020-05-05 18:10:33 +02:00
|
|
|
procedure RemoveAllAccelerators;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Get the Window title.
|
|
|
|
/// </summary>
|
2020-05-05 18:10:33 +02:00
|
|
|
property Title : ustring read GetTitle write SetTitle;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Get the Window icon.
|
|
|
|
/// </summary>
|
2020-05-05 18:10:33 +02:00
|
|
|
property WindowIcon : ICefImage read GetWindowIcon write SetWindowIcon;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Get or set the Window App icon. This should be a larger icon for use in the host
|
|
|
|
/// environment app switching UI. On Windows, this is the ICON_BIG used in
|
|
|
|
/// Alt-Tab list and Windows taskbar. The Window icon will be used by default
|
|
|
|
/// if no Window App icon is specified.
|
|
|
|
/// </summary>
|
2020-05-05 18:10:33 +02:00
|
|
|
property WindowAppIcon : ICefImage read GetWindowAppIcon write SetWindowAppIcon;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Returns the Display that most closely intersects the bounds of this
|
|
|
|
/// Window. May return NULL if this Window is not currently displayed.
|
|
|
|
/// </summary>
|
2020-05-05 18:10:33 +02:00
|
|
|
property Display : ICefDisplay read GetDisplay;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Returns the bounds (size and position) of this Window's client area.
|
|
|
|
/// Position is in screen coordinates.
|
|
|
|
/// </summary>
|
2020-05-05 18:10:33 +02:00
|
|
|
property ClientAreaBoundsInScreen : TCefRect read GetClientAreaBoundsInScreen;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Retrieve the platform window handle for this Window.
|
|
|
|
/// </summary>
|
2020-05-05 18:10:33 +02:00
|
|
|
property WindowHandle : TCefWindowHandle read GetWindowHandle;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Returns true (1) if the Window has been closed.
|
|
|
|
/// </summary>
|
2020-05-05 18:10:33 +02:00
|
|
|
property IsClosed : boolean read GetIsClosed;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Returns whether the Window is the currently active Window.
|
|
|
|
/// </summary>
|
2020-05-05 18:10:33 +02:00
|
|
|
property IsActive : boolean read GetIsActive;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Returns whether the Window has been set to be on top of other Windows in
|
|
|
|
/// the Windowing system.
|
|
|
|
/// </summary>
|
2020-05-05 18:10:33 +02:00
|
|
|
property IsAlwaysOnTop : boolean read GetIsAlwaysOnTop write SetAlwaysOnTop;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Returns true (1) if the Window is fullscreen.
|
|
|
|
/// </summary>
|
2020-05-05 18:10:33 +02:00
|
|
|
property IsFullscreen : boolean read GetIsFullscreen write SetFullscreen;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Returns true (1) if the Window is maximized.
|
|
|
|
/// </summary>
|
2020-05-05 18:10:33 +02:00
|
|
|
property IsMaximized : boolean read GetIsMaximized;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Returns true (1) if the Window is minimized.
|
|
|
|
/// </summary>
|
2020-05-05 18:10:33 +02:00
|
|
|
property IsMinimized : boolean read GetIsMinimized;
|
|
|
|
|
|
|
|
published
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Called when |window| is created.
|
|
|
|
/// </summary>
|
2023-04-21 16:05:10 +02:00
|
|
|
property OnWindowCreated : TOnWindowCreatedEvent read FOnWindowCreated write FOnWindowCreated;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Called when |window| is closing.
|
|
|
|
/// </summary>
|
2023-04-21 16:05:10 +02:00
|
|
|
property OnWindowClosing : TOnWindowClosingEvent read FOnWindowClosing write FOnWindowClosing;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Called when |window| is destroyed. Release all references to |window| and
|
|
|
|
/// do not attempt to execute any functions on |window| after this callback
|
|
|
|
/// returns.
|
|
|
|
/// </summary>
|
2023-04-21 16:05:10 +02:00
|
|
|
property OnWindowDestroyed : TOnWindowDestroyedEvent read FOnWindowDestroyed write FOnWindowDestroyed;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Called when |window| is activated or deactivated.
|
|
|
|
/// </summary>
|
2023-04-21 16:05:10 +02:00
|
|
|
property OnWindowActivationChanged : TOnWindowActivationChangedEvent read FOnWindowActivationChanged write FOnWindowActivationChanged;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Called when |window| bounds have changed. |new_bounds| will be in DIP
|
|
|
|
/// screen coordinates.
|
|
|
|
/// </summary>
|
2023-04-21 16:05:10 +02:00
|
|
|
property OnWindowBoundsChanged : TOnWindowBoundsChangedEvent read FOnWindowBoundsChanged write FOnWindowBoundsChanged;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Return the parent for |window| or NULL if the |window| does not have a
|
|
|
|
/// parent. Windows with parents will not get a taskbar button. Set |is_menu|
|
|
|
|
/// to true (1) if |window| will be displayed as a menu, in which case it will
|
|
|
|
/// not be clipped to the parent window bounds. Set |can_activate_menu| to
|
|
|
|
/// false (0) if |is_menu| is true (1) and |window| should not be activated
|
|
|
|
/// (given keyboard focus) when displayed.
|
|
|
|
/// </summary>
|
2023-04-21 16:05:10 +02:00
|
|
|
property OnGetParentWindow : TOnGetParentWindowEvent read FOnGetParentWindow write FOnGetParentWindow;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Return true (1) if |window| should be created as a window modal dialog.
|
|
|
|
/// Only called when a Window is returned via get_parent_window() with
|
|
|
|
/// |is_menu| set to false (0). All controls in the parent Window will be
|
|
|
|
/// disabled while |window| is visible. This functionality is not supported by
|
|
|
|
/// all Linux window managers. Alternately, use
|
|
|
|
/// ICefWindow.ShowAsBrowserModalDialog() for a browser modal dialog
|
|
|
|
/// that works on all platforms.
|
|
|
|
/// </summary>
|
2023-07-30 18:47:35 +02:00
|
|
|
property OnIsWindowModalDialog : TOnIsWindowModalDialogEvent read FOnIsWindowModalDialog write FOnIsWindowModalDialog;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Return the initial bounds for |window| in density independent pixel (DIP)
|
|
|
|
/// coordinates. If this function returns an NULL CefRect then
|
|
|
|
/// GetPreferredSize() will be called to retrieve the size, and the window
|
|
|
|
/// will be placed on the screen with origin (0,0). This function can be used
|
|
|
|
/// in combination with ICefView.GetBoundsInScreen() to restore the
|
|
|
|
/// previous window bounds.
|
|
|
|
/// </summary>
|
2023-04-21 16:05:10 +02:00
|
|
|
property OnGetInitialBounds : TOnGetInitialBoundsEvent read FOnGetInitialBounds write FOnGetInitialBounds;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Return the initial show state for |window|.
|
|
|
|
/// </summary>
|
2023-04-21 16:05:10 +02:00
|
|
|
property OnGetInitialShowState : TOnGetInitialShowStateEvent read FOnGetInitialShowState write FOnGetInitialShowState;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Return true (1) if |window| should be created without a frame or title
|
|
|
|
/// bar. The window will be resizable if can_resize() returns true (1). Use
|
|
|
|
/// ICefWindow.SetDraggableRegions() to specify draggable regions.
|
|
|
|
/// </summary>
|
2023-04-21 16:05:10 +02:00
|
|
|
property OnIsFrameless : TOnIsFramelessEvent read FOnIsFrameless write FOnIsFrameless;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Return true (1) if |window| should be created with standard window buttons
|
|
|
|
/// like close, minimize and zoom. This function is only supported on macOS.
|
|
|
|
/// </summary>
|
2023-04-21 16:05:10 +02:00
|
|
|
property OnWithStandardWindowButtons : TOnWithStandardWindowButtonsEvent read FOnWithStandardWindowButtons write FOnWithStandardWindowButtons;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Return whether the titlebar height should be overridden, and sets the
|
|
|
|
/// height of the titlebar in |titlebar_height|. On macOS, it can also be used
|
|
|
|
/// to adjust the vertical position of the traffic light buttons in frameless
|
|
|
|
/// windows. The buttons will be positioned halfway down the titlebar at a
|
|
|
|
/// height of |titlebar_height| / 2.
|
|
|
|
/// </summary>
|
2023-04-21 16:05:10 +02:00
|
|
|
property OnGetTitlebarHeight : TOnGetTitlebarHeightEvent read FOnGetTitlebarHeight write FOnGetTitlebarHeight;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Return true (1) if |window| can be resized.
|
|
|
|
/// </summary>
|
2023-04-21 16:05:10 +02:00
|
|
|
property OnCanResize : TOnCanResizeEvent read FOnCanResize write FOnCanResize;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Return true (1) if |window| can be maximized.
|
|
|
|
/// </summary>
|
2023-04-21 16:05:10 +02:00
|
|
|
property OnCanMaximize : TOnCanMaximizeEvent read FOnCanMaximize write FOnCanMaximize;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Return true (1) if |window| can be minimized.
|
|
|
|
/// </summary>
|
2023-04-21 16:05:10 +02:00
|
|
|
property OnCanMinimize : TOnCanMinimizeEvent read FOnCanMinimize write FOnCanMinimize;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Return true (1) if |window| can be closed. This will be called for user-
|
|
|
|
/// initiated window close actions and when ICefWindow.close() is called.
|
|
|
|
/// </summary>
|
2023-04-21 16:05:10 +02:00
|
|
|
property OnCanClose : TOnCanCloseEvent read FOnCanClose write FOnCanClose;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Called when a keyboard accelerator registered with
|
|
|
|
/// ICefWindow.SetAccelerator is triggered. Return true (1) if the
|
|
|
|
/// accelerator was handled or false (0) otherwise.
|
|
|
|
/// </summary>
|
2023-04-21 16:05:10 +02:00
|
|
|
property OnAccelerator : TOnAcceleratorEvent read FOnAccelerator write FOnAccelerator;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Called after all other controls in the window have had a chance to handle
|
|
|
|
/// the event. |event| contains information about the keyboard event. Return
|
|
|
|
/// true (1) if the keyboard event was handled or false (0) otherwise.
|
|
|
|
/// </summary>
|
2023-04-21 16:05:10 +02:00
|
|
|
property OnKeyEvent : TOnWindowKeyEventEvent read FOnKeyEvent write FOnKeyEvent;
|
2023-09-29 19:23:38 +02:00
|
|
|
/// <summary>
|
2023-09-30 20:04:38 +02:00
|
|
|
/// Called when |window| is transitioning to or from fullscreen mode. On MacOS
|
|
|
|
/// the transition occurs asynchronously with |is_competed| set to false (0)
|
|
|
|
/// when the transition starts and true (1) after the transition completes. On
|
|
|
|
/// other platforms the transition occurs synchronously with |is_completed|
|
|
|
|
/// set to true (1) after the transition completes. With the Alloy runtime you
|
|
|
|
/// must also implement ICefDisplayHandler.OnFullscreenModeChange to
|
|
|
|
/// handle fullscreen transitions initiated by browser content.
|
2023-09-29 19:23:38 +02:00
|
|
|
/// </summary>
|
2023-04-21 16:05:10 +02:00
|
|
|
property OnWindowFullscreenTransition : TOnWindowFullscreenTransitionEvent read FOnWindowFullscreenTransition write FOnWindowFullscreenTransition;
|
2020-05-05 18:10:33 +02:00
|
|
|
end;
|
|
|
|
|
|
|
|
{$IFDEF FPC}
|
|
|
|
procedure Register;
|
|
|
|
{$ENDIF}
|
|
|
|
|
|
|
|
// *********************************************************
|
|
|
|
// ********************** ATTENTION ! **********************
|
|
|
|
// *********************************************************
|
|
|
|
// ** **
|
|
|
|
// ** MANY OF THE EVENTS IN CEF4DELPHI COMPONENTS LIKE **
|
|
|
|
// ** TCHROMIUM, TFMXCHROMIUM OR TCEFAPPLICATION ARE **
|
|
|
|
// ** EXECUTED IN A CEF THREAD BY DEFAULT. **
|
|
|
|
// ** **
|
|
|
|
// ** WINDOWS CONTROLS MUST BE CREATED AND DESTROYED IN **
|
|
|
|
// ** THE SAME THREAD TO AVOID ERRORS. **
|
|
|
|
// ** SOME OF THEM RECREATE THE HANDLERS IF THEY ARE **
|
|
|
|
// ** MODIFIED AND CAN CAUSE THE SAME ERRORS. **
|
|
|
|
// ** **
|
|
|
|
// ** DON'T CREATE, MODIFY OR DESTROY WINDOWS CONTROLS **
|
|
|
|
// ** INSIDE THE CEF4DELPHI EVENTS AND USE **
|
|
|
|
// ** SYNCHRONIZATION OBJECTS TO PROTECT VARIABLES AND **
|
|
|
|
// ** FIELDS IF THEY ARE ALSO USED IN THE MAIN THREAD. **
|
|
|
|
// ** **
|
|
|
|
// ** READ THIS FOR MORE INFORMATION : **
|
|
|
|
// ** https://www.briskbard.com/index.php?pageid=cef **
|
|
|
|
// ** **
|
|
|
|
// ** USE OUR FORUMS FOR MORE QUESTIONS : **
|
|
|
|
// ** https://www.briskbard.com/forum/ **
|
|
|
|
// ** **
|
|
|
|
// *********************************************************
|
|
|
|
// *********************************************************
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
uses
|
|
|
|
uCEFMiscFunctions, uCEFWindowDelegate, uCEFWindow, uCEFTask;
|
|
|
|
|
|
|
|
procedure TCEFWindowComponent.Initialize;
|
|
|
|
begin
|
|
|
|
inherited Initialize;
|
|
|
|
|
2023-04-21 16:05:10 +02:00
|
|
|
FWindow := nil;
|
|
|
|
FWindowDlg := nil;
|
|
|
|
FOnWindowCreated := nil;
|
|
|
|
FOnWindowClosing := nil;
|
|
|
|
FOnWindowDestroyed := nil;
|
|
|
|
FOnWindowActivationChanged := nil;
|
|
|
|
FOnWindowBoundsChanged := nil;
|
|
|
|
FOnGetParentWindow := nil;
|
2023-07-30 18:47:35 +02:00
|
|
|
FOnIsWindowModalDialog := nil;
|
2023-04-21 16:05:10 +02:00
|
|
|
FOnGetInitialBounds := nil;
|
|
|
|
FOnGetInitialShowState := nil;
|
|
|
|
FOnIsFrameless := nil;
|
|
|
|
FOnWithStandardWindowButtons := nil;
|
|
|
|
FOnGetTitlebarHeight := nil;
|
|
|
|
FOnCanResize := nil;
|
|
|
|
FOnCanMaximize := nil;
|
|
|
|
FOnCanMinimize := nil;
|
|
|
|
FOnCanClose := nil;
|
|
|
|
FOnAccelerator := nil;
|
|
|
|
FOnKeyEvent := nil;
|
|
|
|
FOnWindowFullscreenTransition := nil;
|
2020-05-05 18:10:33 +02:00
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCEFWindowComponent.CreateTopLevelWindow;
|
|
|
|
begin
|
|
|
|
CreateView;
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCEFWindowComponent.doCreateCustomView;
|
|
|
|
var
|
|
|
|
TempWindow : ICefWindow;
|
|
|
|
begin
|
|
|
|
if (FWindow = nil) then
|
|
|
|
begin
|
|
|
|
if (FWindowDlg = nil) then
|
|
|
|
FWindowDlg := TCustomWindowDelegate.Create(self);
|
|
|
|
|
|
|
|
TempWindow := TCefWindowRef.CreateTopLevel(FWindowDlg);
|
|
|
|
|
|
|
|
if (FWindow = nil) then FWindow := TempWindow;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCEFWindowComponent.DestroyView;
|
|
|
|
begin
|
|
|
|
if (FWindowDlg <> nil) then
|
|
|
|
begin
|
|
|
|
FWindowDlg.DestroyOtherRefs;
|
|
|
|
FWindowDlg := nil;
|
|
|
|
end;
|
|
|
|
|
|
|
|
FWindow := nil;
|
|
|
|
end;
|
|
|
|
|
|
|
|
function TCEFWindowComponent.GetInitialized : boolean;
|
|
|
|
begin
|
|
|
|
Result := (FWindow <> nil);
|
|
|
|
end;
|
|
|
|
|
|
|
|
function TCEFWindowComponent.GetAsView : ICefView;
|
|
|
|
begin
|
|
|
|
Result := FWindow as ICefView;
|
|
|
|
end;
|
|
|
|
|
|
|
|
function TCEFWindowComponent.GetAsPanel : ICefPanel;
|
|
|
|
begin
|
|
|
|
if Initialized then
|
|
|
|
Result := FWindow as ICefPanel
|
|
|
|
else
|
|
|
|
Result := nil;
|
|
|
|
end;
|
|
|
|
|
|
|
|
function TCEFWindowComponent.GetAsWindow : ICefWindow;
|
|
|
|
begin
|
|
|
|
Result := FWindow;
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCEFWindowComponent.doOnWindowCreated(const window_: ICefWindow);
|
|
|
|
begin
|
|
|
|
if (FWindow = nil) then FWindow := window_;
|
|
|
|
|
|
|
|
if assigned(FOnWindowCreated) then
|
|
|
|
FOnWindowCreated(self, window_);
|
|
|
|
end;
|
|
|
|
|
2022-12-16 11:29:15 +01:00
|
|
|
procedure TCEFWindowComponent.doOnWindowClosing(const window_: ICefWindow);
|
|
|
|
begin
|
|
|
|
if assigned(FOnWindowClosing) then
|
|
|
|
FOnWindowClosing(self, window_);
|
|
|
|
end;
|
|
|
|
|
2020-05-05 18:10:33 +02:00
|
|
|
procedure TCEFWindowComponent.doOnWindowDestroyed(const window_: ICefWindow);
|
|
|
|
begin
|
|
|
|
if assigned(FOnWindowDestroyed) then
|
|
|
|
FOnWindowDestroyed(self, window_);
|
|
|
|
|
|
|
|
FWindow := nil;
|
|
|
|
end;
|
|
|
|
|
2022-05-26 13:08:20 +02:00
|
|
|
procedure TCEFWindowComponent.doOnWindowActivationChanged(const window_: ICefWindow; active: boolean);
|
|
|
|
begin
|
|
|
|
if assigned(FOnWindowActivationChanged) then
|
|
|
|
FOnWindowActivationChanged(self, window_, active);
|
|
|
|
end;
|
|
|
|
|
2022-12-16 11:29:15 +01:00
|
|
|
procedure TCEFWindowComponent.doOnWindowBoundsChanged(const window_: ICefWindow; const new_bounds: TCefRect);
|
|
|
|
begin
|
|
|
|
if assigned(FOnWindowBoundsChanged) then
|
|
|
|
FOnWindowBoundsChanged(self, window_, new_bounds);
|
|
|
|
end;
|
|
|
|
|
2020-05-05 18:10:33 +02:00
|
|
|
procedure TCEFWindowComponent.doOnGetParentWindow(const window_: ICefWindow; var is_menu, can_activate_menu: boolean; var aResult : ICefWindow);
|
|
|
|
begin
|
|
|
|
if assigned(FOnGetParentWindow) then
|
|
|
|
FOnGetParentWindow(self, window_, is_menu, can_activate_menu, aResult);
|
|
|
|
end;
|
|
|
|
|
2023-07-30 18:47:35 +02:00
|
|
|
procedure TCEFWindowComponent.doOnIsWindowModalDialog(const window_: ICefWindow; var aResult : boolean);
|
|
|
|
begin
|
|
|
|
if assigned(FOnIsWindowModalDialog) then
|
|
|
|
FOnIsWindowModalDialog(self, window_, aResult);
|
|
|
|
end;
|
|
|
|
|
2020-09-10 11:21:39 +02:00
|
|
|
procedure TCEFWindowComponent.doOnGetInitialBounds(const window_: ICefWindow; var aResult : TCefRect);
|
|
|
|
begin
|
|
|
|
if assigned(FOnGetInitialBounds) then
|
|
|
|
FOnGetInitialBounds(self, window_, aResult);
|
|
|
|
end;
|
|
|
|
|
2021-09-27 12:04:33 +02:00
|
|
|
procedure TCEFWindowComponent.doOnGetInitialShowState(const window_: ICefWindow; var aResult : TCefShowState);
|
|
|
|
begin
|
|
|
|
if assigned(FOnGetInitialShowState) then
|
|
|
|
FOnGetInitialShowState(self, window_, aResult);
|
|
|
|
end;
|
|
|
|
|
2020-05-05 18:10:33 +02:00
|
|
|
procedure TCEFWindowComponent.doOnIsFrameless(const window_: ICefWindow; var aResult : boolean);
|
|
|
|
begin
|
|
|
|
if assigned(FOnIsFrameless) then
|
|
|
|
FOnIsFrameless(self, window_, aResult);
|
|
|
|
end;
|
|
|
|
|
2023-03-10 16:55:57 +01:00
|
|
|
procedure TCEFWindowComponent.doOnWithStandardWindowButtons(const window_: ICefWindow; var aResult : boolean);
|
|
|
|
begin
|
|
|
|
if assigned(FOnWithStandardWindowButtons) then
|
|
|
|
FOnWithStandardWindowButtons(self, window_, aResult);
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCEFWindowComponent.doOnGetTitlebarHeight(const window_: ICefWindow; var titlebar_height: Single; var aResult : boolean);
|
|
|
|
begin
|
|
|
|
if assigned(FOnGetTitlebarHeight) then
|
|
|
|
FOnGetTitlebarHeight(self, window_, titlebar_height, aResult);
|
|
|
|
end;
|
|
|
|
|
2020-05-05 18:10:33 +02:00
|
|
|
procedure TCEFWindowComponent.doOnCanResize(const window_: ICefWindow; var aResult : boolean);
|
|
|
|
begin
|
|
|
|
if assigned(FOnCanResize) then
|
|
|
|
FOnCanResize(self, window_, aResult);
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCEFWindowComponent.doOnCanMaximize(const window_: ICefWindow; var aResult : boolean);
|
|
|
|
begin
|
|
|
|
if assigned(FOnCanMaximize) then
|
|
|
|
FOnCanMaximize(self, window_, aResult);
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCEFWindowComponent.doOnCanMinimize(const window_: ICefWindow; var aResult : boolean);
|
|
|
|
begin
|
|
|
|
if assigned(FOnCanMinimize) then
|
|
|
|
FOnCanMinimize(self, window_, aResult);
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCEFWindowComponent.doOnCanClose(const window_: ICefWindow; var aResult : boolean);
|
|
|
|
begin
|
|
|
|
if assigned(FOnCanClose) then
|
|
|
|
FOnCanClose(self, window_, aResult);
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCEFWindowComponent.doOnAccelerator(const window_: ICefWindow; command_id: Integer; var aResult : boolean);
|
|
|
|
begin
|
|
|
|
if assigned(FOnAccelerator) then
|
|
|
|
FOnAccelerator(self, window_, command_id, aResult);
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCEFWindowComponent.doOnKeyEvent(const window_: ICefWindow; const event: TCefKeyEvent; var aResult : boolean);
|
|
|
|
begin
|
|
|
|
if assigned(FOnKeyEvent) then
|
|
|
|
FOnKeyEvent(self, window_, event, aResult);
|
|
|
|
end;
|
|
|
|
|
2023-04-21 16:05:10 +02:00
|
|
|
procedure TCEFWindowComponent.doOnWindowFullscreenTransition(const window_: ICefWindow; is_completed: boolean);
|
|
|
|
begin
|
|
|
|
if assigned(FOnWindowFullscreenTransition) then
|
|
|
|
FOnWindowFullscreenTransition(self, window_, is_completed);
|
|
|
|
end;
|
|
|
|
|
2020-05-05 18:10:33 +02:00
|
|
|
procedure TCEFWindowComponent.Show;
|
|
|
|
begin
|
|
|
|
if Initialized then FWindow.Show;
|
|
|
|
end;
|
|
|
|
|
2023-09-29 19:23:38 +02:00
|
|
|
procedure TCEFWindowComponent.ShowAsBrowserModalDialog(const browser_view: ICefBrowserView);
|
|
|
|
begin
|
|
|
|
if Initialized then FWindow.ShowAsBrowserModalDialog(browser_view);
|
|
|
|
end;
|
|
|
|
|
2020-05-05 18:10:33 +02:00
|
|
|
procedure TCEFWindowComponent.Hide;
|
|
|
|
begin
|
|
|
|
if Initialized then FWindow.Hide;
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCEFWindowComponent.CenterWindow(const size_: TCefSize);
|
|
|
|
begin
|
|
|
|
if Initialized then FWindow.CenterWindow(size_);
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCEFWindowComponent.Close;
|
|
|
|
begin
|
|
|
|
if Initialized then FWindow.Close;
|
|
|
|
end;
|
|
|
|
|
|
|
|
function TCEFWindowComponent.GetIsClosed : boolean;
|
|
|
|
begin
|
|
|
|
Result := Initialized and FWindow.IsClosed;
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCEFWindowComponent.Activate;
|
|
|
|
begin
|
|
|
|
if Initialized then FWindow.Activate;
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCEFWindowComponent.Deactivate;
|
|
|
|
begin
|
|
|
|
if Initialized then FWindow.Deactivate;
|
|
|
|
end;
|
|
|
|
|
|
|
|
function TCEFWindowComponent.GetIsActive : boolean;
|
|
|
|
begin
|
|
|
|
Result := Initialized and FWindow.IsActive;
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCEFWindowComponent.BringToTop;
|
|
|
|
begin
|
|
|
|
if Initialized then FWindow.BringToTop;
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCEFWindowComponent.SetAlwaysOnTop(on_top: boolean);
|
|
|
|
begin
|
|
|
|
if Initialized then FWindow.SetAlwaysOnTop(on_top);
|
|
|
|
end;
|
|
|
|
|
|
|
|
function TCEFWindowComponent.GetIsAlwaysOnTop : boolean;
|
|
|
|
begin
|
|
|
|
Result := Initialized and FWindow.IsAlwaysOnTop;
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCEFWindowComponent.Maximize;
|
|
|
|
begin
|
|
|
|
if Initialized then FWindow.Maximize;
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCEFWindowComponent.Minimize;
|
|
|
|
begin
|
|
|
|
if Initialized then FWindow.Minimize;
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCEFWindowComponent.Restore;
|
|
|
|
begin
|
|
|
|
if Initialized then FWindow.Restore;
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCEFWindowComponent.SetFullscreen(fullscreen: boolean);
|
|
|
|
begin
|
|
|
|
if Initialized then FWindow.SetFullscreen(fullscreen);
|
|
|
|
end;
|
|
|
|
|
|
|
|
function TCEFWindowComponent.GetIsMaximized : boolean;
|
|
|
|
begin
|
|
|
|
Result := Initialized and FWindow.IsMaximized;
|
|
|
|
end;
|
|
|
|
|
|
|
|
function TCEFWindowComponent.GetIsMinimized : boolean;
|
|
|
|
begin
|
|
|
|
Result := Initialized and FWindow.IsMinimized;
|
|
|
|
end;
|
|
|
|
|
|
|
|
function TCEFWindowComponent.GetIsFullscreen : boolean;
|
|
|
|
begin
|
|
|
|
Result := Initialized and FWindow.IsFullscreen;
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCEFWindowComponent.SetTitle(const title_: ustring);
|
|
|
|
begin
|
|
|
|
if Initialized then FWindow.SetTitle(title_);
|
|
|
|
end;
|
|
|
|
|
|
|
|
function TCEFWindowComponent.GetTitle : ustring;
|
|
|
|
begin
|
|
|
|
if Initialized then
|
|
|
|
Result := FWindow.GetTitle
|
|
|
|
else
|
|
|
|
Result := '';
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCEFWindowComponent.SetWindowIcon(const image: ICefImage);
|
|
|
|
begin
|
|
|
|
if Initialized then FWindow.SetWindowIcon(image);
|
|
|
|
end;
|
|
|
|
|
|
|
|
function TCEFWindowComponent.GetWindowIcon : ICefImage;
|
|
|
|
begin
|
|
|
|
if Initialized then
|
|
|
|
Result := FWindow.GetWindowIcon
|
|
|
|
else
|
|
|
|
Result := nil;
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCEFWindowComponent.SetWindowAppIcon(const image: ICefImage);
|
|
|
|
begin
|
|
|
|
if Initialized then FWindow.SetWindowAppIcon(image);
|
|
|
|
end;
|
|
|
|
|
|
|
|
function TCEFWindowComponent.GetWindowAppIcon : ICefImage;
|
|
|
|
begin
|
|
|
|
if Initialized then
|
|
|
|
Result := FWindow.GetWindowAppIcon
|
|
|
|
else
|
|
|
|
Result := nil;
|
|
|
|
end;
|
|
|
|
|
2021-09-27 12:04:33 +02:00
|
|
|
function TCEFWindowComponent.AddOverlayView(const view: ICefView; docking_mode: TCefDockingMode): ICefOverlayController;
|
|
|
|
begin
|
|
|
|
if Initialized then
|
|
|
|
Result := FWindow.AddOverlayView(view, docking_mode)
|
|
|
|
else
|
|
|
|
Result := nil;
|
|
|
|
end;
|
|
|
|
|
2020-05-05 18:10:33 +02:00
|
|
|
procedure TCEFWindowComponent.ShowMenu(const menu_model: ICefMenuModel; const screen_point: TCefPoint; anchor_position : TCefMenuAnchorPosition);
|
|
|
|
begin
|
|
|
|
if Initialized then FWindow.ShowMenu(menu_model, screen_point, anchor_position);
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCEFWindowComponent.CancelMenu;
|
|
|
|
begin
|
|
|
|
if Initialized then FWindow.CancelMenu;
|
|
|
|
end;
|
|
|
|
|
|
|
|
function TCEFWindowComponent.GetDisplay : ICefDisplay;
|
|
|
|
begin
|
|
|
|
if Initialized then
|
|
|
|
Result := FWindow.GetDisplay
|
|
|
|
else
|
|
|
|
Result := nil;
|
|
|
|
end;
|
|
|
|
|
|
|
|
function TCEFWindowComponent.GetClientAreaBoundsInScreen : TCefRect;
|
|
|
|
var
|
|
|
|
TempRect : TCefRect;
|
|
|
|
begin
|
|
|
|
if Initialized then
|
|
|
|
TempRect := FWindow.GetClientAreaBoundsInScreen
|
|
|
|
else
|
|
|
|
begin
|
|
|
|
TempRect.x := 0;
|
|
|
|
TempRect.y := 0;
|
|
|
|
TempRect.width := 0;
|
|
|
|
TempRect.height := 0;
|
|
|
|
end;
|
|
|
|
|
|
|
|
Result := TempRect;
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCEFWindowComponent.SetDraggableRegions(regionsCount: NativeUInt; const regions: PCefDraggableRegionArray);
|
|
|
|
begin
|
|
|
|
if Initialized then FWindow.SetDraggableRegions(regionsCount, regions);
|
|
|
|
end;
|
|
|
|
|
|
|
|
function TCEFWindowComponent.GetWindowHandle : TCefWindowHandle;
|
|
|
|
var
|
|
|
|
TempHandle : TCefWindowHandle;
|
|
|
|
begin
|
|
|
|
InitializeWindowHandle(TempHandle);
|
|
|
|
if Initialized then TempHandle := FWindow.GetWindowHandle;
|
|
|
|
Result := TempHandle;
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCEFWindowComponent.SendKeyPress(key_code: Integer; event_flags: cardinal);
|
|
|
|
begin
|
|
|
|
if Initialized then FWindow.SendKeyPress(key_code, event_flags);
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCEFWindowComponent.SendMouseMove(screen_x, screen_y: Integer);
|
|
|
|
begin
|
|
|
|
if Initialized then FWindow.SendMouseMove(screen_x, screen_y);
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCEFWindowComponent.SendMouseEvents(button: TCefMouseButtonType; mouse_down, mouse_up: boolean);
|
|
|
|
begin
|
|
|
|
if Initialized then FWindow.SendMouseEvents(button, mouse_down, mouse_up);
|
|
|
|
end;
|
|
|
|
|
2023-11-16 16:58:47 +01:00
|
|
|
procedure TCEFWindowComponent.SetAccelerator(command_id, key_code : Integer; shift_pressed, ctrl_pressed, alt_pressed, high_priority: boolean);
|
2020-05-05 18:10:33 +02:00
|
|
|
begin
|
2023-11-16 16:58:47 +01:00
|
|
|
if Initialized then FWindow.SetAccelerator(command_id, key_code, shift_pressed, ctrl_pressed, alt_pressed, high_priority);
|
2020-05-05 18:10:33 +02:00
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCEFWindowComponent.RemoveAccelerator(command_id: Integer);
|
|
|
|
begin
|
|
|
|
if Initialized then FWindow.RemoveAccelerator(command_id);
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCEFWindowComponent.RemoveAllAccelerators;
|
|
|
|
begin
|
|
|
|
if Initialized then FWindow.RemoveAllAccelerators;
|
|
|
|
end;
|
|
|
|
|
|
|
|
{$IFDEF FPC}
|
|
|
|
procedure Register;
|
|
|
|
begin
|
|
|
|
{$I res/tcefwindowcomponent.lrs}
|
|
|
|
RegisterComponents('Chromium Views Framework', [TCEFWindowComponent]);
|
|
|
|
end;
|
|
|
|
{$ENDIF}
|
|
|
|
|
|
|
|
end.
|