mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2024-11-15 07:45:56 +01:00
Update to CEF 125.0.19
This commit is contained in:
parent
7c230b9d70
commit
e3cd6821c8
14
README.md
14
README.md
@ -3,15 +3,15 @@ CEF4Delphi is an open source project created by Salvador Díaz Fau to embed Chro
|
||||
|
||||
CEF4Delphi is based on DCEF3 and fpCEF3. The original license of those projects still applies to CEF4Delphi. Read the license terms in the LICENSE.md file.
|
||||
|
||||
CEF4Delphi uses CEF 124.3.9 which includes Chromium 124.0.6367.207.
|
||||
CEF4Delphi uses CEF 125.0.19 which includes Chromium 125.0.6422.112.
|
||||
|
||||
The CEF binaries used by CEF4Delphi are available for download at Spotify :
|
||||
* [Windows 32 bits](https://cef-builds.spotifycdn.com/cef_binary_124.3.9%2Bg9bd638f%2Bchromium-124.0.6367.207_windows32.tar.bz2)
|
||||
* [Windows 64 bits](https://cef-builds.spotifycdn.com/cef_binary_124.3.9%2Bg9bd638f%2Bchromium-124.0.6367.207_windows64.tar.bz2)
|
||||
* [Linux x86 64 bits](https://cef-builds.spotifycdn.com/cef_binary_124.3.9%2Bg9bd638f%2Bchromium-124.0.6367.207_linux64.tar.bz2)
|
||||
* [Linux ARM 32 bits](https://cef-builds.spotifycdn.com/cef_binary_124.3.9%2Bg9bd638f%2Bchromium-124.0.6367.207_linuxarm.tar.bz2)
|
||||
* [Linux ARM 64 bits](https://cef-builds.spotifycdn.com/cef_binary_124.3.9%2Bg9bd638f%2Bchromium-124.0.6367.207_linuxarm64.tar.bz2)
|
||||
* [MacOS x86 64 bits](https://cef-builds.spotifycdn.com/cef_binary_124.3.9%2Bg9bd638f%2Bchromium-124.0.6367.207_macosx64.tar.bz2)
|
||||
* [Windows 32 bits](https://cef-builds.spotifycdn.com/cef_binary_125.0.19%2Bg3d8f1c9%2Bchromium-125.0.6422.112_windows32.tar.bz2)
|
||||
* [Windows 64 bits](https://cef-builds.spotifycdn.com/cef_binary_125.0.19%2Bg3d8f1c9%2Bchromium-125.0.6422.112_windows64.tar.bz2)
|
||||
* [Linux x86 64 bits](https://cef-builds.spotifycdn.com/cef_binary_125.0.19%2Bg3d8f1c9%2Bchromium-125.0.6422.112_linux64.tar.bz2)
|
||||
* [Linux ARM 32 bits](https://cef-builds.spotifycdn.com/cef_binary_125.0.19%2Bg3d8f1c9%2Bchromium-125.0.6422.112_linuxarm.tar.bz2)
|
||||
* [Linux ARM 64 bits](https://cef-builds.spotifycdn.com/cef_binary_125.0.19%2Bg3d8f1c9%2Bchromium-125.0.6422.112_linuxarm64.tar.bz2)
|
||||
* [MacOS x86 64 bits](https://cef-builds.spotifycdn.com/cef_binary_125.0.19%2Bg3d8f1c9%2Bchromium-125.0.6422.112_macosx64.tar.bz2)
|
||||
|
||||
CEF4Delphi was developed and tested on Delphi 12.1 and it has been tested in Delphi 6, Delphi XE, Delphi 10, Delphi 11 and Lazarus 3.2/FPC 3.2.2. CEF4Delphi includes VCL, FireMonkey (FMX) and Lazarus components.
|
||||
|
||||
|
@ -76,6 +76,7 @@ type
|
||||
revision : string;
|
||||
userAgent : string;
|
||||
jsVersion : string;
|
||||
RuntimeStyle : string;
|
||||
end;
|
||||
|
||||
TMiniBrowserFrm = class(TForm)
|
||||
@ -151,7 +152,7 @@ type
|
||||
procedure Chromium1PdfPrintFinished(Sender: TObject; aResultOK: Boolean);
|
||||
procedure Chromium1ResourceResponse(Sender: TObject; const browser: ICefBrowser; const frame: ICefFrame; const request: ICefRequest; const response: ICefResponse; out Result: Boolean);
|
||||
procedure Chromium1PrefsAvailable(Sender: TObject; aResultOK: Boolean);
|
||||
procedure Chromium1BeforeDownload(Sender: TObject; const browser: ICefBrowser; const downloadItem: ICefDownloadItem; const suggestedName: ustring; const callback: ICefBeforeDownloadCallback);
|
||||
procedure Chromium1BeforeDownload(Sender: TObject; const browser: ICefBrowser; const downloadItem: ICefDownloadItem; const suggestedName: ustring; const callback: ICefBeforeDownloadCallback; var aResult : boolean);
|
||||
procedure Chromium1DownloadUpdated(Sender: TObject; const browser: ICefBrowser; const downloadItem: ICefDownloadItem; const callback: ICefDownloadItemCallback);
|
||||
procedure Chromium1BeforeResourceLoad(Sender: TObject; const browser: ICefBrowser; const frame: ICefFrame; const request: ICefRequest; const callback: ICefCallback; out Result: TCefReturnValue);
|
||||
procedure Chromium1Close(Sender: TObject; const browser: ICefBrowser; var aAction : TCefCloseBrowserAction);
|
||||
@ -294,7 +295,8 @@ implementation
|
||||
|
||||
uses
|
||||
uPreferences, uCefStringMultimap, uCEFMiscFunctions, uSimpleTextViewer,
|
||||
uCEFClient, uFindFrm, uCEFDictionaryValue, uDirectorySelector, uSelectCertForm;
|
||||
uCEFClient, uFindFrm, uCEFDictionaryValue, uDirectorySelector, uSelectCertForm,
|
||||
uCEFWindowInfoWrapper;
|
||||
|
||||
// Destruction steps
|
||||
// =================
|
||||
@ -325,7 +327,7 @@ begin
|
||||
GlobalCEFApp.LogSeverity := LOGSEVERITY_INFO;
|
||||
GlobalCEFApp.UncaughtExceptionStackSize := 50;
|
||||
GlobalCEFApp.OnUncaughtException := GlobalCEFApp_OnUncaughtException;
|
||||
//GlobalCEFApp.ChromeRuntime := True;
|
||||
GlobalCEFApp.ChromeRuntime := True;
|
||||
end;
|
||||
|
||||
procedure TMiniBrowserFrm.BackBtnClick(Sender: TObject);
|
||||
@ -492,7 +494,7 @@ end;
|
||||
procedure TMiniBrowserFrm.Chromium1BeforeDownload(Sender: TObject;
|
||||
const browser: ICefBrowser; const downloadItem: ICefDownloadItem;
|
||||
const suggestedName: ustring;
|
||||
const callback: ICefBeforeDownloadCallback);
|
||||
const callback: ICefBeforeDownloadCallback; var aResult : boolean);
|
||||
var
|
||||
TempMyDocuments, TempFullPath, TempName : string;
|
||||
begin
|
||||
@ -513,6 +515,7 @@ begin
|
||||
else
|
||||
TempFullPath := TempName;
|
||||
|
||||
aResult := True;
|
||||
callback.cont(TempFullPath, True);
|
||||
end;
|
||||
|
||||
@ -576,9 +579,7 @@ procedure TMiniBrowserFrm.Chromium1ContextMenuCommand(Sender: TObject;
|
||||
eventFlags: TCefEventFlags; out Result: Boolean);
|
||||
var
|
||||
TempParam : WParam;
|
||||
TempInfo : TCefWindowInfo;
|
||||
TempClient : ICefClient;
|
||||
TempSettings : TCefBrowserSettings;
|
||||
TempPoint : TPoint;
|
||||
begin
|
||||
Result := False;
|
||||
|
||||
@ -670,13 +671,10 @@ begin
|
||||
else
|
||||
case commandId of
|
||||
MINIBROWSER_CONTEXTMENU_SHOWDEVTOOLS :
|
||||
try
|
||||
WindowInfoAsPopUp(TempInfo, browser.Host.WindowHandle, 'DevTools');
|
||||
TempClient := TCustomClientHandler.Create(Chromium1, True);
|
||||
FillChar(TempSettings, SizeOf(TCefBrowserSettings), 0);
|
||||
browser.Host.ShowDevTools(@TempInfo, TempClient, @TempSettings, nil);
|
||||
finally
|
||||
TempClient := nil
|
||||
begin
|
||||
TempPoint.x := params.XCoord;
|
||||
TempPoint.y := params.YCoord;
|
||||
ShowDevTools(TempPoint);
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
@ -1204,7 +1202,8 @@ begin
|
||||
'product: ' + FBrowserInfo.product + CRLF +
|
||||
'revision: ' + FBrowserInfo.revision + CRLF +
|
||||
'userAgent: ' + FBrowserInfo.userAgent + CRLF +
|
||||
'jsVersion: ' + FBrowserInfo.jsVersion + CRLF + CRLF +
|
||||
'jsVersion: ' + FBrowserInfo.jsVersion + CRLF +
|
||||
'RuntimeStyle: ' + FBrowserInfo.RuntimeStyle + CRLF + CRLF +
|
||||
'GetDefaultCEFUserAgent: ' + GetDefaultCEFUserAgent;
|
||||
|
||||
showmessage(TempInfo);
|
||||
@ -1465,6 +1464,8 @@ begin
|
||||
// used when you call any method or property in TChromium.
|
||||
Chromium1.MultiBrowserMode := True;
|
||||
Chromium1.DefaultURL := MINIBROWSER_HOMEPAGE;
|
||||
//Chromium1.RuntimeStyle := CEF_RUNTIME_STYLE_ALLOY;
|
||||
//Chromium1.RuntimeStyle := CEF_RUNTIME_STYLE_CHROME;
|
||||
end;
|
||||
|
||||
procedure TMiniBrowserFrm.FormDestroy(Sender: TObject);
|
||||
@ -1583,6 +1584,12 @@ begin
|
||||
FBrowserInfo.userAgent := TempDict.GetValue('userAgent').GetString;
|
||||
FBrowserInfo.jsVersion := TempDict.GetValue('jsVersion').GetString;
|
||||
|
||||
case Chromium1.RuntimeStyle of
|
||||
CEF_RUNTIME_STYLE_CHROME : FBrowserInfo.RuntimeStyle := 'Chrome';
|
||||
CEF_RUNTIME_STYLE_ALLOY : FBrowserInfo.RuntimeStyle := 'Alloy';
|
||||
else FBrowserInfo.RuntimeStyle := 'Default';
|
||||
end;
|
||||
|
||||
PostMessage(Handle, MINIBROWSER_SHOWBROWSERINFO, 0, 0);
|
||||
end;
|
||||
end;
|
||||
|
@ -62,7 +62,7 @@ uses
|
||||
{$ELSE}
|
||||
Math,
|
||||
{$ENDIF}
|
||||
uCEFMiscFunctions, uCEFApplication, uMainForm;
|
||||
uCEFMiscFunctions, uCEFApplication, uCEFWindowInfoWrapper, uMainForm;
|
||||
|
||||
// Destruction steps
|
||||
// =================
|
||||
@ -97,7 +97,7 @@ begin
|
||||
if (FPopupFeatures.widthset <> 0) then TempRect.Right := max(FPopupFeatures.width, 100);
|
||||
if (FPopupFeatures.heightset <> 0) then TempRect.Bottom := max(FPopupFeatures.height, 100);
|
||||
|
||||
WindowInfoAsChild(windowInfo, CEFWindowParent1.Handle, TempRect, '');
|
||||
TCEFWindowInfoWrapper.AsChild(windowInfo, CEFWindowParent1.Handle, TempRect);
|
||||
end
|
||||
else
|
||||
Result := False;
|
||||
@ -196,6 +196,10 @@ begin
|
||||
FClosing := True;
|
||||
Visible := False;
|
||||
Chromium1.CloseBrowser(True);
|
||||
|
||||
// Workaround for the missing TChormium.OnClose event when "Chrome runtime" is enabled.
|
||||
if GlobalCEFApp.ChromeRuntime then
|
||||
CEFWindowParent1.Free;
|
||||
end;
|
||||
end;
|
||||
|
||||
|
@ -108,6 +108,7 @@ uses
|
||||
procedure CreateGlobalCEFApp;
|
||||
begin
|
||||
GlobalCEFApp := TCefApplication.Create;
|
||||
GlobalCEFApp.ChromeRuntime := True;
|
||||
//GlobalCEFApp.LogFile := 'cef.log';
|
||||
//GlobalCEFApp.LogSeverity := LOGSEVERITY_VERBOSE;
|
||||
end;
|
||||
@ -131,6 +132,10 @@ begin
|
||||
FClosingMainForm := True;
|
||||
Visible := False;
|
||||
Chromium1.CloseBrowser(True);
|
||||
|
||||
// Workaround for the missing TChormium.OnClose event when "Chrome runtime" is enabled.
|
||||
if GlobalCEFApp.ChromeRuntime then
|
||||
CEFWindowParent1.Free;
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
|
@ -124,7 +124,7 @@ implementation
|
||||
{$R *.dfm}
|
||||
|
||||
uses
|
||||
uCEFApplication, uCEFMiscFunctions, uBrowserTab;
|
||||
uCEFApplication, uCEFMiscFunctions, uBrowserTab, uCEFWindowInfoWrapper;
|
||||
|
||||
// The TChromium events are executed in a CEF thread and we should only update the
|
||||
// GUI controls in the main application thread.
|
||||
@ -284,6 +284,7 @@ begin
|
||||
NavControlPnl.Enabled := False;
|
||||
Chromium1.CloseBrowser(True);
|
||||
|
||||
// Workaround for the missing TChormium.OnClose event when "Chrome runtime" is enabled.
|
||||
if GlobalCEFApp.ChromeRuntime then
|
||||
CEFWindowParent1.Free;
|
||||
end;
|
||||
@ -495,7 +496,7 @@ begin
|
||||
Result := True;
|
||||
TempRect := CEFWindowParent1.ClientRect;
|
||||
|
||||
WindowInfoAsChild(windowInfo, CEFWindowParent1.Handle, TempRect, '');
|
||||
TCEFWindowInfoWrapper.AsChild(windowInfo, CEFWindowParent1.Handle, TempRect);
|
||||
end
|
||||
else
|
||||
Result := False;
|
||||
|
@ -73,7 +73,7 @@ uses
|
||||
{$ELSE}
|
||||
Math,
|
||||
{$ENDIF}
|
||||
uCEFMiscFunctions, uCEFApplication, uMainForm;
|
||||
uCEFMiscFunctions, uCEFApplication, uCEFWindowInfoWrapper, uMainForm;
|
||||
|
||||
// Destruction steps
|
||||
// =================
|
||||
@ -109,7 +109,7 @@ begin
|
||||
if (FPopupFeatures.widthset <> 0) then TempRect.Right := max(FPopupFeatures.width, 100);
|
||||
if (FPopupFeatures.heightset <> 0) then TempRect.Bottom := max(FPopupFeatures.height, 100);
|
||||
|
||||
WindowInfoAsChild(windowInfo, CEFWindowParent1.Handle, TempRect, '');
|
||||
TCEFWindowInfoWrapper.AsChild(windowInfo, CEFWindowParent1.Handle, TempRect);
|
||||
end
|
||||
else
|
||||
Result := False;
|
||||
@ -235,6 +235,10 @@ begin
|
||||
FClosing := True;
|
||||
Visible := False;
|
||||
Chromium1.CloseBrowser(True);
|
||||
|
||||
// Workaround for the missing TChormium.OnClose event when "Chrome runtime" is enabled.
|
||||
if GlobalCEFApp.ChromeRuntime then
|
||||
CEFWindowParent1.Free;
|
||||
end;
|
||||
end
|
||||
else
|
||||
|
@ -157,7 +157,7 @@ begin
|
||||
GlobalCEFApp.cache := 'cache';
|
||||
GlobalCEFApp.EnablePrintPreview := True;
|
||||
GlobalCEFApp.OnContextInitialized := GlobalCEFApp_OnContextInitialized;
|
||||
//GlobalCEFApp.ChromeRuntime := True;
|
||||
GlobalCEFApp.ChromeRuntime := True;
|
||||
end;
|
||||
|
||||
procedure TMainForm.EnableButtonPnl;
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<CONFIG>
|
||||
<ProjectOptions>
|
||||
<Version Value="11"/>
|
||||
<Version Value="12"/>
|
||||
<PathDelim Value="\"/>
|
||||
<General>
|
||||
<Flags>
|
||||
@ -9,9 +9,9 @@
|
||||
<MainUnitHasCreateFormStatements Value="False"/>
|
||||
<MainUnitHasTitleStatement Value="False"/>
|
||||
<MainUnitHasScaledStatement Value="False"/>
|
||||
<CompatibilityMode Value="True"/>
|
||||
</Flags>
|
||||
<SessionStorage Value="InProjectDir"/>
|
||||
<MainUnit Value="0"/>
|
||||
<Title Value="PopupBrowser2"/>
|
||||
<UseAppBundle Value="False"/>
|
||||
<ResourceType Value="res"/>
|
||||
@ -25,7 +25,6 @@
|
||||
</PublishOptions>
|
||||
<RunParams>
|
||||
<FormatVersion Value="2"/>
|
||||
<Modes Count="0"/>
|
||||
</RunParams>
|
||||
<RequiredPackages Count="2">
|
||||
<Item1>
|
||||
@ -76,6 +75,9 @@
|
||||
</SyntaxOptions>
|
||||
</Parsing>
|
||||
<Linking>
|
||||
<Debugging>
|
||||
<DebugInfoType Value="dsDwarf3"/>
|
||||
</Debugging>
|
||||
<Options>
|
||||
<Win32>
|
||||
<GraphicApplication Value="True"/>
|
||||
|
@ -16,7 +16,6 @@ object ChildForm: TChildForm
|
||||
OnDestroy = FormDestroy
|
||||
OnShow = FormShow
|
||||
Position = poDefault
|
||||
LCLVersion = '2.0.10.0'
|
||||
object CEFLinkedWindowParent1: TCEFLinkedWindowParent
|
||||
Left = 0
|
||||
Height = 256
|
||||
|
@ -24,14 +24,14 @@ type
|
||||
procedure FormCreate(Sender: TObject);
|
||||
procedure FormDestroy(Sender: TObject);
|
||||
procedure FormClose(Sender: TObject; var CloseAction: TCloseAction);
|
||||
procedure FormCloseQuery(Sender: TObject; var CanClose: Boolean);
|
||||
procedure FormCloseQuery(Sender: TObject; var CanClose: Boolean);
|
||||
procedure FormShow(Sender: TObject);
|
||||
|
||||
procedure Chromium1BeforePopup(Sender: TObject; const browser: ICefBrowser; const frame: ICefFrame; const targetUrl, targetFrameName: ustring; targetDisposition: TCefWindowOpenDisposition; userGesture: Boolean; const popupFeatures: TCefPopupFeatures; var windowInfo: TCefWindowInfo; var client: ICefClient; var settings: TCefBrowserSettings; var extra_info: ICefDictionaryValue; var noJavascriptAccess: Boolean; var Result: Boolean);
|
||||
procedure Chromium1TitleChange(Sender: TObject; const browser: ICefBrowser; const title: ustring);
|
||||
procedure Chromium1Close(Sender: TObject; const browser: ICefBrowser; var aAction : TCefCloseBrowserAction);
|
||||
procedure Chromium1BeforeClose(Sender: TObject; const browser: ICefBrowser);
|
||||
procedure Chromium1GotFocus(Sender: TObject; const browser: ICefBrowser);
|
||||
procedure FormShow(Sender: TObject);
|
||||
procedure Chromium1BeforePopup(Sender: TObject; const browser: ICefBrowser; const frame: ICefFrame; const targetUrl, targetFrameName: ustring; targetDisposition: TCefWindowOpenDisposition; userGesture: Boolean; const popupFeatures: TCefPopupFeatures; var windowInfo: TCefWindowInfo; var client: ICefClient; var settings: TCefBrowserSettings; var extra_info: ICefDictionaryValue; var noJavascriptAccess: Boolean; var Result: Boolean);
|
||||
|
||||
protected
|
||||
FCanClose : boolean;
|
||||
@ -64,7 +64,7 @@ implementation
|
||||
|
||||
uses
|
||||
Math,
|
||||
uCEFMiscFunctions, uCEFApplication, uMainForm;
|
||||
uCEFMiscFunctions, uCEFApplication, uCEFWindowInfoWrapper, uMainForm;
|
||||
|
||||
// Destruction steps
|
||||
// =================
|
||||
@ -98,7 +98,7 @@ begin
|
||||
if (FPopupFeatures.widthset <> 0) then TempRect.Right := max(FPopupFeatures.width, 100);
|
||||
if (FPopupFeatures.heightset <> 0) then TempRect.Bottom := max(FPopupFeatures.height, 100);
|
||||
|
||||
WindowInfoAsChild(windowInfo, CEFLinkedWindowParent1.Handle, TempRect, '');
|
||||
TCEFWindowInfoWrapper.AsChild(windowInfo, CEFLinkedWindowParent1.Handle, TempRect);
|
||||
end
|
||||
else
|
||||
Result := False;
|
||||
@ -164,6 +164,9 @@ begin
|
||||
FClosing := True;
|
||||
Visible := False;
|
||||
Chromium1.CloseBrowser(True);
|
||||
|
||||
if GlobalCEFApp.ChromeRuntime then
|
||||
CEFLinkedWindowParent1.Free;
|
||||
end;
|
||||
end;
|
||||
|
||||
@ -176,11 +179,11 @@ procedure TChildForm.Chromium1BeforePopup(Sender: TObject;
|
||||
var noJavascriptAccess: Boolean; var Result: Boolean);
|
||||
begin
|
||||
case targetDisposition of
|
||||
WOD_NEW_FOREGROUND_TAB,
|
||||
WOD_NEW_BACKGROUND_TAB,
|
||||
WOD_NEW_WINDOW : Result := True; // For simplicity, this demo blocks new tabs and new windows.
|
||||
CEF_WOD_NEW_FOREGROUND_TAB,
|
||||
CEF_WOD_NEW_BACKGROUND_TAB,
|
||||
CEF_WOD_NEW_WINDOW : Result := True; // For simplicity, this demo blocks new tabs and new windows.
|
||||
|
||||
WOD_NEW_POPUP : Result := not(TMainForm(Owner).CreateClientHandler(windowInfo, client, targetFrameName, popupFeatures));
|
||||
CEF_WOD_NEW_POPUP : Result := not(TMainForm(Owner).CreateClientHandler(windowInfo, client, targetFrameName, popupFeatures));
|
||||
|
||||
else Result := False;
|
||||
end;
|
||||
|
@ -15,7 +15,7 @@ object MainForm: TMainForm
|
||||
OnCreate = FormCreate
|
||||
OnDestroy = FormDestroy
|
||||
Position = poScreenCenter
|
||||
LCLVersion = '2.0.10.0'
|
||||
LCLVersion = '3.2.0.0'
|
||||
object AddressPnl: TPanel
|
||||
Left = 0
|
||||
Height = 21
|
||||
@ -26,6 +26,7 @@ object MainForm: TMainForm
|
||||
ClientHeight = 21
|
||||
ClientWidth = 1038
|
||||
Enabled = False
|
||||
ParentBackground = False
|
||||
TabOrder = 0
|
||||
object AddressEdt: TEdit
|
||||
Left = 0
|
||||
@ -43,8 +44,8 @@ object MainForm: TMainForm
|
||||
Width = 31
|
||||
Align = alRight
|
||||
Caption = 'Go'
|
||||
OnClick = GoBtnClick
|
||||
TabOrder = 1
|
||||
OnClick = GoBtnClick
|
||||
end
|
||||
end
|
||||
object CEFLinkedWindowParent1: TCEFLinkedWindowParent
|
||||
|
@ -41,7 +41,7 @@ type
|
||||
procedure FormDestroy(Sender: TObject);
|
||||
procedure FormCloseQuery(Sender: TObject; var CanClose: Boolean);
|
||||
|
||||
procedure Chromium1AfterCreated(Sender: TObject; const browser: ICefBrowser);
|
||||
procedure Chromium1AfterCreated(Sender: TObject; const browser: ICefBrowser);
|
||||
procedure Chromium1BeforePopup(Sender: TObject; const browser: ICefBrowser; const frame: ICefFrame; const targetUrl, targetFrameName: ustring; targetDisposition: TCefWindowOpenDisposition; userGesture: Boolean; const popupFeatures: TCefPopupFeatures; var windowInfo: TCefWindowInfo; var client: ICefClient; var settings: TCefBrowserSettings; var extra_info: ICefDictionaryValue; var noJavascriptAccess: Boolean; var Result: Boolean);
|
||||
procedure Chromium1BeforeClose(Sender: TObject; const browser: ICefBrowser);
|
||||
procedure Chromium1Close(Sender: TObject; const browser: ICefBrowser; var aAction: TCefCloseBrowserAction);
|
||||
@ -129,6 +129,8 @@ procedure CreateGlobalCEFApp;
|
||||
begin
|
||||
GlobalCEFApp := TCefApplication.Create;
|
||||
GlobalCEFApp.OnContextInitialized := @GlobalCEFApp_OnContextInitialized;
|
||||
GlobalCEFApp.SetCurrentDir := True;
|
||||
GlobalCEFApp.ChromeRuntime := True;
|
||||
end;
|
||||
|
||||
procedure TMainForm.FormCloseQuery(Sender: TObject; var CanClose: Boolean);
|
||||
@ -149,6 +151,9 @@ begin
|
||||
begin
|
||||
FClosingMainForm := True;
|
||||
Chromium1.CloseBrowser(True);
|
||||
|
||||
if GlobalCEFApp.ChromeRuntime then
|
||||
CEFLinkedWindowParent1.Free;
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
@ -195,11 +200,11 @@ procedure TMainForm.Chromium1BeforePopup(Sender : TObject;
|
||||
var Result: Boolean);
|
||||
begin
|
||||
case targetDisposition of
|
||||
WOD_NEW_FOREGROUND_TAB,
|
||||
WOD_NEW_BACKGROUND_TAB,
|
||||
WOD_NEW_WINDOW : Result := True; // For simplicity, this demo blocks new tabs and new windows.
|
||||
CEF_WOD_NEW_FOREGROUND_TAB,
|
||||
CEF_WOD_NEW_BACKGROUND_TAB,
|
||||
CEF_WOD_NEW_WINDOW : Result := True; // For simplicity, this demo blocks new tabs and new windows.
|
||||
|
||||
WOD_NEW_POPUP : Result := not(CreateClientHandler(windowInfo, client, targetFrameName, popupFeatures));
|
||||
CEF_WOD_NEW_POPUP : Result := not(CreateClientHandler(windowInfo, client, targetFrameName, popupFeatures));
|
||||
|
||||
else Result := False;
|
||||
end;
|
||||
|
@ -329,6 +329,7 @@ begin
|
||||
GlobalCEFApp.EnablePrintPreview := True;
|
||||
GlobalCEFApp.EnableGPU := True;
|
||||
GlobalCEFApp.SetCurrentDir := True;
|
||||
GlobalCEFApp.ChromeRuntime := True;
|
||||
end;
|
||||
|
||||
procedure TMiniBrowserFrm.BackBtnClick(Sender: TObject);
|
||||
@ -1140,7 +1141,11 @@ begin
|
||||
|
||||
// if TChromium.MultiBrowserMode is enabled then we have to close all
|
||||
// stored browsers and not only the main browser.
|
||||
Chromium1.CloseAllBrowsers;
|
||||
Chromium1.CloseAllBrowsers;
|
||||
|
||||
// Workaround for the missing TChormium.OnClose event when "Chrome runtime" is enabled.
|
||||
if GlobalCEFApp.ChromeRuntime then
|
||||
CEFWindowParent1.Free;
|
||||
end;
|
||||
end;
|
||||
|
||||
|
@ -55,7 +55,7 @@ implementation
|
||||
|
||||
uses
|
||||
Math,
|
||||
uCEFMiscFunctions, uCEFApplication, uMainForm;
|
||||
uCEFMiscFunctions, uCEFApplication, uCEFWindowInfoWrapper, uMainForm;
|
||||
|
||||
// Destruction steps
|
||||
// =================
|
||||
@ -90,7 +90,7 @@ begin
|
||||
if (FPopupFeatures.widthset <> 0) then TempRect.Right := max(FPopupFeatures.width, 100);
|
||||
if (FPopupFeatures.heightset <> 0) then TempRect.Bottom := max(FPopupFeatures.height, 100);
|
||||
|
||||
WindowInfoAsChild(windowInfo, CEFWindowParent1.Handle, TempRect, '');
|
||||
TCEFWindowInfoWrapper.AsChild(windowInfo, CEFWindowParent1.Handle, TempRect);
|
||||
end
|
||||
else
|
||||
Result := False;
|
||||
@ -188,7 +188,11 @@ begin
|
||||
begin
|
||||
FClosing := True;
|
||||
Visible := False;
|
||||
Chromium1.CloseBrowser(True);
|
||||
Chromium1.CloseBrowser(True);
|
||||
|
||||
// Workaround for the missing TChormium.OnClose event when "Chrome runtime" is enabled.
|
||||
if GlobalCEFApp.ChromeRuntime then
|
||||
CEFWindowParent1.Free;
|
||||
end;
|
||||
end;
|
||||
|
||||
|
@ -109,6 +109,7 @@ procedure CreateGlobalCEFApp;
|
||||
begin
|
||||
GlobalCEFApp := TCefApplication.Create;
|
||||
GlobalCEFApp.SetCurrentDir := True;
|
||||
GlobalCEFApp.ChromeRuntime := True;
|
||||
//GlobalCEFApp.LogFile := 'cef.log';
|
||||
//GlobalCEFApp.LogSeverity := LOGSEVERITY_VERBOSE;
|
||||
end;
|
||||
@ -131,6 +132,10 @@ begin
|
||||
begin
|
||||
FClosingMainForm := True;
|
||||
Chromium1.CloseBrowser(True);
|
||||
|
||||
// Workaround for the missing TChormium.OnClose event when "Chrome runtime" is enabled.
|
||||
if GlobalCEFApp.ChromeRuntime then
|
||||
CEFWindowParent1.Free;
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
|
@ -59,7 +59,9 @@
|
||||
<Unit4>
|
||||
<Filename Value="uChildForm.pas"/>
|
||||
<IsPartOfProject Value="True"/>
|
||||
<ComponentName Value="ChildForm"/>
|
||||
<HasResources Value="True"/>
|
||||
<ResourceBaseClass Value="Form"/>
|
||||
</Unit4>
|
||||
</Units>
|
||||
</ProjectOptions>
|
||||
|
@ -126,7 +126,7 @@ implementation
|
||||
{$R *.lfm}
|
||||
|
||||
uses
|
||||
uCEFApplication, uCEFMiscFunctions, uBrowserTab;
|
||||
uCEFApplication, uCEFMiscFunctions, uCEFWindowInfoWrapper, uBrowserTab;
|
||||
|
||||
// The TChromium events are executed in a CEF thread and we should only update the
|
||||
// GUI controls in the main application thread.
|
||||
@ -286,6 +286,7 @@ begin
|
||||
NavControlPnl.Enabled := False;
|
||||
Chromium1.CloseBrowser(True);
|
||||
|
||||
// Workaround for the missing TChormium.OnClose event when "Chrome runtime" is enabled.
|
||||
if GlobalCEFApp.ChromeRuntime then
|
||||
CEFWindowParent1.Free;
|
||||
end;
|
||||
@ -497,7 +498,7 @@ begin
|
||||
Result := True;
|
||||
TempRect := CEFWindowParent1.ClientRect;
|
||||
|
||||
WindowInfoAsChild(windowInfo, CEFWindowParent1.Handle, TempRect, '');
|
||||
TCEFWindowInfoWrapper.AsChild(windowInfo, CEFWindowParent1.Handle, TempRect);
|
||||
end
|
||||
else
|
||||
Result := False;
|
||||
|
@ -1,26 +1,26 @@
|
||||
object ChildForm: TChildForm
|
||||
Left = 0
|
||||
Height = 256
|
||||
Top = 0
|
||||
Width = 352
|
||||
Caption = 'Popup'
|
||||
ClientHeight = 256
|
||||
ClientWidth = 352
|
||||
Color = clBtnFace
|
||||
Font.Charset = DEFAULT_CHARSET
|
||||
Font.Color = clWindowText
|
||||
Font.Height = -11
|
||||
Font.Name = 'Tahoma'
|
||||
Font.Style = []
|
||||
Position = poScreenCenter
|
||||
OnClose = FormClose
|
||||
OnCloseQuery = FormCloseQuery
|
||||
OnCreate = FormCreate
|
||||
OnDestroy = FormDestroy
|
||||
PixelsPerInch = 96
|
||||
Position = poScreenCenter
|
||||
LCLVersion = '3.2.0.0'
|
||||
object CEFWindowParent1: TCEFWindowParent
|
||||
Left = 0
|
||||
Height = 256
|
||||
Top = 0
|
||||
Width = 352
|
||||
Height = 256
|
||||
Align = alClient
|
||||
TabOrder = 0
|
||||
end
|
||||
|
@ -75,7 +75,7 @@ uses
|
||||
{$ELSE}
|
||||
Math,
|
||||
{$ENDIF}
|
||||
uCEFMiscFunctions, uCEFApplication, uMainForm;
|
||||
uCEFMiscFunctions, uCEFApplication, uCEFWindowInfoWrapper, uMainForm;
|
||||
|
||||
// Destruction steps
|
||||
// =================
|
||||
@ -111,7 +111,7 @@ begin
|
||||
if (FPopupFeatures.widthset <> 0) then TempRect.Right := max(FPopupFeatures.width, 100);
|
||||
if (FPopupFeatures.heightset <> 0) then TempRect.Bottom := max(FPopupFeatures.height, 100);
|
||||
|
||||
WindowInfoAsChild(windowInfo, CEFWindowParent1.Handle, TempRect, '');
|
||||
TCEFWindowInfoWrapper.AsChild(windowInfo, CEFWindowParent1.Handle, TempRect);
|
||||
end
|
||||
else
|
||||
Result := False;
|
||||
@ -236,7 +236,11 @@ begin
|
||||
begin
|
||||
FClosing := True;
|
||||
Visible := False;
|
||||
Chromium1.CloseBrowser(True);
|
||||
Chromium1.CloseBrowser(True);
|
||||
|
||||
// Workaround for the missing TChormium.OnClose event when "Chrome runtime" is enabled.
|
||||
if GlobalCEFApp.ChromeRuntime then
|
||||
CEFWindowParent1.Free;
|
||||
end;
|
||||
end
|
||||
else
|
||||
|
@ -160,7 +160,7 @@ begin
|
||||
GlobalCEFApp.EnablePrintPreview := True;
|
||||
GlobalCEFApp.OnContextInitialized := GlobalCEFApp_OnContextInitialized;
|
||||
GlobalCEFApp.SetCurrentDir := True;
|
||||
//GlobalCEFApp.ChromeRuntime := True;
|
||||
GlobalCEFApp.ChromeRuntime := True;
|
||||
end;
|
||||
|
||||
procedure TMainForm.EnableButtonPnl;
|
||||
|
Binary file not shown.
@ -721,151 +721,156 @@
|
||||
<td class="itemdesc"><p> A simple thread abstraction that establishes a message loop on a new thread. The consumer uses ICefTaskRunner to execute code on the thread's message loop. The thread is terminated when the ICefThread object is destroyed or stop() is called. All pending tasks queued on the thread's message loop will run to completion before the thread is terminated. cef_thread_create() can be called on any valid CEF thread in either the browser or render process. This interface should only be used for tasks that require a dedicated thread. In most cases you can post tasks to an existing CEF thread instead of creating a new one; see cef_task.h for details. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFInterfaces.ICefUnresponsiveProcessCallback.html">ICefUnresponsiveProcessCallback</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFInterfaces.html">uCEFInterfaces</a></td>
|
||||
<td class="itemdesc"><p> Callback structure for asynchronous handling of an unresponsive process. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFInterfaces.ICefUrlRequest.html">ICefUrlRequest</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFInterfaces.html">uCEFInterfaces</a></td>
|
||||
<td class="itemdesc"><p> Interface used to make a URL request. URL requests are not associated with a browser instance so no ICefClient callbacks will be executed. URL requests can be created on any valid CEF thread in either the browser or render process. Once created the functions of the URL request object must be accessed on the same thread that created it. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFInterfaces.ICefUrlrequestClient.html">ICefUrlrequestClient</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFInterfaces.html">uCEFInterfaces</a></td>
|
||||
<td class="itemdesc"><p> Interface that should be implemented by the ICefUrlRequest client. The functions of this interface will be called on the same thread that created the request unless otherwise documented. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFInterfaces.ICEFUrlRequestClientEvents.html">ICEFUrlRequestClientEvents</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFInterfaces.html">uCEFInterfaces</a></td>
|
||||
<td class="itemdesc"><p> Custom interface used to handle all the TCEFUrlRequestClientComponent events. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFInterfaces.ICefV8Accessor.html">ICefV8Accessor</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFInterfaces.html">uCEFInterfaces</a></td>
|
||||
<td class="itemdesc"><p> Interface that should be implemented to handle V8 accessor calls. Accessor identifiers are registered by calling ICefV8value.SetValue(). The functions of this interface will be called on the thread associated with the V8 accessor. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFInterfaces.ICefv8ArrayBufferReleaseCallback.html">ICefv8ArrayBufferReleaseCallback</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFInterfaces.html">uCEFInterfaces</a></td>
|
||||
<td class="itemdesc"><p> Callback interface that is passed to ICefV8value.CreateArrayBuffer. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFInterfaces.ICefv8Context.html">ICefv8Context</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFInterfaces.html">uCEFInterfaces</a></td>
|
||||
<td class="itemdesc"><p> Interface representing a V8 context handle. V8 handles can only be accessed from the thread on which they are created. Valid threads for creating a V8 handle include the render process main thread (TID_RENDERER) and WebWorker threads. A task runner for posting tasks on the associated thread can be retrieved via the ICefV8context.GetTaskRunner() function. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFInterfaces.ICefV8Exception.html">ICefV8Exception</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFInterfaces.html">uCEFInterfaces</a></td>
|
||||
<td class="itemdesc"><p> Interface representing a V8 exception. The functions of this interface may be called on any render process thread. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFInterfaces.ICefv8Handler.html">ICefv8Handler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFInterfaces.html">uCEFInterfaces</a></td>
|
||||
<td class="itemdesc"><p> Interface that should be implemented to handle V8 function calls. The functions of this interface will be called on the thread associated with the V8 function. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFInterfaces.ICefV8Interceptor.html">ICefV8Interceptor</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFInterfaces.html">uCEFInterfaces</a></td>
|
||||
<td class="itemdesc"><p> Interface that should be implemented to handle V8 interceptor calls. The functions of this interface will be called on the thread associated with the V8 interceptor. Interceptor's named property handlers (with first argument of type CefString) are called when object is indexed by string. Indexed property handlers (with first argument of type int) are called when object is indexed by integer. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFInterfaces.ICefV8StackFrame.html">ICefV8StackFrame</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFInterfaces.html">uCEFInterfaces</a></td>
|
||||
<td class="itemdesc"><p> Interface representing a V8 stack frame handle. V8 handles can only be accessed from the thread on which they are created. Valid threads for creating a V8 handle include the render process main thread (TID_RENDERER) and WebWorker threads. A task runner for posting tasks on the associated thread can be retrieved via the ICefv8context.GetTaskRunner() function. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFInterfaces.ICefV8StackTrace.html">ICefV8StackTrace</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFInterfaces.html">uCEFInterfaces</a></td>
|
||||
<td class="itemdesc"><p> Interface representing a V8 stack trace handle. V8 handles can only be accessed from the thread on which they are created. Valid threads for creating a V8 handle include the render process main thread (TID_RENDERER) and WebWorker threads. A task runner for posting tasks on the associated thread can be retrieved via the ICefv8context.GetTaskRunner() function. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFInterfaces.ICefv8Value.html">ICefv8Value</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFInterfaces.html">uCEFInterfaces</a></td>
|
||||
<td class="itemdesc"><p> Interface representing a V8 value handle. V8 handles can only be accessed from the thread on which they are created. Valid threads for creating a V8 handle include the render process main thread (TID_RENDERER) and WebWorker threads. A task runner for posting tasks on the associated thread can be retrieved via the ICefv8context.GetTaskRunner() function. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFInterfaces.ICefValue.html">ICefValue</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFInterfaces.html">uCEFInterfaces</a></td>
|
||||
<td class="itemdesc"><p> Interface that wraps other data value types. Complex types (binary, dictionary and list) will be referenced but not owned by this object. Can be used on any process and thread. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFInterfaces.ICefView.html">ICefView</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFInterfaces.html">uCEFInterfaces</a></td>
|
||||
<td class="itemdesc"><p> A View is a rectangle within the views View hierarchy. It is the base interface for all Views. All size and position values are in density independent pixels (DIP) unless otherwise indicated. Methods must be called on the browser process UI thread unless otherwise indicated. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFInterfaces.ICefViewDelegate.html">ICefViewDelegate</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFInterfaces.html">uCEFInterfaces</a></td>
|
||||
<td class="itemdesc"><p> Implement this interface to handle view events. All size and position values are in density independent pixels (DIP) unless otherwise indicated. The functions of this interface will be called on the browser process UI thread unless otherwise indicated. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFInterfaces.ICefViewDelegateEvents.html">ICefViewDelegateEvents</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFInterfaces.html">uCEFInterfaces</a></td>
|
||||
<td class="itemdesc"><p> Custom interface used to handle the ICefViewDelegate events. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFInterfaces.ICefWaitableEvent.html">ICefWaitableEvent</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFInterfaces.html">uCEFInterfaces</a></td>
|
||||
<td class="itemdesc"><p> WaitableEvent is a thread synchronization tool that allows one thread to wait for another thread to finish some work. This is equivalent to using a Lock+ConditionVariable to protect a simple boolean value. However, using WaitableEvent in conjunction with a Lock to wait for a more complex state change (e.g., for an item to be added to a queue) is not recommended. In that case consider using a ConditionVariable instead of a WaitableEvent. It is safe to create and/or signal a WaitableEvent from any thread. Blocking on a WaitableEvent by calling the *wait() functions is not allowed on the browser process UI or IO threads. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFInterfaces.ICefWindow.html">ICefWindow</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFInterfaces.html">uCEFInterfaces</a></td>
|
||||
<td class="itemdesc"><p> A Window is a top-level Window/widget in the Views hierarchy. By default it will have a non-client area with title bar, icon and buttons that supports moving and resizing. All size and position values are in density independent pixels (DIP) unless otherwise indicated. Methods must be called on the browser process UI thread unless otherwise indicated. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFInterfaces.ICefWindowDelegate.html">ICefWindowDelegate</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFInterfaces.html">uCEFInterfaces</a></td>
|
||||
<td class="itemdesc"><p> Implement this interface to handle window events. The functions of this interface will be called on the browser process UI thread unless otherwise indicated. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFInterfaces.ICefWindowDelegateEvents.html">ICefWindowDelegateEvents</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFInterfaces.html">uCEFInterfaces</a></td>
|
||||
<td class="itemdesc"><p> Custom interface used to handle all the ICefWindowDelegate events. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFInterfaces.ICefWriteHandler.html">ICefWriteHandler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFInterfaces.html">uCEFInterfaces</a></td>
|
||||
<td class="itemdesc"><p> Interface the client can implement to provide a custom stream writer. The functions of this interface may be called on any thread. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFInterfaces.ICefX509Certificate.html">ICefX509Certificate</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFInterfaces.html">uCEFInterfaces</a></td>
|
||||
<td class="itemdesc"><p> Interface representing a X.509 certificate. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFInterfaces.ICefX509CertPrincipal.html">ICefX509CertPrincipal</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFInterfaces.html">uCEFInterfaces</a></td>
|
||||
<td class="itemdesc"><p> Interface representing the issuer or subject field of an X.509 certificate. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFInterfaces.ICefXmlReader.html">ICefXmlReader</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFInterfaces.html">uCEFInterfaces</a></td>
|
||||
<td class="itemdesc"><p> Interface that supports the reading of XML data via the libxml streaming API. The functions of this interface should only be called on the thread that creates the object. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFInterfaces.ICefZipReader.html">ICefZipReader</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFInterfaces.html">uCEFInterfaces</a></td>
|
||||
<td class="itemdesc"><p> Interface that supports the reading of zip archives via the zlib unzip API. The functions of this interface should only be called on the thread that creates the object. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFInterfaces.IChromiumEvents.html">IChromiumEvents</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFInterfaces.html">uCEFInterfaces</a></td>
|
||||
<td class="itemdesc"><p> Custom interface used to handle all the TChromiumCore events. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFInterfaces.IServerEvents.html">IServerEvents</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFInterfaces.html">uCEFInterfaces</a></td>
|
||||
<td class="itemdesc"><p> Custom interface used to handle all the TCEFServerComponent events. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFChromiumCore.TBrowserInfo.html">TBrowserInfo</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFChromiumCore.html">uCEFChromiumCore</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFChromiumCore.TBrowserInfoList.html">TBrowserInfoList</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFChromiumCore.html">uCEFChromiumCore</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFBrowserWindow.TBrowserWindow.html">TBrowserWindow</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFBrowserWindow.html">uCEFBrowserWindow</a></td>
|
||||
<td class="itemdesc"><p>TBrowserWindow
|
||||
@ -888,11 +893,16 @@
|
||||
|
||||
<p>* Optional prevent pop-up windows by implementing Chromium.BeforePopup Chromium.OpenUrlFromTab</p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFBufferPanel.TBufferPanel.html">TBufferPanel</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFBufferPanel.html">uCEFBufferPanel</a></td>
|
||||
<td class="itemdesc"><p> TBufferPanel is used by VCL and LCL applications with browsers in OSR mode to draw the browser contents. See the SimpleOSRBrowser demo for more details. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFTypes.TCefAcceleratedPaintInfo.html">TCefAcceleratedPaintInfo</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFTypes.html">uCEFTypes</a></td>
|
||||
<td class="itemdesc"><p> Structure containing shared texture information for the OnAcceleratedPaint callback. Resources will be released to the underlying pool for reuse when the callback returns from client code. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFTypes.TCefAccessibilityHandler.html">TCefAccessibilityHandler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFTypes.html">uCEFTypes</a></td>
|
||||
@ -2859,6 +2869,16 @@
|
||||
<td class="itemdesc"><p> Touch handle state. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFTypes.TCefUnresponsiveProcessCallback.html">TCefUnresponsiveProcessCallback</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFTypes.html">uCEFTypes</a></td>
|
||||
<td class="itemdesc"><p> Callback structure for asynchronous handling of an unresponsive process. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFUnresponsiveProcessCallback.TCefUnresponsiveProcessCallbackRef.html">TCefUnresponsiveProcessCallbackRef</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFUnresponsiveProcessCallback.html">uCEFUnresponsiveProcessCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFTask.TCefUpdatePrefsTask.html">TCefUpdatePrefsTask</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFTask.html">uCEFTask</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
@ -3109,16 +3129,21 @@
|
||||
<td class="itemdesc"><p> Structure representing window information. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFWindowInfoWrapper.TCEFWindowInfoWrapper.html">TCEFWindowInfoWrapper</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFWindowInfoWrapper.html">uCEFWindowInfoWrapper</a></td>
|
||||
<td class="itemdesc"><p> Wrapper class used to initialize a TCEFWindowInfo record. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFWindowParent.TCEFWindowParent.html">TCEFWindowParent</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFWindowParent.html">uCEFWindowParent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFWindow.TCefWindowRef.html">TCefWindowRef</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFWindow.html">uCEFWindow</a></td>
|
||||
<td class="itemdesc"><p> A Window is a top-level Window/widget in the Views hierarchy. By default it will have a non-client area with title bar, icon and buttons that supports moving and resizing. All size and position values are in density independent pixels (DIP) unless otherwise indicated. Methods must be called on the browser process UI thread unless otherwise indicated. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFWorkScheduler.TCEFWorkScheduler.html">TCEFWorkScheduler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFWorkScheduler.html">uCEFWorkScheduler</a></td>
|
||||
<td class="itemdesc"><p>
|
||||
@ -3129,87 +3154,87 @@
|
||||
|
||||
<p></p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFWorkSchedulerQueueThread.TCEFWorkSchedulerQueueThread.html">TCEFWorkSchedulerQueueThread</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFWorkSchedulerQueueThread.html">uCEFWorkSchedulerQueueThread</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFWorkSchedulerThread.TCEFWorkSchedulerThread.html">TCEFWorkSchedulerThread</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFWorkSchedulerThread.html">uCEFWorkSchedulerThread</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFTypes.TCefWriteHandler.html">TCefWriteHandler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFTypes.html">uCEFTypes</a></td>
|
||||
<td class="itemdesc"><p> Structure the client can implement to provide a custom stream writer. The functions of this structure may be called on any thread. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFWriteHandler.TCefWriteHandlerOwn.html">TCefWriteHandlerOwn</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFWriteHandler.html">uCEFWriteHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFTypes.TCefX509Certificate.html">TCefX509Certificate</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFTypes.html">uCEFTypes</a></td>
|
||||
<td class="itemdesc"><p> Structure representing a X.509 certificate. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFX509Certificate.TCEFX509CertificateRef.html">TCEFX509CertificateRef</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFX509Certificate.html">uCEFX509Certificate</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFTypes.TCefX509CertPrincipal.html">TCefX509CertPrincipal</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFTypes.html">uCEFTypes</a></td>
|
||||
<td class="itemdesc"><p> Structure representing the issuer or subject field of an X.509 certificate. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFX509CertPrincipal.TCefX509CertPrincipalRef.html">TCefX509CertPrincipalRef</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFX509CertPrincipal.html">uCEFX509CertPrincipal</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFTypes.TCefXmlReader.html">TCefXmlReader</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFTypes.html">uCEFTypes</a></td>
|
||||
<td class="itemdesc"><p> Structure that supports the reading of XML data via the libxml streaming API. The functions of this structure should only be called on the thread that creates the object. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFXmlReader.TCefXmlReaderRef.html">TCefXmlReaderRef</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFXmlReader.html">uCEFXmlReader</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFTypes.TCefZipReader.html">TCefZipReader</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFTypes.html">uCEFTypes</a></td>
|
||||
<td class="itemdesc"><p> Structure that supports the reading of zip archives via the zlib unzip API. The functions of this structure should only be called on the thread that creates the object. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFZipReader.TCefZipReaderRef.html">TCefZipReaderRef</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFZipReader.html">uCEFZipReader</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFChromium.TChromium.html">TChromium</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFChromium.html">uCEFChromium</a></td>
|
||||
<td class="itemdesc"><p> VCL and LCL version of TChromiumCore that puts together all browser procedures, functions, properties and events in one place. It has all you need to create, modify and destroy a web browser. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFChromiumCore.TChromiumCore.html">TChromiumCore</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFChromiumCore.html">uCEFChromiumCore</a></td>
|
||||
<td class="itemdesc"><p> Parent class of TChromium and TFMXChromium that puts together all browser procedures, functions, properties and events in one place. It has all you need to create, modify and destroy a web browser. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFChromiumFontOptions.TChromiumFontOptions.html">TChromiumFontOptions</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFChromiumFontOptions.html">uCEFChromiumFontOptions</a></td>
|
||||
<td class="itemdesc"><p> The TChromiumFontOptions properties are used to fill the TCefBrowserSettings record which is used during the browser creation. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFChromiumOptions.TChromiumOptions.html">TChromiumOptions</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFChromiumOptions.html">uCEFChromiumOptions</a></td>
|
||||
<td class="itemdesc"><p> The TChromiumOptions properties used to fill the TCefBrowserSettings record which is used during the browser creation. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFChromiumWindow.TChromiumWindow.html">TChromiumWindow</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFChromiumWindow.html">uCEFChromiumWindow</a></td>
|
||||
<td class="itemdesc"><p>
|
||||
@ -3220,217 +3245,217 @@
|
||||
|
||||
<p></p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFBrowserWindow.TChromiumWrapper.html">TChromiumWrapper</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFBrowserWindow.html">uCEFBrowserWindow</a></td>
|
||||
<td class="itemdesc"><p>TChromiumWrapper</p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFTypes.TCookie.html">TCookie</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFTypes.html">uCEFTypes</a></td>
|
||||
<td class="itemdesc"><p> Cookie information. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFAccessibilityHandler.TCustomAccessibilityHandler.html">TCustomAccessibilityHandler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFAccessibilityHandler.html">uCEFAccessibilityHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFAudioHandler.TCustomAudioHandler.html">TCustomAudioHandler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFAudioHandler.html">uCEFAudioHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFBrowserViewDelegate.TCustomBrowserViewDelegate.html">TCustomBrowserViewDelegate</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFBrowserViewDelegate.html">uCEFBrowserViewDelegate</a></td>
|
||||
<td class="itemdesc"><p> This class handles all the ICefBrowserViewDelegate methods which call the ICefBrowserViewDelegateEvents methods. ICefBrowserViewDelegateEvents will be implemented by the control receiving the ICefBrowserViewDelegate events. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFButtonDelegate.TCustomButtonDelegate.html">TCustomButtonDelegate</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFButtonDelegate.html">uCEFButtonDelegate</a></td>
|
||||
<td class="itemdesc"><p> This class handles all the ICefButtonDelegate methods which call the ICefButtonDelegateEvents methods. ICefButtonDelegateEvents will be implemented by the control receiving the ICefButtonDelegate events. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFApp.TCustomCefApp.html">TCustomCefApp</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFApp.html">uCEFApp</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFNavigationEntryVisitor.TCustomCefNavigationEntryVisitor.html">TCustomCefNavigationEntryVisitor</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFNavigationEntryVisitor.html">uCEFNavigationEntryVisitor</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFStringVisitor.TCustomCefStringVisitor.html">TCustomCefStringVisitor</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFStringVisitor.html">uCEFStringVisitor</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFUrlrequestClient.TCustomCefUrlrequestClient.html">TCustomCefUrlrequestClient</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFUrlrequestClient.html">uCEFUrlrequestClient</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFClient.TCustomClientHandler.html">TCustomClientHandler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFClient.html">uCEFClient</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFCommandHandler.TCustomCommandHandler.html">TCustomCommandHandler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFCommandHandler.html">uCEFCommandHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFContextMenuHandler.TCustomContextMenuHandler.html">TCustomContextMenuHandler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFContextMenuHandler.html">uCEFContextMenuHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFCookieAccessFilter.TCustomCookieAccessFilter.html">TCustomCookieAccessFilter</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFCookieAccessFilter.html">uCEFCookieAccessFilter</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFDevToolsMessageObserver.TCustomDevToolsMessageObserver.html">TCustomDevToolsMessageObserver</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFDevToolsMessageObserver.html">uCEFDevToolsMessageObserver</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFDialogHandler.TCustomDialogHandler.html">TCustomDialogHandler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFDialogHandler.html">uCEFDialogHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFDisplayHandler.TCustomDisplayHandler.html">TCustomDisplayHandler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFDisplayHandler.html">uCEFDisplayHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFDownloadHandler.TCustomDownloadHandler.html">TCustomDownloadHandler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFDownloadHandler.html">uCEFDownloadHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFDragHandler.TCustomDragHandler.html">TCustomDragHandler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFDragHandler.html">uCEFDragHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFExtensionHandler.TCustomExtensionHandler.html">TCustomExtensionHandler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFExtensionHandler.html">uCEFExtensionHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFFindHandler.TCustomFindHandler.html">TCustomFindHandler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFFindHandler.html">uCEFFindHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFFocusHandler.TCustomFocusHandler.html">TCustomFocusHandler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFFocusHandler.html">uCEFFocusHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFFrameHandler.TCustomFrameHandler.html">TCustomFrameHandler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFFrameHandler.html">uCEFFrameHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFJsDialogHandler.TCustomJsDialogHandler.html">TCustomJsDialogHandler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFJsDialogHandler.html">uCEFJsDialogHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFKeyboardHandler.TCustomKeyboardHandler.html">TCustomKeyboardHandler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFKeyboardHandler.html">uCEFKeyboardHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLifeSpanHandler.TCustomLifeSpanHandler.html">TCustomLifeSpanHandler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLifeSpanHandler.html">uCEFLifeSpanHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLoadHandler.TCustomLoadHandler.html">TCustomLoadHandler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLoadHandler.html">uCEFLoadHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMediaObserver.TCustomMediaObserver.html">TCustomMediaObserver</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMediaObserver.html">uCEFMediaObserver</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMenuButtonDelegate.TCustomMenuButtonDelegate.html">TCustomMenuButtonDelegate</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMenuButtonDelegate.html">uCEFMenuButtonDelegate</a></td>
|
||||
<td class="itemdesc"><p> This class handles all the ICefMenuButtonDelegate methods which call the ICefMenuButtonDelegateEvents methods. ICefMenuButtonDelegateEvents will be implemented by the control receiving the ICefMenuButtonDelegate events. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFPanelDelegate.TCustomPanelDelegate.html">TCustomPanelDelegate</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFPanelDelegate.html">uCEFPanelDelegate</a></td>
|
||||
<td class="itemdesc"><p> This class handles all the ICefPanelDelegate methods which call the ICefPanelDelegateEvents methods. ICefPanelDelegateEvents will be implemented by the control receiving the ICefPanelDelegate events. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFPermissionHandler.TCustomPermissionHandler.html">TCustomPermissionHandler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFPermissionHandler.html">uCEFPermissionHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFPrintHandler.TCustomPrintHandler.html">TCustomPrintHandler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFPrintHandler.html">uCEFPrintHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFRenderHandler.TCustomRenderHandler.html">TCustomRenderHandler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFRenderHandler.html">uCEFRenderHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLoadHandler.TCustomRenderLoadHandler.html">TCustomRenderLoadHandler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLoadHandler.html">uCEFLoadHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFRequestContextHandler.TCustomRequestContextHandler.html">TCustomRequestContextHandler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFRequestContextHandler.html">uCEFRequestContextHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFRequestHandler.TCustomRequestHandler.html">TCustomRequestHandler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFRequestHandler.html">uCEFRequestHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFResourceRequestHandler.TCustomResourceRequestHandler.html">TCustomResourceRequestHandler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFResourceRequestHandler.html">uCEFResourceRequestHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFResponseFilter.TCustomResponseFilter.html">TCustomResponseFilter</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFResponseFilter.html">uCEFResponseFilter</a></td>
|
||||
<td class="itemdesc"><p> Custom class implementing a resource filter with events. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFServerHandler.TCustomServerHandler.html">TCustomServerHandler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFServerHandler.html">uCEFServerHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFTextfieldDelegate.TCustomTextfieldDelegate.html">TCustomTextfieldDelegate</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFTextfieldDelegate.html">uCEFTextfieldDelegate</a></td>
|
||||
<td class="itemdesc"><p> This class handles all the ICefTextfieldDelegate and ICefViewDelegate methods which call the ICefTextfieldDelegateEvents methods. ICefTextfieldDelegateEvents will be implemented by the control receiving the ICefTextfieldDelegate events. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFViewDelegate.TCustomViewDelegate.html">TCustomViewDelegate</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFViewDelegate.html">uCEFViewDelegate</a></td>
|
||||
<td class="itemdesc"><p> This class handles all the ICefViewDelegate methods which call the ICefViewDelegateEvents methods. ICefViewDelegateEvents will be implemented by the control receiving the ICefViewDelegate events. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFWindowDelegate.TCustomWindowDelegate.html">TCustomWindowDelegate</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFWindowDelegate.html">uCEFWindowDelegate</a></td>
|
||||
<td class="itemdesc"><p> This class handles all the TCustomWindowDelegate methods which call the ICefWindowDelegateEvents methods. ICefWindowDelegateEvents will be implemented by the control receiving the TCustomWindowDelegate events. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFBrowserWindow.TEmbeddedChromium.html">TEmbeddedChromium</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFBrowserWindow.html">uCEFBrowserWindow</a></td>
|
||||
<td class="itemdesc"><p>TEmbeddedChromium
|
||||
@ -3439,34 +3464,34 @@
|
||||
|
||||
<p>2) TEmbeddedChromium adds InternalEvents that can be hooked by the component that owns the TEmbeddedChromium. This means the default published events are available to the end user. Published events that should not be available are hidden via THiddenPropertyEditor * Hidden event properties must not be assigned by any end user code. *</p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFOsrBrowserWindow.TEmbeddedOsrChromium.html">TEmbeddedOsrChromium</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFOsrBrowserWindow.html">uCEFOsrBrowserWindow</a></td>
|
||||
<td class="itemdesc"><p>TEmbeddedOsrChromium
|
||||
|
||||
<p>Hides (THiddenPropertyEditor) any published event that is used by TOsrBrowserWindow * Hidden events must also not be used by user code *</p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFTypes.TFileVersionInfo.html">TFileVersionInfo</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFTypes.html">uCEFTypes</a></td>
|
||||
<td class="itemdesc"><p> Record used by GetDLLVersion to get the DLL version information </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFFMXBufferPanel.TFMXBufferPanel.html">TFMXBufferPanel</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFFMXBufferPanel.html">uCEFFMXBufferPanel</a></td>
|
||||
<td class="itemdesc"><p> TBufferPanel is used by FMX applications with browsers in OSR mode to draw the browser contents. See the FMXExternalPumpBrowser demo for more details. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFFMXChromium.TFMXChromium.html">TFMXChromium</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFFMXChromium.html">uCEFFMXChromium</a></td>
|
||||
<td class="itemdesc"><p> FMX version of TChromiumCore that puts together all browser procedures, functions, properties and events in one place. It has all you need to create, modify and destroy a web browser. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFFMXWindowParent.TFMXWindowParent.html">TFMXWindowParent</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFFMXWindowParent.html">uCEFFMXWindowParent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFFMXWorkScheduler.TFMXWorkScheduler.html">TFMXWorkScheduler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFFMXWorkScheduler.html">uCEFFMXWorkScheduler</a></td>
|
||||
<td class="itemdesc"><p>
|
||||
@ -3477,42 +3502,42 @@
|
||||
|
||||
<p></p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFBaseRefCounted.TLoggingInterfacedObject.html">TLoggingInterfacedObject</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFBaseRefCounted.html">uCEFBaseRefCounted</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFTypes.TMyMemoryStatusEx.html">TMyMemoryStatusEx</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFTypes.html">uCEFTypes</a></td>
|
||||
<td class="itemdesc"><p> Record used with GetGlobalMemoryStatusEx to get the memory status. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFOLEDragAndDrop.TOLEDataObject.html">TOLEDataObject</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFOLEDragAndDrop.html">uCEFOLEDragAndDrop</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFOLEDragAndDrop.TOLEDragAndDropMgr.html">TOLEDragAndDropMgr</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFOLEDragAndDrop.html">uCEFOLEDragAndDrop</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFOLEDragAndDrop.TOLEDropSource.html">TOLEDropSource</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFOLEDragAndDrop.html">uCEFOLEDragAndDrop</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFOLEDragAndDrop.TOLEDropTarget.html">TOLEDropTarget</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFOLEDragAndDrop.html">uCEFOLEDragAndDrop</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFOLEDragAndDrop.TOLEEnumFormatEtc.html">TOLEEnumFormatEtc</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFOLEDragAndDrop.html">uCEFOLEDragAndDrop</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFOsrBrowserWindow.TOsrBrowserWindow.html">TOsrBrowserWindow</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFOsrBrowserWindow.html">uCEFOsrBrowserWindow</a></td>
|
||||
<td class="itemdesc"><p>TOsrBrowserWindow - Off-Screen-Rendering
|
||||
@ -3523,17 +3548,17 @@
|
||||
|
||||
<p>This component is still experimental. - On MacOS Keyboard support is not complete</p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFTypes.TOSVersionInfoEx.html">TOSVersionInfoEx</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFTypes.html">uCEFTypes</a></td>
|
||||
<td class="itemdesc"><p> Record used with RtlGetVersion to get the Windows version information. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFPDFPrintOptions.TPDFPrintOptions.html">TPDFPrintOptions</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFPDFPrintOptions.html">uCEFPDFPrintOptions</a></td>
|
||||
<td class="itemdesc"><p> The TPDFPrintOptions properties are used to fill the TCefPdfPrintSettings record which is used in the TChromiumCore.PrintToPDF call. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFTypes.TUrlParts.html">TUrlParts</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFTypes.html">uCEFTypes</a></td>
|
||||
<td class="itemdesc"><p> String version of TCefUrlParts </p></td>
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -183,15 +183,15 @@
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefGetDataURI-ustring-ustring-">CefGetDataURI</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Returns a URI with a DATA scheme using |aString| as the URI's data. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefGetDataURI-pointer-integer-ustring-ustring-">CefGetDataURI</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Returns a URI with a DATA scheme encoding |aData| as a base64 string. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefGetDataURI-ustring-ustring-">CefGetDataURI</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Returns a URI with a DATA scheme using |aString| as the URI's data. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefGetExtensionsForMimeType-ustring-TStringList-">CefGetExtensionsForMimeType</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
@ -334,15 +334,15 @@
|
||||
<td class="itemdesc"><p> Sets or clears a specific key-value pair from the crash metadata. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefString-ustring-">CefString</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p>Converts ustring to TCefString.</p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefString-PCefString-">CefString</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p>Converts PCefString to ustring.</p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefString-ustring-">CefString</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p>Converts ustring to TCefString.</p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefStringAlloc-ustring-">CefStringAlloc</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
@ -374,276 +374,281 @@
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefStringSet-TCefString-TCefString-">CefStringSet</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefTimeDelta-TCefTime-TCefTime-">CefTimeDelta</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Retrieve the delta in milliseconds between two time values. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefTimeNow">CefTimeNow</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Retrieve the current system time in a TCefTime type. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefTimeToDateTime-TCefTime-">CefTimeToDateTime</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Converts a TCefTime value to TDateTime. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefTimeToDouble-TCefTime-">CefTimeToDouble</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Converts TCefTime to a double which is the number of seconds since epoch (Jan 1, 1970). Webkit uses this format to represent time. A value of 0 means "not initialized". </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefTimeToSystemTime-TCefTime-">CefTimeToSystemTime</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Converts a TCefTime value to TSystemTime. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefTimeToUnixTime-TCefTime-">CefTimeToUnixTime</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Converts cef_time_t to time_t. time_t is almost always an integral value holding the number of seconds (not counting leap seconds) since 00:00, Jan 1 1970 UTC, corresponding to POSIX time. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefUriDecode-ustring-Boolean-TCefUriUnescapeRule-">CefUriDecode</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Unescapes |text| and returns the result. Unescaping consists of looking for the exact pattern "%XX" where each X is a hex digit and converting to the character with the numerical value of those digits (e.g. "i%20=%203%3b" unescapes to "i = 3;"). If |convert_to_utf8| is true (1) this function will attempt to interpret the initial decoded result as UTF-8. If the result is convertable into UTF-8 it will be returned as converted. Otherwise the initial decoded result will be returned. The |unescape_rule| parameter supports further customization the decoding process. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefUriEncode-ustring-Boolean-">CefUriEncode</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Escapes characters in |text| which are unsuitable for use as a query parameter value. Everything except alphanumerics and -_.!~*'() will be converted to "%XX". If |use_plus| is true (1) spaces will change to "+". The result is basically the same as encodeURIComponent in Javacript. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefUserFreeString-ustring-">CefUserFreeString</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefZipDirectory-ustring-ustring-Boolean-">CefZipDirectory</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Writes the contents of |srcDir| into a zip archive at |destFile|. If |includeHiddenFiles| is true (1) files starting with "." will be included. Returns true (1) on success. Calling this function on the browser process UI or IO threads is not allowed. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#cef_string_copy-PCefChar-NativeUInt-PCefString-">cef_string_copy</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#cef_string_utf16_copy-PChar16-NativeUInt-PCefStringUtf16-">cef_string_utf16_copy</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#cef_string_utf8_copy-PAnsiChar-NativeUInt-PCefStringUtf8-">cef_string_utf8_copy</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#cef_string_wide_copy-PWideChar-NativeUInt-PCefStringWide-">cef_string_wide_copy</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CetTimeFromCefBaseTime-TCefBaseTime-">CetTimeFromCefBaseTime</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Converts TCefBaseTime to TCefTime. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CetTimeToCefBaseTime-TCefTime-">CetTimeToCefBaseTime</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Converts TCefTime to TCefBaseTime. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CheckDLLs-string-string-">CheckDLLs</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CheckDLLVersion-ustring-uint16-uint16-uint16-uint16-">CheckDLLVersion</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CheckFilesExist-TStringList-string-">CheckFilesExist</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CheckLocales-string-string-string-">CheckLocales</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CheckRealWindowsVersion-cardinal-cardinal-">CheckRealWindowsVersion</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CheckResources-string-string-">CheckResources</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CheckSubprocessPath-string-string-">CheckSubprocessPath</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CustomAbsolutePath-string-boolean-">CustomAbsolutePath</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Returns the absolute path version of aPath. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CustomExceptionHandler-string-exception-">CustomExceptionHandler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CustomPathCanonicalize-string-string-">CustomPathCanonicalize</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Simplifies a path by removing navigation elements such as "." and ".." to produce a direct, well-formed path. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CustomPathIsRelative-string-">CustomPathIsRelative</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Returns true if aPath is a relative path. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CustomPathIsUNC-string-">CustomPathIsUNC</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Determines if aPath is a valid Universal Naming Convention (UNC) path, as opposed to a path based on a drive letter. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CustomPathIsURL-string-">CustomPathIsURL</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Tests aPath to determine if it conforms to a valid URL format. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#DateTimeToCefBaseTime-TDateTime-">DateTimeToCefBaseTime</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Converts a TDateTime value to TCefBaseTime. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#DateTimeToCefTime-TDateTime-">DateTimeToCefTime</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Converts a TDateTime value to TCefTime. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#DeleteDirContents-string-TStringList-">DeleteDirContents</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#DeleteFileList-TStringList-">DeleteFileList</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFApplication.html#DestroyGlobalCEFApp">DestroyGlobalCEFApp</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFApplication.html">uCEFApplication</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFApplicationCore.html#DestroyGlobalCEFApp">DestroyGlobalCEFApp</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFApplicationCore.html">uCEFApplicationCore</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFTimerWorkScheduler.html#DestroyGlobalCEFTimerWorkScheduler">DestroyGlobalCEFTimerWorkScheduler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFTimerWorkScheduler.html">uCEFTimerWorkScheduler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFWorkScheduler.html#DestroyGlobalCEFWorkScheduler">DestroyGlobalCEFWorkScheduler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFWorkScheduler.html">uCEFWorkScheduler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFFMXWorkScheduler.html#DestroyGlobalFMXWorkScheduler">DestroyGlobalFMXWorkScheduler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFFMXWorkScheduler.html">uCEFFMXWorkScheduler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#DeviceToLogical-TCEFMouseEvent-double-">DeviceToLogical</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#DeviceToLogical-single-double-">DeviceToLogical</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#DeviceToLogical-integer-double-">DeviceToLogical</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#DeviceToLogical-TCefTouchEvent-double-">DeviceToLogical</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#DeviceToLogical-TPoint-double-">DeviceToLogical</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#DoubleTimeNow">DoubleTimeNow</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Retrieve the current system time in a double type. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#DoubleToCefTime-double-">DoubleToCefTime</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Converts TCefTime from a double which is the number of seconds since epoch (Jan 1, 1970). Webkit uses this format to represent time. A value of 0 means "not initialized". </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#DragOperationToDropEffect-TCefDragOperations-Longint-">DragOperationToDropEffect</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#DropEffectToDragOperation-Longint-TCefDragOperations-">DropEffectToDragOperation</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#FileVersionInfoToString-TFileVersionInfo-">FileVersionInfoToString</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#FixCefTime-TCefTime-">FixCefTime</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Returns a new TCefTime with a valid time in case the original has errors. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#GetAbsoluteDirPath-string-string-">GetAbsoluteDirPath</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#GetCefKeyboardModifiers-WPARAM-LPARAM-">GetCefKeyboardModifiers</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#GetCefMouseModifiers">GetCefMouseModifiers</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#GetCefMouseModifiers-WPARAM-">GetCefMouseModifiers</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#GetCommandLineSwitchValue-string-ustring-">GetCommandLineSwitchValue</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Returns a command line switch value if it exists. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#GetDefaultCEFUserAgent">GetDefaultCEFUserAgent</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p>
|
||||
@ -654,327 +659,327 @@
|
||||
|
||||
<p></p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#GetDeviceScaleFactor">GetDeviceScaleFactor</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#GetDLLHeaderMachine-ustring-integer-">GetDLLHeaderMachine</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#GetDLLVersion-ustring-TFileVersionInfo-">GetDLLVersion</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#GetDPIForHandle-HWND-UINT-">GetDPIForHandle</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#GetExtendedFileVersion-ustring-">GetExtendedFileVersion</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#GetFileTypeDescription-ustring-">GetFileTypeDescription</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#GetGlobalMemoryStatusEx-LPMEMORYSTATUSEX-">GetGlobalMemoryStatusEx</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#GetIsWow64Process2-WORD-WORD-">GetIsWow64Process2</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#GetModulePath">GetModulePath</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Retrieves the fully qualified path for the current module. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#GetRealWindowsVersion-cardinal-cardinal-">GetRealWindowsVersion</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#GetRegistryWindowsVersion-cardinal-cardinal-">GetRegistryWindowsVersion</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#GetScreenDPI">GetScreenDPI</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#GetTimeIntervalMilliseconds-TCefTime-">GetTimeIntervalMilliseconds</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Returns the time interval between now and from_ in milliseconds. This funcion should only be used by TCEFTimerWorkScheduler. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#GetWindowsMajorMinorVersion-DWORD-DWORD-">GetWindowsMajorMinorVersion</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#InitializeCefTime-TCefTime-">InitializeCefTime</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Initialize a TCefTime variable. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#InitializeWindowHandle-TCefWindowHandle-">InitializeWindowHandle</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#Is32BitProcess">Is32BitProcess</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#IsCEFSubprocess">IsCEFSubprocess</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Returns true if the command line switch has a "type" value. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#IsWowProcess">IsWowProcess</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#LogicalToDevice-TCEFRect-double-">LogicalToDevice</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#LogicalToDevice-integer-double-">LogicalToDevice</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#MoveFileList-TStringList-string-string-">MoveFileList</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#NetApiBufferFree-Pointer-">NetApiBufferFree</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#NetServerGetInfo-LPWSTR-DWORD-Pointer-">NetServerGetInfo</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#OutputDebugMessage-string-">OutputDebugMessage</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#OutputLastErrorMessage">OutputLastErrorMessage</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#PathCanonicalizeAnsi-LPSTR-LPCSTR-">PathCanonicalizeAnsi</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#PathCanonicalizeUnicode-LPWSTR-LPCWSTR-">PathCanonicalizeUnicode</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#PathIsRelativeAnsi-LPCSTR-">PathIsRelativeAnsi</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#PathIsRelativeUnicode-LPCWSTR-">PathIsRelativeUnicode</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#PathIsUNCAnsi-LPCSTR-">PathIsUNCAnsi</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#PathIsUNCUnicode-LPCWSTR-">PathIsUNCUnicode</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#PathIsURLAnsi-LPCSTR-">PathIsURLAnsi</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#PathIsURLUnicode-LPCWSTR-">PathIsURLUnicode</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#ProcessUnderWow64-THandle-PBOOL-">ProcessUnderWow64</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFBrowserViewComponent.html#Register">Register</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFBrowserViewComponent.html">uCEFBrowserViewComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFBrowserWindow.html#Register">Register</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFBrowserWindow.html">uCEFBrowserWindow</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFBufferPanel.html#Register">Register</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFBufferPanel.html">uCEFBufferPanel</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFChromium.html#Register">Register</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFChromium.html">uCEFChromium</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFChromiumWindow.html#Register">Register</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFChromiumWindow.html">uCEFChromiumWindow</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLabelButtonComponent.html#Register">Register</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLabelButtonComponent.html">uCEFLabelButtonComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLinkedWindowParent.html#Register">Register</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLinkedWindowParent.html">uCEFLinkedWindowParent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMenuButtonComponent.html#Register">Register</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMenuButtonComponent.html">uCEFMenuButtonComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFOsrBrowserWindow.html#Register">Register</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFOsrBrowserWindow.html">uCEFOsrBrowserWindow</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFPanelComponent.html#Register">Register</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFPanelComponent.html">uCEFPanelComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFScrollViewComponent.html#Register">Register</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFScrollViewComponent.html">uCEFScrollViewComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFSentinel.html#Register">Register</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFSentinel.html">uCEFSentinel</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFServerComponent.html#Register">Register</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFServerComponent.html">uCEFServerComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFTextfieldComponent.html#Register">Register</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFTextfieldComponent.html">uCEFTextfieldComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFUrlRequestClientComponent.html#Register">Register</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFUrlRequestClientComponent.html">uCEFUrlRequestClientComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFWindowComponent.html#Register">Register</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFWindowComponent.html">uCEFWindowComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFWindowParent.html#Register">Register</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFWindowParent.html">uCEFWindowParent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFWorkScheduler.html#Register">Register</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFWorkScheduler.html">uCEFWorkScheduler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#RunningWindows10OrNewer">RunningWindows10OrNewer</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#SetWindowLongPtr-HWND-Integer-LongInt-">SetWindowLongPtr</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#ShutdownBlockReasonCreate-HWND-LPCWSTR-">ShutdownBlockReasonCreate</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#ShutdownBlockReasonDestroy-HWND-">ShutdownBlockReasonDestroy</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#SplitLongString-string-">SplitLongString</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#SystemTimeToCefTime-TSystemTime-">SystemTimeToCefTime</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Converts a TSystemTime value to TCefTime. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#UInt64ToFileVersionInfo-uint64-TFileVersionInfo-">UInt64ToFileVersionInfo</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#UnixTimeToCefTime-int64-">UnixTimeToCefTime</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Converts cef_time_t from time_t. time_t is almost always an integral value holding the number of seconds (not counting leap seconds) since 00:00, Jan 1 1970 UTC, corresponding to POSIX time. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#ValidCefWindowHandle-TCefWindowHandle-">ValidCefWindowHandle</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#WindowInfoAsChild-TCefWindowInfo-TCefWindowHandle-TRect-ustring-DWORD-">WindowInfoAsChild</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#WindowInfoAsPopUp-TCefWindowInfo-TCefWindowHandle-ustring-DWORD-">WindowInfoAsPopUp</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#WindowInfoAsWindowless-TCefWindowInfo-TCefWindowHandle-ustring-DWORD-">WindowInfoAsWindowless</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -759,97 +759,105 @@
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFUnresponsiveProcessCallback.html">uCEFUnresponsiveProcessCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFUrlRequest.html">uCEFUrlRequest</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFUrlrequestClient.html">uCEFUrlrequestClient</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFUrlRequestClientComponent.html">uCEFUrlRequestClientComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFUrlRequestClientEvents.html">uCEFUrlRequestClientEvents</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8Accessor.html">uCEFv8Accessor</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8ArrayBufferReleaseCallback.html">uCEFv8ArrayBufferReleaseCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8Context.html">uCEFv8Context</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8Exception.html">uCEFv8Exception</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8Handler.html">uCEFv8Handler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8Interceptor.html">uCEFv8Interceptor</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8StackFrame.html">uCEFv8StackFrame</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8StackTrace.html">uCEFv8StackTrace</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8Value.html">uCEFv8Value</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFValue.html">uCEFValue</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFView.html">uCEFView</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFViewComponent.html">uCEFViewComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFViewDelegate.html">uCEFViewDelegate</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFViewsFrameworkEvents.html">uCEFViewsFrameworkEvents</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFWaitableEvent.html">uCEFWaitableEvent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFWinControl.html">uCEFWinControl</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFWindow.html">uCEFWindow</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFWindowComponent.html">uCEFWindowComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFWindowDelegate.html">uCEFWindowDelegate</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFWindowInfoWrapper.html">uCEFWindowInfoWrapper</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFWindowParent.html">uCEFWindowParent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
|
@ -226,776 +226,781 @@
|
||||
<td class="itemdesc"><p>/include/internal/cef_thread_internal.h</p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_get_exit_code">cef_get_exit_code</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_get_extensions_for_mime_type">cef_get_extensions_for_mime_type</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_get_mime_type">cef_get_mime_type</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_get_min_log_level">cef_get_min_log_level</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/internal/cef_logging_internal.h</p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_get_path">cef_get_path</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/capi/cef_path_util_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_get_temp_directory">cef_get_temp_directory</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_get_vlog_level">cef_get_vlog_level</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_image_create">cef_image_create</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/capi/cef_image_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_initialize">cef_initialize</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>********************************* ************* CAPI ************** ********************************* /include/capi/cef_app_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_is_cert_status_error">cef_is_cert_status_error</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/capi/cef_ssl_info_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_is_rtl">cef_is_rtl</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/ include/capi/cef_i18n_util_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_label_button_create">cef_label_button_create</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/capi/views/cef_label_button_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_launch_process">cef_launch_process</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/capi/cef_process_util_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_list_value_create">cef_list_value_create</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_load_crlsets_file">cef_load_crlsets_file</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_log">cef_log</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_media_router_get_global">cef_media_router_get_global</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/capi/cef_media_router_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_menu_button_create">cef_menu_button_create</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/capi/views/cef_menu_button_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_menu_model_create">cef_menu_model_create</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/capi/cef_menu_model_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_now_from_system_trace_time">cef_now_from_system_trace_time</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_panel_create">cef_panel_create</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/capi/views/cef_panel_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_parse_json">cef_parse_json</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_parse_jsonand_return_error">cef_parse_jsonand_return_error</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_parse_json_buffer">cef_parse_json_buffer</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_parse_url">cef_parse_url</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_post_data_create">cef_post_data_create</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_post_data_element_create">cef_post_data_element_create</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_post_delayed_task">cef_post_delayed_task</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_post_task">cef_post_task</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_preference_manager_get_global">cef_preference_manager_get_global</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/capi/cef_preference_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_print_settings_create">cef_print_settings_create</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/capi/cef_print_settings_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_process_message_create">cef_process_message_create</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/capi/cef_process_message_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_quit_message_loop">cef_quit_message_loop</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_register_extension">cef_register_extension</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_register_scheme_handler_factory">cef_register_scheme_handler_factory</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/capi/cef_scheme_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_remove_cross_origin_whitelist_entry">cef_remove_cross_origin_whitelist_entry</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_request_context_create_context">cef_request_context_create_context</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_request_context_get_global_context">cef_request_context_get_global_context</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/capi/cef_request_context_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_request_create">cef_request_create</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/capi/cef_request_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_resolve_url">cef_resolve_url</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/capi/cef_parser_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_resource_bundle_get_global">cef_resource_bundle_get_global</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/capi/cef_resource_bundle_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_response_create">cef_response_create</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/capi/cef_response_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_run_message_loop">cef_run_message_loop</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_scroll_view_create">cef_scroll_view_create</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/capi/views/cef_scroll_view_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_server_create">cef_server_create</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/capi/cef_server_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_set_crash_key_value">cef_set_crash_key_value</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_set_osmodal_loop">cef_set_osmodal_loop</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>********************************* *********** INTERNAL ************ ********************************* /include/internal/cef_app_win.h</p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_shared_process_message_builder_create">cef_shared_process_message_builder_create</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/capi/cef_shared_process_message_builder_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_shutdown">cef_shutdown</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_stream_reader_create_for_data">cef_stream_reader_create_for_data</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_stream_reader_create_for_file">cef_stream_reader_create_for_file</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/capi/cef_stream_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_stream_reader_create_for_handler">cef_stream_reader_create_for_handler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_stream_writer_create_for_file">cef_stream_writer_create_for_file</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_stream_writer_create_for_handler">cef_stream_writer_create_for_handler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_ascii_to_utf16">cef_string_ascii_to_utf16</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_ascii_to_wide">cef_string_ascii_to_wide</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_list_alloc">cef_string_list_alloc</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/internal/cef_string_list.h</p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_list_append">cef_string_list_append</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_list_clear">cef_string_list_clear</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_list_copy">cef_string_list_copy</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_list_free">cef_string_list_free</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_list_size">cef_string_list_size</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_list_value">cef_string_list_value</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_map_alloc">cef_string_map_alloc</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/internal/cef_string_map.h</p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_map_append">cef_string_map_append</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_map_clear">cef_string_map_clear</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_map_find">cef_string_map_find</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_map_free">cef_string_map_free</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_map_key">cef_string_map_key</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_map_size">cef_string_map_size</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_map_value">cef_string_map_value</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_multimap_alloc">cef_string_multimap_alloc</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/internal/cef_string_multimap.h</p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_multimap_append">cef_string_multimap_append</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_multimap_clear">cef_string_multimap_clear</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_multimap_enumerate">cef_string_multimap_enumerate</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_multimap_find_count">cef_string_multimap_find_count</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_multimap_free">cef_string_multimap_free</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_multimap_key">cef_string_multimap_key</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_multimap_size">cef_string_multimap_size</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_multimap_value">cef_string_multimap_value</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_userfree_utf16_alloc">cef_string_userfree_utf16_alloc</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_userfree_utf16_free">cef_string_userfree_utf16_free</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_userfree_utf8_alloc">cef_string_userfree_utf8_alloc</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_userfree_utf8_free">cef_string_userfree_utf8_free</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_userfree_wide_alloc">cef_string_userfree_wide_alloc</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_userfree_wide_free">cef_string_userfree_wide_free</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_utf16_clear">cef_string_utf16_clear</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_utf16_cmp">cef_string_utf16_cmp</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_utf16_set">cef_string_utf16_set</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_utf16_to_lower">cef_string_utf16_to_lower</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_utf16_to_upper">cef_string_utf16_to_upper</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_utf16_to_utf8">cef_string_utf16_to_utf8</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_utf16_to_wide">cef_string_utf16_to_wide</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_utf8_clear">cef_string_utf8_clear</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_utf8_cmp">cef_string_utf8_cmp</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_utf8_set">cef_string_utf8_set</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_utf8_to_utf16">cef_string_utf8_to_utf16</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_utf8_to_wide">cef_string_utf8_to_wide</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_wide_clear">cef_string_wide_clear</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_wide_cmp">cef_string_wide_cmp</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_wide_set">cef_string_wide_set</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/internal/cef_string_types.h</p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_wide_to_utf16">cef_string_wide_to_utf16</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_string_wide_to_utf8">cef_string_wide_to_utf8</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_task_runner_get_for_current_thread">cef_task_runner_get_for_current_thread</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/capi/cef_task_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_task_runner_get_for_thread">cef_task_runner_get_for_thread</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_textfield_create">cef_textfield_create</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/capi/views/cef_textfield_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_thread_create">cef_thread_create</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/capi/cef_thread_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_time_delta">cef_time_delta</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_time_from_basetime">cef_time_from_basetime</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_time_from_doublet">cef_time_from_doublet</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_time_from_timet">cef_time_from_timet</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_time_now">cef_time_now</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_time_to_basetime">cef_time_to_basetime</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_time_to_doublet">cef_time_to_doublet</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_time_to_timet">cef_time_to_timet</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/internal/cef_time.h</p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_trace_counter">cef_trace_counter</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_trace_counter_id">cef_trace_counter_id</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_trace_event_async_begin">cef_trace_event_async_begin</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_trace_event_async_end">cef_trace_event_async_end</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_trace_event_async_step_into">cef_trace_event_async_step_into</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_trace_event_async_step_past">cef_trace_event_async_step_past</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_trace_event_begin">cef_trace_event_begin</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_trace_event_end">cef_trace_event_end</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_trace_event_instant">cef_trace_event_instant</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/internal/cef_trace_event_internal.h</p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_uridecode">cef_uridecode</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_uriencode">cef_uriencode</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_urlrequest_create">cef_urlrequest_create</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/capi/cef_urlrequest_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_v8context_get_current_context">cef_v8context_get_current_context</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/capi/cef_v8_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_v8context_get_entered_context">cef_v8context_get_entered_context</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_v8context_in_context">cef_v8context_in_context</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_v8stack_trace_get_current">cef_v8stack_trace_get_current</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_v8value_create_array">cef_v8value_create_array</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_v8value_create_array_buffer">cef_v8value_create_array_buffer</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_v8value_create_bool">cef_v8value_create_bool</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_v8value_create_date">cef_v8value_create_date</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_v8value_create_double">cef_v8value_create_double</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_v8value_create_function">cef_v8value_create_function</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_v8value_create_int">cef_v8value_create_int</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_v8value_create_null">cef_v8value_create_null</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_v8value_create_object">cef_v8value_create_object</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_v8value_create_promise">cef_v8value_create_promise</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_v8value_create_string">cef_v8value_create_string</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_v8value_create_uint">cef_v8value_create_uint</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_v8value_create_undefined">cef_v8value_create_undefined</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_value_create">cef_value_create</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/capi/cef_values_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_waitable_event_create">cef_waitable_event_create</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/capi/cef_waitable_event_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_window_create_top_level">cef_window_create_top_level</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/capi/views/cef_window_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_write_json">cef_write_json</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_xml_reader_create">cef_xml_reader_create</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/capi/cef_xml_reader_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_zip_directory">cef_zip_directory</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html#cef_zip_reader_create">cef_zip_reader_create</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p>/include/capi/cef_zip_reader_capi.h</p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFApplication.html#GlobalCEFApp">GlobalCEFApp</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFApplication.html">uCEFApplication</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFApplicationCore.html#GlobalCEFApp">GlobalCEFApp</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFApplicationCore.html">uCEFApplicationCore</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFTimerWorkScheduler.html#GlobalCEFTimerWorkScheduler">GlobalCEFTimerWorkScheduler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFTimerWorkScheduler.html">uCEFTimerWorkScheduler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFWorkScheduler.html#GlobalCEFWorkScheduler">GlobalCEFWorkScheduler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFWorkScheduler.html">uCEFWorkScheduler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFFMXWorkScheduler.html#GlobalFMXWorkScheduler">GlobalFMXWorkScheduler</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFFMXWorkScheduler.html">uCEFFMXWorkScheduler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
|
@ -18,7 +18,7 @@
|
||||
<li><a class="bold" href="uCEFInterfaces.ICefLifeSpanHandler.html">ICefLifeSpanHandler</a><li><a class="bold" href="uCEFInterfaces.ICefListValue.html">ICefListValue</a><li><a class="bold" href="uCEFInterfaces.ICefLoadHandler.html">ICefLoadHandler</a><li><a class="bold" href="uCEFInterfaces.ICefMediaAccessCallback.html">ICefMediaAccessCallback</a><li><a class="bold" href="uCEFInterfaces.ICefMediaAccessHandler.html">ICefMediaAccessHandler</a><li><a class="bold" href="uCEFInterfaces.ICefMediaObserver.html">ICefMediaObserver</a><li><a class="bold" href="uCEFInterfaces.ICefMediaRoute.html">ICefMediaRoute</a><li><a class="bold" href="uCEFInterfaces.ICefMediaRouteCreateCallback.html">ICefMediaRouteCreateCallback</a><li><a class="bold" href="uCEFInterfaces.ICefMediaRouter.html">ICefMediaRouter</a><li><a class="bold" href="uCEFInterfaces.ICefMediaSink.html">ICefMediaSink</a><li><a class="bold" href="uCEFInterfaces.ICefMediaSinkDeviceInfoCallback.html">ICefMediaSinkDeviceInfoCallback</a><li><a class="bold" href="uCEFInterfaces.ICefMediaSource.html">ICefMediaSource</a><li><a class="bold" href="uCEFInterfaces.ICefMenuButtonPressedLock.html">ICefMenuButtonPressedLock</a><li><a class="bold" href="uCEFInterfaces.ICefMenuModel.html">ICefMenuModel</a><li><a class="bold" href="uCEFInterfaces.ICefMenuModelDelegate.html">ICefMenuModelDelegate</a><li><a class="bold" href="uCEFInterfaces.ICefNavigationEntry.html">ICefNavigationEntry</a><li><a class="bold" href="uCEFInterfaces.ICefNavigationEntryVisitor.html">ICefNavigationEntryVisitor</a><li><a class="bold" href="uCEFInterfaces.ICefOverlayController.html">ICefOverlayController</a><li><a class="bold" href="uCEFInterfaces.ICefPdfPrintCallback.html">ICefPdfPrintCallback</a><li><a class="bold" href="uCEFInterfaces.ICefPermissionHandler.html">ICefPermissionHandler</a><li><a class="bold" href="uCEFInterfaces.ICefPermissionPromptCallback.html">ICefPermissionPromptCallback</a><li><a class="bold" href="uCEFInterfaces.ICefPostData.html">ICefPostData</a><li><a class="bold" href="uCEFInterfaces.ICefPostDataElement.html">ICefPostDataElement</a><li><a class="bold" href="uCEFInterfaces.ICefPreferenceManager.html">ICefPreferenceManager</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFInterfaces.ICefRequestContext.html">ICefRequestContext</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFInterfaces.ICefPrintDialogCallback.html">ICefPrintDialogCallback</a><li><a class="bold" href="uCEFInterfaces.ICefPrintHandler.html">ICefPrintHandler</a><li><a class="bold" href="uCEFInterfaces.ICefPrintJobCallback.html">ICefPrintJobCallback</a><li><a class="bold" href="uCEFInterfaces.ICefPrintSettings.html">ICefPrintSettings</a><li><a class="bold" href="uCEFInterfaces.ICefProcessMessage.html">ICefProcessMessage</a><li><a class="bold" href="uCEFInterfaces.ICefReadHandler.html">ICefReadHandler</a><li><a class="bold" href="uCEFInterfaces.ICefRegistration.html">ICefRegistration</a><li><a class="bold" href="uCEFInterfaces.ICefRenderHandler.html">ICefRenderHandler</a><li><a class="bold" href="uCEFInterfaces.ICefRenderProcessHandler.html">ICefRenderProcessHandler</a><li><a class="bold" href="uCEFInterfaces.ICefRequest.html">ICefRequest</a><li><a class="bold" href="uCEFInterfaces.ICefRequestContextHandler.html">ICefRequestContextHandler</a><li><a class="bold" href="uCEFInterfaces.ICefRequestHandler.html">ICefRequestHandler</a><li><a class="bold" href="uCEFInterfaces.ICefResolveCallback.html">ICefResolveCallback</a><li><a class="bold" href="uCEFInterfaces.ICefResourceBundle.html">ICefResourceBundle</a><li><a class="bold" href="uCEFInterfaces.ICefResourceBundleHandler.html">ICefResourceBundleHandler</a><li><a class="bold" href="uCEFInterfaces.ICefResourceHandler.html">ICefResourceHandler</a><li><a class="bold" href="uCEFInterfaces.ICefResourceReadCallback.html">ICefResourceReadCallback</a><li><a class="bold" href="uCEFInterfaces.ICefResourceRequestHandler.html">ICefResourceRequestHandler</a><li><a class="bold" href="uCEFInterfaces.ICefResourceSkipCallback.html">ICefResourceSkipCallback</a><li><a class="bold" href="uCEFInterfaces.ICefResponse.html">ICefResponse</a><li><a class="bold" href="uCEFInterfaces.ICefResponseFilter.html">ICefResponseFilter</a><li><a class="bold" href="uCEFInterfaces.ICefRunContextMenuCallback.html">ICefRunContextMenuCallback</a><li><a class="bold" href="uCEFInterfaces.ICefRunFileDialogCallback.html">ICefRunFileDialogCallback</a><li><a class="bold" href="uCEFInterfaces.ICefRunQuickMenuCallback.html">ICefRunQuickMenuCallback</a><li><a class="bold" href="uCEFInterfaces.ICefSchemeHandlerFactory.html">ICefSchemeHandlerFactory</a><li><a class="bold" href="uCEFInterfaces.ICefSelectClientCertificateCallback.html">ICefSelectClientCertificateCallback</a><li><a class="bold" href="uCEFInterfaces.ICefServer.html">ICefServer</a><li><a class="bold" href="uCEFInterfaces.ICefServerHandler.html">ICefServerHandler</a><li><a class="bold" href="uCEFInterfaces.ICefSetCookieCallback.html">ICefSetCookieCallback</a><li><a class="bold" href="uCEFInterfaces.ICefSharedMemoryRegion.html">ICefSharedMemoryRegion</a><li><a class="bold" href="uCEFInterfaces.ICefSharedProcessMessageBuilder.html">ICefSharedProcessMessageBuilder</a><li><a class="bold" href="uCEFInterfaces.ICefSslInfo.html">ICefSslInfo</a><li><a class="bold" href="uCEFInterfaces.ICefSSLStatus.html">ICefSSLStatus</a><li><a class="bold" href="uCEFInterfaces.ICefStreamReader.html">ICefStreamReader</a><li><a class="bold" href="uCEFInterfaces.ICefStreamWriter.html">ICefStreamWriter</a><li><a class="bold" href="uCEFInterfaces.ICefStringVisitor.html">ICefStringVisitor</a><li><a class="bold" href="uCEFInterfaces.ICefTask.html">ICefTask</a><li><a class="bold" href="uCEFInterfaces.ICefTaskRunner.html">ICefTaskRunner</a><li><a class="bold" href="uCEFInterfaces.ICefThread.html">ICefThread</a><li><a class="bold" href="uCEFInterfaces.ICefUrlRequest.html">ICefUrlRequest</a><li><a class="bold" href="uCEFInterfaces.ICefUrlrequestClient.html">ICefUrlrequestClient</a><li><a class="bold" href="uCEFInterfaces.ICefV8Accessor.html">ICefV8Accessor</a><li><a class="bold" href="uCEFInterfaces.ICefv8ArrayBufferReleaseCallback.html">ICefv8ArrayBufferReleaseCallback</a><li><a class="bold" href="uCEFInterfaces.ICefv8Context.html">ICefv8Context</a><li><a class="bold" href="uCEFInterfaces.ICefV8Exception.html">ICefV8Exception</a><li><a class="bold" href="uCEFInterfaces.ICefv8Handler.html">ICefv8Handler</a><li><a class="bold" href="uCEFInterfaces.ICefV8Interceptor.html">ICefV8Interceptor</a><li><a class="bold" href="uCEFInterfaces.ICefV8StackFrame.html">ICefV8StackFrame</a><li><a class="bold" href="uCEFInterfaces.ICefV8StackTrace.html">ICefV8StackTrace</a><li><a class="bold" href="uCEFInterfaces.ICefv8Value.html">ICefv8Value</a><li><a class="bold" href="uCEFInterfaces.ICefValue.html">ICefValue</a><li><a class="bold" href="uCEFInterfaces.ICefView.html">ICefView</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFInterfaces.ICefPrintDialogCallback.html">ICefPrintDialogCallback</a><li><a class="bold" href="uCEFInterfaces.ICefPrintHandler.html">ICefPrintHandler</a><li><a class="bold" href="uCEFInterfaces.ICefPrintJobCallback.html">ICefPrintJobCallback</a><li><a class="bold" href="uCEFInterfaces.ICefPrintSettings.html">ICefPrintSettings</a><li><a class="bold" href="uCEFInterfaces.ICefProcessMessage.html">ICefProcessMessage</a><li><a class="bold" href="uCEFInterfaces.ICefReadHandler.html">ICefReadHandler</a><li><a class="bold" href="uCEFInterfaces.ICefRegistration.html">ICefRegistration</a><li><a class="bold" href="uCEFInterfaces.ICefRenderHandler.html">ICefRenderHandler</a><li><a class="bold" href="uCEFInterfaces.ICefRenderProcessHandler.html">ICefRenderProcessHandler</a><li><a class="bold" href="uCEFInterfaces.ICefRequest.html">ICefRequest</a><li><a class="bold" href="uCEFInterfaces.ICefRequestContextHandler.html">ICefRequestContextHandler</a><li><a class="bold" href="uCEFInterfaces.ICefRequestHandler.html">ICefRequestHandler</a><li><a class="bold" href="uCEFInterfaces.ICefResolveCallback.html">ICefResolveCallback</a><li><a class="bold" href="uCEFInterfaces.ICefResourceBundle.html">ICefResourceBundle</a><li><a class="bold" href="uCEFInterfaces.ICefResourceBundleHandler.html">ICefResourceBundleHandler</a><li><a class="bold" href="uCEFInterfaces.ICefResourceHandler.html">ICefResourceHandler</a><li><a class="bold" href="uCEFInterfaces.ICefResourceReadCallback.html">ICefResourceReadCallback</a><li><a class="bold" href="uCEFInterfaces.ICefResourceRequestHandler.html">ICefResourceRequestHandler</a><li><a class="bold" href="uCEFInterfaces.ICefResourceSkipCallback.html">ICefResourceSkipCallback</a><li><a class="bold" href="uCEFInterfaces.ICefResponse.html">ICefResponse</a><li><a class="bold" href="uCEFInterfaces.ICefResponseFilter.html">ICefResponseFilter</a><li><a class="bold" href="uCEFInterfaces.ICefRunContextMenuCallback.html">ICefRunContextMenuCallback</a><li><a class="bold" href="uCEFInterfaces.ICefRunFileDialogCallback.html">ICefRunFileDialogCallback</a><li><a class="bold" href="uCEFInterfaces.ICefRunQuickMenuCallback.html">ICefRunQuickMenuCallback</a><li><a class="bold" href="uCEFInterfaces.ICefSchemeHandlerFactory.html">ICefSchemeHandlerFactory</a><li><a class="bold" href="uCEFInterfaces.ICefSelectClientCertificateCallback.html">ICefSelectClientCertificateCallback</a><li><a class="bold" href="uCEFInterfaces.ICefServer.html">ICefServer</a><li><a class="bold" href="uCEFInterfaces.ICefServerHandler.html">ICefServerHandler</a><li><a class="bold" href="uCEFInterfaces.ICefSetCookieCallback.html">ICefSetCookieCallback</a><li><a class="bold" href="uCEFInterfaces.ICefSharedMemoryRegion.html">ICefSharedMemoryRegion</a><li><a class="bold" href="uCEFInterfaces.ICefSharedProcessMessageBuilder.html">ICefSharedProcessMessageBuilder</a><li><a class="bold" href="uCEFInterfaces.ICefSslInfo.html">ICefSslInfo</a><li><a class="bold" href="uCEFInterfaces.ICefSSLStatus.html">ICefSSLStatus</a><li><a class="bold" href="uCEFInterfaces.ICefStreamReader.html">ICefStreamReader</a><li><a class="bold" href="uCEFInterfaces.ICefStreamWriter.html">ICefStreamWriter</a><li><a class="bold" href="uCEFInterfaces.ICefStringVisitor.html">ICefStringVisitor</a><li><a class="bold" href="uCEFInterfaces.ICefTask.html">ICefTask</a><li><a class="bold" href="uCEFInterfaces.ICefTaskRunner.html">ICefTaskRunner</a><li><a class="bold" href="uCEFInterfaces.ICefThread.html">ICefThread</a><li><a class="bold" href="uCEFInterfaces.ICefUnresponsiveProcessCallback.html">ICefUnresponsiveProcessCallback</a><li><a class="bold" href="uCEFInterfaces.ICefUrlRequest.html">ICefUrlRequest</a><li><a class="bold" href="uCEFInterfaces.ICefUrlrequestClient.html">ICefUrlrequestClient</a><li><a class="bold" href="uCEFInterfaces.ICefV8Accessor.html">ICefV8Accessor</a><li><a class="bold" href="uCEFInterfaces.ICefv8ArrayBufferReleaseCallback.html">ICefv8ArrayBufferReleaseCallback</a><li><a class="bold" href="uCEFInterfaces.ICefv8Context.html">ICefv8Context</a><li><a class="bold" href="uCEFInterfaces.ICefV8Exception.html">ICefV8Exception</a><li><a class="bold" href="uCEFInterfaces.ICefv8Handler.html">ICefv8Handler</a><li><a class="bold" href="uCEFInterfaces.ICefV8Interceptor.html">ICefV8Interceptor</a><li><a class="bold" href="uCEFInterfaces.ICefV8StackFrame.html">ICefV8StackFrame</a><li><a class="bold" href="uCEFInterfaces.ICefV8StackTrace.html">ICefV8StackTrace</a><li><a class="bold" href="uCEFInterfaces.ICefv8Value.html">ICefv8Value</a><li><a class="bold" href="uCEFInterfaces.ICefValue.html">ICefValue</a><li><a class="bold" href="uCEFInterfaces.ICefView.html">ICefView</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a><li><a class="bold" href="uCEFInterfaces.ICefButton.html">ICefButton</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFInterfaces.ICefLabelButton.html">ICefLabelButton</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFInterfaces.ICefMenuButton.html">ICefMenuButton</a></ul>
|
||||
@ -273,7 +273,7 @@
|
||||
<li><a class="bold" href="uCEFListValue.TCefListValueRef.html">TCefListValueRef</a><li><a class="bold" href="uCEFMediaAccessCallback.TCefMediaAccessCallbackRef.html">TCefMediaAccessCallbackRef</a><li><a class="bold" href="uCEFMediaRoute.TCefMediaRouteRef.html">TCefMediaRouteRef</a><li><a class="bold" href="uCEFMediaRouter.TCefMediaRouterRef.html">TCefMediaRouterRef</a><li><a class="bold" href="uCEFMediaSink.TCefMediaSinkRef.html">TCefMediaSinkRef</a><li><a class="bold" href="uCEFMediaSource.TCefMediaSourceRef.html">TCefMediaSourceRef</a><li><a class="bold" href="uCEFMenuButtonPressedLock.TCefMenuButtonPressedLockRef.html">TCefMenuButtonPressedLockRef</a><li><a class="bold" href="uCEFMenuModel.TCefMenuModelRef.html">TCefMenuModelRef</a><li><a class="bold" href="uCEFNavigationEntry.TCefNavigationEntryRef.html">TCefNavigationEntryRef</a><li><a class="bold" href="uCEFOverlayController.TCefOverlayControllerRef.html">TCefOverlayControllerRef</a><li><a class="bold" href="uCEFPermissionPromptCallback.TCefPermissionPromptCallbackRef.html">TCefPermissionPromptCallbackRef</a><li><a class="bold" href="uCEFPostDataElement.TCefPostDataElementRef.html">TCefPostDataElementRef</a><li><a class="bold" href="uCEFPostData.TCefPostDataRef.html">TCefPostDataRef</a><li><a class="bold" href="uCEFPreferenceManager.TCefPreferenceManagerRef.html">TCefPreferenceManagerRef</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFRequestContext.TCefRequestContextRef.html">TCefRequestContextRef</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFPrintDialogCallback.TCefPrintDialogCallbackRef.html">TCefPrintDialogCallbackRef</a><li><a class="bold" href="uCEFPrintJobCallback.TCefPrintJobCallbackRef.html">TCefPrintJobCallbackRef</a><li><a class="bold" href="uCEFPrintSettings.TCefPrintSettingsRef.html">TCefPrintSettingsRef</a><li><a class="bold" href="uCEFProcessMessage.TCefProcessMessageRef.html">TCefProcessMessageRef</a><li><a class="bold" href="uCEFRegistration.TCefRegistrationRef.html">TCefRegistrationRef</a><li><a class="bold" href="uCEFRequestContextHandler.TCefRequestContextHandlerRef.html">TCefRequestContextHandlerRef</a><li><a class="bold" href="uCEFRequest.TCefRequestRef.html">TCefRequestRef</a><li><a class="bold" href="uCEFResourceBundle.TCefResourceBundleRef.html">TCefResourceBundleRef</a><li><a class="bold" href="uCEFResourceHandler.TCefResourceHandlerRef.html">TCefResourceHandlerRef</a><li><a class="bold" href="uCEFResourceReadCallback.TCefResourceReadCallbackRef.html">TCefResourceReadCallbackRef</a><li><a class="bold" href="uCEFResourceRequestHandler.TCefResourceRequestHandlerRef.html">TCefResourceRequestHandlerRef</a><li><a class="bold" href="uCEFResourceSkipCallback.TCefResourceSkipCallbackRef.html">TCefResourceSkipCallbackRef</a><li><a class="bold" href="uCEFResponseFilter.TCefResponseFilterRef.html">TCefResponseFilterRef</a><li><a class="bold" href="uCEFResponse.TCefResponseRef.html">TCefResponseRef</a><li><a class="bold" href="uCEFRunContextMenuCallback.TCefRunContextMenuCallbackRef.html">TCefRunContextMenuCallbackRef</a><li><a class="bold" href="uCEFRunQuickMenuCallback.TCefRunQuickMenuCallbackRef.html">TCefRunQuickMenuCallbackRef</a><li><a class="bold" href="uCEFSelectClientCertificateCallback.TCefSelectClientCertificateCallbackRef.html">TCefSelectClientCertificateCallbackRef</a><li><a class="bold" href="uCEFServer.TCEFServerRef.html">TCEFServerRef</a><li><a class="bold" href="uCEFSharedMemoryRegion.TCefSharedMemoryRegionRef.html">TCefSharedMemoryRegionRef</a><li><a class="bold" href="uCEFSharedProcessMessageBuilder.TCefSharedProcessMessageBuilderRef.html">TCefSharedProcessMessageBuilderRef</a><li><a class="bold" href="uCEFSslInfo.TCefSslInfoRef.html">TCefSslInfoRef</a><li><a class="bold" href="uCEFSSLStatus.TCefSSLStatusRef.html">TCefSSLStatusRef</a><li><a class="bold" href="uCEFStreamReader.TCefStreamReaderRef.html">TCefStreamReaderRef</a><li><a class="bold" href="uCEFStreamWriter.TCefStreamWriterRef.html">TCefStreamWriterRef</a><li><a class="bold" href="uCEFTask.TCefTaskRef.html">TCefTaskRef</a><li><a class="bold" href="uCEFTaskRunner.TCefTaskRunnerRef.html">TCefTaskRunnerRef</a><li><a class="bold" href="uCEFThread.TCefThreadRef.html">TCefThreadRef</a><li><a class="bold" href="uCEFUrlrequestClient.TCefUrlrequestClientRef.html">TCefUrlrequestClientRef</a><li><a class="bold" href="uCEFUrlRequest.TCefUrlRequestRef.html">TCefUrlRequestRef</a><li><a class="bold" href="uCEFv8ArrayBufferReleaseCallback.TCefv8ArrayBufferReleaseCallbackRef.html">TCefv8ArrayBufferReleaseCallbackRef</a><li><a class="bold" href="uCEFv8Context.TCefv8ContextRef.html">TCefv8ContextRef</a><li><a class="bold" href="uCEFv8Exception.TCefV8ExceptionRef.html">TCefV8ExceptionRef</a><li><a class="bold" href="uCEFv8Handler.TCefv8HandlerRef.html">TCefv8HandlerRef</a><li><a class="bold" href="uCEFv8StackFrame.TCefV8StackFrameRef.html">TCefV8StackFrameRef</a><li><a class="bold" href="uCEFv8StackTrace.TCefV8StackTraceRef.html">TCefV8StackTraceRef</a><li><a class="bold" href="uCEFv8Value.TCefv8ValueRef.html">TCefv8ValueRef</a><li><a class="bold" href="uCEFValue.TCefValueRef.html">TCefValueRef</a><li><a class="bold" href="uCEFViewDelegate.TCefViewDelegateRef.html">TCefViewDelegateRef</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFPrintDialogCallback.TCefPrintDialogCallbackRef.html">TCefPrintDialogCallbackRef</a><li><a class="bold" href="uCEFPrintJobCallback.TCefPrintJobCallbackRef.html">TCefPrintJobCallbackRef</a><li><a class="bold" href="uCEFPrintSettings.TCefPrintSettingsRef.html">TCefPrintSettingsRef</a><li><a class="bold" href="uCEFProcessMessage.TCefProcessMessageRef.html">TCefProcessMessageRef</a><li><a class="bold" href="uCEFRegistration.TCefRegistrationRef.html">TCefRegistrationRef</a><li><a class="bold" href="uCEFRequestContextHandler.TCefRequestContextHandlerRef.html">TCefRequestContextHandlerRef</a><li><a class="bold" href="uCEFRequest.TCefRequestRef.html">TCefRequestRef</a><li><a class="bold" href="uCEFResourceBundle.TCefResourceBundleRef.html">TCefResourceBundleRef</a><li><a class="bold" href="uCEFResourceHandler.TCefResourceHandlerRef.html">TCefResourceHandlerRef</a><li><a class="bold" href="uCEFResourceReadCallback.TCefResourceReadCallbackRef.html">TCefResourceReadCallbackRef</a><li><a class="bold" href="uCEFResourceRequestHandler.TCefResourceRequestHandlerRef.html">TCefResourceRequestHandlerRef</a><li><a class="bold" href="uCEFResourceSkipCallback.TCefResourceSkipCallbackRef.html">TCefResourceSkipCallbackRef</a><li><a class="bold" href="uCEFResponseFilter.TCefResponseFilterRef.html">TCefResponseFilterRef</a><li><a class="bold" href="uCEFResponse.TCefResponseRef.html">TCefResponseRef</a><li><a class="bold" href="uCEFRunContextMenuCallback.TCefRunContextMenuCallbackRef.html">TCefRunContextMenuCallbackRef</a><li><a class="bold" href="uCEFRunQuickMenuCallback.TCefRunQuickMenuCallbackRef.html">TCefRunQuickMenuCallbackRef</a><li><a class="bold" href="uCEFSelectClientCertificateCallback.TCefSelectClientCertificateCallbackRef.html">TCefSelectClientCertificateCallbackRef</a><li><a class="bold" href="uCEFServer.TCEFServerRef.html">TCEFServerRef</a><li><a class="bold" href="uCEFSharedMemoryRegion.TCefSharedMemoryRegionRef.html">TCefSharedMemoryRegionRef</a><li><a class="bold" href="uCEFSharedProcessMessageBuilder.TCefSharedProcessMessageBuilderRef.html">TCefSharedProcessMessageBuilderRef</a><li><a class="bold" href="uCEFSslInfo.TCefSslInfoRef.html">TCefSslInfoRef</a><li><a class="bold" href="uCEFSSLStatus.TCefSSLStatusRef.html">TCefSSLStatusRef</a><li><a class="bold" href="uCEFStreamReader.TCefStreamReaderRef.html">TCefStreamReaderRef</a><li><a class="bold" href="uCEFStreamWriter.TCefStreamWriterRef.html">TCefStreamWriterRef</a><li><a class="bold" href="uCEFTask.TCefTaskRef.html">TCefTaskRef</a><li><a class="bold" href="uCEFTaskRunner.TCefTaskRunnerRef.html">TCefTaskRunnerRef</a><li><a class="bold" href="uCEFThread.TCefThreadRef.html">TCefThreadRef</a><li><a class="bold" href="uCEFUnresponsiveProcessCallback.TCefUnresponsiveProcessCallbackRef.html">TCefUnresponsiveProcessCallbackRef</a><li><a class="bold" href="uCEFUrlrequestClient.TCefUrlrequestClientRef.html">TCefUrlrequestClientRef</a><li><a class="bold" href="uCEFUrlRequest.TCefUrlRequestRef.html">TCefUrlRequestRef</a><li><a class="bold" href="uCEFv8ArrayBufferReleaseCallback.TCefv8ArrayBufferReleaseCallbackRef.html">TCefv8ArrayBufferReleaseCallbackRef</a><li><a class="bold" href="uCEFv8Context.TCefv8ContextRef.html">TCefv8ContextRef</a><li><a class="bold" href="uCEFv8Exception.TCefV8ExceptionRef.html">TCefV8ExceptionRef</a><li><a class="bold" href="uCEFv8Handler.TCefv8HandlerRef.html">TCefv8HandlerRef</a><li><a class="bold" href="uCEFv8StackFrame.TCefV8StackFrameRef.html">TCefV8StackFrameRef</a><li><a class="bold" href="uCEFv8StackTrace.TCefV8StackTraceRef.html">TCefV8StackTraceRef</a><li><a class="bold" href="uCEFv8Value.TCefv8ValueRef.html">TCefv8ValueRef</a><li><a class="bold" href="uCEFValue.TCefValueRef.html">TCefValueRef</a><li><a class="bold" href="uCEFViewDelegate.TCefViewDelegateRef.html">TCefViewDelegateRef</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFBrowserViewDelegate.TCefBrowserViewDelegateRef.html">TCefBrowserViewDelegateRef</a><li><a class="bold" href="uCEFButtonDelegate.TCefButtonDelegateRef.html">TCefButtonDelegateRef</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFMenuButtonDelegate.TCefMenuButtonDelegateRef.html">TCefMenuButtonDelegateRef</a></ul>
|
||||
</li>
|
||||
@ -311,7 +311,7 @@
|
||||
<li><a class="bold" href="uCEFChromiumCore.TBrowserInfo.html">TBrowserInfo</a><li><a class="bold" href="uCEFArgCopy.TCEFArgCopy.html">TCEFArgCopy</a><li><a class="bold" href="uCEFBaseScopedWrapper.TCEFBaseScopedWrapperRef.html">TCEFBaseScopedWrapperRef</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFPreferenceRegistrar.TCefPreferenceRegistrarRef.html">TCefPreferenceRegistrarRef</a><li><a class="bold" href="uCEFSchemeRegistrar.TCefSchemeRegistrarRef.html">TCefSchemeRegistrarRef</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html">TCEFBitmapBitBuffer</a><li><a class="bold" href="uCEFComponentIdList.TCEFComponentIdList.html">TCEFComponentIdList</a><li><a class="bold" href="uCEFFileDialogInfo.TCEFFileDialogInfo.html">TCEFFileDialogInfo</a><li><a class="bold" href="uCEFJson.TCEFJson.html">TCEFJson</a><li><a class="bold" href="uCEFOAuth2Helper.TCEFOAuth2Helper.html">TCEFOAuth2Helper</a><li><a class="bold" href="uCEFOSRIMEHandler.TCEFOSRIMEHandler.html">TCEFOSRIMEHandler</a><li><a class="bold" href="uCEFTimerWorkScheduler.TCEFTimerWorkScheduler.html">TCEFTimerWorkScheduler</a><li><a class="bold" href="uCEFBrowserWindow.TChromiumWrapper.html">TChromiumWrapper</a><li>TList<ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html">TCEFBitmapBitBuffer</a><li><a class="bold" href="uCEFComponentIdList.TCEFComponentIdList.html">TCEFComponentIdList</a><li><a class="bold" href="uCEFFileDialogInfo.TCEFFileDialogInfo.html">TCEFFileDialogInfo</a><li><a class="bold" href="uCEFJson.TCEFJson.html">TCEFJson</a><li><a class="bold" href="uCEFOAuth2Helper.TCEFOAuth2Helper.html">TCEFOAuth2Helper</a><li><a class="bold" href="uCEFOSRIMEHandler.TCEFOSRIMEHandler.html">TCEFOSRIMEHandler</a><li><a class="bold" href="uCEFTimerWorkScheduler.TCEFTimerWorkScheduler.html">TCEFTimerWorkScheduler</a><li><a class="bold" href="uCEFWindowInfoWrapper.TCEFWindowInfoWrapper.html">TCEFWindowInfoWrapper</a><li><a class="bold" href="uCEFBrowserWindow.TChromiumWrapper.html">TChromiumWrapper</a><li>TList<ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFChromiumCore.TBrowserInfoList.html">TBrowserInfoList</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFOLEDragAndDrop.TOLEDragAndDropMgr.html">TOLEDragAndDropMgr</a><ul class="hierarchylevel">
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -338,6 +338,7 @@ uCEFInterfaces.ICefUrlRequest.html
|
||||
uCEFInterfaces.ICefUrlrequestClient.html
|
||||
uCEFInterfaces.ICefEndTracingCallback.html
|
||||
uCEFInterfaces.ICefFileDialogCallback.html
|
||||
uCEFInterfaces.ICefUnresponsiveProcessCallback.html
|
||||
uCEFInterfaces.ICefDragData.html
|
||||
uCEFInterfaces.ICefDragHandler.html
|
||||
uCEFInterfaces.ICefFindHandler.html
|
||||
@ -669,6 +670,7 @@ uCEFThread.TCefThreadRef.html
|
||||
uCEFTimerWorkScheduler.html
|
||||
uCEFTimerWorkScheduler.TCEFTimerWorkScheduler.html
|
||||
uCEFTypes.html
|
||||
uCEFTypes.TCefAcceleratedPaintInfo.html
|
||||
uCEFTypes.TMyMemoryStatusEx.html
|
||||
uCEFTypes.TOSVersionInfoEx.html
|
||||
uCEFTypes.TCefStringWide.html
|
||||
@ -713,6 +715,7 @@ uCEFTypes.TCefSSLStatus.html
|
||||
uCEFTypes.TCefSelectClientCertificateCallback.html
|
||||
uCEFTypes.TCefRunContextMenuCallback.html
|
||||
uCEFTypes.TCefFileDialogCallback.html
|
||||
uCEFTypes.TCefUnresponsiveProcessCallback.html
|
||||
uCEFTypes.TCefDialogHandler.html
|
||||
uCEFTypes.TCefDisplayHandler.html
|
||||
uCEFTypes.TCefDownloadHandler.html
|
||||
@ -855,6 +858,8 @@ uCEFTypes.TCefMenuButtonPressedLock.html
|
||||
uCEFTypes.TCefMenuButtonDelegate.html
|
||||
uCEFTypes.TCefWindow.html
|
||||
uCEFTypes.TCefWindowDelegate.html
|
||||
uCEFUnresponsiveProcessCallback.html
|
||||
uCEFUnresponsiveProcessCallback.TCefUnresponsiveProcessCallbackRef.html
|
||||
uCEFUrlRequest.html
|
||||
uCEFUrlRequest.TCefUrlRequestRef.html
|
||||
uCEFUrlrequestClient.html
|
||||
@ -910,6 +915,8 @@ uCEFWindowDelegate.html
|
||||
uCEFWindowDelegate.TCefWindowDelegateRef.html
|
||||
uCEFWindowDelegate.TCefWindowDelegateOwn.html
|
||||
uCEFWindowDelegate.TCustomWindowDelegate.html
|
||||
uCEFWindowInfoWrapper.html
|
||||
uCEFWindowInfoWrapper.TCEFWindowInfoWrapper.html
|
||||
uCEFWindowParent.html
|
||||
uCEFWindowParent.TCEFWindowParent.html
|
||||
uCEFWorkScheduler.html
|
||||
|
@ -325,6 +325,7 @@ uCEFInterfaces.ICefUrlRequest.html
|
||||
uCEFInterfaces.ICefUrlrequestClient.html
|
||||
uCEFInterfaces.ICefEndTracingCallback.html
|
||||
uCEFInterfaces.ICefFileDialogCallback.html
|
||||
uCEFInterfaces.ICefUnresponsiveProcessCallback.html
|
||||
uCEFInterfaces.ICefDragData.html
|
||||
uCEFInterfaces.ICefDragHandler.html
|
||||
uCEFInterfaces.ICefFindHandler.html
|
||||
@ -656,6 +657,7 @@ uCEFThread.TCefThreadRef.html
|
||||
uCEFTimerWorkScheduler.html
|
||||
uCEFTimerWorkScheduler.TCEFTimerWorkScheduler.html
|
||||
uCEFTypes.html
|
||||
uCEFTypes.TCefAcceleratedPaintInfo.html
|
||||
uCEFTypes.TMyMemoryStatusEx.html
|
||||
uCEFTypes.TOSVersionInfoEx.html
|
||||
uCEFTypes.TCefStringWide.html
|
||||
@ -700,6 +702,7 @@ uCEFTypes.TCefSSLStatus.html
|
||||
uCEFTypes.TCefSelectClientCertificateCallback.html
|
||||
uCEFTypes.TCefRunContextMenuCallback.html
|
||||
uCEFTypes.TCefFileDialogCallback.html
|
||||
uCEFTypes.TCefUnresponsiveProcessCallback.html
|
||||
uCEFTypes.TCefDialogHandler.html
|
||||
uCEFTypes.TCefDisplayHandler.html
|
||||
uCEFTypes.TCefDownloadHandler.html
|
||||
@ -842,6 +845,8 @@ uCEFTypes.TCefMenuButtonPressedLock.html
|
||||
uCEFTypes.TCefMenuButtonDelegate.html
|
||||
uCEFTypes.TCefWindow.html
|
||||
uCEFTypes.TCefWindowDelegate.html
|
||||
uCEFUnresponsiveProcessCallback.html
|
||||
uCEFUnresponsiveProcessCallback.TCefUnresponsiveProcessCallbackRef.html
|
||||
uCEFUrlRequest.html
|
||||
uCEFUrlRequest.TCefUrlRequestRef.html
|
||||
uCEFUrlrequestClient.html
|
||||
@ -897,6 +902,8 @@ uCEFWindowDelegate.html
|
||||
uCEFWindowDelegate.TCefWindowDelegateRef.html
|
||||
uCEFWindowDelegate.TCefWindowDelegateOwn.html
|
||||
uCEFWindowDelegate.TCustomWindowDelegate.html
|
||||
uCEFWindowInfoWrapper.html
|
||||
uCEFWindowInfoWrapper.TCEFWindowInfoWrapper.html
|
||||
uCEFWindowParent.html
|
||||
uCEFWindowParent.TCEFWindowParent.html
|
||||
uCEFWorkScheduler.html
|
||||
@ -926,11 +933,11 @@ automated.gif
|
||||
pasdoc.css
|
||||
|
||||
Compile time: 0 minutes, 15 seconds
|
||||
16,138 Topics
|
||||
137,730 Local links
|
||||
16,483 Topics
|
||||
140,686 Local links
|
||||
35 Internet links
|
||||
5 Graphics
|
||||
|
||||
|
||||
Created c:\Users\usuario\Documents\Embarcadero\Studio\Projects\CEF4Delphi\docs\cef4delphi.chm, 3,522,122 bytes
|
||||
Compression decreased file by 22,975,919 bytes.
|
||||
Created c:\Users\usuario\Documents\Embarcadero\Studio\Projects\CEF4Delphi\docs\cef4delphi.chm, 3,628,912 bytes
|
||||
Compression decreased file by 23,518,661 bytes.
|
||||
|
@ -759,97 +759,105 @@
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFUnresponsiveProcessCallback.html">uCEFUnresponsiveProcessCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFUrlRequest.html">uCEFUrlRequest</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFUrlrequestClient.html">uCEFUrlrequestClient</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFUrlRequestClientComponent.html">uCEFUrlRequestClientComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFUrlRequestClientEvents.html">uCEFUrlRequestClientEvents</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8Accessor.html">uCEFv8Accessor</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8ArrayBufferReleaseCallback.html">uCEFv8ArrayBufferReleaseCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8Context.html">uCEFv8Context</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8Exception.html">uCEFv8Exception</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8Handler.html">uCEFv8Handler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8Interceptor.html">uCEFv8Interceptor</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8StackFrame.html">uCEFv8StackFrame</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8StackTrace.html">uCEFv8StackTrace</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8Value.html">uCEFv8Value</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFValue.html">uCEFValue</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFView.html">uCEFView</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFViewComponent.html">uCEFViewComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFViewDelegate.html">uCEFViewDelegate</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFViewsFrameworkEvents.html">uCEFViewsFrameworkEvents</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFWaitableEvent.html">uCEFWaitableEvent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFWinControl.html">uCEFWinControl</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFWindow.html">uCEFWindow</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFWindowComponent.html">uCEFWindowComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFWindowDelegate.html">uCEFWindowDelegate</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFWindowInfoWrapper.html">uCEFWindowInfoWrapper</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFWindowParent.html">uCEFWindowParent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -37,13 +37,13 @@
|
||||
<span id="PasDoc-Constants"></span><h3 class="summary">Constants</h3>
|
||||
<table class="summary wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationCore.html#CEF_SUPPORTED_VERSION_MAJOR">CEF_SUPPORTED_VERSION_MAJOR</a></strong> = 123;</code></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationCore.html#CEF_SUPPORTED_VERSION_MAJOR">CEF_SUPPORTED_VERSION_MAJOR</a></strong> = 125;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationCore.html#CEF_SUPPORTED_VERSION_MINOR">CEF_SUPPORTED_VERSION_MINOR</a></strong> = 0;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationCore.html#CEF_SUPPORTED_VERSION_RELEASE">CEF_SUPPORTED_VERSION_RELEASE</a></strong> = 13;</code></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationCore.html#CEF_SUPPORTED_VERSION_RELEASE">CEF_SUPPORTED_VERSION_RELEASE</a></strong> = 15;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationCore.html#CEF_SUPPORTED_VERSION_BUILD">CEF_SUPPORTED_VERSION_BUILD</a></strong> = 0;</code></td>
|
||||
@ -55,10 +55,10 @@
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationCore.html#CEF_CHROMEELF_VERSION_MINOR">CEF_CHROMEELF_VERSION_MINOR</a></strong> = 0;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationCore.html#CEF_CHROMEELF_VERSION_RELEASE">CEF_CHROMEELF_VERSION_RELEASE</a></strong> = 6312;</code></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationCore.html#CEF_CHROMEELF_VERSION_RELEASE">CEF_CHROMEELF_VERSION_RELEASE</a></strong> = 6422;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationCore.html#CEF_CHROMEELF_VERSION_BUILD">CEF_CHROMEELF_VERSION_BUILD</a></strong> = 124;</code></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationCore.html#CEF_CHROMEELF_VERSION_BUILD">CEF_CHROMEELF_VERSION_BUILD</a></strong> = 41;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationCore.html#LIBCEF_DLL">LIBCEF_DLL</a></strong> = 'libcef.dll';</code></td>
|
||||
@ -94,7 +94,7 @@
|
||||
<h3 class="detail">Constants</h3>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="CEF_SUPPORTED_VERSION_MAJOR"></span><code><strong>CEF_SUPPORTED_VERSION_MAJOR</strong> = 123;</code></td>
|
||||
<td class="itemcode"><span id="CEF_SUPPORTED_VERSION_MAJOR"></span><code><strong>CEF_SUPPORTED_VERSION_MAJOR</strong> = 125;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
@ -108,7 +108,7 @@
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="CEF_SUPPORTED_VERSION_RELEASE"></span><code><strong>CEF_SUPPORTED_VERSION_RELEASE</strong> = 13;</code></td>
|
||||
<td class="itemcode"><span id="CEF_SUPPORTED_VERSION_RELEASE"></span><code><strong>CEF_SUPPORTED_VERSION_RELEASE</strong> = 15;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
@ -136,14 +136,14 @@
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="CEF_CHROMEELF_VERSION_RELEASE"></span><code><strong>CEF_CHROMEELF_VERSION_RELEASE</strong> = 6312;</code></td>
|
||||
<td class="itemcode"><span id="CEF_CHROMEELF_VERSION_RELEASE"></span><code><strong>CEF_CHROMEELF_VERSION_RELEASE</strong> = 6422;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="CEF_CHROMEELF_VERSION_BUILD"></span><code><strong>CEF_CHROMEELF_VERSION_BUILD</strong> = 124;</code></td>
|
||||
<td class="itemcode"><span id="CEF_CHROMEELF_VERSION_BUILD"></span><code><strong>CEF_CHROMEELF_VERSION_BUILD</strong> = 41;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
|
@ -305,6 +305,14 @@
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFBrowser.TCefBrowserHostRef.html#ExecuteChromeCommand-integer-TCefWindowOpenDisposition-">ExecuteChromeCommand</a></strong>(command_id: integer; disposition: <a href="uCEFTypes.html#TCefWindowOpenDisposition">TCefWindowOpenDisposition</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFBrowser.TCefBrowserHostRef.html#IsRenderProcessUnresponsive">IsRenderProcessUnresponsive</a></strong>: boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFBrowser.TCefBrowserHostRef.html#GetRuntimeStyle">GetRuntimeStyle</a></strong>: <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>class function <strong><a href="uCEFBrowser.TCefBrowserHostRef.html#UnWrap-Pointer-">UnWrap</a></strong>(data: Pointer): <a href="uCEFInterfaces.ICefBrowserHost.html">ICefBrowserHost</a>;</code></td>
|
||||
</tr>
|
||||
@ -952,7 +960,9 @@
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefBrowserHost.html#GetExtension">ICefBrowserHost.GetExtension</a>.</p><p>
|
||||
Returns the extension hosted in this browser or NULL if no extension is hosted. See ICefRequestContext.LoadExtension for details. </p>
|
||||
Returns the extension hosted in this browser or NULL if no extension is hosted. See ICefRequestContext.LoadExtension for details.
|
||||
|
||||
<p>WARNING: This API is deprecated and will be removed in ~M127.</p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
@ -962,7 +972,9 @@
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefBrowserHost.html#IsBackgroundHost">ICefBrowserHost.IsBackgroundHost</a>.</p><p>
|
||||
Returns true (1) if this browser is hosting an extension background script. Background hosts do not have a window and are not displayable. See ICefRequestContext.LoadExtension for details. </p>
|
||||
Returns true (1) if this browser is hosting an extension background script. Background hosts do not have a window and are not displayable. See ICefRequestContext.LoadExtension for details.
|
||||
|
||||
<p>WARNING: This API is deprecated and will be removed in ~M127.</p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
@ -1035,6 +1047,30 @@
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="IsRenderProcessUnresponsive"></span><code>function <strong>IsRenderProcessUnresponsive</strong>: boolean;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefBrowserHost.html#IsRenderProcessUnresponsive">ICefBrowserHost.IsRenderProcessUnresponsive</a>.</p><p>
|
||||
Returns true (1) if the render process associated with this browser is currently unresponsive as indicated by a lack of input event processing for at least 15 seconds. To receive associated state change notifications and optionally handle an unresponsive render process implement ICefRequestHandler.OnRenderProcessUnresponsive.
|
||||
|
||||
<p>This function can only be called on the CEF UI thread.</p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="GetRuntimeStyle"></span><code>function <strong>GetRuntimeStyle</strong>: <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefBrowserHost.html#GetRuntimeStyle">ICefBrowserHost.GetRuntimeStyle</a>.</p><p>
|
||||
Returns the runtime style for this browser (ALLOY or CHROME). See TCefRuntimeStyle documentation for details.
|
||||
|
||||
<p>This function can only be called on the CEF UI thread.</p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="UnWrap-Pointer-"></span><code>class function <strong>UnWrap</strong>(data: Pointer): <a href="uCEFInterfaces.ICefBrowserHost.html">ICefBrowserHost</a>;</code></td>
|
||||
</tr>
|
||||
|
@ -44,15 +44,19 @@
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFBrowserView.TCefBrowserViewRef.html#SetPreferAccelerators-boolean-">SetPreferAccelerators</a></strong>(prefer_accelerators: boolean);</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>class function <strong><a href="uCEFBrowserView.TCefBrowserViewRef.html#UnWrap-Pointer-">UnWrap</a></strong>(data: Pointer): <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>;</code></td>
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFBrowserView.TCefBrowserViewRef.html#GetRuntimeStyle">GetRuntimeStyle</a></strong>: <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>class function <strong><a href="uCEFBrowserView.TCefBrowserViewRef.html#CreateBrowserView-ICefClient-ustring-TCefBrowserSettings-ICefDictionaryValue-ICefRequestContext-ICefBrowserViewDelegate-">CreateBrowserView</a></strong>(const client: <a href="uCEFInterfaces.ICefClient.html">ICefClient</a>; const url: <a href="uCEFTypes.html#ustring">ustring</a>; const settings: <a href="uCEFTypes.TCefBrowserSettings.html">TCefBrowserSettings</a>; const extra_info: <a href="uCEFInterfaces.ICefDictionaryValue.html">ICefDictionaryValue</a>; const request_context: <a href="uCEFInterfaces.ICefRequestContext.html">ICefRequestContext</a>; const delegate: <a href="uCEFInterfaces.ICefBrowserViewDelegate.html">ICefBrowserViewDelegate</a>): <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>;</code></td>
|
||||
<td class="itemcode"><code>class function <strong><a href="uCEFBrowserView.TCefBrowserViewRef.html#UnWrap-Pointer-">UnWrap</a></strong>(data: Pointer): <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>class function <strong><a href="uCEFBrowserView.TCefBrowserViewRef.html#CreateBrowserView-ICefClient-ustring-TCefBrowserSettings-ICefDictionaryValue-ICefRequestContext-ICefBrowserViewDelegate-">CreateBrowserView</a></strong>(const client: <a href="uCEFInterfaces.ICefClient.html">ICefClient</a>; const url: <a href="uCEFTypes.html#ustring">ustring</a>; const settings: <a href="uCEFTypes.TCefBrowserSettings.html">TCefBrowserSettings</a>; const extra_info: <a href="uCEFInterfaces.ICefDictionaryValue.html">ICefDictionaryValue</a>; const request_context: <a href="uCEFInterfaces.ICefRequestContext.html">ICefRequestContext</a>; const delegate: <a href="uCEFInterfaces.ICefBrowserViewDelegate.html">ICefBrowserViewDelegate</a>): <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>class function <strong><a href="uCEFBrowserView.TCefBrowserViewRef.html#GetForBrowser-ICefBrowser-">GetForBrowser</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>): <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -90,6 +94,16 @@
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="GetRuntimeStyle"></span><code>function <strong>GetRuntimeStyle</strong>: <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the runtime style for this BrowserView (ALLOY or CHROME). See TCefRuntimeStyle documentation for details. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="UnWrap-Pointer-"></span><code>class function <strong>UnWrap</strong>(data: Pointer): <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>;</code></td>
|
||||
</tr>
|
||||
|
@ -64,6 +64,10 @@
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnGestureCommand">FOnGestureCommand</a></strong>: <a href="uCEFViewsFrameworkEvents.html#TOnGestureCommandEvent">TOnGestureCommandEvent</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnGetBrowserRuntimeStyle">FOnGetBrowserRuntimeStyle</a></strong>: <a href="uCEFViewsFrameworkEvents.html#TOnGetBrowserRuntimeStyleEvent">TOnGetBrowserRuntimeStyleEvent</a>;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<span id="PasDoc-Methods"></span><h3 class="summary">Methods</h3>
|
||||
<table class="summary wide_list">
|
||||
@ -93,32 +97,40 @@
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#doOnBrowserCreated-ICefBrowserView-ICefBrowser-">doOnBrowserCreated</a></strong>(const browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>);</code></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#GetRuntimeStyle">GetRuntimeStyle</a></strong>: <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#doOnBrowserCreated-ICefBrowserView-ICefBrowser-">doOnBrowserCreated</a></strong>(const browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#doOnBrowserDestroyed-ICefBrowserView-ICefBrowser-">doOnBrowserDestroyed</a></strong>(const browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#doOnGetDelegateForPopupBrowserView-ICefBrowserView-TCefBrowserSettings-ICefClient-boolean-ICefBrowserViewDelegate-">doOnGetDelegateForPopupBrowserView</a></strong>(const browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; const settings: <a href="uCEFTypes.TCefBrowserSettings.html">TCefBrowserSettings</a>; const client: <a href="uCEFInterfaces.ICefClient.html">ICefClient</a>; is_devtools: boolean; var aResult : <a href="uCEFInterfaces.ICefBrowserViewDelegate.html">ICefBrowserViewDelegate</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#doOnPopupBrowserViewCreated-ICefBrowserView-ICefBrowserView-boolean-boolean-">doOnPopupBrowserViewCreated</a></strong>(const browser_view, popup_browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; is_devtools: boolean; var aResult : boolean);</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#doOnGetChromeToolbarType-ICefBrowserView-TCefChromeToolbarType-">doOnGetChromeToolbarType</a></strong>(const browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; var aChromeToolbarType: <a href="uCEFTypes.html#TCefChromeToolbarType">TCefChromeToolbarType</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#doOnUseFramelessWindowForPictureInPicture-ICefBrowserView-boolean-">doOnUseFramelessWindowForPictureInPicture</a></strong>(const browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; var aResult: boolean);</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#doOnGestureCommand-ICefBrowserView-TCefGestureCommand-boolean-">doOnGestureCommand</a></strong>(const browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; gesture_command: <a href="uCEFTypes.html#TCefGestureCommand">TCefGestureCommand</a>; var aResult : boolean);</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#doOnGetBrowserRuntimeStyle-TCefRuntimeStyle-">doOnGetBrowserRuntimeStyle</a></strong>(var aResult : <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#CreateBrowserView-ICefClient-ustring-TCefBrowserSettings-ICefDictionaryValue-ICefRequestContext-">CreateBrowserView</a></strong>(const client: <a href="uCEFInterfaces.ICefClient.html">ICefClient</a>; const url: <a href="uCEFTypes.html#ustring">ustring</a>; const settings: <a href="uCEFTypes.TCefBrowserSettings.html">TCefBrowserSettings</a>; const extra_info: <a href="uCEFInterfaces.ICefDictionaryValue.html">ICefDictionaryValue</a>; const request_context: <a href="uCEFInterfaces.ICefRequestContext.html">ICefRequestContext</a>): boolean;</code></td>
|
||||
@ -143,33 +155,41 @@
|
||||
<td class="itemcode"><code>property <strong><a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#BrowserView">BrowserView</a></strong> : <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a> read <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FBrowserView">FBrowserView</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>property <strong><a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#RuntimeStyle">RuntimeStyle</a></strong> : <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a> read <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#GetRuntimeStyle">GetRuntimeStyle</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="published.gif" alt="Published" title="Published"></a></td>
|
||||
<td class="itemcode"><code>property <strong><a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#OnBrowserCreated">OnBrowserCreated</a></strong> : <a href="uCEFViewsFrameworkEvents.html#TOnBrowserCreatedEvent">TOnBrowserCreatedEvent</a> read <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnBrowserCreated">FOnBrowserCreated</a> write <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnBrowserCreated">FOnBrowserCreated</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="published.gif" alt="Published" title="Published"></a></td>
|
||||
<td class="itemcode"><code>property <strong><a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#OnBrowserDestroyed">OnBrowserDestroyed</a></strong> : <a href="uCEFViewsFrameworkEvents.html#TOnBrowserDestroyedEvent">TOnBrowserDestroyedEvent</a> read <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnBrowserDestroyed">FOnBrowserDestroyed</a> write <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnBrowserDestroyed">FOnBrowserDestroyed</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="published.gif" alt="Published" title="Published"></a></td>
|
||||
<td class="itemcode"><code>property <strong><a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#OnGetDelegateForPopupBrowserView">OnGetDelegateForPopupBrowserView</a></strong> : <a href="uCEFViewsFrameworkEvents.html#TOnGetDelegateForPopupBrowserViewEvent">TOnGetDelegateForPopupBrowserViewEvent</a> read <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnGetDelegateForPopupBrowserView">FOnGetDelegateForPopupBrowserView</a> write <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnGetDelegateForPopupBrowserView">FOnGetDelegateForPopupBrowserView</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="published.gif" alt="Published" title="Published"></a></td>
|
||||
<td class="itemcode"><code>property <strong><a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#OnPopupBrowserViewCreated">OnPopupBrowserViewCreated</a></strong> : <a href="uCEFViewsFrameworkEvents.html#TOnPopupBrowserViewCreatedEvent">TOnPopupBrowserViewCreatedEvent</a> read <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnPopupBrowserViewCreated">FOnPopupBrowserViewCreated</a> write <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnPopupBrowserViewCreated">FOnPopupBrowserViewCreated</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="published.gif" alt="Published" title="Published"></a></td>
|
||||
<td class="itemcode"><code>property <strong><a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#OnGetChromeToolbarType">OnGetChromeToolbarType</a></strong> : <a href="uCEFViewsFrameworkEvents.html#TOnGetChromeToolbarTypeEvent">TOnGetChromeToolbarTypeEvent</a> read <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnGetChromeToolbarType">FOnGetChromeToolbarType</a> write <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnGetChromeToolbarType">FOnGetChromeToolbarType</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="published.gif" alt="Published" title="Published"></a></td>
|
||||
<td class="itemcode"><code>property <strong><a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#OnUseFramelessWindowForPictureInPicture">OnUseFramelessWindowForPictureInPicture</a></strong> : <a href="uCEFViewsFrameworkEvents.html#TOnUseFramelessWindowForPictureInPicture">TOnUseFramelessWindowForPictureInPicture</a> read <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnUseFramelessWindowForPictureInPicture">FOnUseFramelessWindowForPictureInPicture</a> write <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnUseFramelessWindowForPictureInPicture">FOnUseFramelessWindowForPictureInPicture</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="published.gif" alt="Published" title="Published"></a></td>
|
||||
<td class="itemcode"><code>property <strong><a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#OnGestureCommand">OnGestureCommand</a></strong> : <a href="uCEFViewsFrameworkEvents.html#TOnGestureCommandEvent">TOnGestureCommandEvent</a> read <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnGestureCommand">FOnGestureCommand</a> write <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnGestureCommand">FOnGestureCommand</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="published.gif" alt="Published" title="Published"></a></td>
|
||||
<td class="itemcode"><code>property <strong><a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#OnGetBrowserRuntimeStyle">OnGetBrowserRuntimeStyle</a></strong> : <a href="uCEFViewsFrameworkEvents.html#TOnGetBrowserRuntimeStyleEvent">TOnGetBrowserRuntimeStyleEvent</a> read <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnGetBrowserRuntimeStyle">FOnGetBrowserRuntimeStyle</a> write <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnGetBrowserRuntimeStyle">FOnGetBrowserRuntimeStyle</a>;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2 class="description">Description</h2>
|
||||
<h3 class="detail">Fields</h3>
|
||||
@ -247,6 +267,14 @@ ICefBrowserViewDelegateEvents</p>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="FOnGetBrowserRuntimeStyle"></span><code><strong>FOnGetBrowserRuntimeStyle</strong>: <a href="uCEFViewsFrameworkEvents.html#TOnGetBrowserRuntimeStyleEvent">TOnGetBrowserRuntimeStyleEvent</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<h3 class="detail">Methods</h3>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
@ -299,6 +327,14 @@ ICefBrowserViewDelegateEvents</p>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="GetRuntimeStyle"></span><code>function <strong>GetRuntimeStyle</strong>: <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="doOnBrowserCreated-ICefBrowserView-ICefBrowser-"></span><code>procedure <strong>doOnBrowserCreated</strong>(const browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
@ -356,6 +392,14 @@ ICefBrowserViewDelegateEvents</p>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="doOnGetBrowserRuntimeStyle-TCefRuntimeStyle-"></span><code>procedure <strong>doOnGetBrowserRuntimeStyle</strong>(var aResult : <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="CreateBrowserView-ICefClient-ustring-TCefBrowserSettings-ICefDictionaryValue-ICefRequestContext-"></span><code>function <strong>CreateBrowserView</strong>(const client: <a href="uCEFInterfaces.ICefClient.html">ICefClient</a>; const url: <a href="uCEFTypes.html#ustring">ustring</a>; const settings: <a href="uCEFTypes.TCefBrowserSettings.html">TCefBrowserSettings</a>; const extra_info: <a href="uCEFInterfaces.ICefDictionaryValue.html">ICefDictionaryValue</a>; const request_context: <a href="uCEFInterfaces.ICefRequestContext.html">ICefRequestContext</a>): boolean;</code></td>
|
||||
</tr>
|
||||
@ -407,6 +451,16 @@ ICefBrowserViewDelegateEvents</p>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="RuntimeStyle"></span><code>property <strong>RuntimeStyle</strong> : <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a> read <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#GetRuntimeStyle">GetRuntimeStyle</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the runtime style for this BrowserView (ALLOY or CHROME). See TCefRuntimeStyle documentation for details. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="published.gif" alt="Published" title="Published"></a></td>
|
||||
<td class="itemcode"><span id="OnBrowserCreated"></span><code>property <strong>OnBrowserCreated</strong> : <a href="uCEFViewsFrameworkEvents.html#TOnBrowserCreatedEvent">TOnBrowserCreatedEvent</a> read <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnBrowserCreated">FOnBrowserCreated</a> write <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnBrowserCreated">FOnBrowserCreated</a>;</code></td>
|
||||
</tr>
|
||||
@ -475,6 +529,16 @@ ICefBrowserViewDelegateEvents</p>
|
||||
Called when |browser_view| receives a gesture command. Return true (1) to handle (or disable) a |gesture_command| or false (0) to propagate the gesture to the browser for default handling. With the Chrome runtime these commands can also be handled via cef_command_handler_t::OnChromeCommand. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="published.gif" alt="Published" title="Published"></a></td>
|
||||
<td class="itemcode"><span id="OnGetBrowserRuntimeStyle"></span><code>property <strong>OnGetBrowserRuntimeStyle</strong> : <a href="uCEFViewsFrameworkEvents.html#TOnGetBrowserRuntimeStyleEvent">TOnGetBrowserRuntimeStyleEvent</a> read <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnGetBrowserRuntimeStyle">FOnGetBrowserRuntimeStyle</a> write <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnGetBrowserRuntimeStyle">FOnGetBrowserRuntimeStyle</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Optionally change the runtime style for this BrowserView. See TCefRuntimeStyle documentation for details. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<hr><span class="appinfo"><em>Generated by <a href="https://pasdoc.github.io/">PasDoc 0.16.0-snapshot</a>. </em>
|
||||
</span>
|
||||
</body></html>
|
||||
|
@ -61,9 +61,13 @@
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFBrowserViewDelegate.TCefBrowserViewDelegateOwn.html#InitializeCEFMethods">InitializeCEFMethods</a></strong>; override;</code></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFBrowserViewDelegate.TCefBrowserViewDelegateOwn.html#OnGetBrowserRuntimeStyle-TCefRuntimeStyle-">OnGetBrowserRuntimeStyle</a></strong>(var aResult : <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>); virtual;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFBrowserViewDelegate.TCefBrowserViewDelegateOwn.html#InitializeCEFMethods">InitializeCEFMethods</a></strong>; override;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>constructor <strong><a href="uCEFBrowserViewDelegate.TCefBrowserViewDelegateOwn.html#Create">Create</a></strong>; override;</code></td>
|
||||
</tr>
|
||||
@ -143,6 +147,16 @@
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="OnGetBrowserRuntimeStyle-TCefRuntimeStyle-"></span><code>procedure <strong>OnGetBrowserRuntimeStyle</strong>(var aResult : <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>); virtual;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Optionally change the runtime style for this BrowserView. See TCefRuntimeStyle documentation for details. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="InitializeCEFMethods"></span><code>procedure <strong>InitializeCEFMethods</strong>; override;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
|
@ -54,6 +54,10 @@
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFBrowserViewDelegate.TCefBrowserViewDelegateRef.html#OnGestureCommand-ICefBrowserView-TCefGestureCommand-boolean-">OnGestureCommand</a></strong>(const browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; gesture_command: <a href="uCEFTypes.html#TCefGestureCommand">TCefGestureCommand</a>; var aResult : boolean);</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFBrowserViewDelegate.TCefBrowserViewDelegateRef.html#OnGetBrowserRuntimeStyle-TCefRuntimeStyle-">OnGetBrowserRuntimeStyle</a></strong>(var aResult : <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>class function <strong><a href="uCEFBrowserViewDelegate.TCefBrowserViewDelegateRef.html#UnWrap-Pointer-">UnWrap</a></strong>(data: Pointer): <a href="uCEFInterfaces.ICefBrowserViewDelegate.html">ICefBrowserViewDelegate</a>;</code></td>
|
||||
</tr>
|
||||
@ -132,6 +136,16 @@
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="OnGetBrowserRuntimeStyle-TCefRuntimeStyle-"></span><code>procedure <strong>OnGetBrowserRuntimeStyle</strong>(var aResult : <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefBrowserViewDelegate.html#OnGetBrowserRuntimeStyle-TCefRuntimeStyle-">ICefBrowserViewDelegate.OnGetBrowserRuntimeStyle</a>.</p><p>
|
||||
Optionally change the runtime style for this BrowserView. See TCefRuntimeStyle documentation for details. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="UnWrap-Pointer-"></span><code>class function <strong>UnWrap</strong>(data: Pointer): <a href="uCEFInterfaces.ICefBrowserViewDelegate.html">ICefBrowserViewDelegate</a>;</code></td>
|
||||
</tr>
|
||||
|
@ -77,32 +77,40 @@
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFBrowserViewDelegate.TCustomBrowserViewDelegate.html#OnBrowserCreated-ICefBrowserView-ICefBrowser-">OnBrowserCreated</a></strong>(const browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>); override;</code></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFBrowserViewDelegate.TCustomBrowserViewDelegate.html#OnThemeChanged-ICefView-">OnThemeChanged</a></strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFBrowserViewDelegate.TCustomBrowserViewDelegate.html#OnBrowserCreated-ICefBrowserView-ICefBrowser-">OnBrowserCreated</a></strong>(const browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFBrowserViewDelegate.TCustomBrowserViewDelegate.html#OnBrowserDestroyed-ICefBrowserView-ICefBrowser-">OnBrowserDestroyed</a></strong>(const browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFBrowserViewDelegate.TCustomBrowserViewDelegate.html#OnGetDelegateForPopupBrowserView-ICefBrowserView-TCefBrowserSettings-ICefClient-boolean-ICefBrowserViewDelegate-">OnGetDelegateForPopupBrowserView</a></strong>(const browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; const settings: <a href="uCEFTypes.TCefBrowserSettings.html">TCefBrowserSettings</a>; const client: <a href="uCEFInterfaces.ICefClient.html">ICefClient</a>; is_devtools: boolean; var aResult : <a href="uCEFInterfaces.ICefBrowserViewDelegate.html">ICefBrowserViewDelegate</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFBrowserViewDelegate.TCustomBrowserViewDelegate.html#OnPopupBrowserViewCreated-ICefBrowserView-ICefBrowserView-boolean-boolean-">OnPopupBrowserViewCreated</a></strong>(const browser_view, popup_browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; is_devtools: boolean; var aResult : boolean); override;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFBrowserViewDelegate.TCustomBrowserViewDelegate.html#OnGetChromeToolbarType-ICefBrowserView-TCefChromeToolbarType-">OnGetChromeToolbarType</a></strong>(const browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; var aResult: <a href="uCEFTypes.html#TCefChromeToolbarType">TCefChromeToolbarType</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFBrowserViewDelegate.TCustomBrowserViewDelegate.html#OnUseFramelessWindowForPictureInPicture-ICefBrowserView-boolean-">OnUseFramelessWindowForPictureInPicture</a></strong>(const browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; var aResult: boolean); override;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFBrowserViewDelegate.TCustomBrowserViewDelegate.html#OnGestureCommand-ICefBrowserView-TCefGestureCommand-boolean-">OnGestureCommand</a></strong>(const browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; gesture_command: <a href="uCEFTypes.html#TCefGestureCommand">TCefGestureCommand</a>; var aResult : boolean); override;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFBrowserViewDelegate.TCustomBrowserViewDelegate.html#OnGetBrowserRuntimeStyle-TCefRuntimeStyle-">OnGetBrowserRuntimeStyle</a></strong>(var aResult : <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>constructor <strong><a href="uCEFBrowserViewDelegate.TCustomBrowserViewDelegate.html#Create-ICefBrowserViewDelegateEvents-">Create</a></strong>(const events: <a href="uCEFInterfaces.ICefBrowserViewDelegateEvents.html">ICefBrowserViewDelegateEvents</a>); reintroduce;</code></td>
|
||||
@ -222,6 +230,35 @@ ICefViewDelegate</p>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="OnThemeChanged-ICefView-"></span><code>procedure <strong>OnThemeChanged</strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFViewDelegate.TCefViewDelegateOwn.html#OnThemeChanged-ICefView-">TCefViewDelegateOwn.OnThemeChanged</a>.</p><p>
|
||||
(
|
||||
|
||||
<p>Called when the theme for |view| has changed, after the new theme colors have already been applied. Views are notified via the component hierarchy in depth-first reverse order (children before parents).
|
||||
|
||||
<p>This will be called in the following cases:
|
||||
|
||||
<p></p>
|
||||
|
||||
<pre class="preformatted">
|
||||
1. When |view|, or a parent of |view|, is added to a Window.
|
||||
2. When the native/OS or Chrome theme changes for the Window that contains
|
||||
|view|. See ICefWindowDelegate.OnThemeColorsChanged documentation.
|
||||
3. When the client explicitly calls ICefWindow.ThemeChanged on the
|
||||
Window that contains |view|.</pre>
|
||||
|
||||
<p>
|
||||
|
||||
<p>Optionally use this callback to override the new per-View theme colors by calling ICefView.SetBackgroundColor or the appropriate component- specific function. See ICefWindow.SetThemeColor documentation for how to customize additional Window theme colors.
|
||||
|
||||
<p>(</p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="OnBrowserCreated-ICefBrowserView-ICefBrowser-"></span><code>procedure <strong>OnBrowserCreated</strong>(const browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
@ -291,6 +328,16 @@ ICefBrowserViewDelegate</p>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="OnGetBrowserRuntimeStyle-TCefRuntimeStyle-"></span><code>procedure <strong>OnGetBrowserRuntimeStyle</strong>(var aResult : <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFBrowserViewDelegate.TCefBrowserViewDelegateOwn.html#OnGetBrowserRuntimeStyle-TCefRuntimeStyle-">TCefBrowserViewDelegateOwn.OnGetBrowserRuntimeStyle</a>.</p><p>
|
||||
Optionally change the runtime style for this BrowserView. See TCefRuntimeStyle documentation for details. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="Create-ICefBrowserViewDelegateEvents-"></span><code>constructor <strong>Create</strong>(const events: <a href="uCEFInterfaces.ICefBrowserViewDelegateEvents.html">ICefBrowserViewDelegateEvents</a>); reintroduce;</code></td>
|
||||
</tr>
|
||||
|
@ -77,13 +77,17 @@
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFButtonDelegate.TCustomButtonDelegate.html#OnButtonPressed-ICefButton-">OnButtonPressed</a></strong>(const button: <a href="uCEFInterfaces.ICefButton.html">ICefButton</a>); override;</code></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFButtonDelegate.TCustomButtonDelegate.html#OnThemeChanged-ICefView-">OnThemeChanged</a></strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFButtonDelegate.TCustomButtonDelegate.html#OnButtonStateChanged-ICefButton-">OnButtonStateChanged</a></strong>(const button: <a href="uCEFInterfaces.ICefButton.html">ICefButton</a>); override;</code></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFButtonDelegate.TCustomButtonDelegate.html#OnButtonPressed-ICefButton-">OnButtonPressed</a></strong>(const button: <a href="uCEFInterfaces.ICefButton.html">ICefButton</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFButtonDelegate.TCustomButtonDelegate.html#OnButtonStateChanged-ICefButton-">OnButtonStateChanged</a></strong>(const button: <a href="uCEFInterfaces.ICefButton.html">ICefButton</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>constructor <strong><a href="uCEFButtonDelegate.TCustomButtonDelegate.html#Create-ICefButtonDelegateEvents-">Create</a></strong>(const events: <a href="uCEFInterfaces.ICefButtonDelegateEvents.html">ICefButtonDelegateEvents</a>); reintroduce;</code></td>
|
||||
</tr>
|
||||
@ -202,6 +206,35 @@ ICefViewDelegate</p>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="OnThemeChanged-ICefView-"></span><code>procedure <strong>OnThemeChanged</strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFViewDelegate.TCefViewDelegateOwn.html#OnThemeChanged-ICefView-">TCefViewDelegateOwn.OnThemeChanged</a>.</p><p>
|
||||
(
|
||||
|
||||
<p>Called when the theme for |view| has changed, after the new theme colors have already been applied. Views are notified via the component hierarchy in depth-first reverse order (children before parents).
|
||||
|
||||
<p>This will be called in the following cases:
|
||||
|
||||
<p></p>
|
||||
|
||||
<pre class="preformatted">
|
||||
1. When |view|, or a parent of |view|, is added to a Window.
|
||||
2. When the native/OS or Chrome theme changes for the Window that contains
|
||||
|view|. See ICefWindowDelegate.OnThemeColorsChanged documentation.
|
||||
3. When the client explicitly calls ICefWindow.ThemeChanged on the
|
||||
Window that contains |view|.</pre>
|
||||
|
||||
<p>
|
||||
|
||||
<p>Optionally use this callback to override the new per-View theme colors by calling ICefView.SetBackgroundColor or the appropriate component- specific function. See ICefWindow.SetThemeColor documentation for how to customize additional Window theme colors.
|
||||
|
||||
<p>(</p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="OnButtonPressed-ICefButton-"></span><code>procedure <strong>OnButtonPressed</strong>(const button: <a href="uCEFInterfaces.ICefButton.html">ICefButton</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -103,7 +103,7 @@
|
||||
<td class="itemcode"><code><strong><a href="uCEFChromiumEvents.html#TOnCanDownloadEvent">TOnCanDownloadEvent</a></strong> = procedure(Sender: TObject; const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const url, request_method: <a href="uCEFTypes.html#ustring">ustring</a>; var aResult: boolean) of object;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFChromiumEvents.html#TOnBeforeDownload">TOnBeforeDownload</a></strong> = procedure(Sender: TObject; const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const downloadItem: <a href="uCEFInterfaces.ICefDownloadItem.html">ICefDownloadItem</a>; const suggestedName: <a href="uCEFTypes.html#ustring">ustring</a>; const callback: <a href="uCEFInterfaces.ICefBeforeDownloadCallback.html">ICefBeforeDownloadCallback</a>) of object;</code></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFChromiumEvents.html#TOnBeforeDownload">TOnBeforeDownload</a></strong> = procedure(Sender: TObject; const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const downloadItem: <a href="uCEFInterfaces.ICefDownloadItem.html">ICefDownloadItem</a>; const suggestedName: <a href="uCEFTypes.html#ustring">ustring</a>; const callback: <a href="uCEFInterfaces.ICefBeforeDownloadCallback.html">ICefBeforeDownloadCallback</a>; var aResult : boolean) of object;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFChromiumEvents.html#TOnDownloadUpdated">TOnDownloadUpdated</a></strong> = procedure(Sender: TObject; const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const downloadItem: <a href="uCEFInterfaces.ICefDownloadItem.html">ICefDownloadItem</a>; const callback: <a href="uCEFInterfaces.ICefDownloadItemCallback.html">ICefDownloadItemCallback</a>) of object;</code></td>
|
||||
@ -154,7 +154,13 @@
|
||||
<td class="itemcode"><code><strong><a href="uCEFChromiumEvents.html#TOnRenderViewReady">TOnRenderViewReady</a></strong> = procedure(Sender: Tobject; const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>) of object;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFChromiumEvents.html#TOnRenderProcessTerminated">TOnRenderProcessTerminated</a></strong> = procedure(Sender: TObject; const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; status: <a href="uCEFTypes.html#TCefTerminationStatus">TCefTerminationStatus</a>) of object;</code></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFChromiumEvents.html#TOnRenderProcessUnresponsive">TOnRenderProcessUnresponsive</a></strong> = procedure(Sender: Tobject; const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const callback: <a href="uCEFInterfaces.ICefUnresponsiveProcessCallback.html">ICefUnresponsiveProcessCallback</a>; var aResult: boolean) of object;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFChromiumEvents.html#TOnRenderProcessResponsive">TOnRenderProcessResponsive</a></strong> = procedure(Sender: Tobject; const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>) of object;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFChromiumEvents.html#TOnRenderProcessTerminated">TOnRenderProcessTerminated</a></strong> = procedure(Sender: TObject; const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; status: <a href="uCEFTypes.html#TCefTerminationStatus">TCefTerminationStatus</a>; error_code: integer; const error_string: <a href="uCEFTypes.html#ustring">ustring</a>) of object;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFChromiumEvents.html#TOnGetResourceRequestHandler">TOnGetResourceRequestHandler</a></strong> = procedure(Sender: TObject; const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const frame: <a href="uCEFInterfaces.ICefFrame.html">ICefFrame</a>; const request: <a href="uCEFInterfaces.ICefRequest.html">ICefRequest</a>; is_navigation, is_download: boolean; const request_initiator: <a href="uCEFTypes.html#ustring">ustring</a>; var disable_default_handling: boolean; var aExternalResourceRequestHandler : <a href="uCEFInterfaces.ICefResourceRequestHandler.html">ICefResourceRequestHandler</a>) of object;</code></td>
|
||||
@ -217,7 +223,7 @@
|
||||
<td class="itemcode"><code><strong><a href="uCEFChromiumEvents.html#TOnPaint">TOnPaint</a></strong> = procedure(Sender: TObject; const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; type_: <a href="uCEFTypes.html#TCefPaintElementType">TCefPaintElementType</a>; dirtyRectsCount: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; const dirtyRects: <a href="uCEFTypes.html#PCefRectArray">PCefRectArray</a>; const buffer: Pointer; width, height: Integer) of Object;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFChromiumEvents.html#TOnAcceleratedPaint">TOnAcceleratedPaint</a></strong> = procedure(Sender: TObject; const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; type_: <a href="uCEFTypes.html#TCefPaintElementType">TCefPaintElementType</a>; dirtyRectsCount: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; const dirtyRects: <a href="uCEFTypes.html#PCefRectArray">PCefRectArray</a>; shared_handle: Pointer) of Object;</code></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFChromiumEvents.html#TOnAcceleratedPaint">TOnAcceleratedPaint</a></strong> = procedure(Sender: TObject; const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; type_: <a href="uCEFTypes.html#TCefPaintElementType">TCefPaintElementType</a>; dirtyRectsCount: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; const dirtyRects: <a href="uCEFTypes.html#PCefRectArray">PCefRectArray</a>; const info: <a href="uCEFTypes.html#PCefAcceleratedPaintInfo">PCefAcceleratedPaintInfo</a>) of Object;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFChromiumEvents.html#TOnGetTouchHandleSize">TOnGetTouchHandleSize</a></strong> = procedure(Sender: TObject; const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; orientation: <a href="uCEFTypes.html#TCefHorizontalAlignment">TCefHorizontalAlignment</a>; var size: <a href="uCEFTypes.TCefSize.html">TCefSize</a>) of Object;</code></td>
|
||||
@ -651,7 +657,7 @@ ICefDownloadHandler</p>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="TOnBeforeDownload"></span><code><strong>TOnBeforeDownload</strong> = procedure(Sender: TObject; const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const downloadItem: <a href="uCEFInterfaces.ICefDownloadItem.html">ICefDownloadItem</a>; const suggestedName: <a href="uCEFTypes.html#ustring">ustring</a>; const callback: <a href="uCEFInterfaces.ICefBeforeDownloadCallback.html">ICefBeforeDownloadCallback</a>) of object;</code></td>
|
||||
<td class="itemcode"><span id="TOnBeforeDownload"></span><code><strong>TOnBeforeDownload</strong> = procedure(Sender: TObject; const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const downloadItem: <a href="uCEFInterfaces.ICefDownloadItem.html">ICefDownloadItem</a>; const suggestedName: <a href="uCEFTypes.html#ustring">ustring</a>; const callback: <a href="uCEFInterfaces.ICefBeforeDownloadCallback.html">ICefBeforeDownloadCallback</a>; var aResult : boolean) of object;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
@ -776,7 +782,21 @@ ICefRequestHandler</p>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="TOnRenderProcessTerminated"></span><code><strong>TOnRenderProcessTerminated</strong> = procedure(Sender: TObject; const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; status: <a href="uCEFTypes.html#TCefTerminationStatus">TCefTerminationStatus</a>) of object;</code></td>
|
||||
<td class="itemcode"><span id="TOnRenderProcessUnresponsive"></span><code><strong>TOnRenderProcessUnresponsive</strong> = procedure(Sender: Tobject; const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const callback: <a href="uCEFInterfaces.ICefUnresponsiveProcessCallback.html">ICefUnresponsiveProcessCallback</a>; var aResult: boolean) of object;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="TOnRenderProcessResponsive"></span><code><strong>TOnRenderProcessResponsive</strong> = procedure(Sender: Tobject; const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>) of object;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="TOnRenderProcessTerminated"></span><code><strong>TOnRenderProcessTerminated</strong> = procedure(Sender: TObject; const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; status: <a href="uCEFTypes.html#TCefTerminationStatus">TCefTerminationStatus</a>; error_code: integer; const error_string: <a href="uCEFTypes.html#ustring">ustring</a>) of object;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
@ -931,7 +951,7 @@ ICefRenderHandler</p>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="TOnAcceleratedPaint"></span><code><strong>TOnAcceleratedPaint</strong> = procedure(Sender: TObject; const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; type_: <a href="uCEFTypes.html#TCefPaintElementType">TCefPaintElementType</a>; dirtyRectsCount: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; const dirtyRects: <a href="uCEFTypes.html#PCefRectArray">PCefRectArray</a>; shared_handle: Pointer) of Object;</code></td>
|
||||
<td class="itemcode"><span id="TOnAcceleratedPaint"></span><code><strong>TOnAcceleratedPaint</strong> = procedure(Sender: TObject; const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; type_: <a href="uCEFTypes.html#TCefPaintElementType">TCefPaintElementType</a>; dirtyRectsCount: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; const dirtyRects: <a href="uCEFTypes.html#PCefRectArray">PCefRectArray</a>; const info: <a href="uCEFTypes.html#PCefAcceleratedPaintInfo">PCefAcceleratedPaintInfo</a>) of Object;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -30,7 +30,7 @@
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFDownloadHandler.TCefDownloadHandlerOwn.html#OnBeforeDownload-ICefBrowser-ICefDownloadItem-ustring-ICefBeforeDownloadCallback-">OnBeforeDownload</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const downloadItem: <a href="uCEFInterfaces.ICefDownloadItem.html">ICefDownloadItem</a>; const suggestedName: <a href="uCEFTypes.html#ustring">ustring</a>; const callback: <a href="uCEFInterfaces.ICefBeforeDownloadCallback.html">ICefBeforeDownloadCallback</a>); virtual;</code></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFDownloadHandler.TCefDownloadHandlerOwn.html#OnBeforeDownload-ICefBrowser-ICefDownloadItem-ustring-ICefBeforeDownloadCallback-">OnBeforeDownload</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const downloadItem: <a href="uCEFInterfaces.ICefDownloadItem.html">ICefDownloadItem</a>; const suggestedName: <a href="uCEFTypes.html#ustring">ustring</a>; const callback: <a href="uCEFInterfaces.ICefBeforeDownloadCallback.html">ICefBeforeDownloadCallback</a>): boolean; virtual;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
@ -60,11 +60,11 @@
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="OnBeforeDownload-ICefBrowser-ICefDownloadItem-ustring-ICefBeforeDownloadCallback-"></span><code>procedure <strong>OnBeforeDownload</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const downloadItem: <a href="uCEFInterfaces.ICefDownloadItem.html">ICefDownloadItem</a>; const suggestedName: <a href="uCEFTypes.html#ustring">ustring</a>; const callback: <a href="uCEFInterfaces.ICefBeforeDownloadCallback.html">ICefBeforeDownloadCallback</a>); virtual;</code></td>
|
||||
<td class="itemcode"><span id="OnBeforeDownload-ICefBrowser-ICefDownloadItem-ustring-ICefBeforeDownloadCallback-"></span><code>function <strong>OnBeforeDownload</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const downloadItem: <a href="uCEFInterfaces.ICefDownloadItem.html">ICefDownloadItem</a>; const suggestedName: <a href="uCEFTypes.html#ustring">ustring</a>; const callback: <a href="uCEFInterfaces.ICefBeforeDownloadCallback.html">ICefBeforeDownloadCallback</a>): boolean; virtual;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefDownloadHandler.html#OnBeforeDownload-ICefBrowser-ICefDownloadItem-ustring-ICefBeforeDownloadCallback-">ICefDownloadHandler.OnBeforeDownload</a>.</p><p>
|
||||
Called before a download begins. |suggested_name| is the suggested name for the download file. By default the download will be canceled. Execute |callback| either asynchronously or in this function to continue the download if desired. Do not keep a reference to |download_item| outside of this function. </p>
|
||||
Called before a download begins. |suggested_name| is the suggested name for the download file. Return true (1) and execute |callback| either asynchronously or in this function to continue or cancel the download. Return false (0) to proceed with default handling (cancel with Alloy style, download shelf with Chrome style). Do not keep a reference to |download_item| outside of this function. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
|
@ -38,7 +38,7 @@
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFDownloadHandler.TCustomDownloadHandler.html#OnBeforeDownload-ICefBrowser-ICefDownloadItem-ustring-ICefBeforeDownloadCallback-">OnBeforeDownload</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const downloadItem: <a href="uCEFInterfaces.ICefDownloadItem.html">ICefDownloadItem</a>; const suggestedName: <a href="uCEFTypes.html#ustring">ustring</a>; const callback: <a href="uCEFInterfaces.ICefBeforeDownloadCallback.html">ICefBeforeDownloadCallback</a>); override;</code></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFDownloadHandler.TCustomDownloadHandler.html#OnBeforeDownload-ICefBrowser-ICefDownloadItem-ustring-ICefBeforeDownloadCallback-">OnBeforeDownload</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const downloadItem: <a href="uCEFInterfaces.ICefDownloadItem.html">ICefDownloadItem</a>; const suggestedName: <a href="uCEFTypes.html#ustring">ustring</a>; const callback: <a href="uCEFInterfaces.ICefBeforeDownloadCallback.html">ICefBeforeDownloadCallback</a>): boolean; override;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
@ -81,11 +81,11 @@
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="OnBeforeDownload-ICefBrowser-ICefDownloadItem-ustring-ICefBeforeDownloadCallback-"></span><code>procedure <strong>OnBeforeDownload</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const downloadItem: <a href="uCEFInterfaces.ICefDownloadItem.html">ICefDownloadItem</a>; const suggestedName: <a href="uCEFTypes.html#ustring">ustring</a>; const callback: <a href="uCEFInterfaces.ICefBeforeDownloadCallback.html">ICefBeforeDownloadCallback</a>); override;</code></td>
|
||||
<td class="itemcode"><span id="OnBeforeDownload-ICefBrowser-ICefDownloadItem-ustring-ICefBeforeDownloadCallback-"></span><code>function <strong>OnBeforeDownload</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const downloadItem: <a href="uCEFInterfaces.ICefDownloadItem.html">ICefDownloadItem</a>; const suggestedName: <a href="uCEFTypes.html#ustring">ustring</a>; const callback: <a href="uCEFInterfaces.ICefBeforeDownloadCallback.html">ICefBeforeDownloadCallback</a>): boolean; override;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefDownloadHandler.html#OnBeforeDownload-ICefBrowser-ICefDownloadItem-ustring-ICefBeforeDownloadCallback-">ICefDownloadHandler.OnBeforeDownload</a>.</p><p>
|
||||
Called before a download begins. |suggested_name| is the suggested name for the download file. By default the download will be canceled. Execute |callback| either asynchronously or in this function to continue the download if desired. Do not keep a reference to |download_item| outside of this function. </p>
|
||||
Called before a download begins. |suggested_name| is the suggested name for the download file. Return true (1) and execute |callback| either asynchronously or in this function to continue or cancel the download. Return false (0) to proceed with default handling (cancel with Alloy style, download shelf with Chrome style). Do not keep a reference to |download_item| outside of this function. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
|
@ -308,6 +308,14 @@
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefBrowserHost.html#ExecuteChromeCommand-integer-TCefWindowOpenDisposition-">ExecuteChromeCommand</a></strong>(command_id: integer; disposition: <a href="uCEFTypes.html#TCefWindowOpenDisposition">TCefWindowOpenDisposition</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFInterfaces.ICefBrowserHost.html#IsRenderProcessUnresponsive">IsRenderProcessUnresponsive</a></strong>: boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFInterfaces.ICefBrowserHost.html#GetRuntimeStyle">GetRuntimeStyle</a></strong>: <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<span id="PasDoc-Properties"></span><h3 class="summary">Properties</h3>
|
||||
<table class="summary wide_list">
|
||||
@ -339,6 +347,10 @@
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>property <strong><a href="uCEFInterfaces.ICefBrowserHost.html#VisibleNavigationEntry">VisibleNavigationEntry</a></strong> : <a href="uCEFInterfaces.ICefNavigationEntry.html">ICefNavigationEntry</a> read <a href="uCEFInterfaces.ICefBrowserHost.html#GetVisibleNavigationEntry">GetVisibleNavigationEntry</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>property <strong><a href="uCEFInterfaces.ICefBrowserHost.html#RuntimeStyle">RuntimeStyle</a></strong> : <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a> read <a href="uCEFInterfaces.ICefBrowserHost.html#GetRuntimeStyle">GetRuntimeStyle</a>;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2 class="description">Description</h2>
|
||||
<h3 class="detail">Methods</h3>
|
||||
@ -981,6 +993,10 @@
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the extension hosted in this browser or NULL if no extension is hosted. See ICefRequestContext.LoadExtension for details. </p>
|
||||
<p>
|
||||
|
||||
|
||||
<p>WARNING: This API is deprecated and will be removed in ~M127.</p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
@ -991,6 +1007,10 @@
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns true (1) if this browser is hosting an extension background script. Background hosts do not have a window and are not displayable. See ICefRequestContext.LoadExtension for details. </p>
|
||||
<p>
|
||||
|
||||
|
||||
<p>WARNING: This API is deprecated and will be removed in ~M127.</p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
@ -1065,6 +1085,34 @@
|
||||
<p><see href="<a href="https://source.chromium.org/chromium/chromium/src/">https://source.chromium.org/chromium/chromium/src/</a>+/main:chrome/app/chrome_command_ids.h">The command_id values are also available in chrome/app/chrome_command_ids.h)</p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="IsRenderProcessUnresponsive"></span><code>function <strong>IsRenderProcessUnresponsive</strong>: boolean;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns true (1) if the render process associated with this browser is currently unresponsive as indicated by a lack of input event processing for at least 15 seconds. To receive associated state change notifications and optionally handle an unresponsive render process implement ICefRequestHandler.OnRenderProcessUnresponsive. </p>
|
||||
<p>
|
||||
|
||||
|
||||
<p>This function can only be called on the CEF UI thread.</p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="GetRuntimeStyle"></span><code>function <strong>GetRuntimeStyle</strong>: <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the runtime style for this browser (ALLOY or CHROME). See TCefRuntimeStyle documentation for details. </p>
|
||||
<p>
|
||||
|
||||
|
||||
<p>This function can only be called on the CEF UI thread.</p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<h3 class="detail">Properties</h3>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
@ -1113,7 +1161,11 @@
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Get the default zoom level. This value will be 0.0 by default but can be configured with the Chrome runtime. This function can only be called on the UI thread. </p>
|
||||
Get the default zoom level. This value will be 0.0 by default but can be configured with the Chrome runtime. </p>
|
||||
<p>
|
||||
|
||||
|
||||
<p>This property can only be used on the CEF UI thread.</p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
@ -1136,6 +1188,20 @@
|
||||
Retrieve a snapshot of current navigation entries as values sent to the specified visitor. If |current_only| is true (1) only the current navigation entry will be sent, otherwise all navigation entries will be sent. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="RuntimeStyle"></span><code>property <strong>RuntimeStyle</strong> : <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a> read <a href="uCEFInterfaces.ICefBrowserHost.html#GetRuntimeStyle">GetRuntimeStyle</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the runtime style for this browser (ALLOY or CHROME). See TCefRuntimeStyle documentation for details. </p>
|
||||
<p>
|
||||
|
||||
|
||||
<p>This property can only be used on the CEF UI thread.</p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<hr><span class="appinfo"><em>Generated by <a href="https://pasdoc.github.io/">PasDoc 0.16.0-snapshot</a>. </em>
|
||||
</span>
|
||||
</body></html>
|
||||
|
@ -10,7 +10,7 @@
|
||||
<body>
|
||||
<span id="ICefBrowserView"></span><h1 class="cio">Interface ICefBrowserView</h1>
|
||||
<div class="sections">
|
||||
<div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Hierarchy">Hierarchy</a></div><div class="one_section">Fields</div><div class="one_section"><a class="section" href="#PasDoc-Methods">Methods</a></div><div class="one_section">Properties</div></div>
|
||||
<div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Hierarchy">Hierarchy</a></div><div class="one_section">Fields</div><div class="one_section"><a class="section" href="#PasDoc-Methods">Methods</a></div><div class="one_section"><a class="section" href="#PasDoc-Properties">Properties</a></div></div>
|
||||
<span id="PasDoc-Description"></span><h2 class="unit">Unit</h2>
|
||||
<p class="unitlink">
|
||||
<a href="uCEFInterfaces.html">uCEFInterfaces</a></p>
|
||||
@ -45,6 +45,17 @@
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefBrowserView.html#SetPreferAccelerators-boolean-">SetPreferAccelerators</a></strong>(prefer_accelerators: boolean);</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFInterfaces.ICefBrowserView.html#GetRuntimeStyle">GetRuntimeStyle</a></strong>: <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<span id="PasDoc-Properties"></span><h3 class="summary">Properties</h3>
|
||||
<table class="summary wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>property <strong><a href="uCEFInterfaces.ICefBrowserView.html#RuntimeStyle">RuntimeStyle</a></strong> : <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a> read <a href="uCEFInterfaces.ICefBrowserView.html#GetRuntimeStyle">GetRuntimeStyle</a>;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2 class="description">Description</h2>
|
||||
<h3 class="detail">Methods</h3>
|
||||
@ -83,6 +94,27 @@
|
||||
Sets whether normal priority accelerators are first forwarded to the web content (`keydown` event handler) or ICefKeyboardHandler. Normal priority accelerators can be registered via ICefWindow.SetAccelerator (with |high_priority|=false) or internally for standard accelerators supported by the Chrome runtime. If |prefer_accelerators| is true then the matching accelerator will be triggered immediately (calling ICefWindowDelegate.OnAccelerator or ICefCommandHandler.OnChromeCommand respectively) and the event will not be forwarded to the web content or ICefKeyboardHandler first. If |prefer_accelerators| is false then the matching accelerator will only be triggered if the event is not handled by web content (`keydown` event handler that calls `event.preventDefault()`) or by ICefKeyboardHandler. The default value is false. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="GetRuntimeStyle"></span><code>function <strong>GetRuntimeStyle</strong>: <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the runtime style for this BrowserView (ALLOY or CHROME). See TCefRuntimeStyle documentation for details. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<h3 class="detail">Properties</h3>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="RuntimeStyle"></span><code>property <strong>RuntimeStyle</strong> : <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a> read <a href="uCEFInterfaces.ICefBrowserView.html#GetRuntimeStyle">GetRuntimeStyle</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the runtime style for this BrowserView (ALLOY or CHROME). See TCefRuntimeStyle documentation for details. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<hr><span class="appinfo"><em>Generated by <a href="https://pasdoc.github.io/">PasDoc 0.16.0-snapshot</a>. </em>
|
||||
</span>
|
||||
</body></html>
|
||||
|
@ -61,6 +61,10 @@
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefBrowserViewDelegate.html#OnGestureCommand-ICefBrowserView-TCefGestureCommand-boolean-">OnGestureCommand</a></strong>(const browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; gesture_command: <a href="uCEFTypes.html#TCefGestureCommand">TCefGestureCommand</a>; var aResult : boolean);</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefBrowserViewDelegate.html#OnGetBrowserRuntimeStyle-TCefRuntimeStyle-">OnGetBrowserRuntimeStyle</a></strong>(var aResult : <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>);</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2 class="description">Description</h2>
|
||||
<h3 class="detail">Methods</h3>
|
||||
@ -139,6 +143,16 @@
|
||||
Called when |browser_view| receives a gesture command. Return true (1) to handle (or disable) a |gesture_command| or false (0) to propagate the gesture to the browser for default handling. With the Chrome runtime these commands can also be handled via cef_command_handler_t::OnChromeCommand. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="OnGetBrowserRuntimeStyle-TCefRuntimeStyle-"></span><code>procedure <strong>OnGetBrowserRuntimeStyle</strong>(var aResult : <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Optionally change the runtime style for this BrowserView. See TCefRuntimeStyle documentation for details. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<hr><span class="appinfo"><em>Generated by <a href="https://pasdoc.github.io/">PasDoc 0.16.0-snapshot</a>. </em>
|
||||
</span>
|
||||
</body></html>
|
||||
|
@ -54,6 +54,10 @@
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefBrowserViewDelegateEvents.html#doOnGestureCommand-ICefBrowserView-TCefGestureCommand-boolean-">doOnGestureCommand</a></strong>(const browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; gesture_command: <a href="uCEFTypes.html#TCefGestureCommand">TCefGestureCommand</a>; var aResult : boolean);</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefBrowserViewDelegateEvents.html#doOnGetBrowserRuntimeStyle-TCefRuntimeStyle-">doOnGetBrowserRuntimeStyle</a></strong>(var aResult : <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>);</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2 class="description">Description</h2>
|
||||
<h3 class="detail">Methods</h3>
|
||||
@ -118,6 +122,14 @@
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="doOnGetBrowserRuntimeStyle-TCefRuntimeStyle-"></span><code>procedure <strong>doOnGetBrowserRuntimeStyle</strong>(var aResult : <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<hr><span class="appinfo"><em>Generated by <a href="https://pasdoc.github.io/">PasDoc 0.16.0-snapshot</a>. </em>
|
||||
</span>
|
||||
</body></html>
|
||||
|
@ -38,7 +38,7 @@
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefDownloadHandler.html#OnBeforeDownload-ICefBrowser-ICefDownloadItem-ustring-ICefBeforeDownloadCallback-">OnBeforeDownload</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const downloadItem: <a href="uCEFInterfaces.ICefDownloadItem.html">ICefDownloadItem</a>; const suggestedName: <a href="uCEFTypes.html#ustring">ustring</a>; const callback: <a href="uCEFInterfaces.ICefBeforeDownloadCallback.html">ICefBeforeDownloadCallback</a>);</code></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFInterfaces.ICefDownloadHandler.html#OnBeforeDownload-ICefBrowser-ICefDownloadItem-ustring-ICefBeforeDownloadCallback-">OnBeforeDownload</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const downloadItem: <a href="uCEFInterfaces.ICefDownloadItem.html">ICefDownloadItem</a>; const suggestedName: <a href="uCEFTypes.html#ustring">ustring</a>; const callback: <a href="uCEFInterfaces.ICefBeforeDownloadCallback.html">ICefBeforeDownloadCallback</a>): boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
@ -69,11 +69,11 @@
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="OnBeforeDownload-ICefBrowser-ICefDownloadItem-ustring-ICefBeforeDownloadCallback-"></span><code>procedure <strong>OnBeforeDownload</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const downloadItem: <a href="uCEFInterfaces.ICefDownloadItem.html">ICefDownloadItem</a>; const suggestedName: <a href="uCEFTypes.html#ustring">ustring</a>; const callback: <a href="uCEFInterfaces.ICefBeforeDownloadCallback.html">ICefBeforeDownloadCallback</a>);</code></td>
|
||||
<td class="itemcode"><span id="OnBeforeDownload-ICefBrowser-ICefDownloadItem-ustring-ICefBeforeDownloadCallback-"></span><code>function <strong>OnBeforeDownload</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const downloadItem: <a href="uCEFInterfaces.ICefDownloadItem.html">ICefDownloadItem</a>; const suggestedName: <a href="uCEFTypes.html#ustring">ustring</a>; const callback: <a href="uCEFInterfaces.ICefBeforeDownloadCallback.html">ICefBeforeDownloadCallback</a>): boolean;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Called before a download begins. |suggested_name| is the suggested name for the download file. By default the download will be canceled. Execute |callback| either asynchronously or in this function to continue the download if desired. Do not keep a reference to |download_item| outside of this function. </p>
|
||||
Called before a download begins. |suggested_name| is the suggested name for the download file. Return true (1) and execute |callback| either asynchronously or in this function to continue or cancel the download. Return false (0) to proceed with default handling (cancel with Alloy style, download shelf with Chrome style). Do not keep a reference to |download_item| outside of this function. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
|
@ -23,6 +23,8 @@
|
||||
<p>
|
||||
|
||||
|
||||
<p>WARNING: This API is deprecated and will be removed in ~M127.
|
||||
|
||||
<p>UNKNOWN
|
||||
|
||||
<p><see href="<a href="https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/cef_extension_capi.h">https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/cef_extension_capi.h</a>">CEF source file: /include/capi/cef_extension_capi.h (cef_extension_t))</p>
|
||||
|
@ -23,6 +23,8 @@
|
||||
<p>
|
||||
|
||||
|
||||
<p>WARNING: This API is deprecated and will be removed in ~M127.
|
||||
|
||||
<p>UNKNOWN
|
||||
|
||||
<p><see href="<a href="https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/cef_extension_handler_capi.h">https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/cef_extension_handler_capi.h</a>">CEF source file: /include/capi/cef_extension_handler_capi.h (cef_extension_handler_t))</p>
|
||||
|
@ -66,7 +66,7 @@
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefRenderHandler.html#OnAcceleratedPaint-ICefBrowser-TCefPaintElementType-NativeUInt-PCefRectArray-Pointer-">OnAcceleratedPaint</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; kind: <a href="uCEFTypes.html#TCefPaintElementType">TCefPaintElementType</a>; dirtyRectsCount: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; const dirtyRects: <a href="uCEFTypes.html#PCefRectArray">PCefRectArray</a>; shared_handle: Pointer);</code></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefRenderHandler.html#OnAcceleratedPaint-ICefBrowser-TCefPaintElementType-NativeUInt-PCefRectArray-PCefAcceleratedPaintInfo-">OnAcceleratedPaint</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; kind: <a href="uCEFTypes.html#TCefPaintElementType">TCefPaintElementType</a>; dirtyRectsCount: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; const dirtyRects: <a href="uCEFTypes.html#PCefRectArray">PCefRectArray</a>; const info: <a href="uCEFTypes.html#PCefAcceleratedPaintInfo">PCefAcceleratedPaintInfo</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
@ -197,11 +197,17 @@
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="OnAcceleratedPaint-ICefBrowser-TCefPaintElementType-NativeUInt-PCefRectArray-Pointer-"></span><code>procedure <strong>OnAcceleratedPaint</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; kind: <a href="uCEFTypes.html#TCefPaintElementType">TCefPaintElementType</a>; dirtyRectsCount: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; const dirtyRects: <a href="uCEFTypes.html#PCefRectArray">PCefRectArray</a>; shared_handle: Pointer);</code></td>
|
||||
<td class="itemcode"><span id="OnAcceleratedPaint-ICefBrowser-TCefPaintElementType-NativeUInt-PCefRectArray-PCefAcceleratedPaintInfo-"></span><code>procedure <strong>OnAcceleratedPaint</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; kind: <a href="uCEFTypes.html#TCefPaintElementType">TCefPaintElementType</a>; dirtyRectsCount: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; const dirtyRects: <a href="uCEFTypes.html#PCefRectArray">PCefRectArray</a>; const info: <a href="uCEFTypes.html#PCefAcceleratedPaintInfo">PCefAcceleratedPaintInfo</a>);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Called when an element has been rendered to the shared texture handle. |type| indicates whether the element is the view or the popup widget. |dirtyRects| contains the set of rectangles in pixel coordinates that need to be repainted. |shared_handle| is the handle for a D3D11 Texture2D that can be accessed via ID3D11Device using the OpenSharedResource function. This function is only called when TCefWindowInfo.shared_texture_enabled is set to true (1), and is currently only supported on Windows. </p>
|
||||
|
||||
|
||||
<p>Called when an element has been rendered to the shared texture handle. |type| indicates whether the element is the view or the popup widget. |dirtyRects| contains the set of rectangles in pixel coordinates that need to be repainted. |info| contains the shared handle; on Windows it is a HANDLE to a texture that can be opened with D3D11 OpenSharedResource, on macOS it is an IOSurface pointer that can be opened with Metal or OpenGL, and on Linux it contains several planes, each with an fd to the underlying system native buffer.
|
||||
|
||||
<p>The underlying implementation uses a pool to deliver frames. As a result, the handle may differ every frame depending on how many frames are in- progress. The handle's resource cannot be cached and cannot be accessed outside of this callback. It should be reopened each time this callback is executed and the contents should be copied to a texture owned by the client application. The contents of |info| will be released back to the pool after this callback returns.
|
||||
|
||||
<p></p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
|
@ -125,16 +125,44 @@
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefRequestContext.html#SetContentSetting-ustring-ustring-TCefContentSettingTypes-TCefContentSettingValues-">SetContentSetting</a></strong>(const requesting_url, top_level_url: <a href="uCEFTypes.html#ustring">ustring</a>; content_type: <a href="uCEFTypes.html#TCefContentSettingTypes">TCefContentSettingTypes</a>; value: <a href="uCEFTypes.html#TCefContentSettingValues">TCefContentSettingValues</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefRequestContext.html#SetChromeColorScheme-TCefColorVariant-TCefColor-">SetChromeColorScheme</a></strong>(variant: <a href="uCEFTypes.html#TCefColorVariant">TCefColorVariant</a>; user_color: <a href="uCEFTypes.html#TCefColor">TCefColor</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFInterfaces.ICefRequestContext.html#GetChromeColorSchemeMode">GetChromeColorSchemeMode</a></strong>: <a href="uCEFTypes.html#TCefColorVariant">TCefColorVariant</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFInterfaces.ICefRequestContext.html#GetChromeColorSchemeColor">GetChromeColorSchemeColor</a></strong>: <a href="uCEFTypes.html#TCefColor">TCefColor</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFInterfaces.ICefRequestContext.html#GetChromeColorSchemeVariant">GetChromeColorSchemeVariant</a></strong>: <a href="uCEFTypes.html#TCefColorVariant">TCefColorVariant</a>;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<span id="PasDoc-Properties"></span><h3 class="summary">Properties</h3>
|
||||
<table class="summary wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>property <strong><a href="uCEFInterfaces.ICefRequestContext.html#CachePath">CachePath</a></strong> : <a href="uCEFTypes.html#ustring">ustring</a> read <a href="uCEFInterfaces.ICefRequestContext.html#GetCachePath">GetCachePath</a>;</code></td>
|
||||
<td class="itemcode"><code>property <strong><a href="uCEFInterfaces.ICefRequestContext.html#CachePath">CachePath</a></strong> : <a href="uCEFTypes.html#ustring">ustring</a> read <a href="uCEFInterfaces.ICefRequestContext.html#GetCachePath">GetCachePath</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>property <strong><a href="uCEFInterfaces.ICefRequestContext.html#IsGlobalContext">IsGlobalContext</a></strong> : boolean read <a href="uCEFInterfaces.ICefRequestContext.html#IsGlobal">IsGlobal</a>;</code></td>
|
||||
<td class="itemcode"><code>property <strong><a href="uCEFInterfaces.ICefRequestContext.html#IsGlobalContext">IsGlobalContext</a></strong> : boolean read <a href="uCEFInterfaces.ICefRequestContext.html#IsGlobal">IsGlobal</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>property <strong><a href="uCEFInterfaces.ICefRequestContext.html#ChromeColorSchemeMode">ChromeColorSchemeMode</a></strong> : <a href="uCEFTypes.html#TCefColorVariant">TCefColorVariant</a> read <a href="uCEFInterfaces.ICefRequestContext.html#GetChromeColorSchemeMode">GetChromeColorSchemeMode</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>property <strong><a href="uCEFInterfaces.ICefRequestContext.html#ChromeColorSchemeColor">ChromeColorSchemeColor</a></strong> : <a href="uCEFTypes.html#TCefColor">TCefColor</a> read <a href="uCEFInterfaces.ICefRequestContext.html#GetChromeColorSchemeColor">GetChromeColorSchemeColor</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>property <strong><a href="uCEFInterfaces.ICefRequestContext.html#ChromeColorSchemeVariant">ChromeColorSchemeVariant</a></strong> : <a href="uCEFTypes.html#TCefColorVariant">TCefColorVariant</a> read <a href="uCEFInterfaces.ICefRequestContext.html#GetChromeColorSchemeVariant">GetChromeColorSchemeVariant</a>;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2 class="description">Description</h2>
|
||||
@ -295,7 +323,9 @@
|
||||
|
||||
<p>Browsers that host extensions differ from normal browsers as follows: - Can access chrome.* JavaScript APIs if allowed by the manifest. Visit <a href="chrome://extensions-support">chrome://extensions-support</a> for the list of extension APIs currently supported by CEF. - Main frame navigation to non-extension content is blocked. - Pinch-zooming is disabled. - CefBrowserHost::GetExtension returns the hosted extension. - CefBrowserHost::IsBackgroundHost returns true for background hosts.
|
||||
|
||||
<p>See <a href="https://developer.chrome.com/extensions">https://developer.chrome.com/extensions</a> for extension implementation and usage documentation. </p>
|
||||
<p>See <a href="https://developer.chrome.com/extensions">https://developer.chrome.com/extensions</a> for extension implementation and usage documentation.
|
||||
|
||||
<p>WARNING: This function is deprecated and will be removed in ~M127. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
@ -305,7 +335,9 @@
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns true (1) if this context was used to load the extension identified by |extension_id|. Other contexts sharing the same storage will also have access to the extension (see HasExtension). This function must be called on the browser process UI thread. </p>
|
||||
Returns true (1) if this context was used to load the extension identified by |extension_id|. Other contexts sharing the same storage will also have access to the extension (see HasExtension). This function must be called on the browser process UI thread.
|
||||
|
||||
<p>WARNING: This function is deprecated and will be removed in ~M127. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
@ -315,7 +347,9 @@
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns true (1) if this context has access to the extension identified by |extension_id|. This may not be the context that was used to load the extension (see DidLoadExtension). This function must be called on the browser process UI thread. </p>
|
||||
Returns true (1) if this context has access to the extension identified by |extension_id|. This may not be the context that was used to load the extension (see DidLoadExtension). This function must be called on the browser process UI thread.
|
||||
|
||||
<p>WARNING: This function is deprecated and will be removed in ~M127. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
@ -325,7 +359,9 @@
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Retrieve the list of all extensions that this context has access to (see HasExtension). |extension_ids| will be populated with the list of extension ID values. Returns true (1) on success. This function must be called on the browser process UI thread. </p>
|
||||
Retrieve the list of all extensions that this context has access to (see HasExtension). |extension_ids| will be populated with the list of extension ID values. Returns true (1) on success. This function must be called on the browser process UI thread.
|
||||
|
||||
<p>WARNING: This function is deprecated and will be removed in ~M127. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
@ -335,7 +371,9 @@
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the extension matching |extension_id| or NULL if no matching extension is accessible in this context (see HasExtension). This function must be called on the browser process UI thread. </p>
|
||||
Returns the extension matching |extension_id| or NULL if no matching extension is accessible in this context (see HasExtension). This function must be called on the browser process UI thread.
|
||||
|
||||
<p>WARNING: This function is deprecated and will be removed in ~M127. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
@ -392,11 +430,51 @@
|
||||
<p>WARNING: Incorrect usage of this function may cause instability or security issues in Chromium. Make sure that you first understand the potential impact of any changes to |content_type| by reviewing the related source code in Chromium. For example, if you plan to modify CEF_CONTENT_SETTING_TYPE_POPUPS, first review and understand the usage of ContentSettingsType::POPUPS in Chromium: <a href="https://source.chromium.org/search?q=ContentSettingsType::POPUPS">https://source.chromium.org/search?q=ContentSettingsType::POPUPS</a> </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="SetChromeColorScheme-TCefColorVariant-TCefColor-"></span><code>procedure <strong>SetChromeColorScheme</strong>(variant: <a href="uCEFTypes.html#TCefColorVariant">TCefColorVariant</a>; user_color: <a href="uCEFTypes.html#TCefColor">TCefColor</a>);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Sets the Chrome color scheme for all browsers that share this request context. |variant| values of SYSTEM, LIGHT and DARK change the underlying color mode (e.g. light vs dark). Other |variant| values determine how |user_color| will be applied in the current color mode. If |user_color| is transparent (0) the default color will be used. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="GetChromeColorSchemeMode"></span><code>function <strong>GetChromeColorSchemeMode</strong>: <a href="uCEFTypes.html#TCefColorVariant">TCefColorVariant</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the current Chrome color scheme mode (SYSTEM, LIGHT or DARK). Must be called on the browser process UI thread. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="GetChromeColorSchemeColor"></span><code>function <strong>GetChromeColorSchemeColor</strong>: <a href="uCEFTypes.html#TCefColor">TCefColor</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the current Chrome color scheme color, or transparent (0) for the default color. Must be called on the browser process UI thread. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="GetChromeColorSchemeVariant"></span><code>function <strong>GetChromeColorSchemeVariant</strong>: <a href="uCEFTypes.html#TCefColorVariant">TCefColorVariant</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the current Chrome color scheme variant. Must be called on the browser process UI thread. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<h3 class="detail">Properties</h3>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="CachePath"></span><code>property <strong>CachePath</strong> : <a href="uCEFTypes.html#ustring">ustring</a> read <a href="uCEFInterfaces.ICefRequestContext.html#GetCachePath">GetCachePath</a>;</code></td>
|
||||
<td class="itemcode"><span id="CachePath"></span><code>property <strong>CachePath</strong> : <a href="uCEFTypes.html#ustring">ustring</a> read <a href="uCEFInterfaces.ICefRequestContext.html#GetCachePath">GetCachePath</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
@ -406,13 +484,43 @@
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="IsGlobalContext"></span><code>property <strong>IsGlobalContext</strong> : boolean read <a href="uCEFInterfaces.ICefRequestContext.html#IsGlobal">IsGlobal</a>;</code></td>
|
||||
<td class="itemcode"><span id="IsGlobalContext"></span><code>property <strong>IsGlobalContext</strong> : boolean read <a href="uCEFInterfaces.ICefRequestContext.html#IsGlobal">IsGlobal</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns true (1) if this object is the global context. The global context is used by default when creating a browser or URL request with a NULL context argument. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="ChromeColorSchemeMode"></span><code>property <strong>ChromeColorSchemeMode</strong> : <a href="uCEFTypes.html#TCefColorVariant">TCefColorVariant</a> read <a href="uCEFInterfaces.ICefRequestContext.html#GetChromeColorSchemeMode">GetChromeColorSchemeMode</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the current Chrome color scheme mode (SYSTEM, LIGHT or DARK). Must be called on the browser process UI thread. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="ChromeColorSchemeColor"></span><code>property <strong>ChromeColorSchemeColor</strong> : <a href="uCEFTypes.html#TCefColor">TCefColor</a> read <a href="uCEFInterfaces.ICefRequestContext.html#GetChromeColorSchemeColor">GetChromeColorSchemeColor</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the current Chrome color scheme color, or transparent (0) for the default color. Must be called on the browser process UI thread. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="ChromeColorSchemeVariant"></span><code>property <strong>ChromeColorSchemeVariant</strong> : <a href="uCEFTypes.html#TCefColorVariant">TCefColorVariant</a> read <a href="uCEFInterfaces.ICefRequestContext.html#GetChromeColorSchemeVariant">GetChromeColorSchemeVariant</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the current Chrome color scheme variant. Must be called on the browser process UI thread. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<hr><span class="appinfo"><em>Generated by <a href="https://pasdoc.github.io/">PasDoc 0.16.0-snapshot</a>. </em>
|
||||
</span>
|
||||
</body></html>
|
||||
|
@ -62,7 +62,15 @@
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefRequestHandler.html#OnRenderProcessTerminated-ICefBrowser-TCefTerminationStatus-">OnRenderProcessTerminated</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; status: <a href="uCEFTypes.html#TCefTerminationStatus">TCefTerminationStatus</a>);</code></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFInterfaces.ICefRequestHandler.html#OnRenderProcessUnresponsive-ICefBrowser-ICefUnresponsiveProcessCallback-">OnRenderProcessUnresponsive</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const callback: <a href="uCEFInterfaces.ICefUnresponsiveProcessCallback.html">ICefUnresponsiveProcessCallback</a>): boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefRequestHandler.html#OnRenderProcessResponsive-ICefBrowser-">OnRenderProcessResponsive</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefRequestHandler.html#OnRenderProcessTerminated-ICefBrowser-TCefTerminationStatus-integer-ustring-">OnRenderProcessTerminated</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; status: <a href="uCEFTypes.html#TCefTerminationStatus">TCefTerminationStatus</a>; error_code: integer; const error_string: <a href="uCEFTypes.html#ustring">ustring</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
@ -153,11 +161,31 @@
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="OnRenderProcessTerminated-ICefBrowser-TCefTerminationStatus-"></span><code>procedure <strong>OnRenderProcessTerminated</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; status: <a href="uCEFTypes.html#TCefTerminationStatus">TCefTerminationStatus</a>);</code></td>
|
||||
<td class="itemcode"><span id="OnRenderProcessUnresponsive-ICefBrowser-ICefUnresponsiveProcessCallback-"></span><code>function <strong>OnRenderProcessUnresponsive</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const callback: <a href="uCEFInterfaces.ICefUnresponsiveProcessCallback.html">ICefUnresponsiveProcessCallback</a>): boolean;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Called on the browser process UI thread when the render process terminates unexpectedly. |status| indicates how the process terminated. </p>
|
||||
Called on the browser process UI thread when the render process is unresponsive as indicated by a lack of input event processing for at least 15 seconds. Return false (0) for the default behavior which is an indefinite wait with the Alloy runtime or display of the "Page unresponsive" dialog with the Chrome runtime. Return true (1) and don't execute the callback for an indefinite wait without display of the Chrome runtime dialog. Return true (1) and call ICefUnresponsiveProcessCallback.Wait either in this function or at a later time to reset the wait timer, potentially triggering another call to this function if the process remains unresponsive. Return true (1) and call ICefUnresponsiveProcessCallback.Terminate either in this function or at a later time to terminate the unresponsive process, resulting in a call to OnRenderProcessTerminated. OnRenderProcessResponsive will be called if the process becomes responsive after this function is called. This functionality depends on the hang monitor which can be disabled by passing the `–disable-hang-monitor` command-line flag or setting GlobalCEFApp.DisableHangMonitor to True. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="OnRenderProcessResponsive-ICefBrowser-"></span><code>procedure <strong>OnRenderProcessResponsive</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Called on the browser process UI thread when the render process becomes responsive after previously being unresponsive. See documentation on OnRenderProcessUnresponsive. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="OnRenderProcessTerminated-ICefBrowser-TCefTerminationStatus-integer-ustring-"></span><code>procedure <strong>OnRenderProcessTerminated</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; status: <a href="uCEFTypes.html#TCefTerminationStatus">TCefTerminationStatus</a>; error_code: integer; const error_string: <a href="uCEFTypes.html#ustring">ustring</a>);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Called on the browser process UI thread when the render process terminates unexpectedly. |status| indicates how the process terminated. |error_code| and |error_string| represent the error that would be displayed in Chrome's "Aw, Snap!" view. Possible |error_code| values include TCefResultCode non-normal exit values and platform-specific crash values (for example, a Posix signal or Windows hardware exception). </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
|
@ -0,0 +1,73 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFInterfaces: Interface ICefUnresponsiveProcessCallback</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="generator" content="PasDoc 0.16.0-snapshot">
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<link rel="StyleSheet" type="text/css" href="pasdoc.css">
|
||||
</head>
|
||||
<body>
|
||||
<span id="ICefUnresponsiveProcessCallback"></span><h1 class="cio">Interface ICefUnresponsiveProcessCallback</h1>
|
||||
<div class="sections">
|
||||
<div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Hierarchy">Hierarchy</a></div><div class="one_section">Fields</div><div class="one_section"><a class="section" href="#PasDoc-Methods">Methods</a></div><div class="one_section">Properties</div></div>
|
||||
<span id="PasDoc-Description"></span><h2 class="unit">Unit</h2>
|
||||
<p class="unitlink">
|
||||
<a href="uCEFInterfaces.html">uCEFInterfaces</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type ICefUnresponsiveProcessCallback = interface(<a class="normal" href="uCEFInterfaces.ICefBaseRefCounted.html">ICefBaseRefCounted</a>)</code></p>
|
||||
<h2 class="description">Description</h2>
|
||||
<p>
|
||||
Callback structure for asynchronous handling of an unresponsive process. </p>
|
||||
<p>
|
||||
|
||||
|
||||
<p>UNKNOWN
|
||||
|
||||
<p><see href="<a href="https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/cef_unresponsive_process_callback_capi.h">https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/cef_unresponsive_process_callback_capi.h</a>">CEF source file: /include/capi/cef_unresponsive_process_callback_capi.h (cef_unresponsive_process_callback_t))</p>
|
||||
<span id="PasDoc-Hierarchy"></span><h2 class="hierarchy">Hierarchy</h2>
|
||||
<ul class="hierarchy"><li class="ancestor">IInterface</li>
|
||||
<li class="ancestor"><a class="normal" href="uCEFInterfaces.ICefBaseRefCounted.html">ICefBaseRefCounted</a></li>
|
||||
<li class="thisitem">ICefUnresponsiveProcessCallback</li></ul><h2 class="overview">Overview</h2>
|
||||
<span id="PasDoc-Methods"></span><h3 class="summary">Methods</h3>
|
||||
<table class="summary wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefUnresponsiveProcessCallback.html#Wait">Wait</a></strong>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefUnresponsiveProcessCallback.html#Terminate">Terminate</a></strong>;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2 class="description">Description</h2>
|
||||
<h3 class="detail">Methods</h3>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="Wait"></span><code>procedure <strong>Wait</strong>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Reset the timeout for the unresponsive process. </p>
|
||||
<h6 class="description_section">Attributes</h6>
|
||||
<dl class="attributes">
|
||||
<dt>GUID['{3E4F2B66-5AAF-4906-B946-C114D0E43C13}']</dt>
|
||||
<dd></dd>
|
||||
</dl>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="Terminate"></span><code>procedure <strong>Terminate</strong>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Terminate the unresponsive process. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<hr><span class="appinfo"><em>Generated by <a href="https://pasdoc.github.io/">PasDoc 0.16.0-snapshot</a>. </em>
|
||||
</span>
|
||||
</body></html>
|
@ -210,25 +210,29 @@
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFInterfaces.ICefView.html#ConvertPointToScreen-TCefPoint-">ConvertPointToScreen</a></strong>(var point: <a href="uCEFTypes.TCefPoint.html">TCefPoint</a>): boolean;</code></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFInterfaces.ICefView.html#GetThemeColor-integer-">GetThemeColor</a></strong>(color_id: integer): <a href="uCEFTypes.html#TCefColor">TCefColor</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFInterfaces.ICefView.html#ConvertPointToScreen-TCefPoint-">ConvertPointToScreen</a></strong>(var point: <a href="uCEFTypes.TCefPoint.html">TCefPoint</a>): boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFInterfaces.ICefView.html#ConvertPointFromScreen-TCefPoint-">ConvertPointFromScreen</a></strong>(var point: <a href="uCEFTypes.TCefPoint.html">TCefPoint</a>): boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFInterfaces.ICefView.html#ConvertPointToWindow-TCefPoint-">ConvertPointToWindow</a></strong>(var point: <a href="uCEFTypes.TCefPoint.html">TCefPoint</a>): boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFInterfaces.ICefView.html#ConvertPointFromWindow-TCefPoint-">ConvertPointFromWindow</a></strong>(var point: <a href="uCEFTypes.TCefPoint.html">TCefPoint</a>): boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFInterfaces.ICefView.html#ConvertPointToView-ICefView-TCefPoint-">ConvertPointToView</a></strong>(const view : <a href="uCEFInterfaces.ICefView.html">ICefView</a>; var point: <a href="uCEFTypes.TCefPoint.html">TCefPoint</a>): boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFInterfaces.ICefView.html#ConvertPointFromView-ICefView-TCefPoint-">ConvertPointFromView</a></strong>(const view : <a href="uCEFInterfaces.ICefView.html">ICefView</a>; var point: <a href="uCEFTypes.TCefPoint.html">TCefPoint</a>): boolean;</code></td>
|
||||
</tr>
|
||||
@ -758,7 +762,7 @@
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Sets the background color for this View. </p>
|
||||
Sets the background color for this View. The background color will be automatically reset when ICefViewDelegate.OnThemeChanged is called. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
@ -768,7 +772,17 @@
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the background color for this View. </p>
|
||||
Returns the background color for this View. If the background color is unset then the current `GetThemeColor(CEF_ColorPrimaryBackground)` value will be returned. If this View belongs to an overlay (created with ICefWindow.AddOverlayView), and the background color is unset, then a value of transparent (0) will be returned. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="GetThemeColor-integer-"></span><code>function <strong>GetThemeColor</strong>(color_id: integer): <a href="uCEFTypes.html#TCefColor">TCefColor</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the current theme color associated with |color_id|, or the placeholder color (red) if unset. See cef_color_ids.h for standard ID values. Standard colors can be overridden and custom colors can be added using ICefWindow.SetThemeColor. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
@ -979,7 +993,7 @@
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the background color for this View. </p>
|
||||
Returns the background color for this View. If the background color is unset then the current `GetThemeColor(CEF_ColorPrimaryBackground)` value will be returned. If this View belongs to an overlay (created with ICefWindow.AddOverlayView), and the background color is unset, then a value of transparent (0) will be returned. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
|
@ -72,6 +72,10 @@
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefViewDelegate.html#OnBlur-ICefView-">OnBlur</a></strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefViewDelegate.html#OnThemeChanged-ICefView-">OnThemeChanged</a></strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>);</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2 class="description">Description</h2>
|
||||
<h3 class="detail">Methods</h3>
|
||||
@ -180,6 +184,35 @@
|
||||
Called when |view| loses focus. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="OnThemeChanged-ICefView-"></span><code>procedure <strong>OnThemeChanged</strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
(
|
||||
|
||||
<p>Called when the theme for |view| has changed, after the new theme colors have already been applied. Views are notified via the component hierarchy in depth-first reverse order (children before parents).
|
||||
|
||||
<p>This will be called in the following cases:
|
||||
|
||||
<p></p>
|
||||
|
||||
<pre class="preformatted">
|
||||
1. When |view|, or a parent of |view|, is added to a Window.
|
||||
2. When the native/OS or Chrome theme changes for the Window that contains
|
||||
|view|. See ICefWindowDelegate.OnThemeColorsChanged documentation.
|
||||
3. When the client explicitly calls ICefWindow.ThemeChanged on the
|
||||
Window that contains |view|.</pre>
|
||||
|
||||
<p>
|
||||
|
||||
<p>Optionally use this callback to override the new per-View theme colors by calling ICefView.SetBackgroundColor or the appropriate component- specific function. See ICefWindow.SetThemeColor documentation for how to customize additional Window theme colors.
|
||||
|
||||
<p>(</p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<hr><span class="appinfo"><em>Generated by <a href="https://pasdoc.github.io/">PasDoc 0.16.0-snapshot</a>. </em>
|
||||
</span>
|
||||
</body></html>
|
||||
|
@ -72,10 +72,14 @@
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefViewDelegateEvents.html#doCreateCustomView">doCreateCustomView</a></strong>;</code></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefViewDelegateEvents.html#doOnThemeChanged-ICefView-">doOnThemeChanged</a></strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefViewDelegateEvents.html#doCreateCustomView">doCreateCustomView</a></strong>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFInterfaces.ICefViewDelegateEvents.html#GetComponentID">GetComponentID</a></strong>: integer;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -173,6 +177,14 @@ ICefViewDelegate</p>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="doOnThemeChanged-ICefView-"></span><code>procedure <strong>doOnThemeChanged</strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="doCreateCustomView"></span><code>procedure <strong>doCreateCustomView</strong>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
|
@ -186,6 +186,18 @@
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefWindow.html#RemoveAllAccelerators">RemoveAllAccelerators</a></strong>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefWindow.html#SetThemeColor-integer-TCefColor-">SetThemeColor</a></strong>(color_id: integer; color: <a href="uCEFTypes.html#TCefColor">TCefColor</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefWindow.html#ThemeChanged">ThemeChanged</a></strong>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFInterfaces.ICefWindow.html#GetRuntimeStyle">GetRuntimeStyle</a></strong>: <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<span id="PasDoc-Properties"></span><h3 class="summary">Properties</h3>
|
||||
<table class="summary wide_list">
|
||||
@ -213,6 +225,10 @@
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>property <strong><a href="uCEFInterfaces.ICefWindow.html#WindowHandle">WindowHandle</a></strong> : <a href="uCEFTypes.html#TCefWindowHandle">TCefWindowHandle</a> read <a href="uCEFInterfaces.ICefWindow.html#GetWindowHandle">GetWindowHandle</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>property <strong><a href="uCEFInterfaces.ICefWindow.html#RuntimeStyle">RuntimeStyle</a></strong> : <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a> read <a href="uCEFInterfaces.ICefWindow.html#GetRuntimeStyle">GetRuntimeStyle</a>;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2 class="description">Description</h2>
|
||||
<h3 class="detail">Methods</h3>
|
||||
@ -613,6 +629,64 @@
|
||||
Remove all keyboard accelerators. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="SetThemeColor-integer-TCefColor-"></span><code>procedure <strong>SetThemeColor</strong>(color_id: integer; color: <a href="uCEFTypes.html#TCefColor">TCefColor</a>);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
|
||||
|
||||
<p>Override a standard theme color or add a custom color associated with |color_id|. See cef_color_ids.h for standard ID values. Recommended usage is as follows:
|
||||
|
||||
<p></p>
|
||||
|
||||
<pre class="preformatted">
|
||||
1. Customize the default native/OS theme by calling SetThemeColor before
|
||||
showing the first Window. When done setting colors call
|
||||
ICefWindow.ThemeChanged to trigger ICefViewDelegate.OnThemeChanged
|
||||
notifications.
|
||||
2. Customize the current native/OS or Chrome theme after it changes by
|
||||
calling SetThemeColor from the ICefWindowDelegate.OnThemeColorsChanged
|
||||
callback. ICefViewDelegate.OnThemeChanged notifications will then be
|
||||
triggered automatically.</pre>
|
||||
|
||||
<p>
|
||||
|
||||
<p>The configured color will be available immediately via ICefView.GetThemeColor and will be applied to each View in this Window's component hierarchy when ICefViewDelegate.OnThemeChanged is called. See OnThemeColorsChanged documentation for additional details.
|
||||
|
||||
<p>Clients wishing to add custom colors should use |color_id| values >= CEF_ChromeColorsEnd.
|
||||
|
||||
<p></p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="ThemeChanged"></span><code>procedure <strong>ThemeChanged</strong>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
|
||||
|
||||
<p>Trigger ICefViewDelegate.OnThemeChanged callbacks for each View in this Window's component hierarchy. Unlike a native/OS or Chrome theme change this function does not reset theme colors to standard values and does not result in a call to ICefWindowDelegate.OnThemeColorsChanged.
|
||||
|
||||
<p>Do not call this function from ICefWindowDelegate.OnThemeColorsChanged or ICefViewDelegate.OnThemeChanged.
|
||||
|
||||
<p></p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="GetRuntimeStyle"></span><code>function <strong>GetRuntimeStyle</strong>: <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the runtime style for this Window (ALLOY or CHROME). See TCefRuntimeStyle documentation for details. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<h3 class="detail">Properties</h3>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
@ -674,6 +748,16 @@
|
||||
Retrieve the platform window handle for this Window. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="RuntimeStyle"></span><code>property <strong>RuntimeStyle</strong> : <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a> read <a href="uCEFInterfaces.ICefWindow.html#GetRuntimeStyle">GetRuntimeStyle</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the runtime style for this Window (ALLOY or CHROME). See TCefRuntimeStyle documentation for details. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<hr><span class="appinfo"><em>Generated by <a href="https://pasdoc.github.io/">PasDoc 0.16.0-snapshot</a>. </em>
|
||||
</span>
|
||||
</body></html>
|
||||
|
@ -88,28 +88,40 @@
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefWindowDelegate.html#OnCanResize-ICefWindow-boolean-">OnCanResize</a></strong>(const window_: <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>; var aResult : boolean);</code></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefWindowDelegate.html#OnAcceptsFirstMouse-ICefWindow-TCefState-">OnAcceptsFirstMouse</a></strong>(const window_: <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>; var aResult: <a href="uCEFTypes.html#TCefState">TCefState</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefWindowDelegate.html#OnCanResize-ICefWindow-boolean-">OnCanResize</a></strong>(const window_: <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>; var aResult : boolean);</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefWindowDelegate.html#OnCanMaximize-ICefWindow-boolean-">OnCanMaximize</a></strong>(const window_: <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>; var aResult : boolean);</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefWindowDelegate.html#OnCanMinimize-ICefWindow-boolean-">OnCanMinimize</a></strong>(const window_: <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>; var aResult : boolean);</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefWindowDelegate.html#OnCanClose-ICefWindow-boolean-">OnCanClose</a></strong>(const window_: <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>; var aResult : boolean);</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefWindowDelegate.html#OnAccelerator-ICefWindow-Integer-boolean-">OnAccelerator</a></strong>(const window_: <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>; command_id: Integer; var aResult : boolean);</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefWindowDelegate.html#OnKeyEvent-ICefWindow-TCefKeyEvent-boolean-">OnKeyEvent</a></strong>(const window_: <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>; const event: <a href="uCEFTypes.TCefKeyEvent.html">TCefKeyEvent</a>; var aResult : boolean);</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefWindowDelegate.html#OnThemeColorsChanged-ICefWindow-Integer-">OnThemeColorsChanged</a></strong>(const window_: <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>; chrome_theme: Integer);</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefWindowDelegate.html#OnGetWindowRuntimeStyle-TCefRuntimeStyle-">OnGetWindowRuntimeStyle</a></strong>(var aResult: <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>);</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2 class="description">Description</h2>
|
||||
<h3 class="detail">Methods</h3>
|
||||
@ -251,6 +263,22 @@
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="OnAcceptsFirstMouse-ICefWindow-TCefState-"></span><code>procedure <strong>OnAcceptsFirstMouse</strong>(const window_: <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>; var aResult: <a href="uCEFTypes.html#TCefState">TCefState</a>);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
|
||||
|
||||
<p>Return whether the view should accept the initial mouse-down event, allowing it to respond to click-through behavior. If STATE_ENABLED is returned, the view will be sent a mouseDown: message for an initial mouse- down event, activating the view with one click, instead of clicking first to make the window active and then clicking the view.
|
||||
|
||||
<p>This function is only supported on macOS. For more details, refer to the documentation of acceptsFirstMouse.
|
||||
|
||||
<p></p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="OnCanResize-ICefWindow-boolean-"></span><code>procedure <strong>OnCanResize</strong>(const window_: <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>; var aResult : boolean);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
@ -308,6 +336,38 @@
|
||||
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. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="OnThemeColorsChanged-ICefWindow-Integer-"></span><code>procedure <strong>OnThemeColorsChanged</strong>(const window_: <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>; chrome_theme: Integer);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
|
||||
|
||||
<p>Called after the native/OS or Chrome theme for |window| has changed. |chrome_theme| will be true (1) if the notification is for a Chrome theme.
|
||||
|
||||
<p>Native/OS theme colors are configured globally and do not need to be customized for each Window individually. An example of a native/OS theme change that triggers this callback is when the user switches between dark and light mode during application lifespan. Native/OS theme changes can be disabled by passing the `–force-dark-mode` or `–force-light-mode` command-line flag.
|
||||
|
||||
<p>Chrome theme colors will be applied and this callback will be triggered if/when a BrowserView is added to the Window's component hierarchy. Chrome theme colors can be configured on a per-RequestContext basis using ICefRequestContext.SetChromeColorScheme or (Chrome runtime only) by visiting <a href="chrome://settings/manageProfile">chrome://settings/manageProfile</a>. Any theme changes using those mechanisms will also trigger this callback. Chrome theme colors will be persisted and restored from disk cache with the Chrome runtime, and with the Alloy runtime if persist_user_preferences is set to true (1) via CefSettings or ICefRequestContext Settings.
|
||||
|
||||
<p>This callback is not triggered on Window creation so clients that wish to customize the initial native/OS theme must call ICefWindow.SetThemeColor and ICefWindow.ThemeChanged before showing the first Window.
|
||||
|
||||
<p>Theme colors will be reset to standard values before this callback is called for the first affected Window. Call ICefWindow.SetThemeColor from inside this callback to override a standard color or add a custom color. ICefViewDelegate.OnThemeChanged will be called after this callback for the complete |window| component hierarchy.
|
||||
|
||||
<p></p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="OnGetWindowRuntimeStyle-TCefRuntimeStyle-"></span><code>procedure <strong>OnGetWindowRuntimeStyle</strong>(var aResult: <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Optionally change the runtime style for this Window. See TCefRuntimeStyle documentation for details. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<hr><span class="appinfo"><em>Generated by <a href="https://pasdoc.github.io/">PasDoc 0.16.0-snapshot</a>. </em>
|
||||
</span>
|
||||
</body></html>
|
||||
|
@ -49,32 +49,40 @@
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefWindowDelegateEvents.html#doOnGetParentWindow-ICefWindow-boolean-boolean-ICefWindow-">doOnGetParentWindow</a></strong>(const window_: <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>; var is_menu, can_activate_menu: boolean; var aResult : <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>);</code></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefWindowDelegateEvents.html#doOnWindowFullscreenTransition-ICefWindow-boolean-">doOnWindowFullscreenTransition</a></strong>(const window_: <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>; is_completed: boolean);</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefWindowDelegateEvents.html#doOnGetParentWindow-ICefWindow-boolean-boolean-ICefWindow-">doOnGetParentWindow</a></strong>(const window_: <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>; var is_menu, can_activate_menu: boolean; var aResult : <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefWindowDelegateEvents.html#doOnIsWindowModalDialog-ICefWindow-boolean-">doOnIsWindowModalDialog</a></strong>(const window_: <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>; var aResult : boolean);</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefWindowDelegateEvents.html#doOnGetInitialBounds-ICefWindow-TCefRect-">doOnGetInitialBounds</a></strong>(const window_: <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>; var aResult : <a href="uCEFTypes.TCefRect.html">TCefRect</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefWindowDelegateEvents.html#doOnGetInitialShowState-ICefWindow-TCefShowState-">doOnGetInitialShowState</a></strong>(const window_: <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>; var aResult : <a href="uCEFTypes.html#TCefShowState">TCefShowState</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefWindowDelegateEvents.html#doOnIsFrameless-ICefWindow-boolean-">doOnIsFrameless</a></strong>(const window_: <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>; var aResult : boolean);</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefWindowDelegateEvents.html#doOnWithStandardWindowButtons-ICefWindow-boolean-">doOnWithStandardWindowButtons</a></strong>(const window_: <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>; var aResult : boolean);</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefWindowDelegateEvents.html#doOnGetTitlebarHeight-ICefWindow-Single-boolean-">doOnGetTitlebarHeight</a></strong>(const window_: <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>; var titlebar_height: Single; var aResult : boolean);</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefWindowDelegateEvents.html#doOnAcceptsFirstMouse-ICefWindow-TCefState-">doOnAcceptsFirstMouse</a></strong>(const window_: <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>; var aResult: <a href="uCEFTypes.html#TCefState">TCefState</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefWindowDelegateEvents.html#doOnCanResize-ICefWindow-boolean-">doOnCanResize</a></strong>(const window_: <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>; var aResult : boolean);</code></td>
|
||||
@ -101,7 +109,11 @@
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefWindowDelegateEvents.html#doOnWindowFullscreenTransition-ICefWindow-boolean-">doOnWindowFullscreenTransition</a></strong>(const window_: <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>; is_completed: boolean);</code></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefWindowDelegateEvents.html#doOnThemeColorsChanged-ICefWindow-Integer-">doOnThemeColorsChanged</a></strong>(const window_: <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>; chrome_theme: Integer);</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.ICefWindowDelegateEvents.html#doOnGetWindowRuntimeStyle-TCefRuntimeStyle-">doOnGetWindowRuntimeStyle</a></strong>(var aResult: <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>);</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2 class="description">Description</h2>
|
||||
@ -154,6 +166,14 @@
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="doOnWindowFullscreenTransition-ICefWindow-boolean-"></span><code>procedure <strong>doOnWindowFullscreenTransition</strong>(const window_: <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>; is_completed: boolean);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="doOnGetParentWindow-ICefWindow-boolean-boolean-ICefWindow-"></span><code>procedure <strong>doOnGetParentWindow</strong>(const window_: <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>; var is_menu, can_activate_menu: boolean; var aResult : <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
@ -210,6 +230,14 @@
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="doOnAcceptsFirstMouse-ICefWindow-TCefState-"></span><code>procedure <strong>doOnAcceptsFirstMouse</strong>(const window_: <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>; var aResult: <a href="uCEFTypes.html#TCefState">TCefState</a>);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="doOnCanResize-ICefWindow-boolean-"></span><code>procedure <strong>doOnCanResize</strong>(const window_: <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>; var aResult : boolean);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
@ -258,7 +286,15 @@
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="doOnWindowFullscreenTransition-ICefWindow-boolean-"></span><code>procedure <strong>doOnWindowFullscreenTransition</strong>(const window_: <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>; is_completed: boolean);</code></td>
|
||||
<td class="itemcode"><span id="doOnThemeColorsChanged-ICefWindow-Integer-"></span><code>procedure <strong>doOnThemeColorsChanged</strong>(const window_: <a href="uCEFInterfaces.ICefWindow.html">ICefWindow</a>; chrome_theme: Integer);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="doOnGetWindowRuntimeStyle-TCefRuntimeStyle-"></span><code>procedure <strong>doOnGetWindowRuntimeStyle</strong>(var aResult: <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
|
@ -152,7 +152,7 @@
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.IChromiumEvents.html#doOnBeforeDownload-ICefBrowser-ICefDownloadItem-ustring-ICefBeforeDownloadCallback-">doOnBeforeDownload</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const downloadItem: <a href="uCEFInterfaces.ICefDownloadItem.html">ICefDownloadItem</a>; const suggestedName: <a href="uCEFTypes.html#ustring">ustring</a>; const callback: <a href="uCEFInterfaces.ICefBeforeDownloadCallback.html">ICefBeforeDownloadCallback</a>);</code></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFInterfaces.IChromiumEvents.html#doOnBeforeDownload-ICefBrowser-ICefDownloadItem-ustring-ICefBeforeDownloadCallback-">doOnBeforeDownload</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const downloadItem: <a href="uCEFInterfaces.ICefDownloadItem.html">ICefDownloadItem</a>; const suggestedName: <a href="uCEFTypes.html#ustring">ustring</a>; const callback: <a href="uCEFInterfaces.ICefBeforeDownloadCallback.html">ICefBeforeDownloadCallback</a>): boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
@ -224,7 +224,15 @@
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.IChromiumEvents.html#doOnRenderProcessTerminated-ICefBrowser-TCefTerminationStatus-">doOnRenderProcessTerminated</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; status: <a href="uCEFTypes.html#TCefTerminationStatus">TCefTerminationStatus</a>);</code></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFInterfaces.IChromiumEvents.html#doOnRenderProcessUnresponsive-ICefBrowser-ICefUnresponsiveProcessCallback-">doOnRenderProcessUnresponsive</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const callback: <a href="uCEFInterfaces.ICefUnresponsiveProcessCallback.html">ICefUnresponsiveProcessCallback</a>): boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.IChromiumEvents.html#doOnRenderProcessResponsive-ICefBrowser-">doOnRenderProcessResponsive</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.IChromiumEvents.html#doOnRenderProcessTerminated-ICefBrowser-TCefTerminationStatus-integer-ustring-">doOnRenderProcessTerminated</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; status: <a href="uCEFTypes.html#TCefTerminationStatus">TCefTerminationStatus</a>; error_code: integer; const error_string: <a href="uCEFTypes.html#ustring">ustring</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
@ -304,7 +312,7 @@
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.IChromiumEvents.html#doOnAcceleratedPaint-ICefBrowser-TCefPaintElementType-NativeUInt-PCefRectArray-Pointer-">doOnAcceleratedPaint</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; type_: <a href="uCEFTypes.html#TCefPaintElementType">TCefPaintElementType</a>; dirtyRectsCount: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; const dirtyRects: <a href="uCEFTypes.html#PCefRectArray">PCefRectArray</a>; shared_handle: Pointer);</code></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFInterfaces.IChromiumEvents.html#doOnAcceleratedPaint-ICefBrowser-TCefPaintElementType-NativeUInt-PCefRectArray-PCefAcceleratedPaintInfo-">doOnAcceleratedPaint</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; type_: <a href="uCEFTypes.html#TCefPaintElementType">TCefPaintElementType</a>; dirtyRectsCount: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; const dirtyRects: <a href="uCEFTypes.html#PCefRectArray">PCefRectArray</a>; const info: <a href="uCEFTypes.html#PCefAcceleratedPaintInfo">PCefAcceleratedPaintInfo</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
@ -989,7 +997,7 @@ ICefDownloadHandler</p>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="doOnBeforeDownload-ICefBrowser-ICefDownloadItem-ustring-ICefBeforeDownloadCallback-"></span><code>procedure <strong>doOnBeforeDownload</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const downloadItem: <a href="uCEFInterfaces.ICefDownloadItem.html">ICefDownloadItem</a>; const suggestedName: <a href="uCEFTypes.html#ustring">ustring</a>; const callback: <a href="uCEFInterfaces.ICefBeforeDownloadCallback.html">ICefBeforeDownloadCallback</a>);</code></td>
|
||||
<td class="itemcode"><span id="doOnBeforeDownload-ICefBrowser-ICefDownloadItem-ustring-ICefBeforeDownloadCallback-"></span><code>function <strong>doOnBeforeDownload</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const downloadItem: <a href="uCEFInterfaces.ICefDownloadItem.html">ICefDownloadItem</a>; const suggestedName: <a href="uCEFTypes.html#ustring">ustring</a>; const callback: <a href="uCEFInterfaces.ICefBeforeDownloadCallback.html">ICefBeforeDownloadCallback</a>): boolean;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
@ -1139,7 +1147,23 @@ ICefRequestHandler</p>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="doOnRenderProcessTerminated-ICefBrowser-TCefTerminationStatus-"></span><code>procedure <strong>doOnRenderProcessTerminated</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; status: <a href="uCEFTypes.html#TCefTerminationStatus">TCefTerminationStatus</a>);</code></td>
|
||||
<td class="itemcode"><span id="doOnRenderProcessUnresponsive-ICefBrowser-ICefUnresponsiveProcessCallback-"></span><code>function <strong>doOnRenderProcessUnresponsive</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const callback: <a href="uCEFInterfaces.ICefUnresponsiveProcessCallback.html">ICefUnresponsiveProcessCallback</a>): boolean;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="doOnRenderProcessResponsive-ICefBrowser-"></span><code>procedure <strong>doOnRenderProcessResponsive</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="doOnRenderProcessTerminated-ICefBrowser-TCefTerminationStatus-integer-ustring-"></span><code>procedure <strong>doOnRenderProcessTerminated</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; status: <a href="uCEFTypes.html#TCefTerminationStatus">TCefTerminationStatus</a>; error_code: integer; const error_string: <a href="uCEFTypes.html#ustring">ustring</a>);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
@ -1307,7 +1331,7 @@ ICefRenderHandler</p>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="doOnAcceleratedPaint-ICefBrowser-TCefPaintElementType-NativeUInt-PCefRectArray-Pointer-"></span><code>procedure <strong>doOnAcceleratedPaint</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; type_: <a href="uCEFTypes.html#TCefPaintElementType">TCefPaintElementType</a>; dirtyRectsCount: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; const dirtyRects: <a href="uCEFTypes.html#PCefRectArray">PCefRectArray</a>; shared_handle: Pointer);</code></td>
|
||||
<td class="itemcode"><span id="doOnAcceleratedPaint-ICefBrowser-TCefPaintElementType-NativeUInt-PCefRectArray-PCefAcceleratedPaintInfo-"></span><code>procedure <strong>doOnAcceleratedPaint</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; type_: <a href="uCEFTypes.html#TCefPaintElementType">TCefPaintElementType</a>; dirtyRectsCount: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; const dirtyRects: <a href="uCEFTypes.html#PCefRectArray">PCefRectArray</a>; const info: <a href="uCEFTypes.html#PCefAcceleratedPaintInfo">PCefAcceleratedPaintInfo</a>);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
|
@ -508,202 +508,206 @@
|
||||
<td class="itemdesc"> Callback interface for asynchronous continuation of file dialog requests. </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefUnresponsiveProcessCallback.html"><code>ICefUnresponsiveProcessCallback</code></a></td>
|
||||
<td class="itemdesc"> Callback structure for asynchronous handling of an unresponsive process. </td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefDragData.html"><code>ICefDragData</code></a></td>
|
||||
<td class="itemdesc"> Interface used to represent drag data. The functions of this interface may be called on any thread. </td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefDragHandler.html"><code>ICefDragHandler</code></a></td>
|
||||
<td class="itemdesc"> Implement this interface to handle events related to dragging. The functions of this interface will be called on the UI thread. </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefFindHandler.html"><code>ICefFindHandler</code></a></td>
|
||||
<td class="itemdesc"> Implement this interface to handle events related to find results. The functions of this interface will be called on the UI thread. </td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefRequestContextHandler.html"><code>ICefRequestContextHandler</code></a></td>
|
||||
<td class="itemdesc"> Implement this interface to provide handler implementations. The handler instance will not be released until all objects related to the context have been destroyed. </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefResolveCallback.html"><code>ICefResolveCallback</code></a></td>
|
||||
<td class="itemdesc"> Callback interface for ICefRequestContext.ResolveHost. </td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefPreferenceManager.html"><code>ICefPreferenceManager</code></a></td>
|
||||
<td class="itemdesc"> Manage access to preferences. Many built-in preferences are registered by Chromium. Custom preferences can be registered in ICefBrowserProcessHandler.OnRegisterCustomPreferences. </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefRequestContext.html"><code>ICefRequestContext</code></a></td>
|
||||
<td class="itemdesc"> A request context provides request handling for a set of related browser or URL request objects. A request context can be specified when creating a new browser via the ICefBrowserHost static factory functions or when creating a new URL request via the ICefUrlRequest static factory functions. Browser objects with different request contexts will never be hosted in the same render process. Browser objects with the same request context may or may not be hosted in the same render process depending on the process model. Browser objects created indirectly via the JavaScript window.open function or targeted links will share the same render process and the same request context as the source browser. When running in single-process mode there is only a single render process (the main process) and so all browsers created in single-process mode will share the same request context. This will be the first request context passed into a ICefBrowserHost static factory function and all other request context objects will be ignored. </td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefPrintSettings.html"><code>ICefPrintSettings</code></a></td>
|
||||
<td class="itemdesc"> Interface representing print settings. </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefPrintDialogCallback.html"><code>ICefPrintDialogCallback</code></a></td>
|
||||
<td class="itemdesc"> Callback interface for asynchronous continuation of print dialog requests. </td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefPrintJobCallback.html"><code>ICefPrintJobCallback</code></a></td>
|
||||
<td class="itemdesc"> Callback interface for asynchronous continuation of print job requests. </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefPrintHandler.html"><code>ICefPrintHandler</code></a></td>
|
||||
<td class="itemdesc"> Implement this interface to handle printing on Linux. Each browser will have only one print job in progress at a time. The functions of this interface will be called on the browser process UI thread. </td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefNavigationEntry.html"><code>ICefNavigationEntry</code></a></td>
|
||||
<td class="itemdesc"> Interface used to represent an entry in navigation history. </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefX509CertPrincipal.html"><code>ICefX509CertPrincipal</code></a></td>
|
||||
<td class="itemdesc"> Interface representing the issuer or subject field of an X.509 certificate. </td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefX509Certificate.html"><code>ICefX509Certificate</code></a></td>
|
||||
<td class="itemdesc"> Interface representing a X.509 certificate. </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefSslInfo.html"><code>ICefSslInfo</code></a></td>
|
||||
<td class="itemdesc"> Interface representing SSL information. </td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefSSLStatus.html"><code>ICefSSLStatus</code></a></td>
|
||||
<td class="itemdesc"> Interface representing the SSL information for a navigation entry. </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefSelectClientCertificateCallback.html"><code>ICefSelectClientCertificateCallback</code></a></td>
|
||||
<td class="itemdesc"> Callback interface used to select a client certificate for authentication. </td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefResourceBundle.html"><code>ICefResourceBundle</code></a></td>
|
||||
<td class="itemdesc"> Interface used for retrieving resources from the resource bundle (*.pak) files loaded by CEF during startup or via the ICefResourceBundleHandler returned from ICefApp.GetResourceBundleHandler. See TCefSettings for additional options related to resource bundle loading. The functions of this interface may be called on any thread unless otherwise indicated. </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefImage.html"><code>ICefImage</code></a></td>
|
||||
<td class="itemdesc"> Container for a single image represented at different scale factors. All image representations should be the same size in density independent pixel (DIP) units. For example, if the image at scale factor 1.0 is 100x100 pixels then the image at scale factor 2.0 should be 200x200 pixels – both images will display with a DIP size of 100x100 units. The functions of this interface can be called on any browser process thread. </td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefMenuModelDelegate.html"><code>ICefMenuModelDelegate</code></a></td>
|
||||
<td class="itemdesc"> Implement this interface to handle menu model events. The functions of this interface will be called on the browser process UI thread unless otherwise indicated. </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefServer.html"><code>ICefServer</code></a></td>
|
||||
<td class="itemdesc"> Interface representing a server that supports HTTP and WebSocket requests. Server capacity is limited and is intended to handle only a small number of simultaneous connections (e.g. for communicating between applications on localhost). The functions of this interface are safe to call from any thread in the brower process unless otherwise indicated. </td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefServerHandler.html"><code>ICefServerHandler</code></a></td>
|
||||
<td class="itemdesc"> Implement this interface to handle HTTP server requests. A new thread will be created for each ICefServer.CreateServer call (the "dedicated server thread"), and the functions of this interface will be called on that thread. It is therefore recommended to use a different ICefServerHandler instance for each ICefServer.CreateServer call to avoid thread safety issues in the ICefServerHandler implementation. </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefMediaAccessCallback.html"><code>ICefMediaAccessCallback</code></a></td>
|
||||
<td class="itemdesc"> Callback interface used for asynchronous continuation of media access permission requests. </td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefMediaAccessHandler.html"><code>ICefMediaAccessHandler</code></a></td>
|
||||
<td class="itemdesc"> Implement this interface to handle events related to media access permission requests. The functions of this interface will be called on the browser process UI thread. </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefPermissionPromptCallback.html"><code>ICefPermissionPromptCallback</code></a></td>
|
||||
<td class="itemdesc"> Callback interface used for asynchronous continuation of permission prompts. </td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefPermissionHandler.html"><code>ICefPermissionHandler</code></a></td>
|
||||
<td class="itemdesc"> Implement this interface to handle events related to permission requests. The functions of this interface will be called on the browser process UI thread. </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefSharedMemoryRegion.html"><code>ICefSharedMemoryRegion</code></a></td>
|
||||
<td class="itemdesc"> Interface that wraps platform-dependent share memory region mapping. </td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefSharedProcessMessageBuilder.html"><code>ICefSharedProcessMessageBuilder</code></a></td>
|
||||
<td class="itemdesc"> Interface that builds a ICefProcessMessage containing a shared memory region. This interface is not thread-safe but may be used exclusively on a different thread from the one which constructed it. </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefDisplay.html"><code>ICefDisplay</code></a></td>
|
||||
<td class="itemdesc"> This interface typically, but not always, corresponds to a physical display connected to the system. A fake Display may exist on a headless system, or a Display may correspond to a remote, virtual display. All size and position values are in density independent pixel (DIP) coordinates unless otherwise indicated. Methods must be called on the browser process UI thread unless otherwise indicated. </td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefLayout.html"><code>ICefLayout</code></a></td>
|
||||
<td class="itemdesc"> A Layout handles the sizing of the children of a Panel according to implementation-specific heuristics. Methods must be called on the browser process UI thread unless otherwise indicated. </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefBoxLayout.html"><code>ICefBoxLayout</code></a></td>
|
||||
<td class="itemdesc"> A Layout manager that arranges child views vertically or horizontally in a side-by-side fashion with spacing around and between the child views. The child views are always sized according to their preferred size. If the host's bounds provide insufficient space, child views will be clamped. Excess space will not be distributed. Methods must be called on the browser process UI thread unless otherwise indicated. </td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefFillLayout.html"><code>ICefFillLayout</code></a></td>
|
||||
<td class="itemdesc"> A simple Layout that causes the associated Panel's one child to be sized to match the bounds of its parent. Methods must be called on the browser process UI thread unless otherwise indicated. </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefOverlayController.html"><code>ICefOverlayController</code></a></td>
|
||||
<td class="itemdesc"> 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. </td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefView.html"><code>ICefView</code></a></td>
|
||||
<td class="itemdesc"> A View is a rectangle within the views View hierarchy. It is the base interface for all Views. All size and position values are in density independent pixels (DIP) unless otherwise indicated. Methods must be called on the browser process UI thread unless otherwise indicated. </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefViewDelegate.html"><code>ICefViewDelegate</code></a></td>
|
||||
<td class="itemdesc"> Implement this interface to handle view events. All size and position values are in density independent pixels (DIP) unless otherwise indicated. The functions of this interface will be called on the browser process UI thread unless otherwise indicated. </td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefTextfield.html"><code>ICefTextfield</code></a></td>
|
||||
<td class="itemdesc"> A Textfield supports editing of text. This control is custom rendered with no platform-specific code. Methods must be called on the browser process UI thread unless otherwise indicated. </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefTextfieldDelegate.html"><code>ICefTextfieldDelegate</code></a></td>
|
||||
<td class="itemdesc"> Implement this interface to handle Textfield events. The functions of this interface will be called on the browser process UI thread unless otherwise indicated. </td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefScrollView.html"><code>ICefScrollView</code></a></td>
|
||||
<td class="itemdesc"> A ScrollView will show horizontal and/or vertical scrollbars when necessary based on the size of the attached content view. Methods must be called on the browser process UI thread unless otherwise indicated. </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefPanel.html"><code>ICefPanel</code></a></td>
|
||||
<td class="itemdesc"> A Panel is a container in the views hierarchy that can contain other Views as children. Methods must be called on the browser process UI thread unless otherwise indicated. </td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefPanelDelegate.html"><code>ICefPanelDelegate</code></a></td>
|
||||
<td class="itemdesc"> Implement this interface to handle Panel events. The functions of this interface will be called on the browser process UI thread unless otherwise indicated. </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefBrowserView.html"><code>ICefBrowserView</code></a></td>
|
||||
<td class="itemdesc"> A View hosting a ICefBrowser instance. Methods must be called on the browser process UI thread unless otherwise indicated. </td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefBrowserViewDelegate.html"><code>ICefBrowserViewDelegate</code></a></td>
|
||||
<td class="itemdesc"> Implement this interface to handle BrowserView events. The functions of this interface will be called on the browser process UI thread unless otherwise indicated. </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefButton.html"><code>ICefButton</code></a></td>
|
||||
<td class="itemdesc"> A View representing a button. Depending on the specific type, the button could be implemented by a native control or custom rendered. Methods must be called on the browser process UI thread unless otherwise indicated. </td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefButtonDelegate.html"><code>ICefButtonDelegate</code></a></td>
|
||||
<td class="itemdesc"> Implement this interface to handle Button events. The functions of this interface will be called on the browser process UI thread unless otherwise indicated. </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefLabelButton.html"><code>ICefLabelButton</code></a></td>
|
||||
<td class="itemdesc"> LabelButton is a button with optional text and/or icon. Methods must be called on the browser process UI thread unless otherwise indicated. </td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefMenuButton.html"><code>ICefMenuButton</code></a></td>
|
||||
<td class="itemdesc"> MenuButton is a button with optional text, icon and/or menu marker that shows a menu when clicked with the left mouse button. All size and position values are in density independent pixels (DIP) unless otherwise indicated. Methods must be called on the browser process UI thread unless otherwise indicated. </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefMenuButtonPressedLock.html"><code>ICefMenuButtonPressedLock</code></a></td>
|
||||
<td class="itemdesc"> MenuButton pressed lock is released when this object is destroyed. </td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefMenuButtonDelegate.html"><code>ICefMenuButtonDelegate</code></a></td>
|
||||
<td class="itemdesc"> Implement this interface to handle MenuButton events. The functions of this interface will be called on the browser process UI thread unless otherwise indicated. </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefWindow.html"><code>ICefWindow</code></a></td>
|
||||
<td class="itemdesc"> A Window is a top-level Window/widget in the Views hierarchy. By default it will have a non-client area with title bar, icon and buttons that supports moving and resizing. All size and position values are in density independent pixels (DIP) unless otherwise indicated. Methods must be called on the browser process UI thread unless otherwise indicated. </td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemname">Interface <a class="bold" href="uCEFInterfaces.ICefWindowDelegate.html"><code>ICefWindowDelegate</code></a></td>
|
||||
<td class="itemdesc"> Implement this interface to handle window events. The functions of this interface will be called on the browser process UI thread unless otherwise indicated. </td>
|
||||
</tr>
|
||||
|
@ -22,573 +22,576 @@
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_initialize">cef_initialize</a></strong>: function(const args: <a href="uCEFTypes.html#PCefMainArgs">PCefMainArgs</a>; const settings: <a href="uCEFTypes.html#PCefSettings">PCefSettings</a>; application: <a href="uCEFTypes.html#PCefApp">PCefApp</a>; windows_sandbox_info: Pointer): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_get_exit_code">cef_get_exit_code</a></strong>: function: integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_shutdown">cef_shutdown</a></strong>: procedure; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_execute_process">cef_execute_process</a></strong>: function(const args: <a href="uCEFTypes.html#PCefMainArgs">PCefMainArgs</a>; application: <a href="uCEFTypes.html#PCefApp">PCefApp</a>; windows_sandbox_info: Pointer): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_do_message_loop_work">cef_do_message_loop_work</a></strong>: procedure; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_run_message_loop">cef_run_message_loop</a></strong>: procedure; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_quit_message_loop">cef_quit_message_loop</a></strong>: procedure; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_browser_host_create_browser">cef_browser_host_create_browser</a></strong>: function(const windowInfo: <a href="uCEFTypes.html#PCefWindowInfo">PCefWindowInfo</a>; client: <a href="uCEFTypes.html#PCefClient">PCefClient</a>; const url: <a href="uCEFTypes.html#PCefString">PCefString</a>; const settings: <a href="uCEFTypes.html#PCefBrowserSettings">PCefBrowserSettings</a>; extra_info: <a href="uCEFTypes.html#PCefDictionaryValue">PCefDictionaryValue</a>; request_context: <a href="uCEFTypes.html#PCefRequestContext">PCefRequestContext</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_browser_host_create_browser_sync">cef_browser_host_create_browser_sync</a></strong>: function(const windowInfo: <a href="uCEFTypes.html#PCefWindowInfo">PCefWindowInfo</a>; client: <a href="uCEFTypes.html#PCefClient">PCefClient</a>; const url: <a href="uCEFTypes.html#PCefString">PCefString</a>; const settings: <a href="uCEFTypes.html#PCefBrowserSettings">PCefBrowserSettings</a>; extra_info: <a href="uCEFTypes.html#PCefDictionaryValue">PCefDictionaryValue</a>; request_context: <a href="uCEFTypes.html#PCefRequestContext">PCefRequestContext</a>): <a href="uCEFTypes.html#PCefBrowser">PCefBrowser</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_command_line_create">cef_command_line_create</a></strong>: function: <a href="uCEFTypes.html#PCefCommandLine">PCefCommandLine</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_command_line_get_global">cef_command_line_get_global</a></strong>: function: <a href="uCEFTypes.html#PCefCommandLine">PCefCommandLine</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_cookie_manager_get_global_manager">cef_cookie_manager_get_global_manager</a></strong>: function(callback: <a href="uCEFTypes.html#PCefCompletionCallback">PCefCompletionCallback</a>): <a href="uCEFTypes.html#PCefCookieManager">PCefCookieManager</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_crash_reporting_enabled">cef_crash_reporting_enabled</a></strong>: function: integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_set_crash_key_value">cef_set_crash_key_value</a></strong>: procedure(const key, value : <a href="uCEFTypes.html#PCefString">PCefString</a>); cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_drag_data_create">cef_drag_data_create</a></strong>: function: <a href="uCEFTypes.html#PCefDragData">PCefDragData</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_create_directory">cef_create_directory</a></strong>: function(const full_path : <a href="uCEFTypes.html#PCefString">PCefString</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_get_temp_directory">cef_get_temp_directory</a></strong>: function(temp_dir : <a href="uCEFTypes.html#PCefString">PCefString</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_create_new_temp_directory">cef_create_new_temp_directory</a></strong>: function(const prefix : <a href="uCEFTypes.html#PCefString">PCefString</a>; new_temp_path: <a href="uCEFTypes.html#PCefString">PCefString</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_create_temp_directory_in_directory">cef_create_temp_directory_in_directory</a></strong>: function(const base_dir, prefix : <a href="uCEFTypes.html#PCefString">PCefString</a>; new_dir : <a href="uCEFTypes.html#PCefString">PCefString</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_directory_exists">cef_directory_exists</a></strong>: function(const path : <a href="uCEFTypes.html#PCefString">PCefString</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_delete_file">cef_delete_file</a></strong>: function(const path : <a href="uCEFTypes.html#PCefString">PCefString</a>; recursive : integer): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_zip_directory">cef_zip_directory</a></strong>: function(const src_dir, dest_file : <a href="uCEFTypes.html#PCefString">PCefString</a>; include_hidden_files : integer): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_load_crlsets_file">cef_load_crlsets_file</a></strong>: procedure(const path : <a href="uCEFTypes.html#PCefString">PCefString</a>); cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_is_rtl">cef_is_rtl</a></strong>: function: Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_image_create">cef_image_create</a></strong>: function: <a href="uCEFTypes.html#PCefImage">PCefImage</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_media_router_get_global">cef_media_router_get_global</a></strong>: function(callback: <a href="uCEFTypes.html#PCefCompletionCallback">PCefCompletionCallback</a>) : <a href="uCEFTypes.html#PCefMediaRouter">PCefMediaRouter</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_menu_model_create">cef_menu_model_create</a></strong>: function(delegate: <a href="uCEFTypes.html#PCefMenuModelDelegate">PCefMenuModelDelegate</a>): <a href="uCEFTypes.html#PCefMenuModel">PCefMenuModel</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_add_cross_origin_whitelist_entry">cef_add_cross_origin_whitelist_entry</a></strong>: function(const source_origin, target_protocol, target_domain: <a href="uCEFTypes.html#PCefString">PCefString</a>; allow_target_subdomains: Integer): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_remove_cross_origin_whitelist_entry">cef_remove_cross_origin_whitelist_entry</a></strong>: function(const source_origin, target_protocol, target_domain: <a href="uCEFTypes.html#PCefString">PCefString</a>; allow_target_subdomains: Integer): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_clear_cross_origin_whitelist">cef_clear_cross_origin_whitelist</a></strong>: function: Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_resolve_url">cef_resolve_url</a></strong>: function(const base_url, relative_url: <a href="uCEFTypes.html#PCefString">PCefString</a>; resolved_url: <a href="uCEFTypes.html#PCefString">PCefString</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_parse_url">cef_parse_url</a></strong>: function(const url: <a href="uCEFTypes.html#PCefString">PCefString</a>; var parts: <a href="uCEFTypes.TCefUrlParts.html">TCefUrlParts</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_create_url">cef_create_url</a></strong>: function(const parts: <a href="uCEFTypes.html#PCefUrlParts">PCefUrlParts</a>; url: <a href="uCEFTypes.html#PCefString">PCefString</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_format_url_for_security_display">cef_format_url_for_security_display</a></strong>: function(const origin_url: <a href="uCEFTypes.html#PCefString">PCefString</a>): <a href="uCEFTypes.html#PCefStringUserFree">PCefStringUserFree</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_get_mime_type">cef_get_mime_type</a></strong>: function(const extension: <a href="uCEFTypes.html#PCefString">PCefString</a>): <a href="uCEFTypes.html#PCefStringUserFree">PCefStringUserFree</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_get_extensions_for_mime_type">cef_get_extensions_for_mime_type</a></strong>: procedure(const mime_type: <a href="uCEFTypes.html#PCefString">PCefString</a>; extensions: <a href="uCEFTypes.html#TCefStringList">TCefStringList</a>); cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_base64encode">cef_base64encode</a></strong>: function(const data: Pointer; data_size: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>): <a href="uCEFTypes.html#PCefStringUserFree">PCefStringUserFree</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_base64decode">cef_base64decode</a></strong>: function(const data: <a href="uCEFTypes.html#PCefString">PCefString</a>): <a href="uCEFTypes.html#PCefBinaryValue">PCefBinaryValue</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_uriencode">cef_uriencode</a></strong>: function(const text: <a href="uCEFTypes.html#PCefString">PCefString</a>; use_plus: Integer): <a href="uCEFTypes.html#PCefStringUserFree">PCefStringUserFree</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_uridecode">cef_uridecode</a></strong>: function(const text: <a href="uCEFTypes.html#PCefString">PCefString</a>; convert_to_utf8: Integer; unescape_rule: <a href="uCEFTypes.html#TCefUriUnescapeRule">TCefUriUnescapeRule</a>): <a href="uCEFTypes.html#PCefStringUserFree">PCefStringUserFree</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_parse_json">cef_parse_json</a></strong>: function(const json_string: <a href="uCEFTypes.html#PCefString">PCefString</a>; options: <a href="uCEFTypes.html#TCefJsonParserOptions">TCefJsonParserOptions</a>): <a href="uCEFTypes.html#PCefValue">PCefValue</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_parse_json_buffer">cef_parse_json_buffer</a></strong>: function(const json: Pointer; json_size: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; options: <a href="uCEFTypes.html#TCefJsonParserOptions">TCefJsonParserOptions</a>): <a href="uCEFTypes.html#PCefValue">PCefValue</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_parse_jsonand_return_error">cef_parse_jsonand_return_error</a></strong>: function(const json_string: <a href="uCEFTypes.html#PCefString">PCefString</a>; options: <a href="uCEFTypes.html#TCefJsonParserOptions">TCefJsonParserOptions</a>; error_msg_out: <a href="uCEFTypes.html#PCefString">PCefString</a>): <a href="uCEFTypes.html#PCefValue">PCefValue</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_write_json">cef_write_json</a></strong>: function(node: <a href="uCEFTypes.html#PCefValue">PCefValue</a>; options: <a href="uCEFTypes.html#TCefJsonWriterOptions">TCefJsonWriterOptions</a>): <a href="uCEFTypes.html#PCefStringUserFree">PCefStringUserFree</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_get_path">cef_get_path</a></strong>: function(key: <a href="uCEFTypes.html#TCefPathKey">TCefPathKey</a>; path: <a href="uCEFTypes.html#PCefString">PCefString</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_preference_manager_get_global">cef_preference_manager_get_global</a></strong>: function: <a href="uCEFTypes.html#PCefPreferenceManager">PCefPreferenceManager</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_print_settings_create">cef_print_settings_create</a></strong>: function: <a href="uCEFTypes.html#PCefPrintSettings">PCefPrintSettings</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_process_message_create">cef_process_message_create</a></strong>: function(const name: <a href="uCEFTypes.html#PCefString">PCefString</a>): <a href="uCEFTypes.html#PCefProcessMessage">PCefProcessMessage</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_launch_process">cef_launch_process</a></strong>: function(command_line: <a href="uCEFTypes.html#PCefCommandLine">PCefCommandLine</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_request_create">cef_request_create</a></strong>: function: <a href="uCEFTypes.html#PCefRequest">PCefRequest</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_post_data_create">cef_post_data_create</a></strong>: function: <a href="uCEFTypes.html#PCefPostData">PCefPostData</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_post_data_element_create">cef_post_data_element_create</a></strong>: function: <a href="uCEFTypes.html#PCefPostDataElement">PCefPostDataElement</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_request_context_get_global_context">cef_request_context_get_global_context</a></strong>: function: <a href="uCEFTypes.html#PCefRequestContext">PCefRequestContext</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_request_context_create_context">cef_request_context_create_context</a></strong>: function(const settings: <a href="uCEFTypes.html#PCefRequestContextSettings">PCefRequestContextSettings</a>; handler: <a href="uCEFTypes.html#PCefRequestContextHandler">PCefRequestContextHandler</a>): <a href="uCEFTypes.html#PCefRequestContext">PCefRequestContext</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_create_context_shared">cef_create_context_shared</a></strong>: function(other: <a href="uCEFTypes.html#PCefRequestContext">PCefRequestContext</a>; handler: <a href="uCEFTypes.html#PCefRequestContextHandler">PCefRequestContextHandler</a>): <a href="uCEFTypes.html#PCefRequestContext">PCefRequestContext</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_resource_bundle_get_global">cef_resource_bundle_get_global</a></strong>: function: <a href="uCEFTypes.html#PCefResourceBundle">PCefResourceBundle</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_response_create">cef_response_create</a></strong>: function: <a href="uCEFTypes.html#PCefResponse">PCefResponse</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_register_scheme_handler_factory">cef_register_scheme_handler_factory</a></strong>: function(const scheme_name, domain_name: <a href="uCEFTypes.html#PCefString">PCefString</a>; factory: <a href="uCEFTypes.html#PCefSchemeHandlerFactory">PCefSchemeHandlerFactory</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_clear_scheme_handler_factories">cef_clear_scheme_handler_factories</a></strong>: function: Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_server_create">cef_server_create</a></strong>: procedure(const address: <a href="uCEFTypes.html#PCefString">PCefString</a>; port: uint16; backlog: Integer; handler: <a href="uCEFTypes.html#PCefServerHandler">PCefServerHandler</a>); cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_shared_process_message_builder_create">cef_shared_process_message_builder_create</a></strong>: function(const name: <a href="uCEFTypes.html#PCefString">PCefString</a>; byte_size: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>) : <a href="uCEFTypes.html#PCefSharedProcessMessageBuilder">PCefSharedProcessMessageBuilder</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_is_cert_status_error">cef_is_cert_status_error</a></strong>: function(status : <a href="uCEFTypes.html#TCefCertStatus">TCefCertStatus</a>) : integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_stream_reader_create_for_file">cef_stream_reader_create_for_file</a></strong>: function(const fileName: <a href="uCEFTypes.html#PCefString">PCefString</a>): <a href="uCEFTypes.html#PCefStreamReader">PCefStreamReader</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_stream_reader_create_for_data">cef_stream_reader_create_for_data</a></strong>: function(data: Pointer; size: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>): <a href="uCEFTypes.html#PCefStreamReader">PCefStreamReader</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_stream_reader_create_for_handler">cef_stream_reader_create_for_handler</a></strong>: function(handler: <a href="uCEFTypes.html#PCefReadHandler">PCefReadHandler</a>): <a href="uCEFTypes.html#PCefStreamReader">PCefStreamReader</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_stream_writer_create_for_file">cef_stream_writer_create_for_file</a></strong>: function(const fileName: <a href="uCEFTypes.html#PCefString">PCefString</a>): <a href="uCEFTypes.html#PCefStreamWriter">PCefStreamWriter</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_stream_writer_create_for_handler">cef_stream_writer_create_for_handler</a></strong>: function(handler: <a href="uCEFTypes.html#PCefWriteHandler">PCefWriteHandler</a>): <a href="uCEFTypes.html#PCefStreamWriter">PCefStreamWriter</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_task_runner_get_for_current_thread">cef_task_runner_get_for_current_thread</a></strong>: function: <a href="uCEFTypes.html#PCefTaskRunner">PCefTaskRunner</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_task_runner_get_for_thread">cef_task_runner_get_for_thread</a></strong>: function(threadId: <a href="uCEFTypes.html#TCefThreadId">TCefThreadId</a>): <a href="uCEFTypes.html#PCefTaskRunner">PCefTaskRunner</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_currently_on">cef_currently_on</a></strong>: function(threadId: <a href="uCEFTypes.html#TCefThreadId">TCefThreadId</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_post_task">cef_post_task</a></strong>: function(threadId: <a href="uCEFTypes.html#TCefThreadId">TCefThreadId</a>; task: <a href="uCEFTypes.html#PCefTask">PCefTask</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_post_delayed_task">cef_post_delayed_task</a></strong>: function(threadId: <a href="uCEFTypes.html#TCefThreadId">TCefThreadId</a>; task: <a href="uCEFTypes.html#PCefTask">PCefTask</a>; delay_ms: Int64): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_thread_create">cef_thread_create</a></strong>: function(const display_name: <a href="uCEFTypes.html#PCefString">PCefString</a>; priority: <a href="uCEFTypes.html#TCefThreadPriority">TCefThreadPriority</a>; message_loop_type: <a href="uCEFTypes.html#TCefMessageLoopType">TCefMessageLoopType</a>; stoppable: integer; com_init_mode: <a href="uCEFTypes.html#TCefCOMInitMode">TCefCOMInitMode</a>): <a href="uCEFTypes.html#PCefThread">PCefThread</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_begin_tracing">cef_begin_tracing</a></strong>: function(const categories: <a href="uCEFTypes.html#PCefString">PCefString</a>; callback: <a href="uCEFTypes.html#PCefCompletionCallback">PCefCompletionCallback</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_end_tracing">cef_end_tracing</a></strong>: function(const tracing_file: <a href="uCEFTypes.html#PCefString">PCefString</a>; callback: <a href="uCEFTypes.html#PCefEndTracingCallback">PCefEndTracingCallback</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_now_from_system_trace_time">cef_now_from_system_trace_time</a></strong>: function: int64; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_urlrequest_create">cef_urlrequest_create</a></strong>: function(request: <a href="uCEFTypes.html#PCefRequest">PCefRequest</a>; client: <a href="uCEFTypes.html#PCefUrlRequestClient">PCefUrlRequestClient</a>; request_context: <a href="uCEFTypes.html#PCefRequestContext">PCefRequestContext</a>): <a href="uCEFTypes.html#PCefUrlRequest">PCefUrlRequest</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_v8context_get_current_context">cef_v8context_get_current_context</a></strong>: function: <a href="uCEFTypes.html#PCefv8Context">PCefv8Context</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_v8context_get_entered_context">cef_v8context_get_entered_context</a></strong>: function: <a href="uCEFTypes.html#PCefv8Context">PCefv8Context</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_v8context_in_context">cef_v8context_in_context</a></strong>: function: Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_v8value_create_undefined">cef_v8value_create_undefined</a></strong>: function: <a href="uCEFTypes.html#PCefv8Value">PCefv8Value</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_v8value_create_null">cef_v8value_create_null</a></strong>: function: <a href="uCEFTypes.html#PCefv8Value">PCefv8Value</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_v8value_create_bool">cef_v8value_create_bool</a></strong>: function(value: Integer): <a href="uCEFTypes.html#PCefv8Value">PCefv8Value</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_v8value_create_int">cef_v8value_create_int</a></strong>: function(value: Integer): <a href="uCEFTypes.html#PCefv8Value">PCefv8Value</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_v8value_create_uint">cef_v8value_create_uint</a></strong>: function(value: Cardinal): <a href="uCEFTypes.html#PCefv8Value">PCefv8Value</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_v8value_create_double">cef_v8value_create_double</a></strong>: function(value: Double): <a href="uCEFTypes.html#PCefv8Value">PCefv8Value</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_v8value_create_date">cef_v8value_create_date</a></strong>: function(value: <a href="uCEFTypes.html#TCefBaseTime">TCefBaseTime</a>): <a href="uCEFTypes.html#PCefv8Value">PCefv8Value</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_v8value_create_string">cef_v8value_create_string</a></strong>: function(const value: <a href="uCEFTypes.html#PCefString">PCefString</a>): <a href="uCEFTypes.html#PCefv8Value">PCefv8Value</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_v8value_create_object">cef_v8value_create_object</a></strong>: function(accessor: <a href="uCEFTypes.html#PCefV8Accessor">PCefV8Accessor</a>; interceptor: <a href="uCEFTypes.html#PCefV8Interceptor">PCefV8Interceptor</a>): <a href="uCEFTypes.html#PCefv8Value">PCefv8Value</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_v8value_create_array">cef_v8value_create_array</a></strong>: function(length: Integer): <a href="uCEFTypes.html#PCefv8Value">PCefv8Value</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_v8value_create_array_buffer">cef_v8value_create_array_buffer</a></strong>: function(buffer : Pointer; length: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; release_callback : <a href="uCEFTypes.html#PCefv8ArrayBufferReleaseCallback">PCefv8ArrayBufferReleaseCallback</a>): <a href="uCEFTypes.html#PCefv8Value">PCefv8Value</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_v8value_create_function">cef_v8value_create_function</a></strong>: function(const name: <a href="uCEFTypes.html#PCefString">PCefString</a>; handler: <a href="uCEFTypes.html#PCefv8Handler">PCefv8Handler</a>): <a href="uCEFTypes.html#PCefv8Value">PCefv8Value</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_v8value_create_promise">cef_v8value_create_promise</a></strong>: function: <a href="uCEFTypes.html#PCefv8Value">PCefv8Value</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_v8stack_trace_get_current">cef_v8stack_trace_get_current</a></strong>: function(frame_limit: Integer): <a href="uCEFTypes.html#PCefV8StackTrace">PCefV8StackTrace</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_register_extension">cef_register_extension</a></strong>: function(const extension_name, javascript_code: <a href="uCEFTypes.html#PCefString">PCefString</a>; handler: <a href="uCEFTypes.html#PCefv8Handler">PCefv8Handler</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_value_create">cef_value_create</a></strong>: function: <a href="uCEFTypes.html#PCefValue">PCefValue</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_binary_value_create">cef_binary_value_create</a></strong>: function(const data: Pointer; data_size: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>): <a href="uCEFTypes.html#PCefBinaryValue">PCefBinaryValue</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_dictionary_value_create">cef_dictionary_value_create</a></strong>: function: <a href="uCEFTypes.html#PCefDictionaryValue">PCefDictionaryValue</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_list_value_create">cef_list_value_create</a></strong>: function: <a href="uCEFTypes.html#PCefListValue">PCefListValue</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_waitable_event_create">cef_waitable_event_create</a></strong>: function(automatic_reset, initially_signaled : integer): <a href="uCEFTypes.html#PCefWaitableEvent">PCefWaitableEvent</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_xml_reader_create">cef_xml_reader_create</a></strong>: function(stream: <a href="uCEFTypes.html#PCefStreamReader">PCefStreamReader</a>; encodingType: <a href="uCEFTypes.html#TCefXmlEncodingType">TCefXmlEncodingType</a>; const URI: <a href="uCEFTypes.html#PCefString">PCefString</a>): <a href="uCEFTypes.html#PCefXmlReader">PCefXmlReader</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_zip_reader_create">cef_zip_reader_create</a></strong>: function(stream: <a href="uCEFTypes.html#PCefStreamReader">PCefStreamReader</a>): <a href="uCEFTypes.html#PCefZipReader">PCefZipReader</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_browser_view_create">cef_browser_view_create</a></strong>: function(client: <a href="uCEFTypes.html#PCefClient">PCefClient</a>; const url: <a href="uCEFTypes.html#PCefString">PCefString</a>; const settings: <a href="uCEFTypes.html#PCefBrowserSettings">PCefBrowserSettings</a>; extra_info: <a href="uCEFTypes.html#PCefDictionaryValue">PCefDictionaryValue</a>; request_context: <a href="uCEFTypes.html#PCefRequestContext">PCefRequestContext</a>; delegate: <a href="uCEFTypes.html#PCefBrowserViewDelegate">PCefBrowserViewDelegate</a>): <a href="uCEFTypes.html#PCefBrowserView">PCefBrowserView</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_browser_view_get_for_browser">cef_browser_view_get_for_browser</a></strong>: function(browser: <a href="uCEFTypes.html#PCefBrowser">PCefBrowser</a>): <a href="uCEFTypes.html#PCefBrowserView">PCefBrowserView</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_display_get_primary">cef_display_get_primary</a></strong>: function: <a href="uCEFTypes.html#PCefDisplay">PCefDisplay</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_display_get_nearest_point">cef_display_get_nearest_point</a></strong>: function(const point: <a href="uCEFTypes.html#PCefPoint">PCefPoint</a>; input_pixel_coords: Integer): <a href="uCEFTypes.html#PCefDisplay">PCefDisplay</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_display_get_matching_bounds">cef_display_get_matching_bounds</a></strong>: function(const bounds: <a href="uCEFTypes.html#PCefRect">PCefRect</a>; input_pixel_coords: Integer): <a href="uCEFTypes.html#PCefDisplay">PCefDisplay</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_display_get_count">cef_display_get_count</a></strong>: function: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_display_get_alls">cef_display_get_alls</a></strong>: procedure(displaysCount: <a href="uCEFTypes.html#PNativeUInt">PNativeUInt</a>; displays: <a href="uCEFTypes.html#PPCefDisplay">PPCefDisplay</a>); cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_display_convert_screen_point_to_pixels">cef_display_convert_screen_point_to_pixels</a></strong>: function(const point: <a href="uCEFTypes.html#PCefPoint">PCefPoint</a>): <a href="uCEFTypes.TCefPoint.html">TCefPoint</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_display_convert_screen_point_from_pixels">cef_display_convert_screen_point_from_pixels</a></strong>: function(const point: <a href="uCEFTypes.html#PCefPoint">PCefPoint</a>): <a href="uCEFTypes.TCefPoint.html">TCefPoint</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_display_convert_screen_rect_to_pixels">cef_display_convert_screen_rect_to_pixels</a></strong>: function(const rect: <a href="uCEFTypes.html#PCefRect">PCefRect</a>): <a href="uCEFTypes.TCefRect.html">TCefRect</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_display_convert_screen_rect_from_pixels">cef_display_convert_screen_rect_from_pixels</a></strong>: function(const rect: <a href="uCEFTypes.html#PCefRect">PCefRect</a>): <a href="uCEFTypes.TCefRect.html">TCefRect</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_label_button_create">cef_label_button_create</a></strong>: function(delegate: <a href="uCEFTypes.html#PCefButtonDelegate">PCefButtonDelegate</a>; const text: <a href="uCEFTypes.html#PCefString">PCefString</a>): <a href="uCEFTypes.html#PCefLabelButton">PCefLabelButton</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_menu_button_create">cef_menu_button_create</a></strong>: function(delegate: <a href="uCEFTypes.html#PCefMenuButtonDelegate">PCefMenuButtonDelegate</a>; const text: <a href="uCEFTypes.html#PCefString">PCefString</a>): <a href="uCEFTypes.html#PCefMenuButton">PCefMenuButton</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_panel_create">cef_panel_create</a></strong>: function(delegate: <a href="uCEFTypes.html#PCefPanelDelegate">PCefPanelDelegate</a>): <a href="uCEFTypes.html#PCefPanel">PCefPanel</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_scroll_view_create">cef_scroll_view_create</a></strong>: function(delegate: <a href="uCEFTypes.html#PCefViewDelegate">PCefViewDelegate</a>): <a href="uCEFTypes.html#PCefScrollView">PCefScrollView</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_textfield_create">cef_textfield_create</a></strong>: function(delegate: <a href="uCEFTypes.html#PCefTextfieldDelegate">PCefTextfieldDelegate</a>): <a href="uCEFTypes.html#PCefTextfield">PCefTextfield</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_window_create_top_level">cef_window_create_top_level</a></strong>: function(delegate: <a href="uCEFTypes.html#PCefWindowDelegate">PCefWindowDelegate</a>): <a href="uCEFTypes.html#PCefWindow">PCefWindow</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_set_osmodal_loop">cef_set_osmodal_loop</a></strong>: procedure(osModalLoop: Integer); cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_get_min_log_level">cef_get_min_log_level</a></strong>: function: Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_get_vlog_level">cef_get_vlog_level</a></strong>: function(const file_start: PAnsiChar; N: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_log">cef_log</a></strong>: procedure(const file_: PAnsiChar; line, severity: Integer; const message_: PAnsiChar); cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_list_alloc">cef_string_list_alloc</a></strong>: function: <a href="uCEFTypes.html#TCefStringList">TCefStringList</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_list_size">cef_string_list_size</a></strong>: function(list: <a href="uCEFTypes.html#TCefStringList">TCefStringList</a>): <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_list_value">cef_string_list_value</a></strong>: function(list: <a href="uCEFTypes.html#TCefStringList">TCefStringList</a>; index: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; value: <a href="uCEFTypes.html#PCefString">PCefString</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_list_append">cef_string_list_append</a></strong>: procedure(list: <a href="uCEFTypes.html#TCefStringList">TCefStringList</a>; const value: <a href="uCEFTypes.html#PCefString">PCefString</a>); cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_list_clear">cef_string_list_clear</a></strong>: procedure(list: <a href="uCEFTypes.html#TCefStringList">TCefStringList</a>); cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_list_free">cef_string_list_free</a></strong>: procedure(list: <a href="uCEFTypes.html#TCefStringList">TCefStringList</a>); cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_list_copy">cef_string_list_copy</a></strong>: function(list: <a href="uCEFTypes.html#TCefStringList">TCefStringList</a>): <a href="uCEFTypes.html#TCefStringList">TCefStringList</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_map_alloc">cef_string_map_alloc</a></strong>: function: <a href="uCEFTypes.html#TCefStringMap">TCefStringMap</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_map_size">cef_string_map_size</a></strong>: function(map: <a href="uCEFTypes.html#TCefStringMap">TCefStringMap</a>): <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_map_find">cef_string_map_find</a></strong>: function(map: <a href="uCEFTypes.html#TCefStringMap">TCefStringMap</a>; const key: <a href="uCEFTypes.html#PCefString">PCefString</a>; value: <a href="uCEFTypes.html#PCefString">PCefString</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_map_key">cef_string_map_key</a></strong>: function(map: <a href="uCEFTypes.html#TCefStringMap">TCefStringMap</a>; index: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; key: <a href="uCEFTypes.html#PCefString">PCefString</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_map_value">cef_string_map_value</a></strong>: function(map: <a href="uCEFTypes.html#TCefStringMap">TCefStringMap</a>; index: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; value: <a href="uCEFTypes.html#PCefString">PCefString</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_map_append">cef_string_map_append</a></strong>: function(map: <a href="uCEFTypes.html#TCefStringMap">TCefStringMap</a>; const key, value: <a href="uCEFTypes.html#PCefString">PCefString</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_map_clear">cef_string_map_clear</a></strong>: procedure(map: <a href="uCEFTypes.html#TCefStringMap">TCefStringMap</a>); cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_map_free">cef_string_map_free</a></strong>: procedure(map: <a href="uCEFTypes.html#TCefStringMap">TCefStringMap</a>); cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_multimap_alloc">cef_string_multimap_alloc</a></strong>: function: <a href="uCEFTypes.html#TCefStringMultimap">TCefStringMultimap</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_multimap_size">cef_string_multimap_size</a></strong>: function(map: <a href="uCEFTypes.html#TCefStringMultimap">TCefStringMultimap</a>): <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_multimap_find_count">cef_string_multimap_find_count</a></strong>: function(map: <a href="uCEFTypes.html#TCefStringMultimap">TCefStringMultimap</a>; const key: <a href="uCEFTypes.html#PCefString">PCefString</a>): <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_multimap_enumerate">cef_string_multimap_enumerate</a></strong>: function(map: <a href="uCEFTypes.html#TCefStringMultimap">TCefStringMultimap</a>; const key: <a href="uCEFTypes.html#PCefString">PCefString</a>; value_index: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; value: <a href="uCEFTypes.html#PCefString">PCefString</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_multimap_key">cef_string_multimap_key</a></strong>: function(map: <a href="uCEFTypes.html#TCefStringMultimap">TCefStringMultimap</a>; index: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; key: <a href="uCEFTypes.html#PCefString">PCefString</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_multimap_value">cef_string_multimap_value</a></strong>: function(map: <a href="uCEFTypes.html#TCefStringMultimap">TCefStringMultimap</a>; index: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; value: <a href="uCEFTypes.html#PCefString">PCefString</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_multimap_append">cef_string_multimap_append</a></strong>: function(map: <a href="uCEFTypes.html#TCefStringMultimap">TCefStringMultimap</a>; const key, value: <a href="uCEFTypes.html#PCefString">PCefString</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_multimap_clear">cef_string_multimap_clear</a></strong>: procedure(map: <a href="uCEFTypes.html#TCefStringMultimap">TCefStringMultimap</a>); cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_multimap_free">cef_string_multimap_free</a></strong>: procedure(map: <a href="uCEFTypes.html#TCefStringMultimap">TCefStringMultimap</a>); cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_wide_set">cef_string_wide_set</a></strong>: function(const src: PWideChar; src_len: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; output: <a href="uCEFTypes.html#PCefStringWide">PCefStringWide</a>; copy: Integer): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_utf8_set">cef_string_utf8_set</a></strong>: function(const src: PAnsiChar; src_len: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; output: <a href="uCEFTypes.html#PCefStringUtf8">PCefStringUtf8</a>; copy: Integer): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_utf16_set">cef_string_utf16_set</a></strong>: function(const src: <a href="uCEFTypes.html#PChar16">PChar16</a>; src_len: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; output: <a href="uCEFTypes.html#PCefStringUtf16">PCefStringUtf16</a>; copy: Integer): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_wide_clear">cef_string_wide_clear</a></strong>: procedure(str: <a href="uCEFTypes.html#PCefStringWide">PCefStringWide</a>); cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_utf8_clear">cef_string_utf8_clear</a></strong>: procedure(str: <a href="uCEFTypes.html#PCefStringUtf8">PCefStringUtf8</a>); cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_utf16_clear">cef_string_utf16_clear</a></strong>: procedure(str: <a href="uCEFTypes.html#PCefStringUtf16">PCefStringUtf16</a>); cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_wide_cmp">cef_string_wide_cmp</a></strong>: function(const str1, str2: <a href="uCEFTypes.html#PCefStringWide">PCefStringWide</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_utf8_cmp">cef_string_utf8_cmp</a></strong>: function(const str1, str2: <a href="uCEFTypes.html#PCefStringUtf8">PCefStringUtf8</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_utf16_cmp">cef_string_utf16_cmp</a></strong>: function(const str1, str2: <a href="uCEFTypes.html#PCefStringUtf16">PCefStringUtf16</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_wide_to_utf8">cef_string_wide_to_utf8</a></strong>: function(const src: PWideChar; src_len: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; output: <a href="uCEFTypes.html#PCefStringUtf8">PCefStringUtf8</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_utf8_to_wide">cef_string_utf8_to_wide</a></strong>: function(const src: PAnsiChar; src_len: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; output: <a href="uCEFTypes.html#PCefStringWide">PCefStringWide</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_wide_to_utf16">cef_string_wide_to_utf16</a></strong>: function(const src: PWideChar; src_len: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; output: <a href="uCEFTypes.html#PCefStringUtf16">PCefStringUtf16</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_utf16_to_wide">cef_string_utf16_to_wide</a></strong>: function(const src: <a href="uCEFTypes.html#PChar16">PChar16</a>; src_len: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; output: <a href="uCEFTypes.html#PCefStringWide">PCefStringWide</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_utf8_to_utf16">cef_string_utf8_to_utf16</a></strong>: function(const src: PAnsiChar; src_len: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; output: <a href="uCEFTypes.html#PCefStringUtf16">PCefStringUtf16</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_utf16_to_utf8">cef_string_utf16_to_utf8</a></strong>: function(const src: <a href="uCEFTypes.html#PChar16">PChar16</a>; src_len: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; output: <a href="uCEFTypes.html#PCefStringUtf8">PCefStringUtf8</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_ascii_to_wide">cef_string_ascii_to_wide</a></strong>: function(const src: PAnsiChar; src_len: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; output: <a href="uCEFTypes.html#PCefStringWide">PCefStringWide</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_ascii_to_utf16">cef_string_ascii_to_utf16</a></strong>: function(const src: PAnsiChar; src_len: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; output: <a href="uCEFTypes.html#PCefStringUtf16">PCefStringUtf16</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_userfree_wide_alloc">cef_string_userfree_wide_alloc</a></strong>: function: <a href="uCEFTypes.html#PCefStringUserFreeWide">PCefStringUserFreeWide</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_userfree_utf8_alloc">cef_string_userfree_utf8_alloc</a></strong>: function: <a href="uCEFTypes.html#PCefStringUserFreeUtf8">PCefStringUserFreeUtf8</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_userfree_utf16_alloc">cef_string_userfree_utf16_alloc</a></strong>: function: <a href="uCEFTypes.html#PCefStringUserFreeUtf16">PCefStringUserFreeUtf16</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_userfree_wide_free">cef_string_userfree_wide_free</a></strong>: procedure(str: <a href="uCEFTypes.html#PCefStringUserFreeWide">PCefStringUserFreeWide</a>); cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_userfree_utf8_free">cef_string_userfree_utf8_free</a></strong>: procedure(str: <a href="uCEFTypes.html#PCefStringUserFreeUtf8">PCefStringUserFreeUtf8</a>); cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_userfree_utf16_free">cef_string_userfree_utf16_free</a></strong>: procedure(str: <a href="uCEFTypes.html#PCefStringUserFreeUtf16">PCefStringUserFreeUtf16</a>); cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_utf16_to_lower">cef_string_utf16_to_lower</a></strong>: function(const src: <a href="uCEFTypes.html#PChar16">PChar16</a>; src_len: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; output: <a href="uCEFTypes.html#PCefStringUtf16">PCefStringUtf16</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_string_utf16_to_upper">cef_string_utf16_to_upper</a></strong>: function(const src: <a href="uCEFTypes.html#PChar16">PChar16</a>; src_len: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; output: <a href="uCEFTypes.html#PCefStringUtf16">PCefStringUtf16</a>): Integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_get_current_platform_thread_id">cef_get_current_platform_thread_id</a></strong>: function: <a href="uCEFTypes.html#TCefPlatformThreadId">TCefPlatformThreadId</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_get_current_platform_thread_handle">cef_get_current_platform_thread_handle</a></strong>: function: <a href="uCEFTypes.html#TCefPlatformThreadHandle">TCefPlatformThreadHandle</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_time_to_timet">cef_time_to_timet</a></strong>: function(const cef_time: <a href="uCEFTypes.html#PCefTime">PCefTime</a>; out time_: Int64): integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_time_from_timet">cef_time_from_timet</a></strong>: function(time_: int64; out cef_time: <a href="uCEFTypes.TCefTime.html">TCefTime</a>): integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_time_to_doublet">cef_time_to_doublet</a></strong>: function(const cef_time: <a href="uCEFTypes.html#PCefTime">PCefTime</a>; out time_: double): integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_time_from_doublet">cef_time_from_doublet</a></strong>: function(time: double; out cef_time: <a href="uCEFTypes.TCefTime.html">TCefTime</a>): integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_time_now">cef_time_now</a></strong>: function(out cef_time: <a href="uCEFTypes.TCefTime.html">TCefTime</a>): integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_basetime_now">cef_basetime_now</a></strong>: function: <a href="uCEFTypes.html#TCefBaseTime">TCefBaseTime</a>; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_time_delta">cef_time_delta</a></strong>: function(const cef_time1, cef_time2: <a href="uCEFTypes.html#PCefTime">PCefTime</a>; out delta: int64): integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_time_to_basetime">cef_time_to_basetime</a></strong>: function(const from: <a href="uCEFTypes.html#PCefTime">PCefTime</a>; to_: <a href="uCEFTypes.html#PCefBaseTime">PCefBaseTime</a>) : integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_time_from_basetime">cef_time_from_basetime</a></strong>: function(const from: <a href="uCEFTypes.html#TCefBaseTime">TCefBaseTime</a>; to_: <a href="uCEFTypes.html#PCefTime">PCefTime</a>) : integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_trace_event_instant">cef_trace_event_instant</a></strong>: procedure(const category, name, arg1_name: PAnsiChar; arg1_val: uint64; const arg2_name: PAnsiChar; arg2_val: UInt64); cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_trace_event_begin">cef_trace_event_begin</a></strong>: procedure(const category, name, arg1_name: PAnsiChar; arg1_val: UInt64; const arg2_name: PAnsiChar; arg2_val: UInt64); cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_trace_event_end">cef_trace_event_end</a></strong>: procedure(const category, name, arg1_name: PAnsiChar; arg1_val: UInt64; const arg2_name: PAnsiChar; arg2_val: UInt64); cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_trace_counter">cef_trace_counter</a></strong>: procedure(const category, name, value1_name: PAnsiChar; value1_val: UInt64; const value2_name: PAnsiChar; value2_val: UInt64); cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_trace_counter_id">cef_trace_counter_id</a></strong>: procedure(const category, name: PAnsiChar; id: UInt64; const value1_name: PAnsiChar; value1_val: UInt64; const value2_name: PAnsiChar; value2_val: UInt64); cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_trace_event_async_begin">cef_trace_event_async_begin</a></strong>: procedure(const category, name: PAnsiChar; id: UInt64; const arg1_name: PAnsiChar; arg1_val: UInt64; const arg2_name: PAnsiChar; arg2_val: UInt64); cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_trace_event_async_step_into">cef_trace_event_async_step_into</a></strong>: procedure(const category, name: PAnsiChar; id, step: UInt64; const arg1_name: PAnsiChar; arg1_val: UInt64); cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_trace_event_async_step_past">cef_trace_event_async_step_past</a></strong>: procedure(const category, name: PAnsiChar; id, step: UInt64; const arg1_name: PAnsiChar; arg1_val: UInt64); cdecl;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFLibFunctions.html#cef_trace_event_async_end">cef_trace_event_async_end</a></strong>: procedure(const category, name: PAnsiChar; id: UInt64; const arg1_name: PAnsiChar; arg1_val: UInt64; const arg2_name: PAnsiChar; arg2_val: UInt64); cdecl;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -614,6 +617,13 @@
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="cef_get_exit_code"></span><code><strong>cef_get_exit_code</strong>: function: integer; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="cef_shutdown"></span><code><strong>cef_shutdown</strong>: procedure; cdecl;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
|
@ -78,17 +78,21 @@
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMenuButtonDelegate.TCustomMenuButtonDelegate.html#OnButtonPressed-ICefButton-">OnButtonPressed</a></strong>(const button: <a href="uCEFInterfaces.ICefButton.html">ICefButton</a>); override;</code></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMenuButtonDelegate.TCustomMenuButtonDelegate.html#OnThemeChanged-ICefView-">OnThemeChanged</a></strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMenuButtonDelegate.TCustomMenuButtonDelegate.html#OnButtonStateChanged-ICefButton-">OnButtonStateChanged</a></strong>(const button: <a href="uCEFInterfaces.ICefButton.html">ICefButton</a>); override;</code></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMenuButtonDelegate.TCustomMenuButtonDelegate.html#OnButtonPressed-ICefButton-">OnButtonPressed</a></strong>(const button: <a href="uCEFInterfaces.ICefButton.html">ICefButton</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMenuButtonDelegate.TCustomMenuButtonDelegate.html#OnMenuButtonPressed-ICefMenuButton-TCefPoint-ICefMenuButtonPressedLock-">OnMenuButtonPressed</a></strong>(const menu_button: <a href="uCEFInterfaces.ICefMenuButton.html">ICefMenuButton</a>; const screen_point: <a href="uCEFTypes.TCefPoint.html">TCefPoint</a>; const button_pressed_lock: <a href="uCEFInterfaces.ICefMenuButtonPressedLock.html">ICefMenuButtonPressedLock</a>); override;</code></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMenuButtonDelegate.TCustomMenuButtonDelegate.html#OnButtonStateChanged-ICefButton-">OnButtonStateChanged</a></strong>(const button: <a href="uCEFInterfaces.ICefButton.html">ICefButton</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMenuButtonDelegate.TCustomMenuButtonDelegate.html#OnMenuButtonPressed-ICefMenuButton-TCefPoint-ICefMenuButtonPressedLock-">OnMenuButtonPressed</a></strong>(const menu_button: <a href="uCEFInterfaces.ICefMenuButton.html">ICefMenuButton</a>; const screen_point: <a href="uCEFTypes.TCefPoint.html">TCefPoint</a>; const button_pressed_lock: <a href="uCEFInterfaces.ICefMenuButtonPressedLock.html">ICefMenuButtonPressedLock</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>constructor <strong><a href="uCEFMenuButtonDelegate.TCustomMenuButtonDelegate.html#Create-ICefMenuButtonDelegateEvents-">Create</a></strong>(const events: <a href="uCEFInterfaces.ICefMenuButtonDelegateEvents.html">ICefMenuButtonDelegateEvents</a>); reintroduce;</code></td>
|
||||
</tr>
|
||||
@ -207,6 +211,35 @@ ICefViewDelegate</p>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="OnThemeChanged-ICefView-"></span><code>procedure <strong>OnThemeChanged</strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFViewDelegate.TCefViewDelegateOwn.html#OnThemeChanged-ICefView-">TCefViewDelegateOwn.OnThemeChanged</a>.</p><p>
|
||||
(
|
||||
|
||||
<p>Called when the theme for |view| has changed, after the new theme colors have already been applied. Views are notified via the component hierarchy in depth-first reverse order (children before parents).
|
||||
|
||||
<p>This will be called in the following cases:
|
||||
|
||||
<p></p>
|
||||
|
||||
<pre class="preformatted">
|
||||
1. When |view|, or a parent of |view|, is added to a Window.
|
||||
2. When the native/OS or Chrome theme changes for the Window that contains
|
||||
|view|. See ICefWindowDelegate.OnThemeColorsChanged documentation.
|
||||
3. When the client explicitly calls ICefWindow.ThemeChanged on the
|
||||
Window that contains |view|.</pre>
|
||||
|
||||
<p>
|
||||
|
||||
<p>Optionally use this callback to override the new per-View theme colors by calling ICefView.SetBackgroundColor or the appropriate component- specific function. See ICefWindow.SetThemeColor documentation for how to customize additional Window theme colors.
|
||||
|
||||
<p>(</p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="OnButtonPressed-ICefButton-"></span><code>procedure <strong>OnButtonPressed</strong>(const button: <a href="uCEFInterfaces.ICefButton.html">ICefButton</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
|
@ -67,426 +67,429 @@
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefStringFreeAndGet-PCefStringUserFree-">CefStringFreeAndGet</a></strong>(const str: <a href="uCEFTypes.html#PCefStringUserFree">PCefStringUserFree</a>): <a href="uCEFTypes.html#ustring">ustring</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMiscFunctions.html#CefStringSet-PCefString-ustring-">CefStringSet</a></strong>(const str: <a href="uCEFTypes.html#PCefString">PCefString</a>; const value: <a href="uCEFTypes.html#ustring">ustring</a>);</code></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMiscFunctions.html#CefStringSet-PCefString-ustring-">CefStringSet</a></strong>(const str: <a href="uCEFTypes.html#PCefString">PCefString</a>; const value: <a href="uCEFTypes.html#ustring">ustring</a>); overload;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMiscFunctions.html#CefStringSet-TCefString-TCefString-">CefStringSet</a></strong>(const aDstStr, aSrcStr: <a href="uCEFTypes.html#TCefString">TCefString</a>); overload;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMiscFunctions.html#CefStringInitialize-PCefString-">CefStringInitialize</a></strong>(const aCefString : <a href="uCEFTypes.html#PCefString">PCefString</a>); inline;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefRegisterExtension-ustring-ustring-ICefv8Handler-">CefRegisterExtension</a></strong>(const name, code: <a href="uCEFTypes.html#ustring">ustring</a>; const Handler: <a href="uCEFInterfaces.ICefv8Handler.html">ICefv8Handler</a>): Boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefPostTask-TCefThreadId-ICefTask-">CefPostTask</a></strong>(aThreadId : <a href="uCEFTypes.html#TCefThreadId">TCefThreadId</a>; const aTask: <a href="uCEFInterfaces.ICefTask.html">ICefTask</a>) : boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefPostDelayedTask-TCefThreadId-ICefTask-Int64-">CefPostDelayedTask</a></strong>(aThreadId : <a href="uCEFTypes.html#TCefThreadId">TCefThreadId</a>; const aTask : <a href="uCEFInterfaces.ICefTask.html">ICefTask</a>; aDelayMs : Int64) : boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefCurrentlyOn-TCefThreadId-">CefCurrentlyOn</a></strong>(aThreadId : <a href="uCEFTypes.html#TCefThreadId">TCefThreadId</a>) : boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefTimeToSystemTime-TCefTime-">CefTimeToSystemTime</a></strong>(const dt: <a href="uCEFTypes.TCefTime.html">TCefTime</a>): TSystemTime;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#SystemTimeToCefTime-TSystemTime-">SystemTimeToCefTime</a></strong>(const dt: TSystemTime): <a href="uCEFTypes.TCefTime.html">TCefTime</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#FixCefTime-TCefTime-">FixCefTime</a></strong>(const dt : <a href="uCEFTypes.TCefTime.html">TCefTime</a>): <a href="uCEFTypes.TCefTime.html">TCefTime</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefTimeToDateTime-TCefTime-">CefTimeToDateTime</a></strong>(const dt: <a href="uCEFTypes.TCefTime.html">TCefTime</a>): TDateTime;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#DateTimeToCefTime-TDateTime-">DateTimeToCefTime</a></strong>(dt: TDateTime): <a href="uCEFTypes.TCefTime.html">TCefTime</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#DateTimeToCefBaseTime-TDateTime-">DateTimeToCefBaseTime</a></strong>(dt: TDateTime): <a href="uCEFTypes.html#TCefBaseTime">TCefBaseTime</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefTimeToDouble-TCefTime-">CefTimeToDouble</a></strong>(const dt: <a href="uCEFTypes.TCefTime.html">TCefTime</a>): double;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#DoubleToCefTime-double-">DoubleToCefTime</a></strong>(const dt: double): <a href="uCEFTypes.TCefTime.html">TCefTime</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefTimeToUnixTime-TCefTime-">CefTimeToUnixTime</a></strong>(const dt: <a href="uCEFTypes.TCefTime.html">TCefTime</a>): int64;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#UnixTimeToCefTime-int64-">UnixTimeToCefTime</a></strong>(const dt: int64): <a href="uCEFTypes.TCefTime.html">TCefTime</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefTimeNow">CefTimeNow</a></strong>: <a href="uCEFTypes.TCefTime.html">TCefTime</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#DoubleTimeNow">DoubleTimeNow</a></strong>: double;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefTimeDelta-TCefTime-TCefTime-">CefTimeDelta</a></strong>(const cef_time1, cef_time2: <a href="uCEFTypes.TCefTime.html">TCefTime</a>): int64;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefBaseTimeNow">CefBaseTimeNow</a></strong>: <a href="uCEFTypes.html#TCefBaseTime">TCefBaseTime</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CetTimeToCefBaseTime-TCefTime-">CetTimeToCefBaseTime</a></strong>(const ct: <a href="uCEFTypes.TCefTime.html">TCefTime</a>) : <a href="uCEFTypes.html#TCefBaseTime">TCefBaseTime</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CetTimeFromCefBaseTime-TCefBaseTime-">CetTimeFromCefBaseTime</a></strong>(const cbt: <a href="uCEFTypes.html#TCefBaseTime">TCefBaseTime</a>) : <a href="uCEFTypes.TCefTime.html">TCefTime</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefBaseTimeToDateTime-TCefBaseTime-">CefBaseTimeToDateTime</a></strong>(const cbt: <a href="uCEFTypes.html#TCefBaseTime">TCefBaseTime</a>) : TDateTime;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#GetTimeIntervalMilliseconds-TCefTime-">GetTimeIntervalMilliseconds</a></strong>(const from_: <a href="uCEFTypes.TCefTime.html">TCefTime</a>): integer;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMiscFunctions.html#InitializeCefTime-TCefTime-">InitializeCefTime</a></strong>(var aTime : <a href="uCEFTypes.TCefTime.html">TCefTime</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#cef_string_wide_copy-PWideChar-NativeUInt-PCefStringWide-">cef_string_wide_copy</a></strong>(const src: PWideChar; src_len: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; output: <a href="uCEFTypes.html#PCefStringWide">PCefStringWide</a>): Integer;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#cef_string_utf8_copy-PAnsiChar-NativeUInt-PCefStringUtf8-">cef_string_utf8_copy</a></strong>(const src: PAnsiChar; src_len: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; output: <a href="uCEFTypes.html#PCefStringUtf8">PCefStringUtf8</a>): Integer;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#cef_string_utf16_copy-PChar16-NativeUInt-PCefStringUtf16-">cef_string_utf16_copy</a></strong>(const src: <a href="uCEFTypes.html#PChar16">PChar16</a>; src_len: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; output: <a href="uCEFTypes.html#PCefStringUtf16">PCefStringUtf16</a>): Integer;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#cef_string_copy-PCefChar-NativeUInt-PCefString-">cef_string_copy</a></strong>(const src: <a href="uCEFTypes.html#PCefChar">PCefChar</a>; src_len: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; output: <a href="uCEFTypes.html#PCefString">PCefString</a>): Integer;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMiscFunctions.html#WindowInfoAsChild-TCefWindowInfo-TCefWindowHandle-TRect-ustring-DWORD-">WindowInfoAsChild</a></strong>(var aWindowInfo : <a href="uCEFTypes.TCefWindowInfo.html">TCefWindowInfo</a>; aParent : <a href="uCEFTypes.html#TCefWindowHandle">TCefWindowHandle</a>; aRect : TRect; const aWindowName : <a href="uCEFTypes.html#ustring">ustring</a> = ''; aExStyle : DWORD = 0);</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMiscFunctions.html#WindowInfoAsPopUp-TCefWindowInfo-TCefWindowHandle-ustring-DWORD-">WindowInfoAsPopUp</a></strong>(var aWindowInfo : <a href="uCEFTypes.TCefWindowInfo.html">TCefWindowInfo</a>; aParent : <a href="uCEFTypes.html#TCefWindowHandle">TCefWindowHandle</a>; const aWindowName : <a href="uCEFTypes.html#ustring">ustring</a> = ''; aExStyle : DWORD = 0);</code></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMiscFunctions.html#WindowInfoAsChild-TCefWindowInfo-TCefWindowHandle-TRect-ustring-DWORD-">WindowInfoAsChild</a></strong>(var aWindowInfo : <a href="uCEFTypes.TCefWindowInfo.html">TCefWindowInfo</a>; aParent : <a href="uCEFTypes.html#TCefWindowHandle">TCefWindowHandle</a>; aRect : TRect; const aWindowName : <a href="uCEFTypes.html#ustring">ustring</a> = ''; aExStyle : DWORD = 0); deprecated;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMiscFunctions.html#WindowInfoAsWindowless-TCefWindowInfo-TCefWindowHandle-ustring-DWORD-">WindowInfoAsWindowless</a></strong>(var aWindowInfo : <a href="uCEFTypes.TCefWindowInfo.html">TCefWindowInfo</a>; aParent : <a href="uCEFTypes.html#TCefWindowHandle">TCefWindowHandle</a>; const aWindowName : <a href="uCEFTypes.html#ustring">ustring</a> = ''; aExStyle : DWORD = 0);</code></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMiscFunctions.html#WindowInfoAsPopUp-TCefWindowInfo-TCefWindowHandle-ustring-DWORD-">WindowInfoAsPopUp</a></strong>(var aWindowInfo : <a href="uCEFTypes.TCefWindowInfo.html">TCefWindowInfo</a>; aParent : <a href="uCEFTypes.html#TCefWindowHandle">TCefWindowHandle</a>; const aWindowName : <a href="uCEFTypes.html#ustring">ustring</a> = ''; aExStyle : DWORD = 0); deprecated;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMiscFunctions.html#WindowInfoAsWindowless-TCefWindowInfo-TCefWindowHandle-ustring-DWORD-">WindowInfoAsWindowless</a></strong>(var aWindowInfo : <a href="uCEFTypes.TCefWindowInfo.html">TCefWindowInfo</a>; aParent : <a href="uCEFTypes.html#TCefWindowHandle">TCefWindowHandle</a>; const aWindowName : <a href="uCEFTypes.html#ustring">ustring</a> = ''; aExStyle : DWORD = 0); deprecated;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#ProcessUnderWow64-THandle-PBOOL-">ProcessUnderWow64</a></strong>(hProcess: THandle; Wow64Process: PBOOL): BOOL; stdcall; external <a href="uCEFMiscFunctions.html#Kernel32DLL">Kernel32DLL</a> name 'IsWow64Process';</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#PathIsRelativeAnsi-LPCSTR-">PathIsRelativeAnsi</a></strong>(pszPath: LPCSTR): BOOL; stdcall; external <a href="uCEFMiscFunctions.html#SHLWAPIDLL">SHLWAPIDLL</a> name 'PathIsRelativeA';</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#PathIsRelativeUnicode-LPCWSTR-">PathIsRelativeUnicode</a></strong>(pszPath: LPCWSTR): BOOL; stdcall; external <a href="uCEFMiscFunctions.html#SHLWAPIDLL">SHLWAPIDLL</a> name 'PathIsRelativeW';</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#GetGlobalMemoryStatusEx-LPMEMORYSTATUSEX-">GetGlobalMemoryStatusEx</a></strong>(lpBuffer: <a href="uCEFTypes.html#LPMEMORYSTATUSEX">LPMEMORYSTATUSEX</a>): BOOL; stdcall; external <a href="uCEFMiscFunctions.html#Kernel32DLL">Kernel32DLL</a> name 'GlobalMemoryStatusEx';</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#PathCanonicalizeAnsi-LPSTR-LPCSTR-">PathCanonicalizeAnsi</a></strong>(pszBuf: LPSTR; pszPath: LPCSTR): BOOL; stdcall; external <a href="uCEFMiscFunctions.html#SHLWAPIDLL">SHLWAPIDLL</a> name 'PathCanonicalizeA';</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#PathCanonicalizeUnicode-LPWSTR-LPCWSTR-">PathCanonicalizeUnicode</a></strong>(pszBuf: LPWSTR; pszPath: LPCWSTR): BOOL; stdcall; external <a href="uCEFMiscFunctions.html#SHLWAPIDLL">SHLWAPIDLL</a> name 'PathCanonicalizeW';</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#PathIsUNCAnsi-LPCSTR-">PathIsUNCAnsi</a></strong>(pszPath: LPCSTR): BOOL; stdcall; external <a href="uCEFMiscFunctions.html#SHLWAPIDLL">SHLWAPIDLL</a> name 'PathIsUNCA';</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#PathIsUNCUnicode-LPCWSTR-">PathIsUNCUnicode</a></strong>(pszPath: LPCWSTR): BOOL; stdcall; external <a href="uCEFMiscFunctions.html#SHLWAPIDLL">SHLWAPIDLL</a> name 'PathIsUNCW';</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#PathIsURLAnsi-LPCSTR-">PathIsURLAnsi</a></strong>(pszPath: LPCSTR): BOOL; stdcall; external <a href="uCEFMiscFunctions.html#SHLWAPIDLL">SHLWAPIDLL</a> name 'PathIsURLA';</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#PathIsURLUnicode-LPCWSTR-">PathIsURLUnicode</a></strong>(pszPath: LPCWSTR): BOOL; stdcall; external <a href="uCEFMiscFunctions.html#SHLWAPIDLL">SHLWAPIDLL</a> name 'PathIsURLW';</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#ShutdownBlockReasonCreate-HWND-LPCWSTR-">ShutdownBlockReasonCreate</a></strong>(hWnd: HWND; Reason: LPCWSTR): Bool; stdcall; external <a href="uCEFMiscFunctions.html#User32DLL">User32DLL</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#ShutdownBlockReasonDestroy-HWND-">ShutdownBlockReasonDestroy</a></strong>(hWnd: HWND): Bool; stdcall; external <a href="uCEFMiscFunctions.html#User32DLL">User32DLL</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#NetServerGetInfo-LPWSTR-DWORD-Pointer-">NetServerGetInfo</a></strong>(servername: LPWSTR; level: DWORD; out bufptr: Pointer): DWORD; stdcall; external <a href="uCEFMiscFunctions.html#Netapi32DLL">Netapi32DLL</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#NetApiBufferFree-Pointer-">NetApiBufferFree</a></strong>(Buffer: Pointer): DWORD; stdcall; external <a href="uCEFMiscFunctions.html#Netapi32DLL">Netapi32DLL</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#SetWindowLongPtr-HWND-Integer-LongInt-">SetWindowLongPtr</a></strong>(hWnd: HWND; nIndex: Integer; dwNewLong: LongInt): LongInt; stdcall; external user32 name 'SetWindowLongW';</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CustomPathIsRelative-string-">CustomPathIsRelative</a></strong>(const aPath : string) : boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CustomPathCanonicalize-string-string-">CustomPathCanonicalize</a></strong>(const aOriginalPath : string; var aCanonicalPath : string) : boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CustomAbsolutePath-string-boolean-">CustomAbsolutePath</a></strong>(const aPath : string; aMustExist : boolean = False) : string;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CustomPathIsURL-string-">CustomPathIsURL</a></strong>(const aPath : string) : boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CustomPathIsUNC-string-">CustomPathIsUNC</a></strong>(const aPath : string) : boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#GetModulePath">GetModulePath</a></strong>: string;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefIsCertStatusError-TCefCertStatus-">CefIsCertStatusError</a></strong>(Status : <a href="uCEFTypes.html#TCefCertStatus">TCefCertStatus</a>) : boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefCrashReportingEnabled">CefCrashReportingEnabled</a></strong>: boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMiscFunctions.html#CefSetCrashKeyValue-ustring-ustring-">CefSetCrashKeyValue</a></strong>(const aKey, aValue : <a href="uCEFTypes.html#ustring">ustring</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMiscFunctions.html#CefLog-string-integer-integer-string-">CefLog</a></strong>(const aFile : string; aLine, aSeverity : integer; const aMessage : string);</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMiscFunctions.html#CefDebugLog-string-integer-">CefDebugLog</a></strong>(const aMessage : string; aSeverity : integer = <a href="uCEFConstants.html#CEF_LOG_SEVERITY_ERROR">CEF_LOG_SEVERITY_ERROR</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMiscFunctions.html#CefKeyEventLog-TCefKeyEvent-">CefKeyEventLog</a></strong>(const aEvent : <a href="uCEFTypes.TCefKeyEvent.html">TCefKeyEvent</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMiscFunctions.html#CefMouseEventLog-TCefMouseEvent-">CefMouseEventLog</a></strong>(const aEvent : <a href="uCEFTypes.TCefMouseEvent.html">TCefMouseEvent</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMiscFunctions.html#OutputDebugMessage-string-">OutputDebugMessage</a></strong>(const aMessage : string);</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CustomExceptionHandler-string-exception-">CustomExceptionHandler</a></strong>(const aFunctionName : string; const aException : exception) : boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefGetMinLogLevel">CefGetMinLogLevel</a></strong>: integer;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefGetVLogLevel-string-">CefGetVLogLevel</a></strong>(const file_start : string): integer;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefGetLogSeverityName-integer-">CefGetLogSeverityName</a></strong>(aSeverity: integer): <a href="uCEFTypes.html#ustring">ustring</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefRegisterSchemeHandlerFactory-ustring-ustring-TCefResourceHandlerClass-">CefRegisterSchemeHandlerFactory</a></strong>(const SchemeName, DomainName : <a href="uCEFTypes.html#ustring">ustring</a>; const handler: <a href="uCEFResourceHandler.html#TCefResourceHandlerClass">TCefResourceHandlerClass</a> = nil): Boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefClearSchemeHandlerFactories">CefClearSchemeHandlerFactories</a></strong>: boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefAddCrossOriginWhitelistEntry-ustring-ustring-ustring-Boolean-">CefAddCrossOriginWhitelistEntry</a></strong>(const SourceOrigin, TargetProtocol, TargetDomain: <a href="uCEFTypes.html#ustring">ustring</a>; AllowTargetSubdomains: Boolean): Boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefRemoveCrossOriginWhitelistEntry-ustring-ustring-ustring-Boolean-">CefRemoveCrossOriginWhitelistEntry</a></strong>(const SourceOrigin, TargetProtocol, TargetDomain: <a href="uCEFTypes.html#ustring">ustring</a>; AllowTargetSubdomains: Boolean): Boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefClearCrossOriginWhitelist">CefClearCrossOriginWhitelist</a></strong>: Boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMiscFunctions.html#UInt64ToFileVersionInfo-uint64-TFileVersionInfo-">UInt64ToFileVersionInfo</a></strong>(const aVersion : uint64; var aVersionInfo : <a href="uCEFTypes.TFileVersionInfo.html">TFileVersionInfo</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#GetExtendedFileVersion-ustring-">GetExtendedFileVersion</a></strong>(const aFileName : <a href="uCEFTypes.html#ustring">ustring</a>) : uint64;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#GetDLLVersion-ustring-TFileVersionInfo-">GetDLLVersion</a></strong>(const aDLLFile : <a href="uCEFTypes.html#ustring">ustring</a>; var aVersionInfo : <a href="uCEFTypes.TFileVersionInfo.html">TFileVersionInfo</a>) : boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMiscFunctions.html#OutputLastErrorMessage">OutputLastErrorMessage</a></strong>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#GetRegistryWindowsVersion-cardinal-cardinal-">GetRegistryWindowsVersion</a></strong>(var aMajor, aMinor: cardinal) : boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#GetRealWindowsVersion-cardinal-cardinal-">GetRealWindowsVersion</a></strong>(var aMajor, aMinor: cardinal) : boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CheckRealWindowsVersion-cardinal-cardinal-">CheckRealWindowsVersion</a></strong>(aMajor, aMinor: cardinal) : boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#SplitLongString-string-">SplitLongString</a></strong>(aSrcString : string) : string;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#GetAbsoluteDirPath-string-string-">GetAbsoluteDirPath</a></strong>(const aSrcPath : string; var aRsltPath : string) : boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CheckSubprocessPath-string-string-">CheckSubprocessPath</a></strong>(const aSubprocessPath : string; var aMissingFiles : string) : boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CheckLocales-string-string-string-">CheckLocales</a></strong>(const aLocalesDirPath : string; var aMissingFiles : string; const aLocalesRequired : string = '') : boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CheckResources-string-string-">CheckResources</a></strong>(const aResourcesDirPath : string; var aMissingFiles : string) : boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CheckDLLs-string-string-">CheckDLLs</a></strong>(const aFrameworkDirPath : string; var aMissingFiles : string) : boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CheckDLLVersion-ustring-uint16-uint16-uint16-uint16-">CheckDLLVersion</a></strong>(const aDLLFile : <a href="uCEFTypes.html#ustring">ustring</a>; aMajor, aMinor, aRelease, aBuild : uint16) : boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#GetDLLHeaderMachine-ustring-integer-">GetDLLHeaderMachine</a></strong>(const aDLLFile : <a href="uCEFTypes.html#ustring">ustring</a>; var aMachine : integer) : boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#GetFileTypeDescription-ustring-">GetFileTypeDescription</a></strong>(const aExtension : <a href="uCEFTypes.html#ustring">ustring</a>) : <a href="uCEFTypes.html#ustring">ustring</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#FileVersionInfoToString-TFileVersionInfo-">FileVersionInfoToString</a></strong>(const aVersionInfo : <a href="uCEFTypes.TFileVersionInfo.html">TFileVersionInfo</a>) : string;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CheckFilesExist-TStringList-string-">CheckFilesExist</a></strong>(var aList : TStringList; var aMissingFiles : string) : boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#Is32BitProcess">Is32BitProcess</a></strong>: boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefResolveUrl-ustring-ustring-">CefResolveUrl</a></strong>(const base_url, relative_url: <a href="uCEFTypes.html#ustring">ustring</a>): <a href="uCEFTypes.html#ustring">ustring</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefParseUrl-ustring-TUrlParts-">CefParseUrl</a></strong>(const url: <a href="uCEFTypes.html#ustring">ustring</a>; var parts: <a href="uCEFTypes.TUrlParts.html">TUrlParts</a>): Boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefCreateUrl-TUrlParts-">CefCreateUrl</a></strong>(var parts: <a href="uCEFTypes.TUrlParts.html">TUrlParts</a>): <a href="uCEFTypes.html#ustring">ustring</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefFormatUrlForSecurityDisplay-string-">CefFormatUrlForSecurityDisplay</a></strong>(const originUrl: string): string;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefGetMimeType-ustring-">CefGetMimeType</a></strong>(const extension: <a href="uCEFTypes.html#ustring">ustring</a>): <a href="uCEFTypes.html#ustring">ustring</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMiscFunctions.html#CefGetExtensionsForMimeType-ustring-TStringList-">CefGetExtensionsForMimeType</a></strong>(const mimeType: <a href="uCEFTypes.html#ustring">ustring</a>; var extensions: TStringList);</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefBase64Encode-Pointer-NativeUInt-">CefBase64Encode</a></strong>(const data: Pointer; dataSize: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>): <a href="uCEFTypes.html#ustring">ustring</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefBase64Decode-ustring-">CefBase64Decode</a></strong>(const data: <a href="uCEFTypes.html#ustring">ustring</a>): <a href="uCEFInterfaces.ICefBinaryValue.html">ICefBinaryValue</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefUriEncode-ustring-Boolean-">CefUriEncode</a></strong>(const text: <a href="uCEFTypes.html#ustring">ustring</a>; usePlus: Boolean): <a href="uCEFTypes.html#ustring">ustring</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefUriDecode-ustring-Boolean-TCefUriUnescapeRule-">CefUriDecode</a></strong>(const text: <a href="uCEFTypes.html#ustring">ustring</a>; convertToUtf8: Boolean; unescapeRule: <a href="uCEFTypes.html#TCefUriUnescapeRule">TCefUriUnescapeRule</a>): <a href="uCEFTypes.html#ustring">ustring</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefGetPath-TCefPathKey-">CefGetPath</a></strong>(const aPathKey : <a href="uCEFTypes.html#TCefPathKey">TCefPathKey</a>) : <a href="uCEFTypes.html#ustring">ustring</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefIsRTL">CefIsRTL</a></strong>: boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefCreateDirectory-ustring-">CefCreateDirectory</a></strong>(const fullPath: <a href="uCEFTypes.html#ustring">ustring</a>): Boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefGetTempDirectory-ustring-">CefGetTempDirectory</a></strong>(out tempDir: <a href="uCEFTypes.html#ustring">ustring</a>): Boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefCreateNewTempDirectory-ustring-ustring-">CefCreateNewTempDirectory</a></strong>(const prefix: <a href="uCEFTypes.html#ustring">ustring</a>; out newTempPath: <a href="uCEFTypes.html#ustring">ustring</a>): Boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefCreateTempDirectoryInDirectory-ustring-ustring-ustring-">CefCreateTempDirectoryInDirectory</a></strong>(const baseDir, prefix: <a href="uCEFTypes.html#ustring">ustring</a>; out newDir: <a href="uCEFTypes.html#ustring">ustring</a>): Boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefDirectoryExists-ustring-">CefDirectoryExists</a></strong>(const path: <a href="uCEFTypes.html#ustring">ustring</a>): Boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefDeleteFile-ustring-Boolean-">CefDeleteFile</a></strong>(const path: <a href="uCEFTypes.html#ustring">ustring</a>; recursive: Boolean): Boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefZipDirectory-ustring-ustring-Boolean-">CefZipDirectory</a></strong>(const srcDir, destFile: <a href="uCEFTypes.html#ustring">ustring</a>; includeHiddenFiles: Boolean): Boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMiscFunctions.html#CefLoadCRLSetsFile-ustring-">CefLoadCRLSetsFile</a></strong>(const path : <a href="uCEFTypes.html#ustring">ustring</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#GetDefaultCEFUserAgent">GetDefaultCEFUserAgent</a></strong>: string;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefIsKeyDown-WPARAM-">CefIsKeyDown</a></strong>(aWparam : WPARAM) : boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefIsKeyToggled-WPARAM-">CefIsKeyToggled</a></strong>(aWparam : WPARAM) : boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#GetCefMouseModifiers">GetCefMouseModifiers</a></strong>: <a href="uCEFTypes.html#TCefEventFlags">TCefEventFlags</a>; overload;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#GetCefMouseModifiers-WPARAM-">GetCefMouseModifiers</a></strong>(awparam : WPARAM) : <a href="uCEFTypes.html#TCefEventFlags">TCefEventFlags</a>; overload;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#GetCefKeyboardModifiers-WPARAM-LPARAM-">GetCefKeyboardModifiers</a></strong>(aWparam : WPARAM; aLparam : LPARAM) : <a href="uCEFTypes.html#TCefEventFlags">TCefEventFlags</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMiscFunctions.html#CefCheckAltGrPressed-WPARAM-TCefKeyEvent-">CefCheckAltGrPressed</a></strong>(aWparam : WPARAM; var aEvent : <a href="uCEFTypes.TCefKeyEvent.html">TCefKeyEvent</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMiscFunctions.html#DropEffectToDragOperation-Longint-TCefDragOperations-">DropEffectToDragOperation</a></strong>(aEffect : Longint; var aAllowedOps : <a href="uCEFTypes.html#TCefDragOperations">TCefDragOperations</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMiscFunctions.html#DragOperationToDropEffect-TCefDragOperations-Longint-">DragOperationToDropEffect</a></strong>(const aDragOperations : <a href="uCEFTypes.html#TCefDragOperations">TCefDragOperations</a>; var aEffect: Longint);</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#GetWindowsMajorMinorVersion-DWORD-DWORD-">GetWindowsMajorMinorVersion</a></strong>(var wMajorVersion, wMinorVersion : DWORD) : boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#GetIsWow64Process2-WORD-WORD-">GetIsWow64Process2</a></strong>(var aProcessMachine, aNativeMachine : WORD) : boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#IsWowProcess">IsWowProcess</a></strong>: boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#RunningWindows10OrNewer">RunningWindows10OrNewer</a></strong>: boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#GetDPIForHandle-HWND-UINT-">GetDPIForHandle</a></strong>(aHandle : HWND; var aDPI : UINT) : boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#DeviceToLogical-integer-double-">DeviceToLogical</a></strong>(aValue : integer; const aDeviceScaleFactor : double) : integer; overload;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#DeviceToLogical-single-double-">DeviceToLogical</a></strong>(aValue : single; const aDeviceScaleFactor : double) : single; overload;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMiscFunctions.html#DeviceToLogical-TCEFMouseEvent-double-">DeviceToLogical</a></strong>(var aEvent : <a href="uCEFTypes.TCefMouseEvent.html">TCEFMouseEvent</a>; const aDeviceScaleFactor : double); overload;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMiscFunctions.html#DeviceToLogical-TCefTouchEvent-double-">DeviceToLogical</a></strong>(var aEvent : <a href="uCEFTypes.TCefTouchEvent.html">TCefTouchEvent</a>; const aDeviceScaleFactor : double); overload;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMiscFunctions.html#DeviceToLogical-TPoint-double-">DeviceToLogical</a></strong>(var aPoint : TPoint; const aDeviceScaleFactor : double); overload;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#LogicalToDevice-integer-double-">LogicalToDevice</a></strong>(aValue : integer; const aDeviceScaleFactor : double) : integer; overload;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMiscFunctions.html#LogicalToDevice-TCEFRect-double-">LogicalToDevice</a></strong>(var aRect : <a href="uCEFTypes.TCefRect.html">TCEFRect</a>; const aDeviceScaleFactor : double); overload;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#GetScreenDPI">GetScreenDPI</a></strong>: integer;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#GetDeviceScaleFactor">GetDeviceScaleFactor</a></strong>: single;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#DeleteDirContents-string-TStringList-">DeleteDirContents</a></strong>(const aDirectory : string; const aExcludeFiles : TStringList = nil) : boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#DeleteFileList-TStringList-">DeleteFileList</a></strong>(const aFileList : TStringList) : boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#MoveFileList-TStringList-string-string-">MoveFileList</a></strong>(const aFileList : TStringList; const aSrcDirectory, aDstDirectory : string) : boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefGetDataURI-ustring-ustring-">CefGetDataURI</a></strong>(const aString, aMimeType : <a href="uCEFTypes.html#ustring">ustring</a>) : <a href="uCEFTypes.html#ustring">ustring</a>; overload;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#CefGetDataURI-pointer-integer-ustring-ustring-">CefGetDataURI</a></strong>(aData : pointer; aSize : integer; const aMimeType : <a href="uCEFTypes.html#ustring">ustring</a>; const aCharset : <a href="uCEFTypes.html#ustring">ustring</a> = '') : <a href="uCEFTypes.html#ustring">ustring</a>; overload;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#ValidCefWindowHandle-TCefWindowHandle-">ValidCefWindowHandle</a></strong>(aHandle : <a href="uCEFTypes.html#TCefWindowHandle">TCefWindowHandle</a>) : boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMiscFunctions.html#InitializeWindowHandle-TCefWindowHandle-">InitializeWindowHandle</a></strong>(var aHandle : <a href="uCEFTypes.html#TCefWindowHandle">TCefWindowHandle</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#GetCommandLineSwitchValue-string-ustring-">GetCommandLineSwitchValue</a></strong>(const aKey : string; var aValue : <a href="uCEFTypes.html#ustring">ustring</a>) : boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFMiscFunctions.html#IsCEFSubprocess">IsCEFSubprocess</a></strong>: boolean;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -657,7 +660,14 @@ Converts PCefString to ustring.</p>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="CefStringSet-PCefString-ustring-"></span><code>procedure <strong>CefStringSet</strong>(const str: <a href="uCEFTypes.html#PCefString">PCefString</a>; const value: <a href="uCEFTypes.html#ustring">ustring</a>);</code></td>
|
||||
<td class="itemcode"><span id="CefStringSet-PCefString-ustring-"></span><code>procedure <strong>CefStringSet</strong>(const str: <a href="uCEFTypes.html#PCefString">PCefString</a>; const value: <a href="uCEFTypes.html#ustring">ustring</a>); overload;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="CefStringSet-TCefString-TCefString-"></span><code>procedure <strong>CefStringSet</strong>(const aDstStr, aSrcStr: <a href="uCEFTypes.html#TCefString">TCefString</a>); overload;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
@ -956,24 +966,24 @@ Converts PCefString to ustring.</p>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="WindowInfoAsChild-TCefWindowInfo-TCefWindowHandle-TRect-ustring-DWORD-"></span><code>procedure <strong>WindowInfoAsChild</strong>(var aWindowInfo : <a href="uCEFTypes.TCefWindowInfo.html">TCefWindowInfo</a>; aParent : <a href="uCEFTypes.html#TCefWindowHandle">TCefWindowHandle</a>; aRect : TRect; const aWindowName : <a href="uCEFTypes.html#ustring">ustring</a> = ''; aExStyle : DWORD = 0);</code></td>
|
||||
<td class="itemcode"><span id="WindowInfoAsChild-TCefWindowInfo-TCefWindowHandle-TRect-ustring-DWORD-"></span><code>procedure <strong>WindowInfoAsChild</strong>(var aWindowInfo : <a href="uCEFTypes.TCefWindowInfo.html">TCefWindowInfo</a>; aParent : <a href="uCEFTypes.html#TCefWindowHandle">TCefWindowHandle</a>; aRect : TRect; const aWindowName : <a href="uCEFTypes.html#ustring">ustring</a> = ''; aExStyle : DWORD = 0); deprecated;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
<p class="hint_directive">Warning: this symbol is deprecated.</p><p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="WindowInfoAsPopUp-TCefWindowInfo-TCefWindowHandle-ustring-DWORD-"></span><code>procedure <strong>WindowInfoAsPopUp</strong>(var aWindowInfo : <a href="uCEFTypes.TCefWindowInfo.html">TCefWindowInfo</a>; aParent : <a href="uCEFTypes.html#TCefWindowHandle">TCefWindowHandle</a>; const aWindowName : <a href="uCEFTypes.html#ustring">ustring</a> = ''; aExStyle : DWORD = 0);</code></td>
|
||||
<td class="itemcode"><span id="WindowInfoAsPopUp-TCefWindowInfo-TCefWindowHandle-ustring-DWORD-"></span><code>procedure <strong>WindowInfoAsPopUp</strong>(var aWindowInfo : <a href="uCEFTypes.TCefWindowInfo.html">TCefWindowInfo</a>; aParent : <a href="uCEFTypes.html#TCefWindowHandle">TCefWindowHandle</a>; const aWindowName : <a href="uCEFTypes.html#ustring">ustring</a> = ''; aExStyle : DWORD = 0); deprecated;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
<p class="hint_directive">Warning: this symbol is deprecated.</p><p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="WindowInfoAsWindowless-TCefWindowInfo-TCefWindowHandle-ustring-DWORD-"></span><code>procedure <strong>WindowInfoAsWindowless</strong>(var aWindowInfo : <a href="uCEFTypes.TCefWindowInfo.html">TCefWindowInfo</a>; aParent : <a href="uCEFTypes.html#TCefWindowHandle">TCefWindowHandle</a>; const aWindowName : <a href="uCEFTypes.html#ustring">ustring</a> = ''; aExStyle : DWORD = 0);</code></td>
|
||||
<td class="itemcode"><span id="WindowInfoAsWindowless-TCefWindowInfo-TCefWindowHandle-ustring-DWORD-"></span><code>procedure <strong>WindowInfoAsWindowless</strong>(var aWindowInfo : <a href="uCEFTypes.TCefWindowInfo.html">TCefWindowInfo</a>; aParent : <a href="uCEFTypes.html#TCefWindowHandle">TCefWindowHandle</a>; const aWindowName : <a href="uCEFTypes.html#ustring">ustring</a> = ''; aExStyle : DWORD = 0); deprecated;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
<p class="hint_directive">Warning: this symbol is deprecated.</p><p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
|
@ -76,6 +76,10 @@
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFPanelDelegate.TCustomPanelDelegate.html#OnBlur-ICefView-">OnBlur</a></strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFPanelDelegate.TCustomPanelDelegate.html#OnThemeChanged-ICefView-">OnThemeChanged</a></strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>constructor <strong><a href="uCEFPanelDelegate.TCustomPanelDelegate.html#Create-ICefPanelDelegateEvents-">Create</a></strong>(const events: <a href="uCEFInterfaces.ICefPanelDelegateEvents.html">ICefPanelDelegateEvents</a>); reintroduce;</code></td>
|
||||
</tr>
|
||||
@ -193,6 +197,35 @@ ICefViewDelegate</p>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="OnThemeChanged-ICefView-"></span><code>procedure <strong>OnThemeChanged</strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFViewDelegate.TCefViewDelegateOwn.html#OnThemeChanged-ICefView-">TCefViewDelegateOwn.OnThemeChanged</a>.</p><p>
|
||||
(
|
||||
|
||||
<p>Called when the theme for |view| has changed, after the new theme colors have already been applied. Views are notified via the component hierarchy in depth-first reverse order (children before parents).
|
||||
|
||||
<p>This will be called in the following cases:
|
||||
|
||||
<p></p>
|
||||
|
||||
<pre class="preformatted">
|
||||
1. When |view|, or a parent of |view|, is added to a Window.
|
||||
2. When the native/OS or Chrome theme changes for the Window that contains
|
||||
|view|. See ICefWindowDelegate.OnThemeColorsChanged documentation.
|
||||
3. When the client explicitly calls ICefWindow.ThemeChanged on the
|
||||
Window that contains |view|.</pre>
|
||||
|
||||
<p>
|
||||
|
||||
<p>Optionally use this callback to override the new per-View theme colors by calling ICefView.SetBackgroundColor or the appropriate component- specific function. See ICefWindow.SetThemeColor documentation for how to customize additional Window theme colors.
|
||||
|
||||
<p>(</p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="Create-ICefPanelDelegateEvents-"></span><code>constructor <strong>Create</strong>(const events: <a href="uCEFInterfaces.ICefPanelDelegateEvents.html">ICefPanelDelegateEvents</a>); reintroduce;</code></td>
|
||||
</tr>
|
||||
|
@ -58,7 +58,7 @@
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFRenderHandler.TCefRenderHandlerOwn.html#OnAcceleratedPaint-ICefBrowser-TCefPaintElementType-NativeUInt-PCefRectArray-Pointer-">OnAcceleratedPaint</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; kind: <a href="uCEFTypes.html#TCefPaintElementType">TCefPaintElementType</a>; dirtyRectsCount: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; const dirtyRects: <a href="uCEFTypes.html#PCefRectArray">PCefRectArray</a>; shared_handle: Pointer); virtual;</code></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFRenderHandler.TCefRenderHandlerOwn.html#OnAcceleratedPaint-ICefBrowser-TCefPaintElementType-NativeUInt-PCefRectArray-PCefAcceleratedPaintInfo-">OnAcceleratedPaint</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; kind: <a href="uCEFTypes.html#TCefPaintElementType">TCefPaintElementType</a>; dirtyRectsCount: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; const dirtyRects: <a href="uCEFTypes.html#PCefRectArray">PCefRectArray</a>; const info: <a href="uCEFTypes.html#PCefAcceleratedPaintInfo">PCefAcceleratedPaintInfo</a>); virtual;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
@ -188,11 +188,17 @@
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="OnAcceleratedPaint-ICefBrowser-TCefPaintElementType-NativeUInt-PCefRectArray-Pointer-"></span><code>procedure <strong>OnAcceleratedPaint</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; kind: <a href="uCEFTypes.html#TCefPaintElementType">TCefPaintElementType</a>; dirtyRectsCount: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; const dirtyRects: <a href="uCEFTypes.html#PCefRectArray">PCefRectArray</a>; shared_handle: Pointer); virtual;</code></td>
|
||||
<td class="itemcode"><span id="OnAcceleratedPaint-ICefBrowser-TCefPaintElementType-NativeUInt-PCefRectArray-PCefAcceleratedPaintInfo-"></span><code>procedure <strong>OnAcceleratedPaint</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; kind: <a href="uCEFTypes.html#TCefPaintElementType">TCefPaintElementType</a>; dirtyRectsCount: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; const dirtyRects: <a href="uCEFTypes.html#PCefRectArray">PCefRectArray</a>; const info: <a href="uCEFTypes.html#PCefAcceleratedPaintInfo">PCefAcceleratedPaintInfo</a>); virtual;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefRenderHandler.html#OnAcceleratedPaint-ICefBrowser-TCefPaintElementType-NativeUInt-PCefRectArray-Pointer-">ICefRenderHandler.OnAcceleratedPaint</a>.</p><p>
|
||||
Called when an element has been rendered to the shared texture handle. |type| indicates whether the element is the view or the popup widget. |dirtyRects| contains the set of rectangles in pixel coordinates that need to be repainted. |shared_handle| is the handle for a D3D11 Texture2D that can be accessed via ID3D11Device using the OpenSharedResource function. This function is only called when TCefWindowInfo.shared_texture_enabled is set to true (1), and is currently only supported on Windows. </p>
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefRenderHandler.html#OnAcceleratedPaint-ICefBrowser-TCefPaintElementType-NativeUInt-PCefRectArray-PCefAcceleratedPaintInfo-">ICefRenderHandler.OnAcceleratedPaint</a>.</p><p>
|
||||
|
||||
|
||||
<p>Called when an element has been rendered to the shared texture handle. |type| indicates whether the element is the view or the popup widget. |dirtyRects| contains the set of rectangles in pixel coordinates that need to be repainted. |info| contains the shared handle; on Windows it is a HANDLE to a texture that can be opened with D3D11 OpenSharedResource, on macOS it is an IOSurface pointer that can be opened with Metal or OpenGL, and on Linux it contains several planes, each with an fd to the underlying system native buffer.
|
||||
|
||||
<p>The underlying implementation uses a pool to deliver frames. As a result, the handle may differ every frame depending on how many frames are in- progress. The handle's resource cannot be cached and cannot be accessed outside of this callback. It should be reopened each time this callback is executed and the contents should be copied to a texture owned by the client application. The contents of |info| will be released back to the pool after this callback returns.
|
||||
|
||||
<p></p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
|
@ -62,7 +62,7 @@
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFRenderHandler.TCustomRenderHandler.html#OnAcceleratedPaint-ICefBrowser-TCefPaintElementType-NativeUInt-PCefRectArray-Pointer-">OnAcceleratedPaint</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; kind: <a href="uCEFTypes.html#TCefPaintElementType">TCefPaintElementType</a>; dirtyRectsCount: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; const dirtyRects: <a href="uCEFTypes.html#PCefRectArray">PCefRectArray</a>; shared_handle: Pointer); override;</code></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFRenderHandler.TCustomRenderHandler.html#OnAcceleratedPaint-ICefBrowser-TCefPaintElementType-NativeUInt-PCefRectArray-PCefAcceleratedPaintInfo-">OnAcceleratedPaint</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; kind: <a href="uCEFTypes.html#TCefPaintElementType">TCefPaintElementType</a>; dirtyRectsCount: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; const dirtyRects: <a href="uCEFTypes.html#PCefRectArray">PCefRectArray</a>; const info: <a href="uCEFTypes.html#PCefAcceleratedPaintInfo">PCefAcceleratedPaintInfo</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
@ -197,11 +197,17 @@
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="OnAcceleratedPaint-ICefBrowser-TCefPaintElementType-NativeUInt-PCefRectArray-Pointer-"></span><code>procedure <strong>OnAcceleratedPaint</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; kind: <a href="uCEFTypes.html#TCefPaintElementType">TCefPaintElementType</a>; dirtyRectsCount: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; const dirtyRects: <a href="uCEFTypes.html#PCefRectArray">PCefRectArray</a>; shared_handle: Pointer); override;</code></td>
|
||||
<td class="itemcode"><span id="OnAcceleratedPaint-ICefBrowser-TCefPaintElementType-NativeUInt-PCefRectArray-PCefAcceleratedPaintInfo-"></span><code>procedure <strong>OnAcceleratedPaint</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; kind: <a href="uCEFTypes.html#TCefPaintElementType">TCefPaintElementType</a>; dirtyRectsCount: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; const dirtyRects: <a href="uCEFTypes.html#PCefRectArray">PCefRectArray</a>; const info: <a href="uCEFTypes.html#PCefAcceleratedPaintInfo">PCefAcceleratedPaintInfo</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefRenderHandler.html#OnAcceleratedPaint-ICefBrowser-TCefPaintElementType-NativeUInt-PCefRectArray-Pointer-">ICefRenderHandler.OnAcceleratedPaint</a>.</p><p>
|
||||
Called when an element has been rendered to the shared texture handle. |type| indicates whether the element is the view or the popup widget. |dirtyRects| contains the set of rectangles in pixel coordinates that need to be repainted. |shared_handle| is the handle for a D3D11 Texture2D that can be accessed via ID3D11Device using the OpenSharedResource function. This function is only called when TCefWindowInfo.shared_texture_enabled is set to true (1), and is currently only supported on Windows. </p>
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefRenderHandler.html#OnAcceleratedPaint-ICefBrowser-TCefPaintElementType-NativeUInt-PCefRectArray-PCefAcceleratedPaintInfo-">ICefRenderHandler.OnAcceleratedPaint</a>.</p><p>
|
||||
|
||||
|
||||
<p>Called when an element has been rendered to the shared texture handle. |type| indicates whether the element is the view or the popup widget. |dirtyRects| contains the set of rectangles in pixel coordinates that need to be repainted. |info| contains the shared handle; on Windows it is a HANDLE to a texture that can be opened with D3D11 OpenSharedResource, on macOS it is an IOSurface pointer that can be opened with Metal or OpenGL, and on Linux it contains several planes, each with an fd to the underlying system native buffer.
|
||||
|
||||
<p>The underlying implementation uses a pool to deliver frames. As a result, the handle may differ every frame depending on how many frames are in- progress. The handle's resource cannot be cached and cannot be accessed outside of this callback. It should be reopened each time this callback is executed and the contents should be copied to a texture owned by the client application. The contents of |info| will be released back to the pool after this callback returns.
|
||||
|
||||
<p></p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
|
@ -120,6 +120,22 @@
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFRequestContext.TCefRequestContextRef.html#SetContentSetting-ustring-ustring-TCefContentSettingTypes-TCefContentSettingValues-">SetContentSetting</a></strong>(const requesting_url, top_level_url: <a href="uCEFTypes.html#ustring">ustring</a>; content_type: <a href="uCEFTypes.html#TCefContentSettingTypes">TCefContentSettingTypes</a>; value: <a href="uCEFTypes.html#TCefContentSettingValues">TCefContentSettingValues</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFRequestContext.TCefRequestContextRef.html#SetChromeColorScheme-TCefColorVariant-TCefColor-">SetChromeColorScheme</a></strong>(variant: <a href="uCEFTypes.html#TCefColorVariant">TCefColorVariant</a>; user_color: <a href="uCEFTypes.html#TCefColor">TCefColor</a>);</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFRequestContext.TCefRequestContextRef.html#GetChromeColorSchemeMode">GetChromeColorSchemeMode</a></strong>: <a href="uCEFTypes.html#TCefColorVariant">TCefColorVariant</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFRequestContext.TCefRequestContextRef.html#GetChromeColorSchemeColor">GetChromeColorSchemeColor</a></strong>: <a href="uCEFTypes.html#TCefColor">TCefColor</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFRequestContext.TCefRequestContextRef.html#GetChromeColorSchemeVariant">GetChromeColorSchemeVariant</a></strong>: <a href="uCEFTypes.html#TCefColorVariant">TCefColorVariant</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>class function <strong><a href="uCEFRequestContext.TCefRequestContextRef.html#UnWrap-Pointer-">UnWrap</a></strong>(data: Pointer): <a href="uCEFInterfaces.ICefRequestContext.html">ICefRequestContext</a>; reintroduce;</code></td>
|
||||
</tr>
|
||||
@ -293,7 +309,9 @@
|
||||
|
||||
<p>Browsers that host extensions differ from normal browsers as follows: - Can access chrome.* JavaScript APIs if allowed by the manifest. Visit <a href="chrome://extensions-support">chrome://extensions-support</a> for the list of extension APIs currently supported by CEF. - Main frame navigation to non-extension content is blocked. - Pinch-zooming is disabled. - CefBrowserHost::GetExtension returns the hosted extension. - CefBrowserHost::IsBackgroundHost returns true for background hosts.
|
||||
|
||||
<p>See <a href="https://developer.chrome.com/extensions">https://developer.chrome.com/extensions</a> for extension implementation and usage documentation. </p>
|
||||
<p>See <a href="https://developer.chrome.com/extensions">https://developer.chrome.com/extensions</a> for extension implementation and usage documentation.
|
||||
|
||||
<p>WARNING: This function is deprecated and will be removed in ~M127. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
@ -303,7 +321,9 @@
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns true (1) if this context was used to load the extension identified by |extension_id|. Other contexts sharing the same storage will also have access to the extension (see HasExtension). This function must be called on the browser process UI thread. </p>
|
||||
Returns true (1) if this context was used to load the extension identified by |extension_id|. Other contexts sharing the same storage will also have access to the extension (see HasExtension). This function must be called on the browser process UI thread.
|
||||
|
||||
<p>WARNING: This function is deprecated and will be removed in ~M127. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
@ -313,7 +333,9 @@
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns true (1) if this context has access to the extension identified by |extension_id|. This may not be the context that was used to load the extension (see DidLoadExtension). This function must be called on the browser process UI thread. </p>
|
||||
Returns true (1) if this context has access to the extension identified by |extension_id|. This may not be the context that was used to load the extension (see DidLoadExtension). This function must be called on the browser process UI thread.
|
||||
|
||||
<p>WARNING: This function is deprecated and will be removed in ~M127. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
@ -323,7 +345,9 @@
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Retrieve the list of all extensions that this context has access to (see HasExtension). |extension_ids| will be populated with the list of extension ID values. Returns true (1) on success. This function must be called on the browser process UI thread. </p>
|
||||
Retrieve the list of all extensions that this context has access to (see HasExtension). |extension_ids| will be populated with the list of extension ID values. Returns true (1) on success. This function must be called on the browser process UI thread.
|
||||
|
||||
<p>WARNING: This function is deprecated and will be removed in ~M127. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
@ -333,7 +357,9 @@
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the extension matching |extension_id| or NULL if no matching extension is accessible in this context (see HasExtension). This function must be called on the browser process UI thread. </p>
|
||||
Returns the extension matching |extension_id| or NULL if no matching extension is accessible in this context (see HasExtension). This function must be called on the browser process UI thread.
|
||||
|
||||
<p>WARNING: This function is deprecated and will be removed in ~M127. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
@ -392,6 +418,46 @@
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="SetChromeColorScheme-TCefColorVariant-TCefColor-"></span><code>procedure <strong>SetChromeColorScheme</strong>(variant: <a href="uCEFTypes.html#TCefColorVariant">TCefColorVariant</a>; user_color: <a href="uCEFTypes.html#TCefColor">TCefColor</a>);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Sets the Chrome color scheme for all browsers that share this request context. |variant| values of SYSTEM, LIGHT and DARK change the underlying color mode (e.g. light vs dark). Other |variant| values determine how |user_color| will be applied in the current color mode. If |user_color| is transparent (0) the default color will be used. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="GetChromeColorSchemeMode"></span><code>function <strong>GetChromeColorSchemeMode</strong>: <a href="uCEFTypes.html#TCefColorVariant">TCefColorVariant</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the current Chrome color scheme mode (SYSTEM, LIGHT or DARK). Must be called on the browser process UI thread. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="GetChromeColorSchemeColor"></span><code>function <strong>GetChromeColorSchemeColor</strong>: <a href="uCEFTypes.html#TCefColor">TCefColor</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the current Chrome color scheme color, or transparent (0) for the default color. Must be called on the browser process UI thread. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="GetChromeColorSchemeVariant"></span><code>function <strong>GetChromeColorSchemeVariant</strong>: <a href="uCEFTypes.html#TCefColorVariant">TCefColorVariant</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the current Chrome color scheme variant. Must be called on the browser process UI thread. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="UnWrap-Pointer-"></span><code>class function <strong>UnWrap</strong>(data: Pointer): <a href="uCEFInterfaces.ICefRequestContext.html">ICefRequestContext</a>; reintroduce;</code></td>
|
||||
</tr>
|
||||
|
@ -54,7 +54,15 @@
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFRequestHandler.TCefRequestHandlerOwn.html#OnRenderProcessTerminated-ICefBrowser-TCefTerminationStatus-">OnRenderProcessTerminated</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; status: <a href="uCEFTypes.html#TCefTerminationStatus">TCefTerminationStatus</a>); virtual;</code></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFRequestHandler.TCefRequestHandlerOwn.html#OnRenderProcessUnresponsive-ICefBrowser-ICefUnresponsiveProcessCallback-">OnRenderProcessUnresponsive</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const callback: <a href="uCEFInterfaces.ICefUnresponsiveProcessCallback.html">ICefUnresponsiveProcessCallback</a>): boolean; virtual;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFRequestHandler.TCefRequestHandlerOwn.html#OnRenderProcessResponsive-ICefBrowser-">OnRenderProcessResponsive</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>); virtual;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFRequestHandler.TCefRequestHandlerOwn.html#OnRenderProcessTerminated-ICefBrowser-TCefTerminationStatus-integer-ustring-">OnRenderProcessTerminated</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; status: <a href="uCEFTypes.html#TCefTerminationStatus">TCefTerminationStatus</a>; error_code: integer; const error_string: <a href="uCEFTypes.html#ustring">ustring</a>); virtual;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
@ -144,11 +152,31 @@
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="OnRenderProcessTerminated-ICefBrowser-TCefTerminationStatus-"></span><code>procedure <strong>OnRenderProcessTerminated</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; status: <a href="uCEFTypes.html#TCefTerminationStatus">TCefTerminationStatus</a>); virtual;</code></td>
|
||||
<td class="itemcode"><span id="OnRenderProcessUnresponsive-ICefBrowser-ICefUnresponsiveProcessCallback-"></span><code>function <strong>OnRenderProcessUnresponsive</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const callback: <a href="uCEFInterfaces.ICefUnresponsiveProcessCallback.html">ICefUnresponsiveProcessCallback</a>): boolean; virtual;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefRequestHandler.html#OnRenderProcessTerminated-ICefBrowser-TCefTerminationStatus-">ICefRequestHandler.OnRenderProcessTerminated</a>.</p><p>
|
||||
Called on the browser process UI thread when the render process terminates unexpectedly. |status| indicates how the process terminated. </p>
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefRequestHandler.html#OnRenderProcessUnresponsive-ICefBrowser-ICefUnresponsiveProcessCallback-">ICefRequestHandler.OnRenderProcessUnresponsive</a>.</p><p>
|
||||
Called on the browser process UI thread when the render process is unresponsive as indicated by a lack of input event processing for at least 15 seconds. Return false (0) for the default behavior which is an indefinite wait with the Alloy runtime or display of the "Page unresponsive" dialog with the Chrome runtime. Return true (1) and don't execute the callback for an indefinite wait without display of the Chrome runtime dialog. Return true (1) and call ICefUnresponsiveProcessCallback.Wait either in this function or at a later time to reset the wait timer, potentially triggering another call to this function if the process remains unresponsive. Return true (1) and call ICefUnresponsiveProcessCallback.Terminate either in this function or at a later time to terminate the unresponsive process, resulting in a call to OnRenderProcessTerminated. OnRenderProcessResponsive will be called if the process becomes responsive after this function is called. This functionality depends on the hang monitor which can be disabled by passing the `–disable-hang-monitor` command-line flag or setting GlobalCEFApp.DisableHangMonitor to True. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="OnRenderProcessResponsive-ICefBrowser-"></span><code>procedure <strong>OnRenderProcessResponsive</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>); virtual;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefRequestHandler.html#OnRenderProcessResponsive-ICefBrowser-">ICefRequestHandler.OnRenderProcessResponsive</a>.</p><p>
|
||||
Called on the browser process UI thread when the render process becomes responsive after previously being unresponsive. See documentation on OnRenderProcessUnresponsive. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="OnRenderProcessTerminated-ICefBrowser-TCefTerminationStatus-integer-ustring-"></span><code>procedure <strong>OnRenderProcessTerminated</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; status: <a href="uCEFTypes.html#TCefTerminationStatus">TCefTerminationStatus</a>; error_code: integer; const error_string: <a href="uCEFTypes.html#ustring">ustring</a>); virtual;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefRequestHandler.html#OnRenderProcessTerminated-ICefBrowser-TCefTerminationStatus-integer-ustring-">ICefRequestHandler.OnRenderProcessTerminated</a>.</p><p>
|
||||
Called on the browser process UI thread when the render process terminates unexpectedly. |status| indicates how the process terminated. |error_code| and |error_string| represent the error that would be displayed in Chrome's "Aw, Snap!" view. Possible |error_code| values include TCefResultCode non-normal exit values and platform-specific crash values (for example, a Posix signal or Windows hardware exception). </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
|
@ -62,7 +62,15 @@
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFRequestHandler.TCustomRequestHandler.html#OnRenderProcessTerminated-ICefBrowser-TCefTerminationStatus-">OnRenderProcessTerminated</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; status: <a href="uCEFTypes.html#TCefTerminationStatus">TCefTerminationStatus</a>); override;</code></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFRequestHandler.TCustomRequestHandler.html#OnRenderProcessUnresponsive-ICefBrowser-ICefUnresponsiveProcessCallback-">OnRenderProcessUnresponsive</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const callback: <a href="uCEFInterfaces.ICefUnresponsiveProcessCallback.html">ICefUnresponsiveProcessCallback</a>): boolean; override;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFRequestHandler.TCustomRequestHandler.html#OnRenderProcessResponsive-ICefBrowser-">OnRenderProcessResponsive</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFRequestHandler.TCustomRequestHandler.html#OnRenderProcessTerminated-ICefBrowser-TCefTerminationStatus-integer-ustring-">OnRenderProcessTerminated</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; status: <a href="uCEFTypes.html#TCefTerminationStatus">TCefTerminationStatus</a>; error_code: integer; const error_string: <a href="uCEFTypes.html#ustring">ustring</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
@ -165,11 +173,31 @@
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="OnRenderProcessTerminated-ICefBrowser-TCefTerminationStatus-"></span><code>procedure <strong>OnRenderProcessTerminated</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; status: <a href="uCEFTypes.html#TCefTerminationStatus">TCefTerminationStatus</a>); override;</code></td>
|
||||
<td class="itemcode"><span id="OnRenderProcessUnresponsive-ICefBrowser-ICefUnresponsiveProcessCallback-"></span><code>function <strong>OnRenderProcessUnresponsive</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const callback: <a href="uCEFInterfaces.ICefUnresponsiveProcessCallback.html">ICefUnresponsiveProcessCallback</a>): boolean; override;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefRequestHandler.html#OnRenderProcessTerminated-ICefBrowser-TCefTerminationStatus-">ICefRequestHandler.OnRenderProcessTerminated</a>.</p><p>
|
||||
Called on the browser process UI thread when the render process terminates unexpectedly. |status| indicates how the process terminated. </p>
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefRequestHandler.html#OnRenderProcessUnresponsive-ICefBrowser-ICefUnresponsiveProcessCallback-">ICefRequestHandler.OnRenderProcessUnresponsive</a>.</p><p>
|
||||
Called on the browser process UI thread when the render process is unresponsive as indicated by a lack of input event processing for at least 15 seconds. Return false (0) for the default behavior which is an indefinite wait with the Alloy runtime or display of the "Page unresponsive" dialog with the Chrome runtime. Return true (1) and don't execute the callback for an indefinite wait without display of the Chrome runtime dialog. Return true (1) and call ICefUnresponsiveProcessCallback.Wait either in this function or at a later time to reset the wait timer, potentially triggering another call to this function if the process remains unresponsive. Return true (1) and call ICefUnresponsiveProcessCallback.Terminate either in this function or at a later time to terminate the unresponsive process, resulting in a call to OnRenderProcessTerminated. OnRenderProcessResponsive will be called if the process becomes responsive after this function is called. This functionality depends on the hang monitor which can be disabled by passing the `–disable-hang-monitor` command-line flag or setting GlobalCEFApp.DisableHangMonitor to True. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="OnRenderProcessResponsive-ICefBrowser-"></span><code>procedure <strong>OnRenderProcessResponsive</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefRequestHandler.html#OnRenderProcessResponsive-ICefBrowser-">ICefRequestHandler.OnRenderProcessResponsive</a>.</p><p>
|
||||
Called on the browser process UI thread when the render process becomes responsive after previously being unresponsive. See documentation on OnRenderProcessUnresponsive. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="OnRenderProcessTerminated-ICefBrowser-TCefTerminationStatus-integer-ustring-"></span><code>procedure <strong>OnRenderProcessTerminated</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; status: <a href="uCEFTypes.html#TCefTerminationStatus">TCefTerminationStatus</a>; error_code: integer; const error_string: <a href="uCEFTypes.html#ustring">ustring</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefRequestHandler.html#OnRenderProcessTerminated-ICefBrowser-TCefTerminationStatus-integer-ustring-">ICefRequestHandler.OnRenderProcessTerminated</a>.</p><p>
|
||||
Called on the browser process UI thread when the render process terminates unexpectedly. |status| indicates how the process terminated. |error_code| and |error_string| represent the error that would be displayed in Chrome's "Aw, Snap!" view. Possible |error_code| values include TCefResultCode non-normal exit values and platform-specific crash values (for example, a Posix signal or Windows hardware exception). </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
|
@ -77,13 +77,17 @@
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFTextfieldDelegate.TCustomTextfieldDelegate.html#OnKeyEvent-ICefTextfield-TCefKeyEvent-boolean-">OnKeyEvent</a></strong>(const textfield: <a href="uCEFInterfaces.ICefTextfield.html">ICefTextfield</a>; const event: <a href="uCEFTypes.TCefKeyEvent.html">TCefKeyEvent</a>; var aResult : boolean); override;</code></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFTextfieldDelegate.TCustomTextfieldDelegate.html#OnThemeChanged-ICefView-">OnThemeChanged</a></strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFTextfieldDelegate.TCustomTextfieldDelegate.html#OnAfterUserAction-ICefTextfield-">OnAfterUserAction</a></strong>(const textfield: <a href="uCEFInterfaces.ICefTextfield.html">ICefTextfield</a>); override;</code></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFTextfieldDelegate.TCustomTextfieldDelegate.html#OnKeyEvent-ICefTextfield-TCefKeyEvent-boolean-">OnKeyEvent</a></strong>(const textfield: <a href="uCEFInterfaces.ICefTextfield.html">ICefTextfield</a>; const event: <a href="uCEFTypes.TCefKeyEvent.html">TCefKeyEvent</a>; var aResult : boolean); override;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFTextfieldDelegate.TCustomTextfieldDelegate.html#OnAfterUserAction-ICefTextfield-">OnAfterUserAction</a></strong>(const textfield: <a href="uCEFInterfaces.ICefTextfield.html">ICefTextfield</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>constructor <strong><a href="uCEFTextfieldDelegate.TCustomTextfieldDelegate.html#Create-ICefTextfieldDelegateEvents-">Create</a></strong>(const events: <a href="uCEFInterfaces.ICefTextfieldDelegateEvents.html">ICefTextfieldDelegateEvents</a>); reintroduce;</code></td>
|
||||
</tr>
|
||||
@ -202,6 +206,35 @@ ICefViewDelegate</p>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="OnThemeChanged-ICefView-"></span><code>procedure <strong>OnThemeChanged</strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFViewDelegate.TCefViewDelegateOwn.html#OnThemeChanged-ICefView-">TCefViewDelegateOwn.OnThemeChanged</a>.</p><p>
|
||||
(
|
||||
|
||||
<p>Called when the theme for |view| has changed, after the new theme colors have already been applied. Views are notified via the component hierarchy in depth-first reverse order (children before parents).
|
||||
|
||||
<p>This will be called in the following cases:
|
||||
|
||||
<p></p>
|
||||
|
||||
<pre class="preformatted">
|
||||
1. When |view|, or a parent of |view|, is added to a Window.
|
||||
2. When the native/OS or Chrome theme changes for the Window that contains
|
||||
|view|. See ICefWindowDelegate.OnThemeColorsChanged documentation.
|
||||
3. When the client explicitly calls ICefWindow.ThemeChanged on the
|
||||
Window that contains |view|.</pre>
|
||||
|
||||
<p>
|
||||
|
||||
<p>Optionally use this callback to override the new per-View theme colors by calling ICefView.SetBackgroundColor or the appropriate component- specific function. See ICefWindow.SetThemeColor documentation for how to customize additional Window theme colors.
|
||||
|
||||
<p>(</p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="OnKeyEvent-ICefTextfield-TCefKeyEvent-boolean-"></span><code>procedure <strong>OnKeyEvent</strong>(const textfield: <a href="uCEFInterfaces.ICefTextfield.html">ICefTextfield</a>; const event: <a href="uCEFTypes.TCefKeyEvent.html">TCefKeyEvent</a>; var aResult : boolean); override;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
|
67
docs/html/uCEFTypes.TCefAcceleratedPaintInfo.html
Normal file
67
docs/html/uCEFTypes.TCefAcceleratedPaintInfo.html
Normal file
@ -0,0 +1,67 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFTypes: Record TCefAcceleratedPaintInfo</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="generator" content="PasDoc 0.16.0-snapshot">
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<link rel="StyleSheet" type="text/css" href="pasdoc.css">
|
||||
</head>
|
||||
<body>
|
||||
<span id="TCefAcceleratedPaintInfo"></span><h1 class="cio">Record TCefAcceleratedPaintInfo</h1>
|
||||
<div class="sections">
|
||||
<div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section">Hierarchy</div><div class="one_section"><a class="section" href="#PasDoc-Fields">Fields</a></div><div class="one_section">Methods</div><div class="one_section">Properties</div></div>
|
||||
<span id="PasDoc-Description"></span><h2 class="unit">Unit</h2>
|
||||
<p class="unitlink">
|
||||
<a href="uCEFTypes.html">uCEFTypes</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCefAcceleratedPaintInfo = record</code></p>
|
||||
<h2 class="description">Description</h2>
|
||||
<p>
|
||||
Structure containing shared texture information for the OnAcceleratedPaint callback. Resources will be released to the underlying pool for reuse when the callback returns from client code. </p>
|
||||
<p>
|
||||
|
||||
|
||||
<p><see href="<a href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_win.h">https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_win.h</a>">CEF source file: /include/internal/cef_types_win.h (cef_accelerated_paint_info_t))
|
||||
|
||||
<p><see href="<a href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_mac.h">https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_mac.h</a>">CEF source file: /include/internal/cef_types_mac.h (cef_accelerated_paint_info_t))
|
||||
|
||||
<p><see href="<a href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_linux.h">https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_linux.h</a>">CEF source file: /include/internal/cef_types_linux.h (cef_accelerated_paint_info_t))</p>
|
||||
<h2 class="overview">Overview</h2>
|
||||
<span id="PasDoc-Fields"></span><h3 class="summary">Fields</h3>
|
||||
<table class="summary wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefAcceleratedPaintInfo.html#shared_texture_handle">shared_texture_handle</a></strong>: <a href="uCEFTypes.html#TCefSharedTextureHandle">TCefSharedTextureHandle</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefAcceleratedPaintInfo.html#format">format</a></strong>: <a href="uCEFTypes.html#TCefColorType">TCefColorType</a>;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2 class="description">Description</h2>
|
||||
<h3 class="detail">Fields</h3>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="shared_texture_handle"></span><code><strong>shared_texture_handle</strong>: <a href="uCEFTypes.html#TCefSharedTextureHandle">TCefSharedTextureHandle</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Handle for the shared texture. The shared texture is instantiated without a keyed mutex. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="format"></span><code><strong>format</strong>: <a href="uCEFTypes.html#TCefColorType">TCefColorType</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
The pixel format of the texture. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<hr><span class="appinfo"><em>Generated by <a href="https://pasdoc.github.io/">PasDoc 0.16.0-snapshot</a>. </em>
|
||||
</span>
|
||||
</body></html>
|
@ -49,11 +49,11 @@
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefBoxLayoutSettings.html#main_axis_alignment">main_axis_alignment</a></strong>: <a href="uCEFTypes.html#TCefMainAxisAlignment">TCefMainAxisAlignment</a>;</code></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefBoxLayoutSettings.html#main_axis_alignment">main_axis_alignment</a></strong>: <a href="uCEFTypes.html#TCefAxisAlignment">TCefAxisAlignment</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefBoxLayoutSettings.html#cross_axis_alignment">cross_axis_alignment</a></strong>: <a href="uCEFTypes.html#TCefCrossAxisAlignment">TCefCrossAxisAlignment</a>;</code></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefBoxLayoutSettings.html#cross_axis_alignment">cross_axis_alignment</a></strong>: <a href="uCEFTypes.html#TCefAxisAlignment">TCefAxisAlignment</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
@ -119,7 +119,7 @@
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="main_axis_alignment"></span><code><strong>main_axis_alignment</strong>: <a href="uCEFTypes.html#TCefMainAxisAlignment">TCefMainAxisAlignment</a>;</code></td>
|
||||
<td class="itemcode"><span id="main_axis_alignment"></span><code><strong>main_axis_alignment</strong>: <a href="uCEFTypes.html#TCefAxisAlignment">TCefAxisAlignment</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
@ -129,7 +129,7 @@
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="cross_axis_alignment"></span><code><strong>cross_axis_alignment</strong>: <a href="uCEFTypes.html#TCefCrossAxisAlignment">TCefCrossAxisAlignment</a>;</code></td>
|
||||
<td class="itemcode"><span id="cross_axis_alignment"></span><code><strong>cross_axis_alignment</strong>: <a href="uCEFTypes.html#TCefAxisAlignment">TCefAxisAlignment</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
|
@ -297,6 +297,14 @@
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefBrowserHost.html#execute_chrome_command">execute_chrome_command</a></strong>: procedure(self: <a href="uCEFTypes.html#PCefBrowserHost">PCefBrowserHost</a>; command_id: integer; disposition: <a href="uCEFTypes.html#TCefWindowOpenDisposition">TCefWindowOpenDisposition</a>); stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefBrowserHost.html#is_render_process_unresponsive">is_render_process_unresponsive</a></strong>: function(self: <a href="uCEFTypes.html#PCefBrowserHost">PCefBrowserHost</a>): integer; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefBrowserHost.html#get_runtime_style">get_runtime_style</a></strong>: function(self: <a href="uCEFTypes.html#PCefBrowserHost">PCefBrowserHost</a>): <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>; stdcall;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2 class="description">Description</h2>
|
||||
<h3 class="detail">Fields</h3>
|
||||
@ -836,6 +844,22 @@
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="is_render_process_unresponsive"></span><code><strong>is_render_process_unresponsive</strong>: function(self: <a href="uCEFTypes.html#PCefBrowserHost">PCefBrowserHost</a>): integer; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="get_runtime_style"></span><code><strong>get_runtime_style</strong>: function(self: <a href="uCEFTypes.html#PCefBrowserHost">PCefBrowserHost</a>): <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<hr><span class="appinfo"><em>Generated by <a href="https://pasdoc.github.io/">PasDoc 0.16.0-snapshot</a>. </em>
|
||||
</span>
|
||||
</body></html>
|
||||
|
@ -45,6 +45,10 @@
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefBrowserView.html#set_prefer_accelerators">set_prefer_accelerators</a></strong>: procedure(self: <a href="uCEFTypes.html#PCefBrowserView">PCefBrowserView</a>; prefer_accelerators: Integer); stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefBrowserView.html#get_runtime_style">get_runtime_style</a></strong>: function(self: <a href="uCEFTypes.html#PCefBrowserView">PCefBrowserView</a>): <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>; stdcall;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2 class="description">Description</h2>
|
||||
<h3 class="detail">Fields</h3>
|
||||
@ -80,6 +84,14 @@
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="get_runtime_style"></span><code><strong>get_runtime_style</strong>: function(self: <a href="uCEFTypes.html#PCefBrowserView">PCefBrowserView</a>): <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<hr><span class="appinfo"><em>Generated by <a href="https://pasdoc.github.io/">PasDoc 0.16.0-snapshot</a>. </em>
|
||||
</span>
|
||||
</body></html>
|
||||
|
@ -61,6 +61,10 @@
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefBrowserViewDelegate.html#on_gesture_command">on_gesture_command</a></strong>: function(self: <a href="uCEFTypes.html#PCefBrowserViewDelegate">PCefBrowserViewDelegate</a>; browser_view: <a href="uCEFTypes.html#PCefBrowserView">PCefBrowserView</a>; gesture_command: <a href="uCEFTypes.html#TCefGestureCommand">TCefGestureCommand</a>): Integer; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefBrowserViewDelegate.html#get_browser_runtime_style">get_browser_runtime_style</a></strong>: function(self: <a href="uCEFTypes.html#PCefBrowserViewDelegate">PCefBrowserViewDelegate</a>): <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>; stdcall;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2 class="description">Description</h2>
|
||||
<h3 class="detail">Fields</h3>
|
||||
@ -128,6 +132,14 @@
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="get_browser_runtime_style"></span><code><strong>get_browser_runtime_style</strong>: function(self: <a href="uCEFTypes.html#PCefBrowserViewDelegate">PCefBrowserViewDelegate</a>): <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<hr><span class="appinfo"><em>Generated by <a href="https://pasdoc.github.io/">PasDoc 0.16.0-snapshot</a>. </em>
|
||||
</span>
|
||||
</body></html>
|
||||
|
@ -39,7 +39,7 @@
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefDownloadHandler.html#on_before_download">on_before_download</a></strong>: procedure(self: <a href="uCEFTypes.html#PCefDownloadHandler">PCefDownloadHandler</a>; browser: <a href="uCEFTypes.html#PCefBrowser">PCefBrowser</a>; download_item: <a href="uCEFTypes.html#PCefDownloadItem">PCefDownloadItem</a>; const suggested_name: <a href="uCEFTypes.html#PCefString">PCefString</a>; callback: <a href="uCEFTypes.html#PCefBeforeDownloadCallback">PCefBeforeDownloadCallback</a>); stdcall;</code></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefDownloadHandler.html#on_before_download">on_before_download</a></strong>: function(self: <a href="uCEFTypes.html#PCefDownloadHandler">PCefDownloadHandler</a>; browser: <a href="uCEFTypes.html#PCefBrowser">PCefBrowser</a>; download_item: <a href="uCEFTypes.html#PCefDownloadItem">PCefDownloadItem</a>; const suggested_name: <a href="uCEFTypes.html#PCefString">PCefString</a>; callback: <a href="uCEFTypes.html#PCefBeforeDownloadCallback">PCefBeforeDownloadCallback</a>): Integer; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
@ -67,7 +67,7 @@
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="on_before_download"></span><code><strong>on_before_download</strong>: procedure(self: <a href="uCEFTypes.html#PCefDownloadHandler">PCefDownloadHandler</a>; browser: <a href="uCEFTypes.html#PCefBrowser">PCefBrowser</a>; download_item: <a href="uCEFTypes.html#PCefDownloadItem">PCefDownloadItem</a>; const suggested_name: <a href="uCEFTypes.html#PCefString">PCefString</a>; callback: <a href="uCEFTypes.html#PCefBeforeDownloadCallback">PCefBeforeDownloadCallback</a>); stdcall;</code></td>
|
||||
<td class="itemcode"><span id="on_before_download"></span><code><strong>on_before_download</strong>: function(self: <a href="uCEFTypes.html#PCefDownloadHandler">PCefDownloadHandler</a>; browser: <a href="uCEFTypes.html#PCefBrowser">PCefBrowser</a>; download_item: <a href="uCEFTypes.html#PCefDownloadItem">PCefDownloadItem</a>; const suggested_name: <a href="uCEFTypes.html#PCefString">PCefString</a>; callback: <a href="uCEFTypes.html#PCefBeforeDownloadCallback">PCefBeforeDownloadCallback</a>): Integer; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
|
@ -23,6 +23,8 @@
|
||||
<p>
|
||||
|
||||
|
||||
<p>WARNING: This API is deprecated and will be removed in ~M127.
|
||||
|
||||
<p>Implemented by ICefExtension.
|
||||
|
||||
<p><see href="<a href="https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/cef_extension_capi.h">https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/cef_extension_capi.h</a>">CEF source file: /include/capi/cef_extension_capi.h (cef_extension_t))</p>
|
||||
|
@ -23,6 +23,8 @@
|
||||
<p>
|
||||
|
||||
|
||||
<p>WARNING: This API is deprecated and will be removed in ~M127.
|
||||
|
||||
<p>Implemented by ICefExtensionHandler.
|
||||
|
||||
<p><see href="<a href="https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/cef_extension_handler_capi.h">https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/cef_extension_handler_capi.h</a>">CEF source file: /include/capi/cef_extension_handler_capi.h (cef_extension_handler_t))</p>
|
||||
|
@ -71,7 +71,7 @@
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefImage.html#get_representation_info">get_representation_info</a></strong>: function(self: <a href="uCEFTypes.html#PCefImage">PCefImage</a>; scale_factor: Single; actual_scale_factor: PSingle; pixel_width, pixel_height: PInteger): Integer; stdcall;</code></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefImage.html#get_representation_info">get_representation_info</a></strong>: function(self: <a href="uCEFTypes.html#PCefImage">PCefImage</a>; scale_factor: Single; actual_scale_factor: System.PSingle; pixel_width, pixel_height: PInteger): Integer; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
@ -171,7 +171,7 @@
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="get_representation_info"></span><code><strong>get_representation_info</strong>: function(self: <a href="uCEFTypes.html#PCefImage">PCefImage</a>; scale_factor: Single; actual_scale_factor: PSingle; pixel_width, pixel_height: PInteger): Integer; stdcall;</code></td>
|
||||
<td class="itemcode"><span id="get_representation_info"></span><code><strong>get_representation_info</strong>: function(self: <a href="uCEFTypes.html#PCefImage">PCefImage</a>; scale_factor: Single; actual_scale_factor: System.PSingle; pixel_width, pixel_height: PInteger): Integer; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
|
@ -67,7 +67,7 @@
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefRenderHandler.html#on_accelerated_paint">on_accelerated_paint</a></strong>: procedure(self: <a href="uCEFTypes.html#PCefRenderHandler">PCefRenderHandler</a>; browser: <a href="uCEFTypes.html#PCefBrowser">PCefBrowser</a>; type_: <a href="uCEFTypes.html#TCefPaintElementType">TCefPaintElementType</a>; dirtyRectsCount: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; const dirtyRects: <a href="uCEFTypes.html#PCefRectArray">PCefRectArray</a>; shared_handle: Pointer); stdcall;</code></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefRenderHandler.html#on_accelerated_paint">on_accelerated_paint</a></strong>: procedure(self: <a href="uCEFTypes.html#PCefRenderHandler">PCefRenderHandler</a>; browser: <a href="uCEFTypes.html#PCefBrowser">PCefBrowser</a>; type_: <a href="uCEFTypes.html#TCefPaintElementType">TCefPaintElementType</a>; dirtyRectsCount: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; const dirtyRects: <a href="uCEFTypes.html#PCefRectArray">PCefRectArray</a>; const info: <a href="uCEFTypes.html#PCefAcceleratedPaintInfo">PCefAcceleratedPaintInfo</a>); stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
@ -179,7 +179,7 @@
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="on_accelerated_paint"></span><code><strong>on_accelerated_paint</strong>: procedure(self: <a href="uCEFTypes.html#PCefRenderHandler">PCefRenderHandler</a>; browser: <a href="uCEFTypes.html#PCefBrowser">PCefBrowser</a>; type_: <a href="uCEFTypes.html#TCefPaintElementType">TCefPaintElementType</a>; dirtyRectsCount: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; const dirtyRects: <a href="uCEFTypes.html#PCefRectArray">PCefRectArray</a>; shared_handle: Pointer); stdcall;</code></td>
|
||||
<td class="itemcode"><span id="on_accelerated_paint"></span><code><strong>on_accelerated_paint</strong>: procedure(self: <a href="uCEFTypes.html#PCefRenderHandler">PCefRenderHandler</a>; browser: <a href="uCEFTypes.html#PCefBrowser">PCefBrowser</a>; type_: <a href="uCEFTypes.html#TCefPaintElementType">TCefPaintElementType</a>; dirtyRectsCount: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; const dirtyRects: <a href="uCEFTypes.html#PCefRectArray">PCefRectArray</a>; const info: <a href="uCEFTypes.html#PCefAcceleratedPaintInfo">PCefAcceleratedPaintInfo</a>); stdcall;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
|
@ -121,6 +121,22 @@
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefRequestContext.html#set_content_setting">set_content_setting</a></strong>: procedure(self: <a href="uCEFTypes.html#PCefRequestContext">PCefRequestContext</a>; const requesting_url, top_level_url: <a href="uCEFTypes.html#PCefString">PCefString</a>; content_type: <a href="uCEFTypes.html#TCefContentSettingTypes">TCefContentSettingTypes</a>; value: <a href="uCEFTypes.html#TCefContentSettingValues">TCefContentSettingValues</a>); stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefRequestContext.html#set_chrome_color_scheme">set_chrome_color_scheme</a></strong>: procedure(self: <a href="uCEFTypes.html#PCefRequestContext">PCefRequestContext</a>; variant: <a href="uCEFTypes.html#TCefColorVariant">TCefColorVariant</a>; user_color: <a href="uCEFTypes.html#TCefColor">TCefColor</a>); stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefRequestContext.html#get_chrome_color_scheme_mode">get_chrome_color_scheme_mode</a></strong>: function(self: <a href="uCEFTypes.html#PCefRequestContext">PCefRequestContext</a>): <a href="uCEFTypes.html#TCefColorVariant">TCefColorVariant</a>; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefRequestContext.html#get_chrome_color_scheme_color">get_chrome_color_scheme_color</a></strong>: function(self: <a href="uCEFTypes.html#PCefRequestContext">PCefRequestContext</a>): <a href="uCEFTypes.html#TCefColor">TCefColor</a>; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefRequestContext.html#get_chrome_color_scheme_variant">get_chrome_color_scheme_variant</a></strong>: function(self: <a href="uCEFTypes.html#PCefRequestContext">PCefRequestContext</a>): <a href="uCEFTypes.html#TCefColorVariant">TCefColorVariant</a>; stdcall;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2 class="description">Description</h2>
|
||||
<h3 class="detail">Fields</h3>
|
||||
@ -308,6 +324,38 @@
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="set_chrome_color_scheme"></span><code><strong>set_chrome_color_scheme</strong>: procedure(self: <a href="uCEFTypes.html#PCefRequestContext">PCefRequestContext</a>; variant: <a href="uCEFTypes.html#TCefColorVariant">TCefColorVariant</a>; user_color: <a href="uCEFTypes.html#TCefColor">TCefColor</a>); stdcall;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="get_chrome_color_scheme_mode"></span><code><strong>get_chrome_color_scheme_mode</strong>: function(self: <a href="uCEFTypes.html#PCefRequestContext">PCefRequestContext</a>): <a href="uCEFTypes.html#TCefColorVariant">TCefColorVariant</a>; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="get_chrome_color_scheme_color"></span><code><strong>get_chrome_color_scheme_color</strong>: function(self: <a href="uCEFTypes.html#PCefRequestContext">PCefRequestContext</a>): <a href="uCEFTypes.html#TCefColor">TCefColor</a>; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="get_chrome_color_scheme_variant"></span><code><strong>get_chrome_color_scheme_variant</strong>: function(self: <a href="uCEFTypes.html#PCefRequestContext">PCefRequestContext</a>): <a href="uCEFTypes.html#TCefColorVariant">TCefColorVariant</a>; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<hr><span class="appinfo"><em>Generated by <a href="https://pasdoc.github.io/">PasDoc 0.16.0-snapshot</a>. </em>
|
||||
</span>
|
||||
</body></html>
|
||||
|
@ -63,7 +63,15 @@
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefRequestHandler.html#on_render_process_terminated">on_render_process_terminated</a></strong>: procedure(self: <a href="uCEFTypes.html#PCefRequestHandler">PCefRequestHandler</a>; browser: <a href="uCEFTypes.html#PCefBrowser">PCefBrowser</a>; status: <a href="uCEFTypes.html#TCefTerminationStatus">TCefTerminationStatus</a>); stdcall;</code></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefRequestHandler.html#on_render_process_unresponsive">on_render_process_unresponsive</a></strong>: function(self: <a href="uCEFTypes.html#PCefRequestHandler">PCefRequestHandler</a>; browser: <a href="uCEFTypes.html#PCefBrowser">PCefBrowser</a>; callback: <a href="uCEFTypes.html#PCefUnresponsiveProcessCallback">PCefUnresponsiveProcessCallback</a>): integer; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefRequestHandler.html#on_render_process_responsive">on_render_process_responsive</a></strong>: procedure(self: <a href="uCEFTypes.html#PCefRequestHandler">PCefRequestHandler</a>; browser: <a href="uCEFTypes.html#PCefBrowser">PCefBrowser</a>); stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefRequestHandler.html#on_render_process_terminated">on_render_process_terminated</a></strong>: procedure(self: <a href="uCEFTypes.html#PCefRequestHandler">PCefRequestHandler</a>; browser: <a href="uCEFTypes.html#PCefBrowser">PCefBrowser</a>; status: <a href="uCEFTypes.html#TCefTerminationStatus">TCefTerminationStatus</a>; error_code: integer; const error_string: <a href="uCEFTypes.html#PCefString">PCefString</a>); stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
@ -139,7 +147,23 @@
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="on_render_process_terminated"></span><code><strong>on_render_process_terminated</strong>: procedure(self: <a href="uCEFTypes.html#PCefRequestHandler">PCefRequestHandler</a>; browser: <a href="uCEFTypes.html#PCefBrowser">PCefBrowser</a>; status: <a href="uCEFTypes.html#TCefTerminationStatus">TCefTerminationStatus</a>); stdcall;</code></td>
|
||||
<td class="itemcode"><span id="on_render_process_unresponsive"></span><code><strong>on_render_process_unresponsive</strong>: function(self: <a href="uCEFTypes.html#PCefRequestHandler">PCefRequestHandler</a>; browser: <a href="uCEFTypes.html#PCefBrowser">PCefBrowser</a>; callback: <a href="uCEFTypes.html#PCefUnresponsiveProcessCallback">PCefUnresponsiveProcessCallback</a>): integer; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="on_render_process_responsive"></span><code><strong>on_render_process_responsive</strong>: procedure(self: <a href="uCEFTypes.html#PCefRequestHandler">PCefRequestHandler</a>; browser: <a href="uCEFTypes.html#PCefBrowser">PCefBrowser</a>); stdcall;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="on_render_process_terminated"></span><code><strong>on_render_process_terminated</strong>: procedure(self: <a href="uCEFTypes.html#PCefRequestHandler">PCefRequestHandler</a>; browser: <a href="uCEFTypes.html#PCefBrowser">PCefBrowser</a>; status: <a href="uCEFTypes.html#TCefTerminationStatus">TCefTerminationStatus</a>; error_code: integer; const error_string: <a href="uCEFTypes.html#PCefString">PCefString</a>); stdcall;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
|
73
docs/html/uCEFTypes.TCefUnresponsiveProcessCallback.html
Normal file
73
docs/html/uCEFTypes.TCefUnresponsiveProcessCallback.html
Normal file
@ -0,0 +1,73 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFTypes: Record TCefUnresponsiveProcessCallback</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="generator" content="PasDoc 0.16.0-snapshot">
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<link rel="StyleSheet" type="text/css" href="pasdoc.css">
|
||||
</head>
|
||||
<body>
|
||||
<span id="TCefUnresponsiveProcessCallback"></span><h1 class="cio">Record TCefUnresponsiveProcessCallback</h1>
|
||||
<div class="sections">
|
||||
<div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section">Hierarchy</div><div class="one_section"><a class="section" href="#PasDoc-Fields">Fields</a></div><div class="one_section">Methods</div><div class="one_section">Properties</div></div>
|
||||
<span id="PasDoc-Description"></span><h2 class="unit">Unit</h2>
|
||||
<p class="unitlink">
|
||||
<a href="uCEFTypes.html">uCEFTypes</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCefUnresponsiveProcessCallback = record</code></p>
|
||||
<h2 class="description">Description</h2>
|
||||
<p>
|
||||
Callback structure for asynchronous handling of an unresponsive process. </p>
|
||||
<p>
|
||||
|
||||
|
||||
<p>Implemented by ICefUnresponsiveProcessCallback.
|
||||
|
||||
<p><see href="<a href="https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/cef_unresponsive_process_callback_capi.h">https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/cef_unresponsive_process_callback_capi.h</a>">CEF source file: /include/capi/cef_unresponsive_process_callback_capi.h (cef_unresponsive_process_callback_t))</p>
|
||||
<h2 class="overview">Overview</h2>
|
||||
<span id="PasDoc-Fields"></span><h3 class="summary">Fields</h3>
|
||||
<table class="summary wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefUnresponsiveProcessCallback.html#base">base</a></strong>: <a href="uCEFTypes.TCefBaseRefCounted.html">TCefBaseRefCounted</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefUnresponsiveProcessCallback.html#wait">wait</a></strong>: procedure(self: <a href="uCEFTypes.html#PCefUnresponsiveProcessCallback">PCefUnresponsiveProcessCallback</a>); stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefUnresponsiveProcessCallback.html#terminate">terminate</a></strong>: procedure(self: <a href="uCEFTypes.html#PCefUnresponsiveProcessCallback">PCefUnresponsiveProcessCallback</a>); stdcall;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2 class="description">Description</h2>
|
||||
<h3 class="detail">Fields</h3>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="base"></span><code><strong>base</strong>: <a href="uCEFTypes.TCefBaseRefCounted.html">TCefBaseRefCounted</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="wait"></span><code><strong>wait</strong>: procedure(self: <a href="uCEFTypes.html#PCefUnresponsiveProcessCallback">PCefUnresponsiveProcessCallback</a>); stdcall;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="terminate"></span><code><strong>terminate</strong>: procedure(self: <a href="uCEFTypes.html#PCefUnresponsiveProcessCallback">PCefUnresponsiveProcessCallback</a>); stdcall;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<hr><span class="appinfo"><em>Generated by <a href="https://pasdoc.github.io/">PasDoc 0.16.0-snapshot</a>. </em>
|
||||
</span>
|
||||
</body></html>
|
@ -211,25 +211,29 @@
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefView.html#convert_point_to_screen">convert_point_to_screen</a></strong>: function(self: <a href="uCEFTypes.html#PCefView">PCefView</a>; point: <a href="uCEFTypes.html#PCefPoint">PCefPoint</a>): Integer; stdcall;</code></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefView.html#get_theme_color">get_theme_color</a></strong>: function(self: <a href="uCEFTypes.html#PCefView">PCefView</a>; color_id: integer): <a href="uCEFTypes.html#TCefColor">TCefColor</a>; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefView.html#convert_point_to_screen">convert_point_to_screen</a></strong>: function(self: <a href="uCEFTypes.html#PCefView">PCefView</a>; point: <a href="uCEFTypes.html#PCefPoint">PCefPoint</a>): Integer; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefView.html#convert_point_from_screen">convert_point_from_screen</a></strong>: function(self: <a href="uCEFTypes.html#PCefView">PCefView</a>; point: <a href="uCEFTypes.html#PCefPoint">PCefPoint</a>): Integer; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefView.html#convert_point_to_window">convert_point_to_window</a></strong>: function(self: <a href="uCEFTypes.html#PCefView">PCefView</a>; point: <a href="uCEFTypes.html#PCefPoint">PCefPoint</a>): Integer; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefView.html#convert_point_from_window">convert_point_from_window</a></strong>: function(self: <a href="uCEFTypes.html#PCefView">PCefView</a>; point: <a href="uCEFTypes.html#PCefPoint">PCefPoint</a>): Integer; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefView.html#convert_point_to_view">convert_point_to_view</a></strong>: function(self, view: <a href="uCEFTypes.html#PCefView">PCefView</a>; point: <a href="uCEFTypes.html#PCefPoint">PCefPoint</a>): Integer; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefView.html#convert_point_from_view">convert_point_from_view</a></strong>: function(self, view: <a href="uCEFTypes.html#PCefView">PCefView</a>; point: <a href="uCEFTypes.html#PCefPoint">PCefPoint</a>): Integer; stdcall;</code></td>
|
||||
</tr>
|
||||
@ -599,6 +603,14 @@
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="get_theme_color"></span><code><strong>get_theme_color</strong>: function(self: <a href="uCEFTypes.html#PCefView">PCefView</a>; color_id: integer): <a href="uCEFTypes.html#TCefColor">TCefColor</a>; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="convert_point_to_screen"></span><code><strong>convert_point_to_screen</strong>: function(self: <a href="uCEFTypes.html#PCefView">PCefView</a>; point: <a href="uCEFTypes.html#PCefPoint">PCefPoint</a>): Integer; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
|
@ -73,6 +73,10 @@
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefViewDelegate.html#on_blur">on_blur</a></strong>: procedure(self: <a href="uCEFTypes.html#PCefViewDelegate">PCefViewDelegate</a>; view: <a href="uCEFTypes.html#PCefView">PCefView</a>); stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefViewDelegate.html#on_theme_changed">on_theme_changed</a></strong>: procedure(self: <a href="uCEFTypes.html#PCefViewDelegate">PCefViewDelegate</a>; view: <a href="uCEFTypes.html#PCefView">PCefView</a>); stdcall;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2 class="description">Description</h2>
|
||||
<h3 class="detail">Fields</h3>
|
||||
@ -164,6 +168,14 @@
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="on_theme_changed"></span><code><strong>on_theme_changed</strong>: procedure(self: <a href="uCEFTypes.html#PCefViewDelegate">PCefViewDelegate</a>; view: <a href="uCEFTypes.html#PCefView">PCefView</a>); stdcall;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<hr><span class="appinfo"><em>Generated by <a href="https://pasdoc.github.io/">PasDoc 0.16.0-snapshot</a>. </em>
|
||||
</span>
|
||||
</body></html>
|
||||
|
@ -185,6 +185,18 @@
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefWindow.html#remove_all_accelerators">remove_all_accelerators</a></strong>: procedure(self: <a href="uCEFTypes.html#PCefWindow">PCefWindow</a>); stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefWindow.html#set_theme_color">set_theme_color</a></strong>: procedure(self: <a href="uCEFTypes.html#PCefWindow">PCefWindow</a>; color_id: integer; color: <a href="uCEFTypes.html#TCefColor">TCefColor</a>); stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefWindow.html#theme_changed">theme_changed</a></strong>: procedure(self: <a href="uCEFTypes.html#PCefWindow">PCefWindow</a>); stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefWindow.html#get_runtime_style">get_runtime_style</a></strong>: function(self: <a href="uCEFTypes.html#PCefWindow">PCefWindow</a>): <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>; stdcall;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2 class="description">Description</h2>
|
||||
<h3 class="detail">Fields</h3>
|
||||
@ -500,6 +512,30 @@
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="set_theme_color"></span><code><strong>set_theme_color</strong>: procedure(self: <a href="uCEFTypes.html#PCefWindow">PCefWindow</a>; color_id: integer; color: <a href="uCEFTypes.html#TCefColor">TCefColor</a>); stdcall;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="theme_changed"></span><code><strong>theme_changed</strong>: procedure(self: <a href="uCEFTypes.html#PCefWindow">PCefWindow</a>); stdcall;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="get_runtime_style"></span><code><strong>get_runtime_style</strong>: function(self: <a href="uCEFTypes.html#PCefWindow">PCefWindow</a>): <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<hr><span class="appinfo"><em>Generated by <a href="https://pasdoc.github.io/">PasDoc 0.16.0-snapshot</a>. </em>
|
||||
</span>
|
||||
</body></html>
|
||||
|
@ -83,32 +83,44 @@
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefWindowDelegate.html#get_titlebar_height">get_titlebar_height</a></strong>: function(self: <a href="uCEFTypes.html#PCefWindowDelegate">PCefWindowDelegate</a>; window: <a href="uCEFTypes.html#PCefWindow">PCefWindow</a>; titlebar_height: PSingle): Integer; stdcall;</code></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefWindowDelegate.html#get_titlebar_height">get_titlebar_height</a></strong>: function(self: <a href="uCEFTypes.html#PCefWindowDelegate">PCefWindowDelegate</a>; window: <a href="uCEFTypes.html#PCefWindow">PCefWindow</a>; titlebar_height: System.PSingle): Integer; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefWindowDelegate.html#accepts_first_mouse">accepts_first_mouse</a></strong>: function(self: <a href="uCEFTypes.html#PCefWindowDelegate">PCefWindowDelegate</a>; window: <a href="uCEFTypes.html#PCefWindow">PCefWindow</a>): <a href="uCEFTypes.html#TCefState">TCefState</a>; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefWindowDelegate.html#can_resize">can_resize</a></strong>: function(self: <a href="uCEFTypes.html#PCefWindowDelegate">PCefWindowDelegate</a>; window: <a href="uCEFTypes.html#PCefWindow">PCefWindow</a>): Integer; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefWindowDelegate.html#can_maximize">can_maximize</a></strong>: function(self: <a href="uCEFTypes.html#PCefWindowDelegate">PCefWindowDelegate</a>; window: <a href="uCEFTypes.html#PCefWindow">PCefWindow</a>): Integer; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefWindowDelegate.html#can_minimize">can_minimize</a></strong>: function(self: <a href="uCEFTypes.html#PCefWindowDelegate">PCefWindowDelegate</a>; window: <a href="uCEFTypes.html#PCefWindow">PCefWindow</a>): Integer; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefWindowDelegate.html#can_close">can_close</a></strong>: function(self: <a href="uCEFTypes.html#PCefWindowDelegate">PCefWindowDelegate</a>; window: <a href="uCEFTypes.html#PCefWindow">PCefWindow</a>): Integer; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefWindowDelegate.html#on_accelerator">on_accelerator</a></strong>: function(self: <a href="uCEFTypes.html#PCefWindowDelegate">PCefWindowDelegate</a>; window: <a href="uCEFTypes.html#PCefWindow">PCefWindow</a>; command_id: Integer): Integer; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefWindowDelegate.html#on_key_event">on_key_event</a></strong>: function(self: <a href="uCEFTypes.html#PCefWindowDelegate">PCefWindowDelegate</a>; window: <a href="uCEFTypes.html#PCefWindow">PCefWindow</a>; const event: <a href="uCEFTypes.html#PCefKeyEvent">PCefKeyEvent</a>): Integer; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefWindowDelegate.html#on_theme_colors_changed">on_theme_colors_changed</a></strong>: procedure(self: <a href="uCEFTypes.html#PCefWindowDelegate">PCefWindowDelegate</a>; window: <a href="uCEFTypes.html#PCefWindow">PCefWindow</a>; chrome_theme: Integer); stdcall;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefWindowDelegate.html#get_window_runtime_style">get_window_runtime_style</a></strong>: function(self: <a href="uCEFTypes.html#PCefWindowDelegate">PCefWindowDelegate</a>): <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>; stdcall;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2 class="description">Description</h2>
|
||||
<h3 class="detail">Fields</h3>
|
||||
@ -219,7 +231,15 @@
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="get_titlebar_height"></span><code><strong>get_titlebar_height</strong>: function(self: <a href="uCEFTypes.html#PCefWindowDelegate">PCefWindowDelegate</a>; window: <a href="uCEFTypes.html#PCefWindow">PCefWindow</a>; titlebar_height: PSingle): Integer; stdcall;</code></td>
|
||||
<td class="itemcode"><span id="get_titlebar_height"></span><code><strong>get_titlebar_height</strong>: function(self: <a href="uCEFTypes.html#PCefWindowDelegate">PCefWindowDelegate</a>; window: <a href="uCEFTypes.html#PCefWindow">PCefWindow</a>; titlebar_height: System.PSingle): Integer; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="accepts_first_mouse"></span><code><strong>accepts_first_mouse</strong>: function(self: <a href="uCEFTypes.html#PCefWindowDelegate">PCefWindowDelegate</a>; window: <a href="uCEFTypes.html#PCefWindow">PCefWindow</a>): <a href="uCEFTypes.html#TCefState">TCefState</a>; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
@ -272,6 +292,22 @@
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="on_theme_colors_changed"></span><code><strong>on_theme_colors_changed</strong>: procedure(self: <a href="uCEFTypes.html#PCefWindowDelegate">PCefWindowDelegate</a>; window: <a href="uCEFTypes.html#PCefWindow">PCefWindow</a>; chrome_theme: Integer); stdcall;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="get_window_runtime_style"></span><code><strong>get_window_runtime_style</strong>: function(self: <a href="uCEFTypes.html#PCefWindowDelegate">PCefWindowDelegate</a>): <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>; stdcall;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<hr><span class="appinfo"><em>Generated by <a href="https://pasdoc.github.io/">PasDoc 0.16.0-snapshot</a>. </em>
|
||||
</span>
|
||||
</body></html>
|
||||
|
@ -23,7 +23,11 @@
|
||||
<p>
|
||||
|
||||
|
||||
<p><see href="<a href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_win.h">https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_win.h</a>">CEF source file: /include/internal/cef_types_win.h (cef_window_info_t))</p>
|
||||
<p><see href="<a href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_win.h">https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_win.h</a>">CEF source file: /include/internal/cef_types_win.h (cef_window_info_t))
|
||||
|
||||
<p><see href="<a href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_mac.h">https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_mac.h</a>">CEF source file: /include/internal/cef_types_mac.h (cef_window_info_t))
|
||||
|
||||
<p><see href="<a href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_linux.h">https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_linux.h</a>">CEF source file: /include/internal/cef_types_linux.h (cef_window_info_t))</p>
|
||||
<h2 class="overview">Overview</h2>
|
||||
<span id="PasDoc-Fields"></span><h3 class="summary">Fields</h3>
|
||||
<table class="summary wide_list">
|
||||
@ -67,6 +71,10 @@
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefWindowInfo.html#window">window</a></strong>: <a href="uCEFTypes.html#TCefWindowHandle">TCefWindowHandle</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFTypes.TCefWindowInfo.html#runtime_style">runtime_style</a></strong>: <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2 class="description">Description</h2>
|
||||
<h3 class="detail">Fields</h3>
|
||||
@ -160,6 +168,16 @@
|
||||
Handle for the new browser window. Only used with windowed rendering. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="runtime_style"></span><code><strong>runtime_style</strong>: <a href="uCEFTypes.html#TCefRuntimeStyle">TCefRuntimeStyle</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Optionally change the runtime style. Alloy style will always be used if |windowless_rendering_enabled| is true. See TCefRuntimeStyle documentation for details. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<hr><span class="appinfo"><em>Generated by <a href="https://pasdoc.github.io/">PasDoc 0.16.0-snapshot</a>. </em>
|
||||
</span>
|
||||
</body></html>
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,72 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFUnresponsiveProcessCallback: Class TCefUnresponsiveProcessCallbackRef</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="generator" content="PasDoc 0.16.0-snapshot">
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<link rel="StyleSheet" type="text/css" href="pasdoc.css">
|
||||
</head>
|
||||
<body>
|
||||
<span id="TCefUnresponsiveProcessCallbackRef"></span><h1 class="cio">Class TCefUnresponsiveProcessCallbackRef</h1>
|
||||
<div class="sections">
|
||||
<div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Hierarchy">Hierarchy</a></div><div class="one_section">Fields</div><div class="one_section"><a class="section" href="#PasDoc-Methods">Methods</a></div><div class="one_section">Properties</div></div>
|
||||
<span id="PasDoc-Description"></span><h2 class="unit">Unit</h2>
|
||||
<p class="unitlink">
|
||||
<a href="uCEFUnresponsiveProcessCallback.html">uCEFUnresponsiveProcessCallback</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCefUnresponsiveProcessCallbackRef = class(<a class="normal" href="uCEFBaseRefCounted.TCefBaseRefCountedRef.html">TCefBaseRefCountedRef</a>, <a class="normal" href="uCEFInterfaces.ICefUnresponsiveProcessCallback.html">ICefUnresponsiveProcessCallback</a>)</code></p>
|
||||
<h2 class="description">Description</h2>
|
||||
<p class="nodescription">This item has no description.</p><span id="PasDoc-Hierarchy"></span><h2 class="hierarchy">Hierarchy</h2>
|
||||
<ul class="hierarchy"><li class="ancestor">TInterfacedObject</li>
|
||||
<li class="ancestor"><a class="normal" href="uCEFBaseRefCounted.TCefBaseRefCountedRef.html">TCefBaseRefCountedRef</a></li>
|
||||
<li class="thisitem">TCefUnresponsiveProcessCallbackRef</li></ul><h2 class="overview">Overview</h2>
|
||||
<span id="PasDoc-Methods"></span><h3 class="summary">Methods</h3>
|
||||
<table class="summary wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFUnresponsiveProcessCallback.TCefUnresponsiveProcessCallbackRef.html#Wait">Wait</a></strong>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFUnresponsiveProcessCallback.TCefUnresponsiveProcessCallbackRef.html#Terminate">Terminate</a></strong>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>class function <strong><a href="uCEFUnresponsiveProcessCallback.TCefUnresponsiveProcessCallbackRef.html#UnWrap-Pointer-">UnWrap</a></strong>(data: Pointer): <a href="uCEFInterfaces.ICefUnresponsiveProcessCallback.html">ICefUnresponsiveProcessCallback</a>;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2 class="description">Description</h2>
|
||||
<h3 class="detail">Methods</h3>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="Wait"></span><code>procedure <strong>Wait</strong>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefUnresponsiveProcessCallback.html#Wait">ICefUnresponsiveProcessCallback.Wait</a>.</p><p>
|
||||
Reset the timeout for the unresponsive process. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="Terminate"></span><code>procedure <strong>Terminate</strong>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefUnresponsiveProcessCallback.html#Terminate">ICefUnresponsiveProcessCallback.Terminate</a>.</p><p>
|
||||
Terminate the unresponsive process. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="UnWrap-Pointer-"></span><code>class function <strong>UnWrap</strong>(data: Pointer): <a href="uCEFInterfaces.ICefUnresponsiveProcessCallback.html">ICefUnresponsiveProcessCallback</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<hr><span class="appinfo"><em>Generated by <a href="https://pasdoc.github.io/">PasDoc 0.16.0-snapshot</a>. </em>
|
||||
</span>
|
||||
</body></html>
|
29
docs/html/uCEFUnresponsiveProcessCallback.html
Normal file
29
docs/html/uCEFUnresponsiveProcessCallback.html
Normal file
@ -0,0 +1,29 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFUnresponsiveProcessCallback</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="generator" content="PasDoc 0.16.0-snapshot">
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<link rel="StyleSheet" type="text/css" href="pasdoc.css">
|
||||
</head>
|
||||
<body>
|
||||
<h1 class="unit">Unit uCEFUnresponsiveProcessCallback</h1>
|
||||
<div class="sections">
|
||||
<div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section">Uses</div><div class="one_section"><a class="section" href="#PasDoc-Classes">Classes, Interfaces, Objects and Records</a></div><div class="one_section">Functions and Procedures</div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div>
|
||||
<span id="PasDoc-Description"></span><h2 class="description">Description</h2>
|
||||
<p class="nodescription">This item has no description.</p><span id="PasDoc-Uses"></span><h2 class="overview">Overview</h2>
|
||||
<span id="PasDoc-Classes"></span><h3 class="cio">Classes, Interfaces, Objects and Records</h3>
|
||||
<table class="classestable wide_list">
|
||||
<tr class="listheader">
|
||||
<th class="itemname">Name</th>
|
||||
<th class="itemdesc">Description</th>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname">Class <a class="bold" href="uCEFUnresponsiveProcessCallback.TCefUnresponsiveProcessCallbackRef.html"><code>TCefUnresponsiveProcessCallbackRef</code></a></td>
|
||||
<td class="itemdesc"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr><span class="appinfo"><em>Generated by <a href="https://pasdoc.github.io/">PasDoc 0.16.0-snapshot</a>. </em>
|
||||
</span>
|
||||
</body></html>
|
@ -208,29 +208,33 @@
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFView.TCefViewRef.html#ConvertPointToScreen-TCefPoint-">ConvertPointToScreen</a></strong>(var point: <a href="uCEFTypes.TCefPoint.html">TCefPoint</a>): boolean;</code></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFView.TCefViewRef.html#GetThemeColor-integer-">GetThemeColor</a></strong>(color_id: integer): <a href="uCEFTypes.html#TCefColor">TCefColor</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFView.TCefViewRef.html#ConvertPointToScreen-TCefPoint-">ConvertPointToScreen</a></strong>(var point: <a href="uCEFTypes.TCefPoint.html">TCefPoint</a>): boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFView.TCefViewRef.html#ConvertPointFromScreen-TCefPoint-">ConvertPointFromScreen</a></strong>(var point: <a href="uCEFTypes.TCefPoint.html">TCefPoint</a>): boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFView.TCefViewRef.html#ConvertPointToWindow-TCefPoint-">ConvertPointToWindow</a></strong>(var point: <a href="uCEFTypes.TCefPoint.html">TCefPoint</a>): boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFView.TCefViewRef.html#ConvertPointFromWindow-TCefPoint-">ConvertPointFromWindow</a></strong>(var point: <a href="uCEFTypes.TCefPoint.html">TCefPoint</a>): boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFView.TCefViewRef.html#ConvertPointToView-ICefView-TCefPoint-">ConvertPointToView</a></strong>(const view : <a href="uCEFInterfaces.ICefView.html">ICefView</a>; var point: <a href="uCEFTypes.TCefPoint.html">TCefPoint</a>): boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFView.TCefViewRef.html#ConvertPointFromView-ICefView-TCefPoint-">ConvertPointFromView</a></strong>(const view : <a href="uCEFInterfaces.ICefView.html">ICefView</a>; var point: <a href="uCEFTypes.TCefPoint.html">TCefPoint</a>): boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>class function <strong><a href="uCEFView.TCefViewRef.html#UnWrap-Pointer-">UnWrap</a></strong>(data: Pointer): <a href="uCEFInterfaces.ICefView.html">ICefView</a>;</code></td>
|
||||
</tr>
|
||||
@ -664,7 +668,7 @@
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Sets the background color for this View. </p>
|
||||
Sets the background color for this View. The background color will be automatically reset when ICefViewDelegate.OnThemeChanged is called. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
@ -674,7 +678,17 @@
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the background color for this View. </p>
|
||||
Returns the background color for this View. If the background color is unset then the current `GetThemeColor(CEF_ColorPrimaryBackground)` value will be returned. If this View belongs to an overlay (created with ICefWindow.AddOverlayView), and the background color is unset, then a value of transparent (0) will be returned. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="GetThemeColor-integer-"></span><code>function <strong>GetThemeColor</strong>(color_id: integer): <a href="uCEFTypes.html#TCefColor">TCefColor</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the current theme color associated with |color_id|, or the placeholder color (red) if unset. See cef_color_ids.h for standard ID values. Standard colors can be overridden and custom colors can be added using ICefWindow.SetThemeColor. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
|
@ -67,6 +67,10 @@
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFViewComponent.TCEFViewComponent.html#FOnThemeChanged">FOnThemeChanged</a></strong>: <a href="uCEFViewsFrameworkEvents.html#TOnThemeChangedEvent">TOnThemeChangedEvent</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFViewComponent.TCEFViewComponent.html#FComponentID">FComponentID</a></strong>: integer;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -294,40 +298,48 @@
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFViewComponent.TCEFViewComponent.html#doCreateCustomView">doCreateCustomView</a></strong>; virtual;</code></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFViewComponent.TCEFViewComponent.html#doOnThemeChanged-ICefView-">doOnThemeChanged</a></strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>); virtual;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFViewComponent.TCEFViewComponent.html#doCreateCustomView">doCreateCustomView</a></strong>; virtual;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>constructor <strong><a href="uCEFViewComponent.TCEFViewComponent.html#Create-TComponent-">Create</a></strong>(AOwner: TComponent); override;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFViewComponent.TCEFViewComponent.html#AfterConstruction">AfterConstruction</a></strong>; override;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFViewComponent.TCEFViewComponent.html#BeforeDestruction">BeforeDestruction</a></strong>; override;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFViewComponent.TCEFViewComponent.html#ToStringEx-boolean-">ToStringEx</a></strong>(include_children: boolean): <a href="uCEFTypes.html#ustring">ustring</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFViewComponent.TCEFViewComponent.html#IsSame-ICefView-">IsSame</a></strong>(const that: <a href="uCEFInterfaces.ICefView.html">ICefView</a>): boolean;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFViewComponent.TCEFViewComponent.html#SizeToPreferredSize">SizeToPreferredSize</a></strong>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFViewComponent.TCEFViewComponent.html#InvalidateLayout">InvalidateLayout</a></strong>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFViewComponent.TCEFViewComponent.html#RequestFocus">RequestFocus</a></strong>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFViewComponent.TCEFViewComponent.html#GetThemeColor-integer-">GetThemeColor</a></strong>(color_id: integer): <a href="uCEFTypes.html#TCefColor">TCefColor</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFViewComponent.TCEFViewComponent.html#ConvertPointToScreen-TCefPoint-">ConvertPointToScreen</a></strong>(var point: <a href="uCEFTypes.TCefPoint.html">TCefPoint</a>): boolean;</code></td>
|
||||
@ -519,6 +531,10 @@
|
||||
<td class="visibility"><a href="legend.html"><img src="published.gif" alt="Published" title="Published"></a></td>
|
||||
<td class="itemcode"><code>property <strong><a href="uCEFViewComponent.TCEFViewComponent.html#OnBlur">OnBlur</a></strong> : <a href="uCEFViewsFrameworkEvents.html#TOnBlurEvent">TOnBlurEvent</a> read <a href="uCEFViewComponent.TCEFViewComponent.html#FOnBlur">FOnBlur</a> write <a href="uCEFViewComponent.TCEFViewComponent.html#FOnBlur">FOnBlur</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="published.gif" alt="Published" title="Published"></a></td>
|
||||
<td class="itemcode"><code>property <strong><a href="uCEFViewComponent.TCEFViewComponent.html#OnThemeChanged">OnThemeChanged</a></strong> : <a href="uCEFViewsFrameworkEvents.html#TOnThemeChangedEvent">TOnThemeChangedEvent</a> read <a href="uCEFViewComponent.TCEFViewComponent.html#FOnThemeChanged">FOnThemeChanged</a> write <a href="uCEFViewComponent.TCEFViewComponent.html#FOnThemeChanged">FOnThemeChanged</a>;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2 class="description">Description</h2>
|
||||
<h3 class="detail">Fields</h3>
|
||||
@ -607,6 +623,14 @@ ICefViewDelegateEvents</p>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="FOnThemeChanged"></span><code><strong>FOnThemeChanged</strong>: <a href="uCEFViewsFrameworkEvents.html#TOnThemeChangedEvent">TOnThemeChangedEvent</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="FComponentID"></span><code><strong>FComponentID</strong>: integer;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
@ -1058,6 +1082,14 @@ ICefViewDelegateEvents</p>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="doOnThemeChanged-ICefView-"></span><code>procedure <strong>doOnThemeChanged</strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>); virtual;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="doCreateCustomView"></span><code>procedure <strong>doCreateCustomView</strong>; virtual;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
@ -1142,6 +1174,16 @@ Custom</p>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="GetThemeColor-integer-"></span><code>function <strong>GetThemeColor</strong>(color_id: integer): <a href="uCEFTypes.html#TCefColor">TCefColor</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the current theme color associated with |color_id|, or the placeholder color (red) if unset. See cef_color_ids.h for standard ID values. Standard colors can be overridden and custom colors can be added using ICefWindow.SetThemeColor. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="ConvertPointToScreen-TCefPoint-"></span><code>function <strong>ConvertPointToScreen</strong>(var point: <a href="uCEFTypes.TCefPoint.html">TCefPoint</a>): boolean;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
@ -1427,7 +1469,7 @@ Custom</p>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the background color for this View. </p>
|
||||
Returns the background color for this View. If the background color is unset then the current `GetThemeColor(CEF_ColorPrimaryBackground)` value will be returned. If this View belongs to an overlay (created with ICefWindow.AddOverlayView), and the background color is unset, then a value of transparent (0) will be returned. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
@ -1610,6 +1652,35 @@ Custom</p>
|
||||
Called when |view| loses focus. </p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="published.gif" alt="Published" title="Published"></a></td>
|
||||
<td class="itemcode"><span id="OnThemeChanged"></span><code>property <strong>OnThemeChanged</strong> : <a href="uCEFViewsFrameworkEvents.html#TOnThemeChangedEvent">TOnThemeChangedEvent</a> read <a href="uCEFViewComponent.TCEFViewComponent.html#FOnThemeChanged">FOnThemeChanged</a> write <a href="uCEFViewComponent.TCEFViewComponent.html#FOnThemeChanged">FOnThemeChanged</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
(
|
||||
|
||||
<p>Called when the theme for |view| has changed, after the new theme colors have already been applied. Views are notified via the component hierarchy in depth-first reverse order (children before parents).
|
||||
|
||||
<p>This will be called in the following cases:
|
||||
|
||||
<p></p>
|
||||
|
||||
<pre class="preformatted">
|
||||
1. When |view|, or a parent of |view|, is added to a Window.
|
||||
2. When the native/OS or Chrome theme changes for the Window that contains
|
||||
|view|. See ICefWindowDelegate.OnThemeColorsChanged documentation.
|
||||
3. When the client explicitly calls ICefWindow.ThemeChanged on the
|
||||
Window that contains |view|.</pre>
|
||||
|
||||
<p>
|
||||
|
||||
<p>Optionally use this callback to override the new per-View theme colors by calling ICefView.SetBackgroundColor or the appropriate component- specific function. See ICefWindow.SetThemeColor documentation for how to customize additional Window theme colors.
|
||||
|
||||
<p>(</p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<hr><span class="appinfo"><em>Generated by <a href="https://pasdoc.github.io/">PasDoc 0.16.0-snapshot</a>. </em>
|
||||
</span>
|
||||
</body></html>
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user