// ************************************************************************ // ***************************** CEF4Delphi ******************************* // ************************************************************************ // // CEF4Delphi is based on DCEF3 which uses CEF to embed a chromium-based // browser in Delphi applications. // // The original license of DCEF3 still applies to CEF4Delphi. // // For more information about CEF4Delphi visit : // https://www.briskbard.com/index.php?lang=en&pageid=cef // // Copyright © 2022 Salvador Diaz Fau. All rights reserved. // // ************************************************************************ // ************ vvvv Original license and comments below vvvv ************* // ************************************************************************ (* * Delphi Chromium Embedded 3 * * Usage allowed under the restrictions of the Lesser GNU General Public License * or alternatively the restrictions of the Mozilla Public License 1.1 * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for * the specific language governing rights and limitations under the License. * * Unit owner : Henri Gourvest * Web site : http://www.progdigy.com * Repository : http://code.google.com/p/delphichromiumembedded/ * Group : http://groups.google.com/group/delphichromiumembedded * * Embarcadero Technologies, Inc is not permitted to use or redistribute * this source code without explicit permission. * *) unit uCEFFMXWindowParent; {$I cef.inc} {$IFNDEF TARGET_64BITS}{$ALIGN ON}{$ENDIF} {$MINENUMSIZE 4} interface uses System.Classes, System.Types, System.UITypes, {$IFDEF MSWINDOWS} WinApi.Windows, {$ENDIF} FMX.Controls, FMX.Types, FMX.Forms; type {$IFNDEF FPC}{$IFDEF DELPHI16_UP}[ComponentPlatformsAttribute(pidWin32 or pidWin64)]{$ENDIF}{$ENDIF} TFMXWindowParent = class(TCommonCustomForm) protected {$IFDEF MSWINDOWS} function GetChildWindowHandle : HWND; procedure UpdateSize; {$ENDIF} procedure Resize; override; public {$IFDEF MSWINDOWS} procedure Reparent(const aNewParentHandle : {$IFDEF DELPHI18_UP}TWindowHandle{$ELSE}TFmxHandle{$ENDIF}); property ChildWindowHandle : HWND read GetChildWindowHandle; {$ENDIF} published property Visible; property Height; property Width; property Touch; property OnGesture; end; implementation // This class inherits from TCommonCustomForm because CEF needs a Windows handle // to create the browser in normal mode. // TFMXWindowParent has to be created and resized at runtime. // It's also necessary to call "Reparent" to add this component as a child component to your form. uses System.SysUtils, FMX.Platform, FMX.Platform.Win; procedure TFMXWindowParent.Resize; begin inherited Resize; {$IFDEF MSWINDOWS} UpdateSize; {$ENDIF} end; {$IFDEF MSWINDOWS} function TFMXWindowParent.GetChildWindowHandle : HWND; var TempHWND : HWND; begin TempHWND := FmxHandleToHWND(Handle); Result := WinApi.Windows.GetWindow(TempHWND, GW_CHILD); end; procedure TFMXWindowParent.UpdateSize; var TempHWND, TempChildHWND : HWND; TempRect : System.Types.TRect; TempClientRect : TRectF; begin TempChildHWND := ChildWindowHandle; if (TempChildHWND = 0) then exit; TempHWND := BeginDeferWindowPos(1); try TempClientRect := ClientRect; TempRect.Left := round(TempClientRect.Left); TempRect.Top := round(TempClientRect.Top); TempRect.Right := round(TempClientRect.Right); TempRect.Bottom := round(TempClientRect.Bottom); TempHWND := DeferWindowPos(TempHWND, TempChildHWND, HWND_TOP, TempRect.left, TempRect.top, TempRect.right - TempRect.left, TempRect.bottom - TempRect.top, SWP_NOZORDER); finally EndDeferWindowPos(TempHWND); end; end; procedure TFMXWindowParent.Reparent(const aNewParentHandle : {$IFDEF DELPHI18_UP}TWindowHandle{$ELSE}TFmxHandle{$ENDIF}); var TempChildHandle, TempParentHandle : HWND; begin {$IFDEF DELPHI18_UP} if (aNewParentHandle <> nil) then {$ELSE} if (aNewParentHandle <> 0) then {$ENDIF} begin TempChildHandle := FmxHandleToHWND(Handle); TempParentHandle := FmxHandleToHWND(aNewParentHandle); if (TempChildHandle <> 0) and (TempParentHandle <> 0) then begin SetWindowLong(TempChildHandle, GWL_STYLE, WS_CHILDWINDOW); WinApi.Windows.SetParent(TempChildHandle, TempParentHandle); end; end; end; {$ENDIF} end.