mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2024-11-16 16:25:57 +01:00
bef1626f31
Set the CEFLinkedWindowParent1.TabStop to true to fix a focus issue Moved TCEFLinkedWindowParent.UpdateSize to the public section
31 lines
463 B
ObjectPascal
31 lines
463 B
ObjectPascal
unit Interfaces;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
{$IFDEF UNIX}{$IFNDEF DisableCWString}uses cwstring;{$ENDIF}{$ENDIF}
|
|
|
|
procedure CustomWidgetSetInitialization;
|
|
procedure CustomWidgetSetFinalization;
|
|
|
|
implementation
|
|
|
|
uses
|
|
{$IFNDEF EnableLibOverlay}
|
|
gtk2DisableLibOverlay,
|
|
{$ENDIF}
|
|
Gtk2Int, Forms;
|
|
|
|
procedure CustomWidgetSetInitialization;
|
|
begin
|
|
CreateWidgetset(TGtk2WidgetSet);
|
|
end;
|
|
|
|
procedure CustomWidgetSetFinalization;
|
|
begin
|
|
FreeWidgetSet;
|
|
end;
|
|
|
|
end.
|