unit uCEFOverlayController; {$IFDEF FPC} {$MODE OBJFPC}{$H+} {$ENDIF} {$I cef.inc} {$IFNDEF TARGET_64BITS}{$ALIGN ON}{$ENDIF} {$MINENUMSIZE 4} interface uses {$IFDEF DELPHI16_UP} System.Classes, System.SysUtils, {$ELSE} Classes, SysUtils, {$ENDIF} uCEFBaseRefCounted, uCEFInterfaces, uCEFTypes; type /// /// Controller for an overlay that contains a contents View added via /// ICefWindow.AddOverlayView. Methods exposed by this controller should be /// called in preference to functions of the same name exposed by the contents /// View unless otherwise indicated. Methods must be called on the browser /// process UI thread unless otherwise indicated. /// /// /// CEF source file: /include/capi/views/cef_overlay_controller_capi.h (cef_overlay_controller_t) /// TCefOverlayControllerRef = class(TCefBaseRefCountedRef, ICefOverlayController) public /// /// Returns true (1) if this object is valid. /// function IsValid: boolean; /// /// Returns true (1) if this object is the same as |that| object. /// function IsSame(const that: ICefOverlayController): boolean; /// /// Returns the contents View for this overlay. /// function GetContentsView: ICefView; /// /// Returns the top-level Window hosting this overlay. Use this function /// instead of calling get_window() on the contents View. /// function GetWindow: ICefWindow; /// /// Returns the docking mode for this overlay. /// function GetDockingMode: TCefDockingMode; /// /// Destroy this overlay. /// procedure DestroyOverlay; /// /// Sets the bounds (size and position) of this overlay. This will set the /// bounds of the contents View to match and trigger a re-layout if necessary. /// |bounds| is in parent coordinates and any insets configured on this /// overlay will be ignored. Use this function only for overlays created with /// a docking mode value of CEF_DOCKING_MODE_CUSTOM. With other docking modes /// modify the insets of this overlay and/or layout of the contents View and /// call size_to_preferred_size() instead to calculate the new size and re- /// position the overlay if necessary. /// procedure SetBounds(const bounds: TCefRect); /// /// Returns the bounds (size and position) of this overlay in parent /// coordinates. /// function GetBounds: TCefRect; /// /// Returns the bounds (size and position) of this overlay in DIP screen /// coordinates. /// function GetBoundsInScreen: TCefRect; /// /// Sets the size of this overlay without changing the position. This will set /// the size of the contents View to match and trigger a re-layout if /// necessary. |size| is in parent coordinates and any insets configured on /// this overlay will be ignored. Use this function only for overlays created /// with a docking mode value of CEF_DOCKING_MODE_CUSTOM. With other docking /// modes modify the insets of this overlay and/or layout of the contents View /// and call size_to_preferred_size() instead to calculate the new size and /// re-position the overlay if necessary. /// procedure SetSize(const size: TCefSize); /// /// Returns the size of this overlay in parent coordinates. /// function GetSize: TCefSize; /// /// Sets the position of this overlay without changing the size. |position| is /// in parent coordinates and any insets configured on this overlay will be /// ignored. Use this function only for overlays created with a docking mode /// value of CEF_DOCKING_MODE_CUSTOM. With other docking modes modify the /// insets of this overlay and/or layout of the contents View and call /// size_to_preferred_size() instead to calculate the new size and re-position /// the overlay if necessary. /// procedure SetPosition(const position: TCefPoint); /// /// Returns the position of this overlay in parent coordinates. /// function GetPosition: TCefPoint; /// /// Sets the insets for this overlay. |insets| is in parent coordinates. Use /// this function only for overlays created with a docking mode value other /// than CEF_DOCKING_MODE_CUSTOM. /// procedure SetInsets(const insets: TCefInsets); /// /// Returns the insets for this overlay in parent coordinates. /// function GetInsets: TCefInsets; /// /// Size this overlay to its preferred size and trigger a re-layout if /// necessary. The position of overlays created with a docking mode value of /// CEF_DOCKING_MODE_CUSTOM will not be modified by calling this function. /// With other docking modes this function may re-position the overlay if /// necessary to accommodate the new size and any insets configured on the /// contents View. /// procedure SizeToPreferredSize; /// /// Sets whether this overlay is visible. Overlays are hidden by default. If /// this overlay is hidden then it and any child Views will not be drawn and, /// if any of those Views currently have focus, then focus will also be /// cleared. Painting is scheduled as needed. /// procedure SetVisible(visible: boolean); /// /// Returns whether this overlay is visible. A View may be visible but still /// not drawn in a Window if any parent Views are hidden. Call is_drawn() to /// determine whether this overlay and all parent Views are visible and will /// be drawn. /// function IsVisible: boolean; /// /// Returns whether this overlay is visible and drawn in a Window. A View is /// drawn if it and all parent Views are visible. To determine if the /// containing Window is visible to the user on-screen call is_visible() on /// the Window. /// function IsDrawn: boolean; /// /// Returns a ICefOverlayController instance using a PCefOverlayController data pointer. /// class function UnWrap(data: Pointer): ICefOverlayController; end; implementation uses uCEFMiscFunctions, uCEFLibFunctions, uCEFView, uCEFWindow; function TCefOverlayControllerRef.IsValid: boolean; begin Result := PCefOverlayController(FData)^.is_valid(PCefOverlayController(FData)) <> 0; end; function TCefOverlayControllerRef.IsSame(const that: ICefOverlayController): boolean; begin Result := PCefOverlayController(FData)^.is_same(PCefOverlayController(FData), CefGetData(that)) <> 0; end; function TCefOverlayControllerRef.GetContentsView: ICefView; begin Result := TCefViewRef.UnWrap(PCefOverlayController(FData)^.get_contents_view(PCefOverlayController(FData))); end; function TCefOverlayControllerRef.GetWindow: ICefWindow; begin Result := TCefWindowRef.UnWrap(PCefOverlayController(FData)^.get_window(PCefOverlayController(FData))); end; function TCefOverlayControllerRef.GetDockingMode: TCefDockingMode; begin Result := PCefOverlayController(FData)^.get_docking_mode(PCefOverlayController(FData)); end; procedure TCefOverlayControllerRef.DestroyOverlay; begin PCefOverlayController(FData)^.destroy(PCefOverlayController(FData)); end; procedure TCefOverlayControllerRef.SetBounds(const bounds: TCefRect); begin PCefOverlayController(FData)^.set_bounds(PCefOverlayController(FData), @bounds); end; function TCefOverlayControllerRef.GetBounds: TCefRect; begin Result := PCefOverlayController(FData)^.get_bounds(PCefOverlayController(FData)); end; function TCefOverlayControllerRef.GetBoundsInScreen: TCefRect; begin Result := PCefOverlayController(FData)^.get_bounds_in_screen(PCefOverlayController(FData)); end; procedure TCefOverlayControllerRef.SetSize(const size: TCefSize); begin PCefOverlayController(FData)^.set_size(PCefOverlayController(FData), @size); end; function TCefOverlayControllerRef.GetSize: TCefSize; begin Result := PCefOverlayController(FData)^.get_size(PCefOverlayController(FData)); end; procedure TCefOverlayControllerRef.SetPosition(const position: TCefPoint); begin PCefOverlayController(FData)^.set_position(PCefOverlayController(FData), @position); end; function TCefOverlayControllerRef.GetPosition: TCefPoint; begin Result := PCefOverlayController(FData)^.get_position(PCefOverlayController(FData)); end; procedure TCefOverlayControllerRef.SetInsets(const insets: TCefInsets); begin PCefOverlayController(FData)^.set_insets(PCefOverlayController(FData), @insets); end; function TCefOverlayControllerRef.GetInsets: TCefInsets; begin Result := PCefOverlayController(FData)^.get_insets(PCefOverlayController(FData)); end; procedure TCefOverlayControllerRef.SizeToPreferredSize; begin PCefOverlayController(FData)^.size_to_preferred_size(PCefOverlayController(FData)); end; procedure TCefOverlayControllerRef.SetVisible(visible: boolean); begin PCefOverlayController(FData)^.set_visible(PCefOverlayController(FData), ord(visible)); end; function TCefOverlayControllerRef.IsVisible: boolean; begin Result := PCefOverlayController(FData)^.is_visible(PCefOverlayController(FData)) <> 0; end; function TCefOverlayControllerRef.IsDrawn: boolean; begin Result := PCefOverlayController(FData)^.is_drawn(PCefOverlayController(FData)) <> 0; end; class function TCefOverlayControllerRef.UnWrap(data: Pointer): ICefOverlayController; begin if (data <> nil) then Result := Create(data) as ICefOverlayController else Result := nil; end; end.