mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2024-11-15 07:45:56 +01:00
Update to CEF 122.1.8
This commit is contained in:
parent
be7fa8cb05
commit
7093cc9a6a
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 121.3.15 which includes Chromium 121.0.6167.184.
|
||||
CEF4Delphi uses CEF 122.1.8 which includes Chromium 122.0.6261.69.
|
||||
|
||||
The CEF binaries used by CEF4Delphi are available for download at Spotify :
|
||||
* [Windows 32 bits](https://cef-builds.spotifycdn.com/cef_binary_121.3.15%2Bg4d3b0b4%2Bchromium-121.0.6167.184_windows32.tar.bz2)
|
||||
* [Windows 64 bits](https://cef-builds.spotifycdn.com/cef_binary_121.3.15%2Bg4d3b0b4%2Bchromium-121.0.6167.184_windows64.tar.bz2)
|
||||
* [Linux x86 64 bits](https://cef-builds.spotifycdn.com/cef_binary_121.3.15%2Bg4d3b0b4%2Bchromium-121.0.6167.184_linux64.tar.bz2)
|
||||
* [Linux ARM 32 bits](https://cef-builds.spotifycdn.com/cef_binary_121.3.15%2Bg4d3b0b4%2Bchromium-121.0.6167.184_linuxarm.tar.bz2)
|
||||
* [Linux ARM 64 bits](https://cef-builds.spotifycdn.com/cef_binary_121.3.15%2Bg4d3b0b4%2Bchromium-121.0.6167.184_linuxarm64.tar.bz2)
|
||||
* [MacOS x86 64 bits](https://cef-builds.spotifycdn.com/cef_binary_121.3.15%2Bg4d3b0b4%2Bchromium-121.0.6167.184_macosx64.tar.bz2)
|
||||
* [Windows 32 bits](https://cef-builds.spotifycdn.com/cef_binary_122.1.8%2Bg40272b5%2Bchromium-122.0.6261.69_windows32.tar.bz2)
|
||||
* [Windows 64 bits](https://cef-builds.spotifycdn.com/cef_binary_122.1.8%2Bg40272b5%2Bchromium-122.0.6261.69_windows64.tar.bz2)
|
||||
* [Linux x86 64 bits](https://cef-builds.spotifycdn.com/cef_binary_122.1.8%2Bg40272b5%2Bchromium-122.0.6261.69_linux64.tar.bz2)
|
||||
* [Linux ARM 32 bits](https://cef-builds.spotifycdn.com/cef_binary_122.1.8%2Bg40272b5%2Bchromium-122.0.6261.69_linuxarm.tar.bz2)
|
||||
* [Linux ARM 64 bits](https://cef-builds.spotifycdn.com/cef_binary_122.1.8%2Bg40272b5%2Bchromium-122.0.6261.69_linuxarm64.tar.bz2)
|
||||
* [MacOS x86 64 bits](https://cef-builds.spotifycdn.com/cef_binary_122.1.8%2Bg40272b5%2Bchromium-122.0.6261.69_macosx64.tar.bz2)
|
||||
|
||||
CEF4Delphi was developed and tested on Delphi 12.0 and it has been tested in Delphi 7, Delphi XE, Delphi 10, Delphi 11 and Lazarus 3.0/FPC 3.2.2. CEF4Delphi includes VCL, FireMonkey (FMX) and Lazarus components.
|
||||
|
||||
|
@ -347,35 +347,23 @@ end;
|
||||
|
||||
procedure DOMVisitor_GetFrameIDs(const browser: ICefBrowser; const frame : ICefFrame);
|
||||
var
|
||||
i : NativeUInt;
|
||||
TempCount : NativeUInt;
|
||||
TempArray : TCefFrameIdentifierArray;
|
||||
TempString : ustring;
|
||||
TempMsg : ICefProcessMessage;
|
||||
TempSL : TStringList;
|
||||
begin
|
||||
TempCount := browser.FrameCount;
|
||||
TempSL := TStringList.Create;
|
||||
|
||||
if browser.GetFrameIdentifiers(TempCount, TempArray) then
|
||||
begin
|
||||
TempString := '';
|
||||
i := 0;
|
||||
if browser.GetFrameIdentifiers(TStrings(TempSL)) then
|
||||
try
|
||||
TempMsg := TCefProcessMessageRef.New(FRAMEIDS_MSGNAME);
|
||||
TempMsg.ArgumentList.SetString(0, TempSL.Text);
|
||||
|
||||
while (i < TempCount) do
|
||||
begin
|
||||
TempString := TempString + inttostr(TempArray[i]) + CRLF;
|
||||
inc(i);
|
||||
end;
|
||||
|
||||
try
|
||||
TempMsg := TCefProcessMessageRef.New(FRAMEIDS_MSGNAME);
|
||||
TempMsg.ArgumentList.SetString(0, TempString);
|
||||
|
||||
if (frame <> nil) and frame.IsValid then
|
||||
frame.SendProcessMessage(PID_BROWSER, TempMsg);
|
||||
finally
|
||||
TempMsg := nil;
|
||||
end;
|
||||
if (frame <> nil) and frame.IsValid then
|
||||
frame.SendProcessMessage(PID_BROWSER, TempMsg);
|
||||
finally
|
||||
TempMsg := nil;
|
||||
end;
|
||||
|
||||
TempSL.Free;
|
||||
end;
|
||||
|
||||
procedure GlobalCEFApp_OnFocusedNodeChanged(const browser : ICefBrowser;
|
||||
@ -822,27 +810,17 @@ end;
|
||||
|
||||
procedure TDOMVisitorFrm.CopyFrameIDs1(var aMessage : TMessage);
|
||||
var
|
||||
i : NativeUInt;
|
||||
TempCount : NativeUInt;
|
||||
TempArray : TCefFrameIdentifierArray;
|
||||
TempString : string;
|
||||
TempSL : TStringList;
|
||||
begin
|
||||
TempCount := Chromium1.FrameCount;
|
||||
TempSL := TStringList.Create;
|
||||
|
||||
if Chromium1.GetFrameIdentifiers(TempCount, TempArray) then
|
||||
if Chromium1.GetFrameIdentifiers(TStrings(TempSL)) then
|
||||
begin
|
||||
TempString := '';
|
||||
i := 0;
|
||||
|
||||
while (i < TempCount) do
|
||||
begin
|
||||
TempString := TempString + inttostr(TempArray[i]) + CRLF;
|
||||
inc(i);
|
||||
end;
|
||||
|
||||
clipboard.AsText := TempString;
|
||||
ShowStatusText('Frame IDs copied to the clipboard in the browser process (' + inttostr(TempCount) + ')');
|
||||
clipboard.AsText := TempSL.Text;
|
||||
ShowStatusText('Frame IDs copied to the clipboard in the browser process (' + inttostr(TempSL.Count) + ')');
|
||||
end;
|
||||
|
||||
TempSL.Free;
|
||||
end;
|
||||
|
||||
procedure TDOMVisitorFrm.CopyFrameIDs2(var aMessage : TMessage);
|
||||
|
@ -94,6 +94,7 @@
|
||||
<DCC_RemoteDebug>false</DCC_RemoteDebug>
|
||||
<VerInfo_Keys>CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName)</VerInfo_Keys>
|
||||
<AppDPIAwarenessMode>PerMonitor</AppDPIAwarenessMode>
|
||||
<BT_BuildType>Debug</BT_BuildType>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Cfg_2)'!=''">
|
||||
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
|
||||
|
@ -36,7 +36,6 @@ object MiniBrowserFrm: TMiniBrowserFrm
|
||||
BevelOuter = bvNone
|
||||
Enabled = False
|
||||
TabOrder = 1
|
||||
ExplicitWidth = 1176
|
||||
object NavButtonPnl: TPanel
|
||||
Left = 0
|
||||
Top = 0
|
||||
@ -116,7 +115,6 @@ object MiniBrowserFrm: TMiniBrowserFrm
|
||||
Padding.Top = 9
|
||||
Padding.Bottom = 8
|
||||
TabOrder = 1
|
||||
ExplicitWidth = 970
|
||||
object URLCbx: TComboBox
|
||||
Left = 0
|
||||
Top = 9
|
||||
@ -193,7 +191,6 @@ object MiniBrowserFrm: TMiniBrowserFrm
|
||||
'chrome://gpuhang'
|
||||
'chrome://extensions-support'
|
||||
'chrome://process-internals')
|
||||
ExplicitWidth = 970
|
||||
end
|
||||
end
|
||||
object ConfigPnl: TPanel
|
||||
@ -204,7 +201,6 @@ object MiniBrowserFrm: TMiniBrowserFrm
|
||||
Align = alRight
|
||||
BevelOuter = bvNone
|
||||
TabOrder = 2
|
||||
ExplicitLeft = 1103
|
||||
object ConfigBtn: TButton
|
||||
Left = 40
|
||||
Top = 8
|
||||
@ -245,8 +241,6 @@ object MiniBrowserFrm: TMiniBrowserFrm
|
||||
Align = alClient
|
||||
TabStop = True
|
||||
TabOrder = 0
|
||||
ExplicitWidth = 1171
|
||||
ExplicitHeight = 650
|
||||
end
|
||||
object DevTools: TCEFWindowParent
|
||||
Left = 1180
|
||||
@ -256,8 +250,6 @@ object MiniBrowserFrm: TMiniBrowserFrm
|
||||
Align = alRight
|
||||
TabOrder = 2
|
||||
Visible = False
|
||||
ExplicitLeft = 1176
|
||||
ExplicitHeight = 650
|
||||
end
|
||||
object StatusBar1: TStatusBar
|
||||
Left = 0
|
||||
@ -280,8 +272,6 @@ object MiniBrowserFrm: TMiniBrowserFrm
|
||||
item
|
||||
Width = 50
|
||||
end>
|
||||
ExplicitTop = 691
|
||||
ExplicitWidth = 1176
|
||||
end
|
||||
object Chromium1: TChromium
|
||||
OnTextResultAvailable = Chromium1TextResultAvailable
|
||||
|
@ -133,10 +133,8 @@ type
|
||||
procedure Chromium1FullScreenModeChange(Sender: TObject; const browser: ICefBrowser; fullscreen: Boolean);
|
||||
procedure Chromium1PreKeyEvent(Sender: TObject; const browser: ICefBrowser; const event: PCefKeyEvent; osEvent: TCefEventHandle; out isKeyboardShortcut, Result: Boolean);
|
||||
procedure Chromium1KeyEvent(Sender: TObject; const browser: ICefBrowser; const event: PCefKeyEvent; osEvent: TCefEventHandle; out Result: Boolean);
|
||||
procedure Chromium1ContextMenuCommand(Sender: TObject; const browser: ICefBrowser; const frame: ICefFrame; const params: ICefContextMenuParams; commandId: Integer; eventFlags: Cardinal; out Result: Boolean);
|
||||
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 Chromium1ResolvedHostAvailable(Sender: TObject; result: Integer; const resolvedIps: TStrings);
|
||||
procedure Chromium1PrefsAvailable(Sender: TObject; aResultOK: Boolean);
|
||||
procedure Chromium1BeforeDownload(Sender: TObject; const browser: ICefBrowser; const downloadItem: ICefDownloadItem; const suggestedName: ustring; const callback: ICefBeforeDownloadCallback);
|
||||
procedure Chromium1DownloadUpdated(Sender: TObject; const browser: ICefBrowser; const downloadItem: ICefDownloadItem; const callback: ICefDownloadItemCallback);
|
||||
@ -146,20 +144,22 @@ type
|
||||
procedure Chromium1RenderCompMsg(Sender: TObject; var aMessage : TMessage; var aHandled: Boolean);
|
||||
procedure Chromium1LoadingProgressChange(Sender: TObject; const browser: ICefBrowser; const progress: Double);
|
||||
procedure Chromium1LoadEnd(Sender: TObject; const browser: ICefBrowser; const frame: ICefFrame; httpStatusCode: Integer);
|
||||
procedure Chromium1LoadError(Sender: TObject; const browser: ICefBrowser; const frame: ICefFrame; errorCode: Integer; const errorText, failedUrl: ustring);
|
||||
procedure Chromium1CertificateError(Sender: TObject; const browser: ICefBrowser; certError: Integer; const requestUrl: ustring; const sslInfo: ICefSslInfo; const callback: ICefCallback; out Result: Boolean);
|
||||
procedure Chromium1NavigationVisitorResultAvailable(Sender: TObject; const entry: ICefNavigationEntry; current: Boolean; index, total: Integer; var aResult: Boolean);
|
||||
procedure Chromium1DownloadImageFinished(Sender: TObject; const imageUrl: ustring; httpStatusCode: Integer; const image: ICefImage);
|
||||
procedure Chromium1CookiesFlushed(Sender: TObject);
|
||||
procedure Chromium1ZoomPctAvailable(Sender: TObject; const aZoomPct: Double);
|
||||
procedure Chromium1DevToolsMethodResult(Sender: TObject; const browser: ICefBrowser; message_id: Integer; success: Boolean; const result: ICefValue);
|
||||
procedure Chromium1FileDialog(Sender: TObject; const browser: ICefBrowser; mode: Cardinal; const title, defaultFilePath: ustring; const acceptFilters: TStrings; const callback: ICefFileDialogCallback; var Result: Boolean);
|
||||
procedure Chromium1SelectClientCertificate(Sender: TObject; const browser: ICefBrowser; isProxy: Boolean; const host: ustring; port: Integer; certificatesCount: NativeUInt; const certificates: TCefX509CertificateArray; const callback: ICefSelectClientCertificateCallback; var aResult: Boolean);
|
||||
procedure Chromium1CursorChange(Sender: TObject; const browser: ICefBrowser; cursor_: TCefCursorHandle; cursorType: TCefCursorType; const customCursorInfo: PCefCursorInfo; var aResult: Boolean);
|
||||
procedure Chromium1CanDownload(Sender: TObject; const browser: ICefBrowser; const url, request_method: ustring; var aResult: Boolean);
|
||||
procedure Chromium1MediaAccessChange(Sender: TObject; const browser: ICefBrowser; has_video_access, has_audio_access: Boolean);
|
||||
procedure Chromium1RequestMediaAccessPermission(Sender: TObject; const browser: ICefBrowser; const frame: ICefFrame; const requesting_origin: ustring; requested_permissions: Cardinal; const callback: ICefMediaAccessCallback; var aResult: Boolean);
|
||||
procedure Chromium1ConsoleMessage(Sender: TObject; const browser: ICefBrowser; level: Cardinal; const message_, source: ustring; line: Integer; out Result: Boolean);
|
||||
procedure Chromium1CertificateError(Sender: TObject; const browser: ICefBrowser; certError: TCefErrorCode; const requestUrl: ustring; const sslInfo: ICefSslInfo; const callback: ICefCallback; out Result: Boolean);
|
||||
procedure Chromium1ConsoleMessage(Sender: TObject; const browser: ICefBrowser; level: TCefLogSeverity; const message_, source: ustring; line: Integer; out Result: Boolean);
|
||||
procedure Chromium1ContextMenuCommand(Sender: TObject; const browser: ICefBrowser; const frame: ICefFrame; const params: ICefContextMenuParams; commandId: Integer; eventFlags: TCefEventFlags; out Result: Boolean);
|
||||
procedure Chromium1FileDialog(Sender: TObject; const browser: ICefBrowser; mode: TCefFileDialogMode; const title, defaultFilePath: ustring; const acceptFilters: TStrings; const callback: ICefFileDialogCallback; var Result: Boolean);
|
||||
procedure Chromium1LoadError(Sender: TObject; const browser: ICefBrowser; const frame: ICefFrame; errorCode: TCefErrorCode; const errorText, failedUrl: ustring);
|
||||
procedure Chromium1ResolvedHostAvailable(Sender: TObject; result: TCefErrorCode; const resolvedIps: TStrings);
|
||||
|
||||
procedure BackBtnClick(Sender: TObject);
|
||||
procedure ForwardBtnClick(Sender: TObject);
|
||||
@ -505,7 +505,7 @@ begin
|
||||
end;
|
||||
|
||||
procedure TMiniBrowserFrm.Chromium1CertificateError(Sender: TObject;
|
||||
const browser: ICefBrowser; certError: Integer;
|
||||
const browser: ICefBrowser; certError: TCefErrorCode;
|
||||
const requestUrl: ustring; const sslInfo: ICefSslInfo;
|
||||
const callback: ICefCallback; out Result: Boolean);
|
||||
begin
|
||||
@ -514,7 +514,8 @@ begin
|
||||
Result := False;
|
||||
end;
|
||||
|
||||
procedure TMiniBrowserFrm.Chromium1Close(Sender: TObject; const browser: ICefBrowser; var aAction : TCefCloseBrowserAction);
|
||||
procedure TMiniBrowserFrm.Chromium1Close(Sender: TObject;
|
||||
const browser: ICefBrowser; var aAction : TCefCloseBrowserAction);
|
||||
begin
|
||||
if (browser <> nil) and
|
||||
(Chromium1.BrowserId = browser.Identifier) and
|
||||
@ -526,8 +527,8 @@ begin
|
||||
end;
|
||||
|
||||
procedure TMiniBrowserFrm.Chromium1ConsoleMessage(Sender: TObject;
|
||||
const browser: ICefBrowser; level: Cardinal; const message_,
|
||||
source: ustring; line: Integer; out Result: Boolean);
|
||||
const browser: ICefBrowser; level: TCefLogSeverity;
|
||||
const message_, source: ustring; line: Integer; out Result: Boolean);
|
||||
begin
|
||||
if (message_ = 'GlobalCEFApp_OnUncaughtException') then
|
||||
begin
|
||||
@ -539,7 +540,7 @@ end;
|
||||
procedure TMiniBrowserFrm.Chromium1ContextMenuCommand(Sender: TObject;
|
||||
const browser: ICefBrowser; const frame: ICefFrame;
|
||||
const params: ICefContextMenuParams; commandId: Integer;
|
||||
eventFlags: Cardinal; out Result: Boolean);
|
||||
eventFlags: TCefEventFlags; out Result: Boolean);
|
||||
var
|
||||
TempParam : WParam;
|
||||
TempInfo : TCefWindowInfo;
|
||||
@ -695,14 +696,10 @@ begin
|
||||
end;
|
||||
end;
|
||||
|
||||
procedure TMiniBrowserFrm.Chromium1FileDialog( Sender : TObject;
|
||||
const browser : ICefBrowser;
|
||||
mode : Cardinal;
|
||||
const title : ustring;
|
||||
const defaultFilePath : ustring;
|
||||
const acceptFilters : TStrings;
|
||||
const callback : ICefFileDialogCallback;
|
||||
var Result : Boolean);
|
||||
procedure TMiniBrowserFrm.Chromium1FileDialog(Sender: TObject;
|
||||
const browser: ICefBrowser; mode: TCefFileDialogMode;
|
||||
const title, defaultFilePath: ustring; const acceptFilters: TStrings;
|
||||
const callback: ICefFileDialogCallback; var Result: Boolean);
|
||||
begin
|
||||
Result := True;
|
||||
|
||||
@ -983,7 +980,7 @@ begin
|
||||
end;
|
||||
|
||||
procedure TMiniBrowserFrm.Chromium1LoadError(Sender: TObject;
|
||||
const browser: ICefBrowser; const frame: ICefFrame; errorCode: Integer;
|
||||
const browser: ICefBrowser; const frame: ICefFrame; errorCode: TCefErrorCode;
|
||||
const errorText, failedUrl: ustring);
|
||||
var
|
||||
TempString : string;
|
||||
@ -1152,7 +1149,7 @@ begin
|
||||
end;
|
||||
|
||||
procedure TMiniBrowserFrm.Chromium1ResolvedHostAvailable(Sender: TObject;
|
||||
result: Integer; const resolvedIps: TStrings);
|
||||
result: TCefErrorCode; const resolvedIps: TStrings);
|
||||
begin
|
||||
if (result = ERR_NONE) then
|
||||
showmessage('Resolved IPs : ' + resolvedIps.CommaText)
|
||||
@ -1797,26 +1794,14 @@ end;
|
||||
|
||||
procedure TMiniBrowserFrm.CopyFramesIDsMsg(var aMessage : TMessage);
|
||||
var
|
||||
i : NativeUInt;
|
||||
TempCount : NativeUInt;
|
||||
TempArray : TCefFrameIdentifierArray;
|
||||
TempString : string;
|
||||
TempSL : TStringList;
|
||||
begin
|
||||
TempCount := Chromium1.FrameCount;
|
||||
TempSL := TStringList.Create;
|
||||
|
||||
if Chromium1.GetFrameIdentifiers(TempCount, TempArray) then
|
||||
begin
|
||||
TempString := '';
|
||||
i := 0;
|
||||
if Chromium1.GetFrameIdentifiers(TStrings(TempSL)) then
|
||||
clipboard.AsText := TempSL.Text;
|
||||
|
||||
while (i < TempCount) do
|
||||
begin
|
||||
TempString := TempString + inttostr(TempArray[i]) + CRLF;
|
||||
inc(i);
|
||||
end;
|
||||
|
||||
clipboard.AsText := TempString;
|
||||
end;
|
||||
TempSL.Free;
|
||||
end;
|
||||
|
||||
procedure TMiniBrowserFrm.CopyFramesNamesMsg(var aMessage : TMessage);
|
||||
|
@ -333,35 +333,23 @@ end;
|
||||
|
||||
procedure DOMVisitor_GetFrameIDs(const browser: ICefBrowser; const frame : ICefFrame);
|
||||
var
|
||||
i : NativeUInt;
|
||||
TempCount : NativeUInt;
|
||||
TempArray : TCefFrameIdentifierArray;
|
||||
TempString : ustring;
|
||||
TempMsg : ICefProcessMessage;
|
||||
TempSL : TStringList;
|
||||
begin
|
||||
TempCount := browser.FrameCount;
|
||||
TempSL := TStringList.Create;
|
||||
|
||||
if browser.GetFrameIdentifiers(TempCount, TempArray) then
|
||||
begin
|
||||
TempString := '';
|
||||
i := 0;
|
||||
if browser.GetFrameIdentifiers(TStrings(TempSL)) then
|
||||
try
|
||||
TempMsg := TCefProcessMessageRef.New(FRAMEIDS_MSGNAME);
|
||||
TempMsg.ArgumentList.SetString(0, TempSL.Text);
|
||||
|
||||
while (i < TempCount) do
|
||||
begin
|
||||
TempString := TempString + inttostr(TempArray[i]) + CRLF;
|
||||
inc(i);
|
||||
end;
|
||||
|
||||
try
|
||||
TempMsg := TCefProcessMessageRef.New(FRAMEIDS_MSGNAME);
|
||||
TempMsg.ArgumentList.SetString(0, TempString);
|
||||
|
||||
if (frame <> nil) and frame.IsValid then
|
||||
frame.SendProcessMessage(PID_BROWSER, TempMsg);
|
||||
finally
|
||||
TempMsg := nil;
|
||||
end;
|
||||
if (frame <> nil) and frame.IsValid then
|
||||
frame.SendProcessMessage(PID_BROWSER, TempMsg);
|
||||
finally
|
||||
TempMsg := nil;
|
||||
end;
|
||||
|
||||
TempSL.Free;
|
||||
end;
|
||||
|
||||
procedure GlobalCEFApp_OnFocusedNodeChanged(const browser : ICefBrowser;
|
||||
@ -806,27 +794,17 @@ end;
|
||||
|
||||
procedure TDOMVisitorFrm.CopyFrameIDs1(var aMessage : TMessage);
|
||||
var
|
||||
i : NativeUInt;
|
||||
TempCount : NativeUInt;
|
||||
TempArray : TCefFrameIdentifierArray;
|
||||
TempString : string;
|
||||
TempSL : TStringList;
|
||||
begin
|
||||
TempCount := Chromium1.FrameCount;
|
||||
TempSL := TStringList.Create;
|
||||
|
||||
if Chromium1.GetFrameIdentifiers(TempCount, TempArray) then
|
||||
if Chromium1.GetFrameIdentifiers(TStrings(TempSL)) then
|
||||
begin
|
||||
TempString := '';
|
||||
i := 0;
|
||||
|
||||
while (i < TempCount) do
|
||||
begin
|
||||
TempString := TempString + inttostr(TempArray[i]) + CRLF;
|
||||
inc(i);
|
||||
end;
|
||||
|
||||
clipboard.AsText := TempString;
|
||||
ShowStatusText('Frame IDs copied to the clipboard in the browser process (' + inttostr(TempCount) + ')');
|
||||
clipboard.AsText := TempSL.Text;
|
||||
ShowStatusText('Frame IDs copied to the clipboard in the browser process (' + inttostr(TempSL.Count) + ')');
|
||||
end;
|
||||
|
||||
TempSL.Free;
|
||||
end;
|
||||
|
||||
procedure TDOMVisitorFrm.CopyFrameIDs2(var aMessage : TMessage);
|
||||
|
@ -66,7 +66,7 @@
|
||||
<Version Value="11"/>
|
||||
<PathDelim Value="\"/>
|
||||
<Target>
|
||||
<Filename Value="..\..\..\bin\MiniBrowser"/>
|
||||
<Filename Value="..\..\..\bin64\MiniBrowser"/>
|
||||
</Target>
|
||||
<SearchPaths>
|
||||
<IncludeFiles Value="$(ProjOutDir)"/>
|
||||
|
139
demos/Lazarus_Windows/MiniBrowser/debug.log
Normal file
139
demos/Lazarus_Windows/MiniBrowser/debug.log
Normal file
@ -0,0 +1,139 @@
|
||||
[0126/152856.768:ERROR:gpu_process_host.cc(992)] GPU process exited unexpectedly: exit_code=-2147483645
|
||||
[0126/152856.768:WARNING:gpu_process_host.cc(1362)] The GPU process has crashed 1 time(s)
|
||||
[0126/152856.940:WARNING:gpu_process_host.cc(1015)] Reinitialized the GPU process after a crash. The reported initialization time was 33 ms
|
||||
[0126/152856.974:ERROR:gpu_process_host.cc(992)] GPU process exited unexpectedly: exit_code=-2147483645
|
||||
[0126/152856.974:WARNING:gpu_process_host.cc(1362)] The GPU process has crashed 2 time(s)
|
||||
[0126/152857.050:WARNING:gpu_process_host.cc(1015)] Reinitialized the GPU process after a crash. The reported initialization time was 27 ms
|
||||
[0126/152857.050:ERROR:command_buffer_proxy_impl.cc(131)] ContextResult::kTransientFailure: Failed to send GpuControl.CreateCommandBuffer.
|
||||
[0126/152857.050:ERROR:gpu_process_host.cc(992)] GPU process exited unexpectedly: exit_code=-2147483645
|
||||
[0126/152857.050:WARNING:gpu_process_host.cc(1362)] The GPU process has crashed 3 time(s)
|
||||
[0126/152857.159:WARNING:gpu_process_host.cc(1015)] Reinitialized the GPU process after a crash. The reported initialization time was 69 ms
|
||||
[0126/152857.159:ERROR:command_buffer_proxy_impl.cc(131)] ContextResult::kTransientFailure: Failed to send GpuControl.CreateCommandBuffer.
|
||||
[0126/152857.159:ERROR:command_buffer_proxy_impl.cc(131)] ContextResult::kTransientFailure: Failed to send GpuControl.CreateCommandBuffer.
|
||||
[0126/152857.609:INFO:CONSOLE(423)] "Permissions policy violation: unload is not allowed in this document.", source: https://www.google.com/xjs/_/js/k=xjs.hd.en.deT8CnU2Gss.O/am=AAAAAAAAAAAAAAAAAAAAAAAgAAAAQAINhEMANkAAAAAAAySAAIAIRgCiEJAAYABEEPBQNgAAMAECS2ACSBF4JgEAQBNQBRAAAAAAAADBAFEAgQcEAACgAwBAAIUADEgQoAAEAAAAIA8AwQEwiCAAAAAAAAAAAACAABIE4YIEoCCAAAAAAAAAAAAAAEBKmqgwDA/d=1/ed=1/dg=2/br=1/rs=ACT90oHeMQPPTRkeI-3oQbXtjhZkpTNOxw/ee=AfeaP:TkrAjf;Afksuc:wMx0R;BMxAGc:E5bFse;BgS6mb:fidj5d;BjwMce:cXX2Wb;CxXAWb:YyRLvc;DULqB:RKfG5c;DpcR3d:zL72xf;EABSZ:MXZt9d;ESrPQc:mNTJvc;EVNhjf:pw70Gc;EmZ2Bf:zr1jrb;EnlcNd:WeHg4;Erl4fe:FloWmf,FloWmf;F9mqte:UoRcbe;Fmv9Nc:O1Tzwc;G0KhTb:LIaoZ;G6wU6e:hezEbd;GleZL:J1A7Od;HMDDWe:G8QUdb;IBADCc:RYquRb;IoGlCf:b5lhvb;IsdWVc:qzxzOb;JXS8fb:Qj0suc;JbMT3:M25sS;JsbNhc:Xd8iUd;KOxcK:OZqGte;KQzWid:ZMKkN;KcokUb:KiuZBf;KeeMUb:HiPxjc;KpRAue:Tia57b;LBgRLc:SdcwHb,XVMNvd;LEikZe:byfTOb,lsjVmc;LsNahb:ucGLNb;Me32dd:MEeYgc;NPKaK:SdcwHb;NSEoX:lazG7b;Np8Qkd:Dpx6qc;Nyt6ic:jn2sGd;OgagBe:cNTe0;Oj465e:KG2eXe,KG2eXe;OohIYe:mpEAQb;Pjplud:EEDORb,PoEs9b;Q1Ow7b:x5CSu;QGR0gd:Mlhmy;R4IIIb:QWfeKf;R9Ulx:CR7Ufe;RDNBlf:zPRCJb;SLtqO:Kh1xYe;SMDL4c:fTfGO,pnvXVc;SNUn3:ZwDk9d,x8cHvb;ShpF6e:N0pvGc;TxfV6d:YORN0b;U96pRd:FsR04;UDrY1c:eps46d;UVmjEd:EesRsb;UyG7Kb:wQd0G;V2HTTe:RolTY;VGRfx:VFqbr;VN6jIc:ddQyuf;VOcgDe:YquhTb;VsAqSb:PGf2Re;VxQ32b:k0XsBb;WCEKNd:I46Hvd;WDGyFe:jcVOxd;Wfmdue:g3MJlb;XUezZ:sa7lqb;YV5bee:IvPZ6d;ZWEUA:afR4Cf;a56pNe:JEfCwb;aAJE9c:WHW6Ef;aZ61od:arTwJ;bFZ6gf:RsDQqe;bcPXSc:gSZLJb;cEt90b:ws9Tlc;cFTWae:gT8qnd;coJ8e:KvoW8;dIoSBb:ZgGg9b;dLlj2:Qqt3Gf;daB6be:lMxGPd;dtl0hd:lLQWFe;eBAeSb:Ck63tb;eBZ5Nd:audvde;eHDfl:ofjVkb;eO3lse:nFClrf;fWLTFc:TVBJbf;g8nkx:U4MzKc;gaub4:TN6bMe;gtVSi:ekUOYd;h3MYod:cEt90b;hK67qb:QWEO5b;hLUtwc:KB8OKd;heHB1:sFczq;hjRo6e:F62sG;iFQyKf:QIhFr,vfuNJf;imqimf:jKGL2e;io8t5d:sgY6Zb;jY0zg:Q6tNgc;k2Qxcb:XY51pe;kCQyJ:ueyPK;kMFpHd:OTA3Ae;kbAm9d:MkHyGd;lkq0A:JyBE3e;nAFL3:NTMZac,s39S4;oGtAuc:sOXFj;oSUNyd:fTfGO,fTfGO,pnvXVc;oUlnpc:RagDlc;okUaUd:wItadb;pKJiXd:VCenhc;pNsl2d:j9Yuyc;pXdRYb:JKoKVe;pj82le:mg5CW;qZx2Fc:j0xrE;qaS3gd:yiLg6e;qavrXe:zQzcXe;qddgKe:d7YSfd,x4FYXe;rQSrae:C6D5Fc;sP4Vbe:VwDzFe;sTsDMc:kHVSUb;tH4IIe:Ymry6;tosKvd:ZCqP3;trZL0b:qY8PFe;uY49fb:COQbmf;uuQkY:u2V3ud;vGrMZ:lPJJ0c;vfVwPd:lcrkwe;w3bZCb:ZPGaIb;w4rSdf:XKiZ9;w9w86d:dt4g2b;wQlYve:aLUfP;wR5FRb:O1Gjze,TtcOte;wV5Pjc:L8KGxe;whEZac:F4AmNb;xBbsrc:NEW1Qc;yGxLoc:FmAr0c;yxTchf:KUM7Z;z97YGf:oug9te;zOsCQe:Ko78Df;zaIgPb:Qtpxbd/m=cdos,hsm,jsa,mb4ZUb,d,csi,cEt90b,SNUn3,qddgKe,sTsDMc,dtl0hd,eHDfl (423)
|
||||
[0126/152904.121:ERROR:gles2_cmd_decoder_passthrough.cc(946)] ContextResult::kFatalFailure: fail_if_major_perf_caveat + swiftshader
|
||||
[0126/152904.132:ERROR:gles2_cmd_decoder_passthrough.cc(946)] ContextResult::kFatalFailure: fail_if_major_perf_caveat + swiftshader
|
||||
[0126/153007.358:WARNING:sqlite_persistent_store_backend_base.cc(197)] Failed to post task from FlushAndNotifyInBackground@net\extras\sqlite\sqlite_persistent_store_backend_base.cc:246 to client_task_runner_.
|
||||
[0126/153007.358:WARNING:sqlite_persistent_store_backend_base.cc(197)] Failed to post task from FlushAndNotifyInBackground@net\extras\sqlite\sqlite_persistent_store_backend_base.cc:246 to client_task_runner_.
|
||||
[0201/144344.616:ERROR:gpu_process_host.cc(992)] GPU process exited unexpectedly: exit_code=-2147483645
|
||||
[0201/144344.616:WARNING:gpu_process_host.cc(1362)] The GPU process has crashed 1 time(s)
|
||||
[0201/144344.693:WARNING:gpu_process_host.cc(1015)] Reinitialized the GPU process after a crash. The reported initialization time was 30 ms
|
||||
[0201/144344.709:ERROR:gpu_process_host.cc(992)] GPU process exited unexpectedly: exit_code=-2147483645
|
||||
[0201/144344.709:WARNING:gpu_process_host.cc(1362)] The GPU process has crashed 2 time(s)
|
||||
[0201/144344.771:WARNING:gpu_process_host.cc(1015)] Reinitialized the GPU process after a crash. The reported initialization time was 21 ms
|
||||
[0201/144344.787:ERROR:gpu_process_host.cc(992)] GPU process exited unexpectedly: exit_code=-2147483645
|
||||
[0201/144344.787:WARNING:gpu_process_host.cc(1362)] The GPU process has crashed 3 time(s)
|
||||
[0201/144344.896:WARNING:gpu_process_host.cc(1015)] Reinitialized the GPU process after a crash. The reported initialization time was 72 ms
|
||||
[0201/144344.896:ERROR:command_buffer_proxy_impl.cc(131)] ContextResult::kTransientFailure: Failed to send GpuControl.CreateCommandBuffer.
|
||||
[0201/144345.167:ERROR:interface_endpoint_client.cc(702)] Message 0 rejected by interface blink.mojom.WidgetHost
|
||||
[0201/144345.670:INFO:CONSOLE(421)] "Permissions policy violation: unload is not allowed in this document.", source: https://www.google.com/xjs/_/js/k=xjs.hd.en.Xu1x5siTfG0.O/am=AAAAAAAAAAAAAAAAAAAAAAAgAAAAQAINhEMANkAAAAAAAyRAACCCMYAoBEgADIAIAh7KBgAAJiCwBCaAFIFnEgAANAFVAAEAAAAAAAgGiAEEHhAAAIAOAIAAigAMQBCgAAgAAABAHoDgAAYpCAAAAAAAAAAAACCABEG4IAEFAQQAAAAAAAAAAAAAUmmiwjA/d=1/ed=1/dg=2/br=1/rs=ACT90oFAXoTUP5s_Oprq_alxmLzD4OwMeg/ee=AfeaP:TkrAjf;Afksuc:wMx0R;BMxAGc:E5bFse;BgS6mb:fidj5d;BjwMce:cXX2Wb;CxXAWb:YyRLvc;DULqB:RKfG5c;DpcR3d:zL72xf;EABSZ:MXZt9d;ESrPQc:mNTJvc;EVNhjf:pw70Gc;EmZ2Bf:zr1jrb;EnlcNd:WeHg4;Erl4fe:FloWmf,FloWmf;F9mqte:UoRcbe;Fmv9Nc:O1Tzwc;G0KhTb:LIaoZ;G6wU6e:hezEbd;GleZL:J1A7Od;HMDDWe:G8QUdb;IBADCc:RYquRb;IoGlCf:b5lhvb;IsdWVc:qzxzOb;JXS8fb:Qj0suc;JbMT3:M25sS;JsbNhc:Xd8iUd;KOxcK:OZqGte;KQzWid:ZMKkN;KcokUb:KiuZBf;KeeMUb:HiPxjc;KpRAue:Tia57b;LBgRLc:XVMNvd;LEikZe:byfTOb,lsjVmc;LsNahb:ucGLNb;Me32dd:MEeYgc;NPKaK:PVlQOd;NSEoX:lazG7b;Np8Qkd:Dpx6qc;Nyt6ic:jn2sGd;OgagBe:cNTe0;Oj465e:KG2eXe,KG2eXe;OohIYe:mpEAQb;Pjplud:EEDORb,PoEs9b;Q1Ow7b:x5CSu;QGR0gd:Mlhmy;R4IIIb:QWfeKf;R9Ulx:CR7Ufe;RDNBlf:zPRCJb;SLtqO:Kh1xYe;SMDL4c:fTfGO,pnvXVc;SNUn3:ZwDk9d,x8cHvb;ShpF6e:N0pvGc;TxfV6d:YORN0b;U96pRd:FsR04;UDrY1c:eps46d;UVmjEd:EesRsb;UyG7Kb:wQd0G;V2HTTe:RolTY;VGRfx:VFqbr;VN6jIc:ddQyuf;VOcgDe:YquhTb;VsAqSb:PGf2Re;VxQ32b:k0XsBb;WCEKNd:I46Hvd;WDGyFe:jcVOxd;Wfmdue:g3MJlb;XUezZ:sa7lqb;YV5bee:IvPZ6d;ZMvdv:PHFPjb;ZWEUA:afR4Cf;a56pNe:JEfCwb;aAJE9c:WHW6Ef;aZ61od:arTwJ;bFZ6gf:RsDQqe;bcPXSc:gSZLJb;cEt90b:ws9Tlc;cFTWae:gT8qnd;coJ8e:KvoW8;dIoSBb:ZgGg9b;dLlj2:Qqt3Gf;daB6be:lMxGPd;dtl0hd:lLQWFe;eBAeSb:Ck63tb;eBZ5Nd:audvde;eHDfl:ofjVkb;eO3lse:nFClrf;fWLTFc:TVBJbf;g8nkx:U4MzKc;gaub4:TN6bMe;gtVSi:ekUOYd;h3MYod:cEt90b;hK67qb:QWEO5b;hLUtwc:KB8OKd;heHB1:sFczq;hjRo6e:F62sG;iFQyKf:QIhFr,vfuNJf;imqimf:jKGL2e;io8t5d:sgY6Zb;jY0zg:Q6tNgc;k2Qxcb:XY51pe;kCQyJ:ueyPK;kMFpHd:OTA3Ae;kbAm9d:MkHyGd;lkq0A:JyBE3e;nAFL3:NTMZac,s39S4;oGtAuc:sOXFj;oSUNyd:fTfGO,fTfGO,pnvXVc;oUlnpc:RagDlc;okUaUd:wItadb;pKJiXd:VCenhc;pNsl2d:j9Yuyc;pXdRYb:JKoKVe;pj82le:mg5CW;qZx2Fc:j0xrE;qaS3gd:yiLg6e;qavrXe:zQzcXe;qddgKe:d7YSfd,x4FYXe;rQSrae:C6D5Fc;sP4Vbe:VwDzFe;sTsDMc:kHVSUb;tH4IIe:Ymry6;tosKvd:ZCqP3;trZL0b:qY8PFe;uY49fb:COQbmf;uuQkY:u2V3ud;vGrMZ:lPJJ0c;vfVwPd:lcrkwe;w3bZCb:ZPGaIb;w4rSdf:XKiZ9;w9w86d:dt4g2b;wQlYve:aLUfP;wR5FRb:TtcOte;wV5Pjc:L8KGxe;whEZac:F4AmNb;xBbsrc:NEW1Qc;yGxLoc:FmAr0c;yxTchf:KUM7Z;z97YGf:oug9te;zOsCQe:Ko78Df;zaIgPb:Qtpxbd/m=cdos,hsm,jsa,mb4ZUb,d,csi,cEt90b,SNUn3,qddgKe,sTsDMc,dtl0hd,eHDfl (421)
|
||||
[0203/163043.059:ERROR:gpu_process_host.cc(992)] GPU process exited unexpectedly: exit_code=-2147483645
|
||||
[0203/163043.059:WARNING:gpu_process_host.cc(1362)] The GPU process has crashed 1 time(s)
|
||||
[0203/163043.078:ERROR:command_buffer_proxy_impl.cc(131)] ContextResult::kTransientFailure: Failed to send GpuControl.CreateCommandBuffer.
|
||||
[0203/163043.122:WARNING:gpu_process_host.cc(1015)] Reinitialized the GPU process after a crash. The reported initialization time was 27 ms
|
||||
[0203/163043.138:ERROR:command_buffer_proxy_impl.cc(131)] ContextResult::kTransientFailure: Failed to send GpuControl.CreateCommandBuffer.
|
||||
[0203/163043.138:ERROR:gpu_process_host.cc(992)] GPU process exited unexpectedly: exit_code=-2147483645
|
||||
[0203/163043.138:WARNING:gpu_process_host.cc(1362)] The GPU process has crashed 2 time(s)
|
||||
[0203/163043.200:WARNING:gpu_process_host.cc(1015)] Reinitialized the GPU process after a crash. The reported initialization time was 37 ms
|
||||
[0203/163043.215:ERROR:gpu_process_host.cc(992)] GPU process exited unexpectedly: exit_code=-2147483645
|
||||
[0203/163043.215:WARNING:gpu_process_host.cc(1362)] The GPU process has crashed 3 time(s)
|
||||
[0203/163043.325:WARNING:gpu_process_host.cc(1015)] Reinitialized the GPU process after a crash. The reported initialization time was 60 ms
|
||||
[0203/163043.330:ERROR:command_buffer_proxy_impl.cc(131)] ContextResult::kTransientFailure: Failed to send GpuControl.CreateCommandBuffer.
|
||||
[0203/163043.469:INFO:CONSOLE(421)] "Permissions policy violation: unload is not allowed in this document.", source: https://www.google.com/xjs/_/js/k=xjs.hd.en.4-wbcMM-7bI.O/am=AAAAAAAAAAAAAAAAAAAAAAAgAAAAQAINhEMANkAAAAAwQAIEACIYA4hCgAiAARCCgIeyAQAATEBgCUwAKQQmAQBAE1AFEAAAAAAAgGCAGEDgAQEAAOgAgALAAAQBCoAAAAAA5AEIDmCQggAAAAAAAAAAAAACSBCECxIoCCAAAAAAAAAAAAAAkEoTFYYB/d=1/ed=1/dg=2/br=1/rs=ACT90oHKIv4QYyUhDr3siFwFRVdBT6dkHA/ee=AfeaP:TkrAjf;Afksuc:wMx0R;BMxAGc:E5bFse;BgS6mb:fidj5d;BjwMce:cXX2Wb;CxXAWb:YyRLvc;DULqB:RKfG5c;DpcR3d:zL72xf;EABSZ:MXZt9d;ESrPQc:mNTJvc;EVNhjf:pw70Gc;EmZ2Bf:zr1jrb;EnlcNd:WeHg4;Erl4fe:FloWmf,FloWmf;F9mqte:UoRcbe;Fmv9Nc:O1Tzwc;G0KhTb:LIaoZ;G6wU6e:hezEbd;GleZL:J1A7Od;HMDDWe:G8QUdb;IBADCc:RYquRb;IoGlCf:b5lhvb;IsdWVc:qzxzOb;JXS8fb:Qj0suc;JbMT3:M25sS;JsbNhc:Xd8iUd;KOxcK:OZqGte;KQzWid:ZMKkN;KcokUb:KiuZBf;KeeMUb:HiPxjc;KpRAue:Tia57b;LBgRLc:XVMNvd;LEikZe:byfTOb,lsjVmc;LsNahb:ucGLNb;Me32dd:MEeYgc;NPKaK:PVlQOd;NSEoX:lazG7b;Np8Qkd:Dpx6qc;Nyt6ic:jn2sGd;OgagBe:cNTe0;Oj465e:KG2eXe,KG2eXe;OohIYe:mpEAQb;Pjplud:EEDORb,PoEs9b;Q1Ow7b:x5CSu;QGR0gd:Mlhmy;R4IIIb:QWfeKf;R9Ulx:CR7Ufe;RDNBlf:zPRCJb;SLtqO:Kh1xYe;SMDL4c:fTfGO,pnvXVc;SNUn3:ZwDk9d,x8cHvb;ShpF6e:N0pvGc;TxfV6d:YORN0b;U96pRd:FsR04;UDrY1c:eps46d;UVmjEd:EesRsb;UyG7Kb:wQd0G;V2HTTe:RolTY;VGRfx:VFqbr;VN6jIc:ddQyuf;VOcgDe:YquhTb;VsAqSb:PGf2Re;VxQ32b:k0XsBb;WCEKNd:I46Hvd;WDGyFe:jcVOxd;Wfmdue:g3MJlb;XUezZ:sa7lqb;YV5bee:IvPZ6d;ZMvdv:PHFPjb;ZWEUA:afR4Cf;a56pNe:JEfCwb;aAJE9c:WHW6Ef;aZ61od:arTwJ;bFZ6gf:RsDQqe;bcPXSc:gSZLJb;cEt90b:ws9Tlc;cFTWae:gT8qnd;coJ8e:KvoW8;dIoSBb:ZgGg9b;dLlj2:Qqt3Gf;daB6be:lMxGPd;dtl0hd:lLQWFe;eBAeSb:Ck63tb;eBZ5Nd:audvde;eHDfl:ofjVkb;eO3lse:nFClrf;fWLTFc:TVBJbf;g8nkx:U4MzKc;gaub4:TN6bMe;gtVSi:ekUOYd;h3MYod:cEt90b;hK67qb:QWEO5b;hLUtwc:KB8OKd;heHB1:sFczq;hjRo6e:F62sG;iFQyKf:QIhFr,vfuNJf;imqimf:jKGL2e;io8t5d:sgY6Zb;jY0zg:Q6tNgc;k2Qxcb:XY51pe;kCQyJ:ueyPK;kMFpHd:OTA3Ae;kbAm9d:MkHyGd;lkq0A:JyBE3e;nAFL3:NTMZac,s39S4;oGtAuc:sOXFj;oSUNyd:fTfGO,fTfGO,pnvXVc;oUlnpc:RagDlc;okUaUd:wItadb;pKJiXd:VCenhc;pNsl2d:j9Yuyc;pXdRYb:JKoKVe;pj82le:mg5CW;qZx2Fc:j0xrE;qaS3gd:yiLg6e;qavrXe:zQzcXe;qddgKe:d7YSfd,x4FYXe;rQSrae:C6D5Fc;sP4Vbe:VwDzFe;sTsDMc:kHVSUb;tH4IIe:Ymry6;tosKvd:ZCqP3;trZL0b:qY8PFe;uY49fb:COQbmf;uuQkY:u2V3ud;vGrMZ:lPJJ0c;vfVwPd:lcrkwe;w3bZCb:ZPGaIb;w4rSdf:XKiZ9;w9w86d:dt4g2b;wQlYve:aLUfP;wR5FRb:TtcOte;wV5Pjc:L8KGxe;whEZac:F4AmNb;xBbsrc:NEW1Qc;yGxLoc:FmAr0c;yxTchf:KUM7Z;z97YGf:oug9te;zOsCQe:Ko78Df;zaIgPb:Qtpxbd/m=cdos,hsm,jsa,mb4ZUb,d,csi,cEt90b,SNUn3,qddgKe,sTsDMc,dtl0hd,eHDfl (421)
|
||||
[0203/163048.895:WARNING:sqlite_persistent_store_backend_base.cc(197)] Failed to post task from FlushAndNotifyInBackground@net\extras\sqlite\sqlite_persistent_store_backend_base.cc:246 to client_task_runner_.
|
||||
[0203/163048.895:WARNING:sqlite_persistent_store_backend_base.cc(197)] Failed to post task from FlushAndNotifyInBackground@net\extras\sqlite\sqlite_persistent_store_backend_base.cc:246 to client_task_runner_.
|
||||
[0207/123535.212:ERROR:gpu_process_host.cc(992)] GPU process exited unexpectedly: exit_code=-2147483645
|
||||
[0207/123535.212:WARNING:gpu_process_host.cc(1362)] The GPU process has crashed 1 time(s)
|
||||
[0207/123535.275:WARNING:gpu_process_host.cc(1015)] Reinitialized the GPU process after a crash. The reported initialization time was 26 ms
|
||||
[0207/123535.291:ERROR:gpu_process_host.cc(992)] GPU process exited unexpectedly: exit_code=-2147483645
|
||||
[0207/123535.291:WARNING:gpu_process_host.cc(1362)] The GPU process has crashed 2 time(s)
|
||||
[0207/123535.291:ERROR:command_buffer_proxy_impl.cc(131)] ContextResult::kTransientFailure: Failed to send GpuControl.CreateCommandBuffer.
|
||||
[0207/123535.338:WARNING:gpu_process_host.cc(1015)] Reinitialized the GPU process after a crash. The reported initialization time was 27 ms
|
||||
[0207/123535.354:ERROR:command_buffer_proxy_impl.cc(131)] ContextResult::kTransientFailure: Failed to send GpuControl.CreateCommandBuffer.
|
||||
[0207/123535.354:ERROR:gpu_process_host.cc(992)] GPU process exited unexpectedly: exit_code=-2147483645
|
||||
[0207/123535.354:WARNING:gpu_process_host.cc(1362)] The GPU process has crashed 3 time(s)
|
||||
[0207/123535.463:WARNING:gpu_process_host.cc(1015)] Reinitialized the GPU process after a crash. The reported initialization time was 80 ms
|
||||
[0207/123535.470:ERROR:command_buffer_proxy_impl.cc(131)] ContextResult::kTransientFailure: Failed to send GpuControl.CreateCommandBuffer.
|
||||
[0207/123535.608:INFO:CONSOLE(421)] "Permissions policy violation: unload is not allowed in this document.", source: https://www.google.com/xjs/_/js/k=xjs.hd.en.EwKHZUL6au4.O/am=AAAAAAAAAAAAAAAAAAAAAAAgAAAAQAINhEMANkAAAAAwQAIEACIYA4hCABEAAyAEAQ9lAwAAMAGBJTABpBCYBAAATUAVQAAAAAAAAIIBYgCBBwQAAKADAAoAAxAEKAACAAAAkAcgOIBBCgIAAAAAAAAAAAAIICkQLkigIIAAAAAAAAAAAAAAQCpNVBgG/d=1/ed=1/dg=2/br=1/rs=ACT90oGyvMOoDRe0ZyU4zB7S9EIFVbigiQ/ee=AfeaP:TkrAjf;Afksuc:wMx0R;BMxAGc:E5bFse;BgS6mb:fidj5d;BjwMce:cXX2Wb;CxXAWb:YyRLvc;DULqB:RKfG5c;DpcR3d:zL72xf;EABSZ:MXZt9d;ESrPQc:mNTJvc;EVNhjf:pw70Gc;EmZ2Bf:zr1jrb;EnlcNd:WeHg4;Erl4fe:FloWmf,FloWmf;F9mqte:UoRcbe;Fmv9Nc:O1Tzwc;G0KhTb:LIaoZ;G6wU6e:hezEbd;GleZL:J1A7Od;HMDDWe:G8QUdb;IBADCc:RYquRb;IoGlCf:b5lhvb;IsdWVc:qzxzOb;JXS8fb:Qj0suc;JbMT3:M25sS;JsbNhc:Xd8iUd;KOxcK:OZqGte;KQzWid:ZMKkN;KcokUb:KiuZBf;KeeMUb:HiPxjc;KpRAue:Tia57b;LBgRLc:XVMNvd;LEikZe:byfTOb,lsjVmc;LsNahb:ucGLNb;Me32dd:MEeYgc;NPKaK:PVlQOd;NSEoX:lazG7b;Np8Qkd:Dpx6qc;Nyt6ic:jn2sGd;OgagBe:cNTe0;Oj465e:KG2eXe,KG2eXe;OohIYe:mpEAQb;Pjplud:EEDORb,PoEs9b;Q1Ow7b:x5CSu;QGR0gd:Mlhmy;R4IIIb:QWfeKf;R9Ulx:CR7Ufe;RDNBlf:zPRCJb;SLtqO:Kh1xYe;SMDL4c:fTfGO,pnvXVc;SNUn3:ZwDk9d,x8cHvb;ShpF6e:N0pvGc;TxfV6d:YORN0b;U96pRd:FsR04;UDrY1c:eps46d;UVmjEd:EesRsb;UyG7Kb:wQd0G;V2HTTe:RolTY;VGRfx:VFqbr;VN6jIc:ddQyuf;VOcgDe:YquhTb;VsAqSb:PGf2Re;VxQ32b:k0XsBb;WCEKNd:I46Hvd;WDGyFe:jcVOxd;Wfmdue:g3MJlb;XUezZ:sa7lqb;YV5bee:IvPZ6d;ZMvdv:PHFPjb;ZWEUA:afR4Cf;a56pNe:JEfCwb;aAJE9c:WHW6Ef;aZ61od:arTwJ;bFZ6gf:RsDQqe;bcPXSc:gSZLJb;cEt90b:ws9Tlc;cFTWae:gT8qnd;coJ8e:KvoW8;dIoSBb:ZgGg9b;dLlj2:Qqt3Gf;daB6be:lMxGPd;dtl0hd:lLQWFe;eBAeSb:Ck63tb;eBZ5Nd:audvde;eHDfl:ofjVkb;eO3lse:nFClrf;fWLTFc:TVBJbf;g8nkx:U4MzKc;gaub4:TN6bMe;gtVSi:ekUOYd;h3MYod:cEt90b;hK67qb:QWEO5b;hLUtwc:KB8OKd;heHB1:sFczq;hjRo6e:F62sG;iFQyKf:QIhFr,vfuNJf;imqimf:jKGL2e;io8t5d:sgY6Zb;jY0zg:Q6tNgc;k2Qxcb:XY51pe;kCQyJ:ueyPK;kMFpHd:OTA3Ae;kbAm9d:MkHyGd;lkq0A:JyBE3e;nAFL3:NTMZac,s39S4;oGtAuc:sOXFj;oSUNyd:fTfGO,fTfGO,pnvXVc;oUlnpc:RagDlc;okUaUd:wItadb;pKJiXd:VCenhc;pNsl2d:j9Yuyc;pXdRYb:JKoKVe;pj82le:mg5CW;qZx2Fc:j0xrE;qaS3gd:yiLg6e;qavrXe:zQzcXe;qddgKe:d7YSfd,x4FYXe;rQSrae:C6D5Fc;sP4Vbe:VwDzFe;sTsDMc:kHVSUb;tH4IIe:Ymry6;tosKvd:ZCqP3;trZL0b:qY8PFe;uY49fb:COQbmf;uuQkY:u2V3ud;vGrMZ:lPJJ0c;vfVwPd:lcrkwe;w3bZCb:ZPGaIb;w4rSdf:XKiZ9;w9w86d:dt4g2b;wQlYve:aLUfP;wR5FRb:TtcOte;wV5Pjc:L8KGxe;whEZac:F4AmNb;xBbsrc:NEW1Qc;yGxLoc:FmAr0c;yxTchf:KUM7Z;z97YGf:oug9te;zOsCQe:Ko78Df;zaIgPb:Qtpxbd/m=cdos,hsm,jsa,mb4ZUb,d,csi,cEt90b,SNUn3,qddgKe,sTsDMc,dtl0hd,eHDfl (421)
|
||||
[0207/123539.320:ERROR:CONSOLE(1)] "Request Autofill.enable failed. {"code":-32601,"message":"'Autofill.enable' wasn't found"}", source: devtools://devtools/core/protocol_client/protocol_client.js (1)
|
||||
[0208/092718.330:ERROR:gpu_process_host.cc(992)] GPU process exited unexpectedly: exit_code=-2147483645
|
||||
[0208/092718.346:WARNING:gpu_process_host.cc(1362)] The GPU process has crashed 1 time(s)
|
||||
[0208/092718.423:WARNING:gpu_process_host.cc(1015)] Reinitialized the GPU process after a crash. The reported initialization time was 39 ms
|
||||
[0208/092718.423:ERROR:command_buffer_proxy_impl.cc(131)] ContextResult::kTransientFailure: Failed to send GpuControl.CreateCommandBuffer.
|
||||
[0208/092718.423:ERROR:gpu_process_host.cc(992)] GPU process exited unexpectedly: exit_code=-2147483645
|
||||
[0208/092718.423:WARNING:gpu_process_host.cc(1362)] The GPU process has crashed 2 time(s)
|
||||
[0208/092718.454:WARNING:gpu_process_host.cc(1015)] Reinitialized the GPU process after a crash. The reported initialization time was 18 ms
|
||||
[0208/092718.473:ERROR:command_buffer_proxy_impl.cc(131)] ContextResult::kTransientFailure: Failed to send GpuControl.CreateCommandBuffer.
|
||||
[0208/092718.473:ERROR:gpu_process_host.cc(992)] GPU process exited unexpectedly: exit_code=-2147483645
|
||||
[0208/092718.473:WARNING:gpu_process_host.cc(1362)] The GPU process has crashed 3 time(s)
|
||||
[0208/092718.564:WARNING:gpu_process_host.cc(1015)] Reinitialized the GPU process after a crash. The reported initialization time was 63 ms
|
||||
[0208/092718.570:ERROR:command_buffer_proxy_impl.cc(131)] ContextResult::kTransientFailure: Failed to send GpuControl.CreateCommandBuffer.
|
||||
[0208/092718.571:ERROR:command_buffer_proxy_impl.cc(131)] ContextResult::kTransientFailure: Failed to send GpuControl.CreateCommandBuffer.
|
||||
[0208/092718.662:INFO:CONSOLE(410)] "Permissions policy violation: unload is not allowed in this document.", source: https://www.google.com/xjs/_/js/k=xjs.hd.en.HVb3Hhad5dQ.O/am=AAAAAAAAAAAAAAAAAAAAAAAgAAAAQAINhEMANkAAAAAwQAIEACIYA4hCABEAAxCCgIeyAQCYgMASmABSCEwCAIAmoAogAAAAAAAAwQAxgMADAgAA0AGAAsAABAEKgAAAAADkAQgOYJCCAAAAAAAAAAAAAAJIEIQLEigIIAAAAAAAAAAAAACQShMVhgE/d=1/ed=1/dg=2/br=1/rs=ACT90oEzYziGVBf0VIFbCd3R4jNLlyqKug/ee=AfeaP:TkrAjf;Afksuc:wMx0R;BMxAGc:E5bFse;BgS6mb:fidj5d;BjwMce:cXX2Wb;CxXAWb:YyRLvc;DULqB:RKfG5c;DpcR3d:zL72xf;EABSZ:MXZt9d;ESrPQc:mNTJvc;EVNhjf:pw70Gc;EmZ2Bf:zr1jrb;EnlcNd:WeHg4;Erl4fe:FloWmf,FloWmf;F9mqte:UoRcbe;Fmv9Nc:O1Tzwc;G0KhTb:LIaoZ;G6wU6e:hezEbd;GleZL:J1A7Od;HMDDWe:G8QUdb;IBADCc:RYquRb;IoGlCf:b5lhvb;IsdWVc:qzxzOb;JXS8fb:Qj0suc;JbMT3:M25sS;JsbNhc:Xd8iUd;KOxcK:OZqGte;KQzWid:ZMKkN;KcokUb:KiuZBf;KeeMUb:HiPxjc;KpRAue:Tia57b;LBgRLc:XVMNvd;LEikZe:byfTOb,lsjVmc;LsNahb:ucGLNb;Me32dd:MEeYgc;NPKaK:PVlQOd;NSEoX:lazG7b;Np8Qkd:Dpx6qc;Nyt6ic:jn2sGd;OgagBe:cNTe0;Oj465e:KG2eXe,KG2eXe;OohIYe:mpEAQb;Pjplud:EEDORb,PoEs9b;Q1Ow7b:x5CSu;QGR0gd:Mlhmy;R4IIIb:QWfeKf;R9Ulx:CR7Ufe;RDNBlf:zPRCJb;SLtqO:Kh1xYe;SMDL4c:fTfGO,pnvXVc;SNUn3:ZwDk9d,x8cHvb;ShpF6e:N0pvGc;TxfV6d:YORN0b;U96pRd:FsR04;UDrY1c:eps46d;UVmjEd:EesRsb;UyG7Kb:wQd0G;V2HTTe:RolTY;VGRfx:VFqbr;VN6jIc:ddQyuf;VOcgDe:YquhTb;VsAqSb:PGf2Re;VxQ32b:k0XsBb;WCEKNd:I46Hvd;WDGyFe:jcVOxd;Wfmdue:g3MJlb;XUezZ:sa7lqb;YV5bee:IvPZ6d;ZMvdv:PHFPjb;ZWEUA:afR4Cf;a56pNe:JEfCwb;aAJE9c:WHW6Ef;aZ61od:arTwJ;bFZ6gf:RsDQqe;bcPXSc:gSZLJb;cEt90b:ws9Tlc;cFTWae:gT8qnd;coJ8e:KvoW8;dIoSBb:ZgGg9b;dLlj2:Qqt3Gf;daB6be:lMxGPd;dtl0hd:lLQWFe;eBAeSb:Ck63tb;eBZ5Nd:audvde;eHDfl:ofjVkb;eO3lse:nFClrf;fWLTFc:TVBJbf;g8nkx:U4MzKc;gaub4:TN6bMe;gtVSi:ekUOYd;h3MYod:cEt90b;hK67qb:QWEO5b;hLUtwc:KB8OKd;heHB1:sFczq;hjRo6e:F62sG;iFQyKf:QIhFr,vfuNJf;imqimf:jKGL2e;io8t5d:sgY6Zb;jY0zg:Q6tNgc;k2Qxcb:XY51pe;kCQyJ:ueyPK;kMFpHd:OTA3Ae;kbAm9d:MkHyGd;lkq0A:JyBE3e;nAFL3:NTMZac,s39S4;oGtAuc:sOXFj;oSUNyd:fTfGO,fTfGO,pnvXVc;oUlnpc:RagDlc;okUaUd:wItadb;pKJiXd:VCenhc;pNsl2d:j9Yuyc;pXdRYb:JKoKVe;pj82le:mg5CW;qZx2Fc:j0xrE;qaS3gd:yiLg6e;qavrXe:zQzcXe;qddgKe:d7YSfd,x4FYXe;rQSrae:C6D5Fc;sP4Vbe:VwDzFe;sTsDMc:kHVSUb;tH4IIe:Ymry6;tosKvd:ZCqP3;trZL0b:qY8PFe;uY49fb:COQbmf;uuQkY:u2V3ud;vGrMZ:lPJJ0c;vfVwPd:lcrkwe;w3bZCb:ZPGaIb;w4rSdf:XKiZ9;w9w86d:dt4g2b;wQlYve:aLUfP;wR5FRb:TtcOte;wV5Pjc:L8KGxe;whEZac:F4AmNb;xBbsrc:NEW1Qc;yGxLoc:FmAr0c;yxTchf:KUM7Z;z97YGf:oug9te;zOsCQe:Ko78Df;zaIgPb:Qtpxbd/m=cdos,hsm,jsa,mb4ZUb,d,csi,cEt90b,SNUn3,qddgKe,sTsDMc,dtl0hd,eHDfl (410)
|
||||
[0208/092721.522:ERROR:interface_endpoint_client.cc(702)] Message 0 rejected by interface blink.mojom.WidgetHost
|
||||
[0208/092721.747:ERROR:gles2_cmd_decoder_passthrough.cc(946)] ContextResult::kFatalFailure: fail_if_major_perf_caveat + swiftshader
|
||||
[0208/092721.752:ERROR:gles2_cmd_decoder_passthrough.cc(946)] ContextResult::kFatalFailure: fail_if_major_perf_caveat + swiftshader
|
||||
[0208/092806.223:WARNING:sqlite_persistent_store_backend_base.cc(197)] Failed to post task from FlushAndNotifyInBackground@net\extras\sqlite\sqlite_persistent_store_backend_base.cc:246 to client_task_runner_.
|
||||
[0208/092806.223:WARNING:sqlite_persistent_store_backend_base.cc(197)] Failed to post task from FlushAndNotifyInBackground@net\extras\sqlite\sqlite_persistent_store_backend_base.cc:246 to client_task_runner_.
|
||||
[0217/094212.103:ERROR:gpu_process_host.cc(992)] GPU process exited unexpectedly: exit_code=-2147483645
|
||||
[0217/094212.103:WARNING:gpu_process_host.cc(1362)] The GPU process has crashed 1 time(s)
|
||||
[0217/094212.151:WARNING:gpu_process_host.cc(1015)] Reinitialized the GPU process after a crash. The reported initialization time was 23 ms
|
||||
[0217/094212.166:ERROR:command_buffer_proxy_impl.cc(131)] ContextResult::kTransientFailure: Failed to send GpuControl.CreateCommandBuffer.
|
||||
[0217/094212.166:ERROR:gpu_process_host.cc(992)] GPU process exited unexpectedly: exit_code=-2147483645
|
||||
[0217/094212.166:WARNING:gpu_process_host.cc(1362)] The GPU process has crashed 2 time(s)
|
||||
[0217/094212.216:WARNING:gpu_process_host.cc(1015)] Reinitialized the GPU process after a crash. The reported initialization time was 20 ms
|
||||
[0217/094212.216:ERROR:command_buffer_proxy_impl.cc(131)] ContextResult::kTransientFailure: Failed to send GpuControl.CreateCommandBuffer.
|
||||
[0217/094212.226:ERROR:gpu_process_host.cc(992)] GPU process exited unexpectedly: exit_code=-2147483645
|
||||
[0217/094212.226:WARNING:gpu_process_host.cc(1362)] The GPU process has crashed 3 time(s)
|
||||
[0217/094212.306:WARNING:gpu_process_host.cc(1015)] Reinitialized the GPU process after a crash. The reported initialization time was 60 ms
|
||||
[0217/094212.314:ERROR:command_buffer_proxy_impl.cc(131)] ContextResult::kTransientFailure: Failed to send GpuControl.CreateCommandBuffer.
|
||||
[0217/094212.453:INFO:CONSOLE(407)] "Permissions policy violation: unload is not allowed in this document.", source: https://www.google.com/xjs/_/js/k=xjs.hd.en.Xjz3UAwUEWA.O/am=AAAAAAAAAAAAAAAAAAAAAABAAAAAgBBoIBwCsAECAAAAAwkgAAjBCiAKAUIAGIAgCPBQNiAAExBYAhNACoFJAABoAqgCCAAAAAAAQGCAGEDgAQEAgOgAgALAAIIAJUAAAAAA8gAEBxikIAAAAAAAAAAAAIAAJAjCBQkUBBAAAAAAAAAAAAAASKWJCsM/d=1/ed=1/dg=2/br=1/rs=ACT90oGRK1SkBm1xtjsvhMA4xUYY1mTKIw/ee=AfeaP:TkrAjf;Afksuc:wMx0R;BMxAGc:E5bFse;BgS6mb:fidj5d;BjwMce:cXX2Wb;CxXAWb:YyRLvc;DULqB:RKfG5c;Dkk6ge:wJqrrd;DpcR3d:zL72xf;EABSZ:MXZt9d;ESrPQc:mNTJvc;EVNhjf:pw70Gc;EmZ2Bf:zr1jrb;EnlcNd:WeHg4;Erl4fe:FloWmf,FloWmf;F9mqte:UoRcbe;Fmv9Nc:O1Tzwc;G0KhTb:LIaoZ;G6wU6e:hezEbd;GleZL:J1A7Od;HMDDWe:G8QUdb;HqeXPd:cmbnH;IBADCc:RYquRb;IoGlCf:b5lhvb;IsdWVc:qzxzOb;JXS8fb:Qj0suc;JbMT3:M25sS;JsbNhc:Xd8iUd;KOxcK:OZqGte;KQzWid:ZMKkN;KcokUb:KiuZBf;KeeMUb:HiPxjc;KpRAue:Tia57b;LBgRLc:XVMNvd;LEikZe:byfTOb,lsjVmc;LsNahb:ucGLNb;Me32dd:MEeYgc;NPKaK:PVlQOd;NSEoX:lazG7b;Np8Qkd:Dpx6qc;Nyt6ic:jn2sGd;OgagBe:cNTe0;Oj465e:KG2eXe,KG2eXe;OohIYe:mpEAQb;Pjplud:EEDORb,PoEs9b;Q1Ow7b:x5CSu;QGR0gd:Mlhmy;R4IIIb:QWfeKf;R9Ulx:CR7Ufe;RDNBlf:zPRCJb;SLtqO:Kh1xYe;SMDL4c:fTfGO,pnvXVc;SNUn3:ZwDk9d,x8cHvb;ShpF6e:N0pvGc;TxfV6d:YORN0b;U96pRd:FsR04;UDrY1c:eps46d;UVmjEd:EesRsb;UyG7Kb:wQd0G;V2HTTe:RolTY;VGRfx:VFqbr;VN6jIc:ddQyuf;VOcgDe:YquhTb;VsAqSb:PGf2Re;VxQ32b:k0XsBb;WCEKNd:I46Hvd;WDGyFe:jcVOxd;Wfmdue:g3MJlb;XUezZ:sa7lqb;YV5bee:IvPZ6d;ZMvdv:PHFPjb;ZWEUA:afR4Cf;a56pNe:JEfCwb;aAJE9c:WHW6Ef;aZ61od:arTwJ;bFZ6gf:RsDQqe;bcPXSc:gSZLJb;cEt90b:ws9Tlc;cFTWae:gT8qnd;coJ8e:KvoW8;dIoSBb:ZgGg9b;dLlj2:Qqt3Gf;daB6be:lMxGPd;dtl0hd:lLQWFe;eBAeSb:Ck63tb;eBZ5Nd:audvde;eHDfl:ofjVkb;eO3lse:nFClrf;fWLTFc:TVBJbf;g8nkx:U4MzKc;gaub4:TN6bMe;gtVSi:ekUOYd;h3MYod:cEt90b;hK67qb:QWEO5b;heHB1:sFczq;hjRo6e:F62sG;iFQyKf:QIhFr,vfuNJf;imqimf:jKGL2e;io8t5d:sgY6Zb;jY0zg:Q6tNgc;k2Qxcb:XY51pe;kCQyJ:ueyPK;kMFpHd:OTA3Ae;kbAm9d:MkHyGd;lkq0A:JyBE3e;nAFL3:NTMZac,s39S4;oGtAuc:sOXFj;oSUNyd:fTfGO,fTfGO,pnvXVc;oUlnpc:RagDlc;okUaUd:wItadb;pKJiXd:VCenhc;pNsl2d:j9Yuyc;pXdRYb:JKoKVe;pj82le:mg5CW;qZx2Fc:j0xrE;qaS3gd:yiLg6e;qavrXe:zQzcXe;qddgKe:d7YSfd,x4FYXe;rQSrae:C6D5Fc;sP4Vbe:VwDzFe;sTsDMc:kHVSUb;tH4IIe:Ymry6;tosKvd:ZCqP3;trZL0b:qY8PFe;uY49fb:COQbmf;uuQkY:u2V3ud;vGrMZ:lPJJ0c;vfVwPd:lcrkwe;w3bZCb:ZPGaIb;w4rSdf:XKiZ9;w9w86d:dt4g2b;wQlYve:aLUfP;wR5FRb:TtcOte;wV5Pjc:L8KGxe;whEZac:F4AmNb;xBbsrc:NEW1Qc;yGxLoc:FmAr0c;yxTchf:KUM7Z;z97YGf:oug9te;zOsCQe:Ko78Df;zaIgPb:Qtpxbd/m=cdos,hsm,jsa,mb4ZUb,d,csi,cEt90b,SNUn3,qddgKe,sTsDMc,dtl0hd,eHDfl (407)
|
||||
[0217/094240.396:INFO:CONSOLE(407)] "Permissions policy violation: unload is not allowed in this document.", source: https://www.google.com/xjs/_/js/k=xjs.hd.en.Xjz3UAwUEWA.O/am=AAAAAAAAAAAAAAAAAAAAAABAAAAAgBBoIBwCsAECAAAAAwkgAAjBCiAKAUIAGIAgCPBQNiAAExBYAhNACoFJAABoAqgCCAAAAAAAQGCAGEDgAQEAgOgAgALAAIIAJUAAAAAA8gAEBxikIAAAAAAAAAAAAIAAJAjCBQkUBBAAAAAAAAAAAAAASKWJCsM/d=1/ed=1/dg=2/br=1/rs=ACT90oGRK1SkBm1xtjsvhMA4xUYY1mTKIw/ee=AfeaP:TkrAjf;Afksuc:wMx0R;BMxAGc:E5bFse;BgS6mb:fidj5d;BjwMce:cXX2Wb;CxXAWb:YyRLvc;DULqB:RKfG5c;Dkk6ge:wJqrrd;DpcR3d:zL72xf;EABSZ:MXZt9d;ESrPQc:mNTJvc;EVNhjf:pw70Gc;EmZ2Bf:zr1jrb;EnlcNd:WeHg4;Erl4fe:FloWmf,FloWmf;F9mqte:UoRcbe;Fmv9Nc:O1Tzwc;G0KhTb:LIaoZ;G6wU6e:hezEbd;GleZL:J1A7Od;HMDDWe:G8QUdb;HqeXPd:cmbnH;IBADCc:RYquRb;IoGlCf:b5lhvb;IsdWVc:qzxzOb;JXS8fb:Qj0suc;JbMT3:M25sS;JsbNhc:Xd8iUd;KOxcK:OZqGte;KQzWid:ZMKkN;KcokUb:KiuZBf;KeeMUb:HiPxjc;KpRAue:Tia57b;LBgRLc:XVMNvd;LEikZe:byfTOb,lsjVmc;LsNahb:ucGLNb;Me32dd:MEeYgc;NPKaK:PVlQOd;NSEoX:lazG7b;Np8Qkd:Dpx6qc;Nyt6ic:jn2sGd;OgagBe:cNTe0;Oj465e:KG2eXe,KG2eXe;OohIYe:mpEAQb;Pjplud:EEDORb,PoEs9b;Q1Ow7b:x5CSu;QGR0gd:Mlhmy;R4IIIb:QWfeKf;R9Ulx:CR7Ufe;RDNBlf:zPRCJb;SLtqO:Kh1xYe;SMDL4c:fTfGO,pnvXVc;SNUn3:ZwDk9d,x8cHvb;ShpF6e:N0pvGc;TxfV6d:YORN0b;U96pRd:FsR04;UDrY1c:eps46d;UVmjEd:EesRsb;UyG7Kb:wQd0G;V2HTTe:RolTY;VGRfx:VFqbr;VN6jIc:ddQyuf;VOcgDe:YquhTb;VsAqSb:PGf2Re;VxQ32b:k0XsBb;WCEKNd:I46Hvd;WDGyFe:jcVOxd;Wfmdue:g3MJlb;XUezZ:sa7lqb;YV5bee:IvPZ6d;ZMvdv:PHFPjb;ZWEUA:afR4Cf;a56pNe:JEfCwb;aAJE9c:WHW6Ef;aZ61od:arTwJ;bFZ6gf:RsDQqe;bcPXSc:gSZLJb;cEt90b:ws9Tlc;cFTWae:gT8qnd;coJ8e:KvoW8;dIoSBb:ZgGg9b;dLlj2:Qqt3Gf;daB6be:lMxGPd;dtl0hd:lLQWFe;eBAeSb:Ck63tb;eBZ5Nd:audvde;eHDfl:ofjVkb;eO3lse:nFClrf;fWLTFc:TVBJbf;g8nkx:U4MzKc;gaub4:TN6bMe;gtVSi:ekUOYd;h3MYod:cEt90b;hK67qb:QWEO5b;heHB1:sFczq;hjRo6e:F62sG;iFQyKf:QIhFr,vfuNJf;imqimf:jKGL2e;io8t5d:sgY6Zb;jY0zg:Q6tNgc;k2Qxcb:XY51pe;kCQyJ:ueyPK;kMFpHd:OTA3Ae;kbAm9d:MkHyGd;lkq0A:JyBE3e;nAFL3:NTMZac,s39S4;oGtAuc:sOXFj;oSUNyd:fTfGO,fTfGO,pnvXVc;oUlnpc:RagDlc;okUaUd:wItadb;pKJiXd:VCenhc;pNsl2d:j9Yuyc;pXdRYb:JKoKVe;pj82le:mg5CW;qZx2Fc:j0xrE;qaS3gd:yiLg6e;qavrXe:zQzcXe;qddgKe:d7YSfd,x4FYXe;rQSrae:C6D5Fc;sP4Vbe:VwDzFe;sTsDMc:kHVSUb;tH4IIe:Ymry6;tosKvd:ZCqP3;trZL0b:qY8PFe;uY49fb:COQbmf;uuQkY:u2V3ud;vGrMZ:lPJJ0c;vfVwPd:lcrkwe;w3bZCb:ZPGaIb;w4rSdf:XKiZ9;w9w86d:dt4g2b;wQlYve:aLUfP;wR5FRb:TtcOte;wV5Pjc:L8KGxe;whEZac:F4AmNb;xBbsrc:NEW1Qc;yGxLoc:FmAr0c;yxTchf:KUM7Z;z97YGf:oug9te;zOsCQe:Ko78Df;zaIgPb:Qtpxbd/m=cdos,hsm,jsa,mb4ZUb,d,csi,cEt90b,SNUn3,qddgKe,sTsDMc,dtl0hd,eHDfl (407)
|
||||
[0217/094242.781:ERROR:gles2_cmd_decoder_passthrough.cc(946)] ContextResult::kFatalFailure: fail_if_major_perf_caveat + swiftshader
|
||||
[0217/094242.783:ERROR:gles2_cmd_decoder_passthrough.cc(946)] ContextResult::kFatalFailure: fail_if_major_perf_caveat + swiftshader
|
||||
[0217/094247.964:WARNING:sqlite_persistent_store_backend_base.cc(197)] Failed to post task from FlushAndNotifyInBackground@net\extras\sqlite\sqlite_persistent_store_backend_base.cc:246 to client_task_runner_.
|
||||
[0217/094247.964:WARNING:sqlite_persistent_store_backend_base.cc(197)] Failed to post task from FlushAndNotifyInBackground@net\extras\sqlite\sqlite_persistent_store_backend_base.cc:246 to client_task_runner_.
|
||||
[0220/184254.854:ERROR:gpu_process_host.cc(989)] GPU process exited unexpectedly: exit_code=-2147483645
|
||||
[0220/184254.854:WARNING:gpu_process_host.cc(1360)] The GPU process has crashed 1 time(s)
|
||||
[0220/184254.960:WARNING:gpu_process_host.cc(1011)] Reinitialized the GPU process after a crash. The reported initialization time was 17 ms
|
||||
[0220/184254.976:ERROR:gpu_process_host.cc(989)] GPU process exited unexpectedly: exit_code=-2147483645
|
||||
[0220/184254.976:WARNING:gpu_process_host.cc(1360)] The GPU process has crashed 2 time(s)
|
||||
[0220/184255.053:WARNING:gpu_process_host.cc(1011)] Reinitialized the GPU process after a crash. The reported initialization time was 18 ms
|
||||
[0220/184255.054:ERROR:gpu_process_host.cc(989)] GPU process exited unexpectedly: exit_code=-2147483645
|
||||
[0220/184255.054:WARNING:gpu_process_host.cc(1360)] The GPU process has crashed 3 time(s)
|
||||
[0220/184255.210:WARNING:gpu_process_host.cc(1011)] Reinitialized the GPU process after a crash. The reported initialization time was 130 ms
|
||||
[0220/184256.017:ERROR:interface_endpoint_client.cc(707)] Message 0 rejected by interface blink.mojom.WidgetHost
|
||||
[0220/184256.375:INFO:CONSOLE(407)] "Permissions policy violation: unload is not allowed in this document.", source: https://www.google.com/xjs/_/js/k=xjs.hd.en.Xjz3UAwUEWA.O/am=AAAAAAAAAAAAAAAAAAAAAABAAAAAgBBoIBwCsAECAAAAAwkgAAjBCiAKAUIAGIAgCPBQNgAAExBYAhNACoFJAABogqgCCAAAAAAAQGCAGEDgAQEAAOgAgALAAIIAJUAAAAAA8gAEBxikIAAAAAAAAAAAAIAAJAjCBQkUBBAAAAAAAAAAAAAASKWJCsM/d=1/ed=1/dg=2/br=1/rs=ACT90oEUIw5rqzX71MMAC5o5Aft4udMHtg/ee=AfeaP:TkrAjf;Afksuc:wMx0R;BMxAGc:E5bFse;BgS6mb:fidj5d;BjwMce:cXX2Wb;CxXAWb:YyRLvc;DULqB:RKfG5c;Dkk6ge:wJqrrd;DpcR3d:zL72xf;EABSZ:MXZt9d;ESrPQc:mNTJvc;EVNhjf:pw70Gc;EmZ2Bf:zr1jrb;EnlcNd:WeHg4;Erl4fe:FloWmf,FloWmf;F9mqte:UoRcbe;Fmv9Nc:O1Tzwc;G0KhTb:LIaoZ;G6wU6e:hezEbd;GleZL:J1A7Od;HMDDWe:G8QUdb;HqeXPd:cmbnH;IBADCc:RYquRb;IoGlCf:b5lhvb;IsdWVc:qzxzOb;JXS8fb:Qj0suc;JbMT3:M25sS;JsbNhc:Xd8iUd;KOxcK:OZqGte;KQzWid:ZMKkN;KcokUb:KiuZBf;KeeMUb:HiPxjc;KpRAue:Tia57b;LBgRLc:XVMNvd;LEikZe:byfTOb,lsjVmc;LsNahb:ucGLNb;Me32dd:MEeYgc;NPKaK:PVlQOd;NSEoX:lazG7b;Np8Qkd:Dpx6qc;Nyt6ic:jn2sGd;OgagBe:cNTe0;Oj465e:KG2eXe,KG2eXe;OohIYe:mpEAQb;Pjplud:EEDORb,PoEs9b;Q1Ow7b:x5CSu;QGR0gd:Mlhmy;R4IIIb:QWfeKf;R9Ulx:CR7Ufe;RDNBlf:zPRCJb;SLtqO:Kh1xYe;SMDL4c:fTfGO,pnvXVc;SNUn3:ZwDk9d,x8cHvb;ShpF6e:N0pvGc;TxfV6d:YORN0b;U96pRd:FsR04;UDrY1c:eps46d;UVmjEd:EesRsb;UyG7Kb:wQd0G;V2HTTe:RolTY;VGRfx:VFqbr;VN6jIc:ddQyuf;VOcgDe:YquhTb;VsAqSb:PGf2Re;VxQ32b:k0XsBb;WCEKNd:I46Hvd;WDGyFe:jcVOxd;Wfmdue:g3MJlb;XUezZ:sa7lqb;YV5bee:IvPZ6d;ZMvdv:PHFPjb;ZWEUA:afR4Cf;a56pNe:JEfCwb;aAJE9c:WHW6Ef;aZ61od:arTwJ;bFZ6gf:RsDQqe;bcPXSc:gSZLJb;cEt90b:ws9Tlc;cFTWae:gT8qnd;coJ8e:KvoW8;dIoSBb:ZgGg9b;dLlj2:Qqt3Gf;daB6be:lMxGPd;dtl0hd:lLQWFe;eBAeSb:Ck63tb;eBZ5Nd:audvde;eHDfl:ofjVkb;eO3lse:nFClrf;fWLTFc:TVBJbf;g8nkx:U4MzKc;gaub4:TN6bMe;gtVSi:ekUOYd;h3MYod:cEt90b;hK67qb:QWEO5b;heHB1:sFczq;hjRo6e:F62sG;iFQyKf:QIhFr,vfuNJf;imqimf:jKGL2e;io8t5d:sgY6Zb;jY0zg:Q6tNgc;k2Qxcb:XY51pe;kCQyJ:ueyPK;kMFpHd:OTA3Ae;kbAm9d:MkHyGd;lkq0A:JyBE3e;nAFL3:NTMZac,s39S4;oGtAuc:sOXFj;oSUNyd:fTfGO,fTfGO,pnvXVc;oUlnpc:RagDlc;okUaUd:wItadb;pKJiXd:VCenhc;pNsl2d:j9Yuyc;pXdRYb:JKoKVe;pj82le:mg5CW;qZx2Fc:j0xrE;qaS3gd:yiLg6e;qavrXe:zQzcXe;qddgKe:d7YSfd,x4FYXe;rQSrae:C6D5Fc;sP4Vbe:VwDzFe;sTsDMc:kHVSUb;tH4IIe:Ymry6;tosKvd:ZCqP3;trZL0b:qY8PFe;uY49fb:COQbmf;uuQkY:u2V3ud;vGrMZ:lPJJ0c;vfVwPd:lcrkwe;w3bZCb:ZPGaIb;w4rSdf:XKiZ9;w9w86d:dt4g2b;wQlYve:aLUfP;wR5FRb:TtcOte;wV5Pjc:L8KGxe;whEZac:F4AmNb;xBbsrc:NEW1Qc;yGxLoc:FmAr0c;yxTchf:KUM7Z;z97YGf:oug9te;zOsCQe:Ko78Df;zaIgPb:Qtpxbd/m=cdos,hsm,jsa,mb4ZUb,d,csi,cEt90b,SNUn3,qddgKe,sTsDMc,dtl0hd,eHDfl (407)
|
||||
[0220/184305.701:WARNING:browser_info.cc(328)] Returning a speculative frame for [11,5]
|
||||
[0220/184305.794:INFO:CONSOLE(0)] "Third-party cookie will be blocked. Learn more in the Issues tab.", source: https://www.youtube.com/ (0)
|
||||
[0220/184305.916:WARNING:browser_info.cc(328)] Returning a speculative frame for [11,5]
|
||||
[0220/184305.916:WARNING:browser_info.cc(328)] Returning a speculative frame for [11,5]
|
||||
[0220/184305.916:WARNING:browser_info.cc(328)] Returning a speculative frame for [11,5]
|
||||
[0220/184305.917:WARNING:browser_info.cc(328)] Returning a speculative frame for [11,5]
|
||||
[0220/184306.062:INFO:CONSOLE(5138)] "LegacyDataMixin will be applied to all legacy elements.
|
||||
Set `_legacyUndefinedCheck: true` on element class to enable.", source: https://www.youtube.com/s/desktop/09f82e1d/jsbin/desktop_polymer.vflset/desktop_polymer.js (5138)
|
||||
[0220/184308.442:INFO:CONSOLE(0)] "Third-party cookie will be blocked. Learn more in the Issues tab.", source: https://www.youtube.com/ (0)
|
||||
[0220/184308.889:INFO:CONSOLE(0)] "requestStorageAccessFor: Permission denied.", source: https://www.youtube.com/ (0)
|
||||
[0220/184308.890:INFO:CONSOLE(0)] "requestStorageAccessFor: Permission denied.", source: https://www.youtube.com/ (0)
|
||||
[0220/184308.890:INFO:CONSOLE(0)] "requestStorageAccessFor: Permission denied.", source: https://www.youtube.com/ (0)
|
||||
[0220/184308.945:INFO:CONSOLE(0)] "Third-party cookie will be blocked. Learn more in the Issues tab.", source: https://www.youtube.com/ (0)
|
||||
[0220/184309.198:WARNING:browser_info.cc(328)] Returning a speculative frame for [11,14]
|
||||
[0220/184309.253:INFO:CONSOLE(0)] "Third-party cookie will be blocked. Learn more in the Issues tab.", source: https://www.youtube.com/ (0)
|
||||
[0220/184309.372:WARNING:browser_info.cc(328)] Returning a speculative frame for [11,14]
|
||||
[0220/184309.373:WARNING:browser_info.cc(328)] Returning a speculative frame for [11,14]
|
||||
[0220/184309.373:WARNING:browser_info.cc(328)] Returning a speculative frame for [11,14]
|
||||
[0220/184309.373:WARNING:browser_info.cc(328)] Returning a speculative frame for [11,14]
|
||||
[0220/184309.659:INFO:CONSOLE(5142)] "LegacyDataMixin will be applied to all legacy elements.
|
||||
Set `_legacyUndefinedCheck: true` on element class to enable.", source: https://www.youtube.com/s/desktop/87423d78/jsbin/desktop_polymer.vflset/desktop_polymer.js (5142)
|
||||
[0220/184311.059:INFO:CONSOLE(0)] "Third-party cookie will be blocked. Learn more in the Issues tab.", source: https://www.youtube.com/ (0)
|
||||
[0220/184311.416:INFO:CONSOLE(0)] "Third-party cookie will be blocked. Learn more in the Issues tab.", source: https://www.youtube.com/ (0)
|
||||
[0220/184313.355:WARNING:browser_info.cc(328)] Returning a speculative frame for [12,7]
|
||||
[0220/184313.360:WARNING:browser_info.cc(328)] Returning a speculative frame for [12,7]
|
||||
[0220/184313.361:WARNING:browser_info.cc(328)] Returning a speculative frame for [12,7]
|
||||
[0220/184313.361:WARNING:browser_info.cc(328)] Returning a speculative frame for [12,7]
|
||||
[0220/184313.362:WARNING:browser_info.cc(328)] Returning a speculative frame for [12,7]
|
||||
[0220/184313.942:INFO:CONSOLE(0)] "Third-party cookie will be blocked. Learn more in the Issues tab.", source: https://www.youtube.com/watch?v=B0qAKvjH2kg (0)
|
||||
[0220/184314.471:INFO:CONSOLE(3044)] "LegacyDataMixin will be applied to all legacy elements.
|
||||
Set `_legacyUndefinedCheck: true` on element class to enable.", source: https://www.youtube.com/s/desktop/87423d78/jsbin/live_chat_polymer.vflset/live_chat_polymer.js (3044)
|
||||
[0220/184315.684:WARNING:sqlite_persistent_store_backend_base.cc(197)] Failed to post task from FlushAndNotifyInBackground@net\extras\sqlite\sqlite_persistent_store_backend_base.cc:246 to client_task_runner_.
|
||||
[0220/184315.684:WARNING:sqlite_persistent_store_backend_base.cc(197)] Failed to post task from FlushAndNotifyInBackground@net\extras\sqlite\sqlite_persistent_store_backend_base.cc:246 to client_task_runner_.
|
@ -1596,26 +1596,14 @@ end;
|
||||
|
||||
procedure TMiniBrowserFrm.CopyFramesIDsMsg(var aMessage : TMessage);
|
||||
var
|
||||
i : NativeUInt;
|
||||
TempCount : NativeUInt;
|
||||
TempArray : TCefFrameIdentifierArray;
|
||||
TempString : string;
|
||||
TempSL : TStringList;
|
||||
begin
|
||||
TempCount := Chromium1.FrameCount;
|
||||
TempSL := TStringList.Create;
|
||||
|
||||
if Chromium1.GetFrameIdentifiers(TempCount, TempArray) then
|
||||
begin
|
||||
TempString := '';
|
||||
i := 0;
|
||||
if Chromium1.GetFrameIdentifiers(TStrings(TempSL)) then
|
||||
clipboard.AsText := TempSL.Text;
|
||||
|
||||
while (i < TempCount) do
|
||||
begin
|
||||
TempString := TempString + inttostr(TempArray[i]) + CRLF;
|
||||
inc(i);
|
||||
end;
|
||||
|
||||
clipboard.AsText := TempString;
|
||||
end;
|
||||
TempSL.Free;
|
||||
end;
|
||||
|
||||
procedure TMiniBrowserFrm.CopyFramesNamesMsg(var aMessage : TMessage);
|
||||
|
Binary file not shown.
3544
docs/html/AllClasses.html
Normal file
3544
docs/html/AllClasses.html
Normal file
File diff suppressed because it is too large
Load Diff
5210
docs/html/AllConstants.html
Normal file
5210
docs/html/AllConstants.html
Normal file
File diff suppressed because it is too large
Load Diff
969
docs/html/AllFunctions.html
Normal file
969
docs/html/AllFunctions.html
Normal file
@ -0,0 +1,969 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: All Functions and Procedures</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="allitems">All Functions and Procedures</h1>
|
||||
<table class="itemstable wide_list">
|
||||
<tr class="listheader">
|
||||
<th class="itemname">Name</th>
|
||||
<th class="itemunit">Unit</th>
|
||||
<th class="itemdesc">Description</th>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefAddCrossOriginWhitelistEntry-ustring-ustring-ustring-Boolean-">CefAddCrossOriginWhitelistEntry</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p>
|
||||
|
||||
<p>Add an entry to the cross-origin access whitelist.
|
||||
|
||||
<p>The same-origin policy restricts how scripts hosted from different origins (scheme + domain + port) can communicate. By default, scripts can only access resources with the same origin. Scripts hosted on the HTTP and HTTPS schemes (but no other schemes) can use the "Access-Control-Allow-Origin" header to allow cross-origin requests. For example, <a href="https://source.example.com">https://source.example.com</a> can make XMLHttpRequest requests on <a href="http://target.example.com">http://target.example.com</a> if the <a href="http://target.example.com">http://target.example.com</a> request returns an "Access-Control-Allow-Origin: <a href="https://source.example.com">https://source.example.com</a>" response header.
|
||||
|
||||
<p>Scripts in separate frames or iframes and hosted from the same protocol and domain suffix can execute cross-origin JavaScript if both pages set the document.domain value to the same domain suffix. For example, <a href="scheme://foo.example.com">scheme://foo.example.com</a> and <a href="scheme://bar.example.com">scheme://bar.example.com</a> can communicate using JavaScript if both domains set document.domain="example.com".
|
||||
|
||||
<p>This function is used to allow access to origins that would otherwise violate the same-origin policy. Scripts hosted underneath the fully qualified |source_origin| URL (like <a href="http://www.example.com">http://www.example.com</a>) will be allowed access to all resources hosted on the specified |target_protocol| and |target_domain|. If |target_domain| is non-NULL and |allow_target_subdomains| is false (0) only exact domain matches will be allowed. If |target_domain| contains a top- level domain component (like "example.com") and |allow_target_subdomains| is true (1) sub-domain matches will be allowed. If |target_domain| is NULL and |allow_target_subdomains| if true (1) all domains and IP addresses will be allowed.
|
||||
|
||||
<p>This function cannot be used to bypass the restrictions on local or display isolated schemes. See the comments on CefRegisterCustomScheme for more information.
|
||||
|
||||
<p>This function may be called on any thread. Returns false (0) if |source_origin| is invalid or the whitelist cannot be accessed.
|
||||
|
||||
<p></p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefBase64Decode-ustring-">CefBase64Decode</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Decodes the base64 encoded string |data|. The returned value will be NULL if the decoding fails. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefBase64Encode-Pointer-NativeUInt-">CefBase64Encode</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Encodes |data| as a base64 string. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefBaseTimeNow">CefBaseTimeNow</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 TCefBaseTime type. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefBaseTimeToDateTime-TCefBaseTime-">CefBaseTimeToDateTime</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Converts TCefBaseTime to TDateTime. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefCheckAltGrPressed-WPARAM-TCefKeyEvent-">CefCheckAltGrPressed</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefClearCrossOriginWhitelist">CefClearCrossOriginWhitelist</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Remove all entries from the cross-origin access whitelist. Returns false (0) if the whitelist cannot be accessed. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefClearSchemeHandlerFactories">CefClearSchemeHandlerFactories</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Clear all scheme handler factories registered with the global request context. Returns false (0) on error. This function may be called on any thread in the browser process. Using this function is equivalent to calling cef_request_context_t::cef_request_context_get_global_context()->clear_schem e_handler_factories(). </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefColorGetA-TCefColor-">CefColorGetA</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p>Return the alpha byte from a cef_color_t value.</p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefColorGetB-TCefColor-">CefColorGetB</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p>Return the blue byte from a cef_color_t value.</p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefColorGetG-TCefColor-">CefColorGetG</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p>Return the green byte from a cef_color_t value.</p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefColorGetR-TCefColor-">CefColorGetR</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p>Return the red byte from a cef_color_t value.</p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefColorSetARGB-Byte-Byte-Byte-Byte-">CefColorSetARGB</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p>Return an cef_color_t value with the specified byte component values.</p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefCrashReportingEnabled">CefCrashReportingEnabled</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Crash reporting is configured using an INI-style config file named "crash_reporter.cfg". On Windows and Linux this file must be placed next to the main application executable. On macOS this file must be placed in the top-level app bundle Resources directory (e.g. "<appname>.app/Contents/Resources"). File contents are as follows:
|
||||
|
||||
<p><pre> # Comments start with a hash character and must be on their own line.
|
||||
|
||||
<p>[Config] ProductName=<Value of the "prod" crash key; defaults to "cef"> ProductVersion=<Value of the "ver" crash key; defaults to the CEF version> AppName=<Windows only; App-specific folder name component for storing crash information; default to "CEF"> ExternalHandler=<Windows only; Name of the external handler exe to use instead of re-launching the main exe; default to empty> BrowserCrashForwardingEnabled=<macOS only; True if browser process crashes should be forwarded to the system crash reporter; default to false> ServerURL=<crash server URL; default to empty> RateLimitEnabled=<True if uploads should be rate limited; default to true> MaxUploadsPerDay=<Max uploads per 24 hours, used if rate limit is enabled; default to 5> MaxDatabaseSizeInMb=<Total crash report disk usage greater than this value will cause older reports to be deleted; default to 20> MaxDatabaseAgeInDays=<Crash reports older than this value will be deleted; default to 5>
|
||||
|
||||
<p>[CrashKeys] my_key1=<small|medium|large> my_key2=<small|medium|large> </pre>
|
||||
|
||||
<p><strong>Config section:</strong>
|
||||
|
||||
<p>If "ProductName" and/or "ProductVersion" are set then the specified values will be included in the crash dump metadata. On macOS if these values are set to NULL then they will be retrieved from the Info.plist file using the "CFBundleName" and "CFBundleShortVersionString" keys respectively.
|
||||
|
||||
<p>If "AppName" is set on Windows then crash report information (metrics, database and dumps) will be stored locally on disk under the "C:\Users\[CurrentUser]\AppData\Local\[AppName]\User Data" folder. On other platforms the cef_settings_t.root_cache_path value will be used.
|
||||
|
||||
<p>If "ExternalHandler" is set on Windows then the specified exe will be launched as the crashpad-handler instead of re-launching the main process exe. The value can be an absolute path or a path relative to the main exe directory. On Linux the cef_settings_t.browser_subprocess_path value will be used. On macOS the existing subprocess app bundle will be used.
|
||||
|
||||
<p>If "BrowserCrashForwardingEnabled" is set to true (1) on macOS then browser process crashes will be forwarded to the system crash reporter. This results in the crash UI dialog being displayed to the user and crash reports being logged under "~/Library/Logs/DiagnosticReports". Forwarding of crash reports from non-browser processes and Debug builds is always disabled.
|
||||
|
||||
<p>If "ServerURL" is set then crashes will be uploaded as a multi-part POST request to the specified URL. Otherwise, reports will only be stored locally on disk.
|
||||
|
||||
<p>If "RateLimitEnabled" is set to true (1) then crash report uploads will be rate limited as follows: 1. If "MaxUploadsPerDay" is set to a positive value then at most the specified number of crashes will be uploaded in each 24 hour period. 2. If crash upload fails due to a network or server error then an incremental backoff delay up to a maximum of 24 hours will be applied for retries. 3. If a backoff delay is applied and "MaxUploadsPerDay" is > 1 then the "MaxUploadsPerDay" value will be reduced to 1 until the client is restarted. This helps to avoid an upload flood when the network or server error is resolved. Rate limiting is not supported on Linux.
|
||||
|
||||
<p>If "MaxDatabaseSizeInMb" is set to a positive value then crash report storage on disk will be limited to that size in megabytes. For example, on Windows each dump is about 600KB so a "MaxDatabaseSizeInMb" value of 20 equates to about 34 crash reports stored on disk. Not supported on Linux.
|
||||
|
||||
<p>If "MaxDatabaseAgeInDays" is set to a positive value then crash reports older than the specified age in days will be deleted. Not supported on Linux.
|
||||
|
||||
<p><strong>CrashKeys section:</strong>
|
||||
|
||||
<p>A maximum of 26 crash keys of each size can be specified for use by the application. Crash key values will be truncated based on the specified size (small = 64 bytes, medium = 256 bytes, large = 1024 bytes). The value of crash keys can be set from any thread or process using the CefSetCrashKeyValue function. These key/value pairs will be sent to the crash server along with the crash dump file. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefCreateDirectory-ustring-">CefCreateDirectory</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Creates a directory and all parent directories if they don't already exist. Returns true (1) on successful creation or if the directory already exists. The directory is only readable by the current user. Calling this function on the browser process UI or IO threads is not allowed. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefCreateNewTempDirectory-ustring-ustring-">CefCreateNewTempDirectory</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Creates a new directory. On Windows if |prefix| is provided the new directory name is in the format of "prefixyyyy". Returns true (1) on success and sets |newTempPath| to the full path of the directory that was created. The directory is only readable by the current user. Calling this function on the browser process UI or IO threads is not allowed. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefCreateTempDirectoryInDirectory-ustring-ustring-ustring-">CefCreateTempDirectoryInDirectory</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Creates a directory within another directory. Extra characters will be appended to |prefix| to ensure that the new directory does not have the same name as an existing directory. Returns true (1) on success and sets |newDir| to the full path of the directory that was created. The directory is only readable by the current user. Calling this function on the browser process UI or IO threads is not allowed. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefCreateUrl-TUrlParts-">CefCreateUrl</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Creates a URL from the specified |parts|, which must contain a non-NULL spec or a non-NULL host and path (at a minimum), but not both. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefCurrentlyOn-TCefThreadId-">CefCurrentlyOn</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Returns true (1) if called on the specified thread. Equivalent to using TCefTaskRunnerRef.GetForThread(threadId).BelongsToCurrentThread(). </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFApplication.html#CefCursorToWindowsCursor-TCefCursorType-">CefCursorToWindowsCursor</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFApplication.html">uCEFApplication</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefDebugLog-string-integer-">CefDebugLog</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#CefDeleteFile-ustring-Boolean-">CefDeleteFile</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Deletes the given path whether it's a file or a directory. If |path| is a directory all contents will be deleted. If |recursive| is true (1) any sub- directories and their contents will also be deleted (equivalent to executing "rm -rf", so use with caution). On POSIX environments if |path| is a symbolic link then only the symlink will be deleted. Returns true (1) on successful deletion or if |path| does not exist. Calling this function on the browser process UI or IO threads is not allowed. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefDirectoryExists-ustring-">CefDirectoryExists</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Returns true (1) if the given path exists and is a directory. Calling this function on the browser process UI or IO threads is not allowed. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefFormatUrlForSecurityDisplay-string-">CefFormatUrlForSecurityDisplay</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> This is a convenience function for formatting a URL in a concise and human- friendly way to help users make security-related decisions (or in other circumstances when people need to distinguish sites, origins, or otherwise- simplified URLs from each other). Internationalized domain names (IDN) may be presented in Unicode if the conversion is considered safe. The returned value will (a) omit the path for standard schemes, excepting file and filesystem, and (b) omit the port if it is the default for the scheme. Do not use this for URLs which will be parsed or sent to other applications. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefGetData-ICefBaseRefCounted-">CefGetData</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#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>
|
||||
<td class="itemdesc"><p> Get the extensions associated with the given mime type. This should be passed in lower case. There could be multiple extensions for a given mime type, like "html,htm" for "text/html", or "txt,text,html,..." for "text/*". Any existing elements in the provided vector will not be erased. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefGetLogSeverityName-integer-">CefGetLogSeverityName</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Gets the log severity name. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefGetMimeType-ustring-">CefGetMimeType</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Returns the mime type for the specified file extension or an NULL string if unknown. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefGetMinLogLevel">CefGetMinLogLevel</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Gets the current log verbose level (LogSeverity). </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefGetObject-Pointer-">CefGetObject</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefGetPath-TCefPathKey-">CefGetPath</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Retrieve the path associated with the specified |aPathKey|. Can be called on any thread in the browser process. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefGetTempDirectory-ustring-">CefGetTempDirectory</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Get the temporary directory provided by the system. WARNING: In general, you should use the temp directory variants below instead of this function. Those variants will ensure that the proper permissions are set so that other users on the system can't edit them while they're open (which could lead to security issues). </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefGetVLogLevel-string-">CefGetVLogLevel</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Gets the current vlog level for the given file. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefInt64GetHigh-Int64-">CefInt64GetHigh</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p>Return the high int32_t value from an int64_t value.</p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefInt64GetLow-Int64-">CefInt64GetLow</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p>Return the low int32_t value from an int64_t value.</p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefInt64Set-Integer-Integer-">CefInt64Set</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p>Return an int64_t value with the specified low and high int32_t component values.</p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefIsCertStatusError-TCefCertStatus-">CefIsCertStatusError</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Returns true (1) if the certificate status represents an error. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefIsKeyDown-WPARAM-">CefIsKeyDown</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefIsKeyToggled-WPARAM-">CefIsKeyToggled</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#CefIsRTL">CefIsRTL</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Returns true (1) if the application text direction is right-to-left. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefKeyEventLog-TCefKeyEvent-">CefKeyEventLog</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#CefLoadCRLSetsFile-ustring-">CefLoadCRLSetsFile</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Loads the existing "Certificate Revocation Lists" file that is managed by Google Chrome. This file can generally be found in Chrome's User Data directory (e.g. "C:\Users\[User]\AppData\Local\Google\Chrome\User Data\" on Windows) and is updated periodically by Chrome's component updater service. Must be called in the browser process after the context has been initialized. See <a href="https://dev.chromium.org/Home/chromium-security/crlsets">https://dev.chromium.org/Home/chromium-security/crlsets</a> for background. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefLog-string-integer-integer-string-">CefLog</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Add a log message. See the LogSeverity defines for supported |severity| values. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefMouseEventLog-TCefMouseEvent-">CefMouseEventLog</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefParseUrl-ustring-TUrlParts-">CefParseUrl</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Parse the specified |url| into its component parts. Returns false (0) if the URL is invalid. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefPostDelayedTask-TCefThreadId-ICefTask-Int64-">CefPostDelayedTask</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Post a task for delayed execution on the specified thread. Equivalent to using TCefTaskRunnerRef.GetForThread(threadId).PostDelayedTask(task, delay_ms). </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefPostTask-TCefThreadId-ICefTask-">CefPostTask</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Post a task for execution on the specified thread. Equivalent to using TCefTaskRunnerRef.GetForThread(threadId).PostTask(task). </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefRegisterExtension-ustring-ustring-ICefv8Handler-">CefRegisterExtension</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Register a new V8 extension with the specified JavaScript extension code and handler. Functions implemented by the handler are prototyped using the keyword 'native'. The calling of a native function is restricted to the scope in which the prototype of the native function is defined. This function may only be called on the render process main thread.
|
||||
|
||||
<p>Example JavaScript extension code: <pre> // create the 'example' global object if it doesn't already exist. if (!example) example = {}; // create the 'example.test' global object if it doesn't already exist. if (!example.test) example.test = {}; (function() { // Define the function 'example.test.myfunction'. example.test.myfunction = function() { // Call CefV8Handler::Execute() with the function name 'MyFunction' // and no arguments. native function MyFunction(); return MyFunction(); }; // Define the getter function for parameter 'example.test.myparam'. example.test.__defineGetter__('myparam', function() { // Call CefV8Handler::Execute() with the function name 'GetMyParam' // and no arguments. native function GetMyParam(); return GetMyParam(); }); // Define the setter function for parameter 'example.test.myparam'. example.test.__defineSetter__('myparam', function(b) { // Call CefV8Handler::Execute() with the function name 'SetMyParam' // and a single argument. native function SetMyParam(); if(b) SetMyParam(b); });
|
||||
|
||||
<p>// Extension definitions can also contain normal JavaScript variables // and functions. var myint = 0; example.test.increment = function() { myint += 1; return myint; }; })(); </pre>
|
||||
|
||||
<p>Example usage in the page: <pre> // Call the function. example.test.myfunction(); // Set the parameter. example.test.myparam = value; // Get the parameter. value = example.test.myparam; // Call another function. example.test.increment(); </pre> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefRegisterSchemeHandlerFactory-ustring-ustring-TCefResourceHandlerClass-">CefRegisterSchemeHandlerFactory</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Register a scheme handler factory with the global request context. An NULL |DomainName| value for a standard scheme will cause the factory to match all domain names. The |DomainName| value will be ignored for non-standard schemes. If |SchemeName| is a built-in scheme and no handler is returned by |factory| then the built-in scheme handler factory will be called. If |SchemeName| is a custom scheme then you must also implement the ICefApp.OnRegisterCustomSchemes function in all processes. This function may be called multiple times to change or remove the factory that matches the specified |SchemeName| and optional |DomainName|. Returns false (0) if an error occurs. This function may be called on any thread in the browser process. Using this function is equivalent to calling cef_reques t_context_t::cef_request_context_get_global_context()->register_scheme_handl er_factory(). </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefRemoveCrossOriginWhitelistEntry-ustring-ustring-ustring-Boolean-">CefRemoveCrossOriginWhitelistEntry</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Remove an entry from the cross-origin access whitelist. Returns false (0) if |source_origin| is invalid or the whitelist cannot be accessed. </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefResolveUrl-ustring-ustring-">CefResolveUrl</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> Combines specified |base_url| and |relative_url| into a ustring. </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefSetCrashKeyValue-ustring-ustring-">CefSetCrashKeyValue</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<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-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>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefStringClearAndGet-PCefString-">CefStringClearAndGet</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefStringFree-PCefString-">CefStringFree</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#CefStringFreeAndGet-PCefStringUserFree-">CefStringFreeAndGet</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMiscFunctions.html#CefStringInitialize-PCefString-">CefStringInitialize</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#CefStringSet-PCefString-ustring-">CefStringSet</a></td>
|
||||
<td class="itemunit"><a class="bold" href="uCEFMiscFunctions.html">uCEFMiscFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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="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="list2">
|
||||
<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">
|
||||
<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> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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="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="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="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="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="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="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="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="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="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="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="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="list">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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>
|
||||
</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>
|
13762
docs/html/AllIdentifiers.html
Normal file
13762
docs/html/AllIdentifiers.html
Normal file
File diff suppressed because it is too large
Load Diff
3117
docs/html/AllTypes.html
Normal file
3117
docs/html/AllTypes.html
Normal file
File diff suppressed because it is too large
Load Diff
892
docs/html/AllUnits.html
Normal file
892
docs/html/AllUnits.html
Normal file
@ -0,0 +1,892 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: All Units</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="allitems">All Units</h1>
|
||||
<table class="unitstable wide_list">
|
||||
<tr class="listheader">
|
||||
<th class="itemname">Name</th>
|
||||
<th class="itemdesc">Description</th>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFAccessibilityHandler.html">uCEFAccessibilityHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFApp.html">uCEFApp</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFApplication.html">uCEFApplication</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFApplicationCore.html">uCEFApplicationCore</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFApplicationEvents.html">uCEFApplicationEvents</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFArgCopy.html">uCEFArgCopy</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFAudioHandler.html">uCEFAudioHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFAuthCallback.html">uCEFAuthCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFBaseRefCounted.html">uCEFBaseRefCounted</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFBaseScopedWrapper.html">uCEFBaseScopedWrapper</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFBeforeDownloadCallback.html">uCEFBeforeDownloadCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFBinaryValue.html">uCEFBinaryValue</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFBitmapBitBuffer.html">uCEFBitmapBitBuffer</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFBoxLayout.html">uCEFBoxLayout</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFBrowser.html">uCEFBrowser</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFBrowserBitmap.html">uCEFBrowserBitmap</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFBrowserProcessHandler.html">uCEFBrowserProcessHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFBrowserView.html">uCEFBrowserView</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFBrowserViewComponent.html">uCEFBrowserViewComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFBrowserViewDelegate.html">uCEFBrowserViewDelegate</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFBrowserWindow.html">uCEFBrowserWindow</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFBufferPanel.html">uCEFBufferPanel</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFButton.html">uCEFButton</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFButtonComponent.html">uCEFButtonComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFButtonDelegate.html">uCEFButtonDelegate</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFCallback.html">uCEFCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFChromium.html">uCEFChromium</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFChromiumCore.html">uCEFChromiumCore</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFChromiumEvents.html">uCEFChromiumEvents</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFChromiumFontOptions.html">uCEFChromiumFontOptions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFChromiumOptions.html">uCEFChromiumOptions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFChromiumWindow.html">uCEFChromiumWindow</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFClient.html">uCEFClient</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFCommandHandler.html">uCEFCommandHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFCommandLine.html">uCEFCommandLine</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFCompletionCallback.html">uCEFCompletionCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFComponentIdList.html">uCEFComponentIdList</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFConstants.html">uCEFConstants</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFContextMenuHandler.html">uCEFContextMenuHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFContextMenuParams.html">uCEFContextMenuParams</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFCookieAccessFilter.html">uCEFCookieAccessFilter</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFCookieManager.html">uCEFCookieManager</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFCookieVisitor.html">uCEFCookieVisitor</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFCustomStreamReader.html">uCEFCustomStreamReader</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFDeleteCookiesCallback.html">uCEFDeleteCookiesCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFDevToolsMessageObserver.html">uCEFDevToolsMessageObserver</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFDialogHandler.html">uCEFDialogHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFDictionaryValue.html">uCEFDictionaryValue</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFDisplay.html">uCEFDisplay</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFDisplayHandler.html">uCEFDisplayHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFDomDocument.html">uCEFDomDocument</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFDomNode.html">uCEFDomNode</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFDomVisitor.html">uCEFDomVisitor</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFDownloadHandler.html">uCEFDownloadHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFDownloadImageCallBack.html">uCEFDownloadImageCallBack</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFDownloadItem.html">uCEFDownloadItem</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFDownloadItemCallback.html">uCEFDownloadItemCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFDragAndDropMgr.html">uCEFDragAndDropMgr</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFDragData.html">uCEFDragData</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFDragHandler.html">uCEFDragHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFEndTracingCallback.html">uCEFEndTracingCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFExtension.html">uCEFExtension</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFExtensionHandler.html">uCEFExtensionHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFFileDialogCallback.html">uCEFFileDialogCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFFileDialogInfo.html">uCEFFileDialogInfo</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFFillLayout.html">uCEFFillLayout</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFFindHandler.html">uCEFFindHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFFMXBufferPanel.html">uCEFFMXBufferPanel</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFFMXChromium.html">uCEFFMXChromium</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFFMXWindowParent.html">uCEFFMXWindowParent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFFMXWorkScheduler.html">uCEFFMXWorkScheduler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFFocusHandler.html">uCEFFocusHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFFrame.html">uCEFFrame</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFFrameHandler.html">uCEFFrameHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFGetExtensionResourceCallback.html">uCEFGetExtensionResourceCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFImage.html">uCEFImage</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFInterfaces.html">uCEFInterfaces</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFJsDialogCallback.html">uCEFJsDialogCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFJsDialogHandler.html">uCEFJsDialogHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFJson.html">uCEFJson</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFKeyboardHandler.html">uCEFKeyboardHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLabelButton.html">uCEFLabelButton</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLabelButtonComponent.html">uCEFLabelButtonComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLayout.html">uCEFLayout</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLazarusCocoa.html">uCEFLazarusCocoa</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLifeSpanHandler.html">uCEFLifeSpanHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLinkedWinControlBase.html">uCEFLinkedWinControlBase</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLinkedWindowParent.html">uCEFLinkedWindowParent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLinuxConstants.html">uCEFLinuxConstants</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLinuxEventPipe.html">uCEFLinuxEventPipe</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLinuxFunctions.html">uCEFLinuxFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLinuxTypes.html">uCEFLinuxTypes</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFListValue.html">uCEFListValue</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLoadHandler.html">uCEFLoadHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMacOSConstants.html">uCEFMacOSConstants</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMacOSCustomCocoaTimer.html">uCEFMacOSCustomCocoaTimer</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMacOSFunctions.html">uCEFMacOSFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMacOSInterfaces.html">uCEFMacOSInterfaces</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMediaAccessCallback.html">uCEFMediaAccessCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMediaAccessHandler.html">uCEFMediaAccessHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMediaObserver.html">uCEFMediaObserver</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMediaRoute.html">uCEFMediaRoute</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMediaRouteCreateCallback.html">uCEFMediaRouteCreateCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMediaRouter.html">uCEFMediaRouter</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMediaSink.html">uCEFMediaSink</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMediaSinkDeviceInfoCallback.html">uCEFMediaSinkDeviceInfoCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMediaSource.html">uCEFMediaSource</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMenuButton.html">uCEFMenuButton</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMenuButtonComponent.html">uCEFMenuButtonComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMenuButtonDelegate.html">uCEFMenuButtonDelegate</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMenuButtonPressedLock.html">uCEFMenuButtonPressedLock</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMenuModel.html">uCEFMenuModel</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMenuModelDelegate.html">uCEFMenuModelDelegate</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><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="uCEFNavigationEntry.html">uCEFNavigationEntry</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFNavigationEntryVisitor.html">uCEFNavigationEntryVisitor</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFOAuth2Helper.html">uCEFOAuth2Helper</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFOLEDragAndDrop.html">uCEFOLEDragAndDrop</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFOsrBrowserWindow.html">uCEFOsrBrowserWindow</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFOSRIMEHandler.html">uCEFOSRIMEHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFOverlayController.html">uCEFOverlayController</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFPanel.html">uCEFPanel</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFPanelComponent.html">uCEFPanelComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFPanelDelegate.html">uCEFPanelDelegate</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFPDFPrintCallback.html">uCEFPDFPrintCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFPDFPrintOptions.html">uCEFPDFPrintOptions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFPermissionHandler.html">uCEFPermissionHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFPermissionPromptCallback.html">uCEFPermissionPromptCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFPostData.html">uCEFPostData</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFPostDataElement.html">uCEFPostDataElement</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFPreferenceManager.html">uCEFPreferenceManager</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFPreferenceRegistrar.html">uCEFPreferenceRegistrar</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFPrintDialogCallback.html">uCEFPrintDialogCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFPrintHandler.html">uCEFPrintHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFPrintJobCallback.html">uCEFPrintJobCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFPrintSettings.html">uCEFPrintSettings</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFProcessMessage.html">uCEFProcessMessage</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFRegistration.html">uCEFRegistration</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFRenderHandler.html">uCEFRenderHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFRenderProcessHandler.html">uCEFRenderProcessHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFRequest.html">uCEFRequest</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFRequestContext.html">uCEFRequestContext</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFRequestContextHandler.html">uCEFRequestContextHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFRequestHandler.html">uCEFRequestHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFResolveCallback.html">uCEFResolveCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFResourceBundle.html">uCEFResourceBundle</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFResourceBundleHandler.html">uCEFResourceBundleHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFResourceHandler.html">uCEFResourceHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFResourceReadCallback.html">uCEFResourceReadCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFResourceRequestHandler.html">uCEFResourceRequestHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFResourceSkipCallback.html">uCEFResourceSkipCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFResponse.html">uCEFResponse</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFResponseFilter.html">uCEFResponseFilter</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFRunContextMenuCallback.html">uCEFRunContextMenuCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFRunFileDialogCallback.html">uCEFRunFileDialogCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFRunQuickMenuCallback.html">uCEFRunQuickMenuCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFSchemeHandlerFactory.html">uCEFSchemeHandlerFactory</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFSchemeRegistrar.html">uCEFSchemeRegistrar</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFScrollView.html">uCEFScrollView</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFScrollViewComponent.html">uCEFScrollViewComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFSelectClientCertificateCallback.html">uCEFSelectClientCertificateCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFSentinel.html">uCEFSentinel</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFServer.html">uCEFServer</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFServerComponent.html">uCEFServerComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFServerEvents.html">uCEFServerEvents</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFServerHandler.html">uCEFServerHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFSetCookieCallback.html">uCEFSetCookieCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFSharedMemoryRegion.html">uCEFSharedMemoryRegion</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFSharedProcessMessageBuilder.html">uCEFSharedProcessMessageBuilder</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFSslInfo.html">uCEFSslInfo</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFSSLStatus.html">uCEFSSLStatus</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFStreamReader.html">uCEFStreamReader</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFStreamWriter.html">uCEFStreamWriter</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFStringList.html">uCEFStringList</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFStringMap.html">uCEFStringMap</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFStringMultimap.html">uCEFStringMultimap</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFStringVisitor.html">uCEFStringVisitor</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFTask.html">uCEFTask</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFTaskRunner.html">uCEFTaskRunner</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFTextfield.html">uCEFTextfield</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFTextfieldComponent.html">uCEFTextfieldComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFTextfieldDelegate.html">uCEFTextfieldDelegate</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFThread.html">uCEFThread</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFTimerWorkScheduler.html">uCEFTimerWorkScheduler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFTypes.html">uCEFTypes</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFUrlRequest.html">uCEFUrlRequest</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFUrlrequestClient.html">uCEFUrlrequestClient</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFUrlRequestClientComponent.html">uCEFUrlRequestClientComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFUrlRequestClientEvents.html">uCEFUrlRequestClientEvents</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8Accessor.html">uCEFv8Accessor</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8ArrayBufferReleaseCallback.html">uCEFv8ArrayBufferReleaseCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8Context.html">uCEFv8Context</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8Exception.html">uCEFv8Exception</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8Handler.html">uCEFv8Handler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8Interceptor.html">uCEFv8Interceptor</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8StackFrame.html">uCEFv8StackFrame</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8StackTrace.html">uCEFv8StackTrace</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8Value.html">uCEFv8Value</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFValue.html">uCEFValue</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFView.html">uCEFView</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFViewComponent.html">uCEFViewComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFViewDelegate.html">uCEFViewDelegate</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFViewsFrameworkEvents.html">uCEFViewsFrameworkEvents</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFWaitableEvent.html">uCEFWaitableEvent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFWinControl.html">uCEFWinControl</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFWindow.html">uCEFWindow</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFWindowComponent.html">uCEFWindowComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFWindowDelegate.html">uCEFWindowDelegate</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>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFWorkScheduler.html">uCEFWorkScheduler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFWorkSchedulerQueueThread.html">uCEFWorkSchedulerQueueThread</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFWorkSchedulerThread.html">uCEFWorkSchedulerThread</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFWriteHandler.html">uCEFWriteHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFX509Certificate.html">uCEFX509Certificate</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFX509CertPrincipal.html">uCEFX509CertPrincipal</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFXmlReader.html">uCEFXmlReader</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFZipReader.html">uCEFZipReader</a></td>
|
||||
<td class="itemdesc"><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>
|
1006
docs/html/AllVariables.html
Normal file
1006
docs/html/AllVariables.html
Normal file
File diff suppressed because it is too large
Load Diff
364
docs/html/ClassHierarchy.html
Normal file
364
docs/html/ClassHierarchy.html
Normal file
@ -0,0 +1,364 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: Class Hierarchy</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="allitems">Class Hierarchy</h1>
|
||||
<ul class="hierarchylevel">
|
||||
<li>IInterface<ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFInterfaces.IApplicationCoreEvents.html">IApplicationCoreEvents</a><li><a class="bold" href="uCEFInterfaces.ICefBaseRefCounted.html">ICefBaseRefCounted</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFInterfaces.ICefAccessibilityHandler.html">ICefAccessibilityHandler</a><li><a class="bold" href="uCEFInterfaces.ICefApp.html">ICefApp</a><li><a class="bold" href="uCEFInterfaces.ICefAudioHandler.html">ICefAudioHandler</a><li><a class="bold" href="uCEFInterfaces.ICefAuthCallback.html">ICefAuthCallback</a><li><a class="bold" href="uCEFInterfaces.ICefBeforeDownloadCallback.html">ICefBeforeDownloadCallback</a><li><a class="bold" href="uCEFInterfaces.ICefBinaryValue.html">ICefBinaryValue</a><li><a class="bold" href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a><li><a class="bold" href="uCEFInterfaces.ICefBrowserHost.html">ICefBrowserHost</a><li><a class="bold" href="uCEFInterfaces.ICefBrowserProcessHandler.html">ICefBrowserProcessHandler</a><li><a class="bold" href="uCEFInterfaces.ICefCallback.html">ICefCallback</a><li><a class="bold" href="uCEFInterfaces.ICefClient.html">ICefClient</a><li><a class="bold" href="uCEFInterfaces.ICefCommandHandler.html">ICefCommandHandler</a><li><a class="bold" href="uCEFInterfaces.ICefCommandLine.html">ICefCommandLine</a><li><a class="bold" href="uCEFInterfaces.ICefCompletionCallback.html">ICefCompletionCallback</a><li><a class="bold" href="uCEFInterfaces.ICefContextMenuHandler.html">ICefContextMenuHandler</a><li><a class="bold" href="uCEFInterfaces.ICefContextMenuParams.html">ICefContextMenuParams</a><li><a class="bold" href="uCEFInterfaces.ICefCookieAccessFilter.html">ICefCookieAccessFilter</a><li><a class="bold" href="uCEFInterfaces.ICefCookieManager.html">ICefCookieManager</a><li><a class="bold" href="uCEFInterfaces.ICefCookieVisitor.html">ICefCookieVisitor</a><li><a class="bold" href="uCEFInterfaces.ICefCustomStreamReader.html">ICefCustomStreamReader</a><li><a class="bold" href="uCEFInterfaces.ICefDeleteCookiesCallback.html">ICefDeleteCookiesCallback</a><li><a class="bold" href="uCEFInterfaces.ICefDevToolsMessageObserver.html">ICefDevToolsMessageObserver</a><li><a class="bold" href="uCEFInterfaces.ICefDialogHandler.html">ICefDialogHandler</a><li><a class="bold" href="uCEFInterfaces.ICefDictionaryValue.html">ICefDictionaryValue</a><li><a class="bold" href="uCEFInterfaces.ICefDisplay.html">ICefDisplay</a><li><a class="bold" href="uCEFInterfaces.ICefDisplayHandler.html">ICefDisplayHandler</a><li><a class="bold" href="uCEFInterfaces.ICefDomDocument.html">ICefDomDocument</a><li><a class="bold" href="uCEFInterfaces.ICefDomNode.html">ICefDomNode</a><li><a class="bold" href="uCEFInterfaces.ICefDomVisitor.html">ICefDomVisitor</a><li><a class="bold" href="uCEFInterfaces.ICefDownloadHandler.html">ICefDownloadHandler</a><li><a class="bold" href="uCEFInterfaces.ICefDownloadImageCallback.html">ICefDownloadImageCallback</a><li><a class="bold" href="uCEFInterfaces.ICefDownloadItem.html">ICefDownloadItem</a><li><a class="bold" href="uCEFInterfaces.ICefDownloadItemCallback.html">ICefDownloadItemCallback</a><li><a class="bold" href="uCEFInterfaces.ICefDragData.html">ICefDragData</a><li><a class="bold" href="uCEFInterfaces.ICefDragHandler.html">ICefDragHandler</a><li><a class="bold" href="uCEFInterfaces.ICefEndTracingCallback.html">ICefEndTracingCallback</a><li><a class="bold" href="uCEFInterfaces.ICefExtension.html">ICefExtension</a><li><a class="bold" href="uCEFInterfaces.ICefExtensionHandler.html">ICefExtensionHandler</a><li><a class="bold" href="uCEFInterfaces.ICefFileDialogCallback.html">ICefFileDialogCallback</a><li><a class="bold" href="uCEFInterfaces.ICefFindHandler.html">ICefFindHandler</a><li><a class="bold" href="uCEFInterfaces.ICefFocusHandler.html">ICefFocusHandler</a><li><a class="bold" href="uCEFInterfaces.ICefFrame.html">ICefFrame</a><li><a class="bold" href="uCEFInterfaces.ICefFrameHandler.html">ICefFrameHandler</a><li><a class="bold" href="uCEFInterfaces.ICefGetExtensionResourceCallback.html">ICefGetExtensionResourceCallback</a><li><a class="bold" href="uCEFInterfaces.ICefImage.html">ICefImage</a><li><a class="bold" href="uCEFInterfaces.ICefJsDialogCallback.html">ICefJsDialogCallback</a><li><a class="bold" href="uCEFInterfaces.ICefJsDialogHandler.html">ICefJsDialogHandler</a><li><a class="bold" href="uCEFInterfaces.ICefKeyboardHandler.html">ICefKeyboardHandler</a><li><a class="bold" href="uCEFInterfaces.ICefLayout.html">ICefLayout</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFInterfaces.ICefBoxLayout.html">ICefBoxLayout</a><li><a class="bold" href="uCEFInterfaces.ICefFillLayout.html">ICefFillLayout</a></ul>
|
||||
</li>
|
||||
<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.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>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFInterfaces.ICefPanel.html">ICefPanel</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFInterfaces.ICefWindow.html">ICefWindow</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFInterfaces.ICefScrollView.html">ICefScrollView</a><li><a class="bold" href="uCEFInterfaces.ICefTextfield.html">ICefTextfield</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFInterfaces.ICefViewDelegate.html">ICefViewDelegate</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFInterfaces.ICefBrowserViewDelegate.html">ICefBrowserViewDelegate</a><li><a class="bold" href="uCEFInterfaces.ICefButtonDelegate.html">ICefButtonDelegate</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFInterfaces.ICefMenuButtonDelegate.html">ICefMenuButtonDelegate</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFInterfaces.ICefPanelDelegate.html">ICefPanelDelegate</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFInterfaces.ICefWindowDelegate.html">ICefWindowDelegate</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFInterfaces.ICefTextfieldDelegate.html">ICefTextfieldDelegate</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFInterfaces.ICefWaitableEvent.html">ICefWaitableEvent</a><li><a class="bold" href="uCEFInterfaces.ICefWriteHandler.html">ICefWriteHandler</a><li><a class="bold" href="uCEFInterfaces.ICefX509Certificate.html">ICefX509Certificate</a><li><a class="bold" href="uCEFInterfaces.ICefX509CertPrincipal.html">ICefX509CertPrincipal</a><li><a class="bold" href="uCEFInterfaces.ICefXmlReader.html">ICefXmlReader</a><li><a class="bold" href="uCEFInterfaces.ICefZipReader.html">ICefZipReader</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFInterfaces.ICefStringList.html">ICefStringList</a><li><a class="bold" href="uCEFInterfaces.ICefStringMap.html">ICefStringMap</a><li><a class="bold" href="uCEFInterfaces.ICefStringMultimap.html">ICefStringMultimap</a><li><a class="bold" href="uCEFInterfaces.ICEFUrlRequestClientEvents.html">ICEFUrlRequestClientEvents</a><li><a class="bold" href="uCEFInterfaces.ICefViewDelegateEvents.html">ICefViewDelegateEvents</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFInterfaces.ICefBrowserViewDelegateEvents.html">ICefBrowserViewDelegateEvents</a><li><a class="bold" href="uCEFInterfaces.ICefButtonDelegateEvents.html">ICefButtonDelegateEvents</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFInterfaces.ICefMenuButtonDelegateEvents.html">ICefMenuButtonDelegateEvents</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFInterfaces.ICefPanelDelegateEvents.html">ICefPanelDelegateEvents</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFInterfaces.ICefWindowDelegateEvents.html">ICefWindowDelegateEvents</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFInterfaces.ICefTextfieldDelegateEvents.html">ICefTextfieldDelegateEvents</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFInterfaces.IChromiumEvents.html">IChromiumEvents</a><li><a class="bold" href="uCEFInterfaces.IServerEvents.html">IServerEvents</a></ul>
|
||||
</li>
|
||||
<li>TBitmap<ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFBrowserBitmap.TCEFBrowserBitmap.html">TCEFBrowserBitmap</a></ul>
|
||||
</li>
|
||||
<li>TCommonCustomForm<ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFFMXWindowParent.TFMXWindowParent.html">TFMXWindowParent</a></ul>
|
||||
</li>
|
||||
<li>TControl<ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFFMXBufferPanel.TFMXBufferPanel.html">TFMXBufferPanel</a></ul>
|
||||
</li>
|
||||
<li>TCustomPanel<ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFBufferPanel.TBufferPanel.html">TBufferPanel</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFOsrBrowserWindow.TOsrBrowserWindow.html">TOsrBrowserWindow</a></ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>TInterfacedObject<ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFApplicationCore.TCefApplicationCore.html">TCefApplicationCore</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFApplication.TCefApplication.html">TCefApplication</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFBaseRefCounted.TCefBaseRefCountedOwn.html">TCefBaseRefCountedOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFAccessibilityHandler.TCEFAccessibilityHandlerOwn.html">TCEFAccessibilityHandlerOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFAccessibilityHandler.TCustomAccessibilityHandler.html">TCustomAccessibilityHandler</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFApp.TCefAppOwn.html">TCefAppOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFApp.TCustomCefApp.html">TCustomCefApp</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFAudioHandler.TCefAudioHandlerOwn.html">TCefAudioHandlerOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFAudioHandler.TCustomAudioHandler.html">TCustomAudioHandler</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFBinaryValue.TCefBinaryValueOwn.html">TCefBinaryValueOwn</a><li><a class="bold" href="uCEFBrowserProcessHandler.TCefBrowserProcessHandlerOwn.html">TCefBrowserProcessHandlerOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFBrowserProcessHandler.TCefCustomBrowserProcessHandler.html">TCefCustomBrowserProcessHandler</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFClient.TCefClientOwn.html">TCefClientOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFClient.TCustomClientHandler.html">TCustomClientHandler</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFCommandHandler.TCefCommandHandlerOwn.html">TCefCommandHandlerOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFCommandHandler.TCustomCommandHandler.html">TCustomCommandHandler</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFCompletionCallback.TCefCompletionCallbackOwn.html">TCefCompletionCallbackOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFCompletionCallback.TCefCustomCompletionCallback.html">TCefCustomCompletionCallback</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFRequestContext.TCefClearCertificateExceptionsCompletionCallback.html">TCefClearCertificateExceptionsCompletionCallback</a><li><a class="bold" href="uCEFRequestContext.TCefClearHttpAuthCredentialsCompletionCallback.html">TCefClearHttpAuthCredentialsCompletionCallback</a><li><a class="bold" href="uCEFRequestContext.TCefCloseAllConnectionsCompletionCallback.html">TCefCloseAllConnectionsCompletionCallback</a><li><a class="bold" href="uCEFCookieManager.TCefFlushStoreCompletionCallback.html">TCefFlushStoreCompletionCallback</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFCompletionCallback.TCefEventCompletionCallback.html">TCefEventCompletionCallback</a><li><a class="bold" href="uCEFCompletionCallback.TCefFastCompletionCallback.html">TCefFastCompletionCallback</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFContextMenuHandler.TCefContextMenuHandlerOwn.html">TCefContextMenuHandlerOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFContextMenuHandler.TCustomContextMenuHandler.html">TCustomContextMenuHandler</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFCookieAccessFilter.TCefCookieAccessFilterOwn.html">TCefCookieAccessFilterOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFCookieAccessFilter.TCustomCookieAccessFilter.html">TCustomCookieAccessFilter</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFCookieVisitor.TCefCookieVisitorOwn.html">TCefCookieVisitorOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFCookieVisitor.TCefCustomCookieVisitor.html">TCefCustomCookieVisitor</a><li><a class="bold" href="uCEFCookieVisitor.TCefFastCookieVisitor.html">TCefFastCookieVisitor</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFCustomStreamReader.TCefCustomStreamReader.html">TCefCustomStreamReader</a><li><a class="bold" href="uCEFDeleteCookiesCallback.TCefDeleteCookiesCallbackOwn.html">TCefDeleteCookiesCallbackOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFDeleteCookiesCallback.TCefCustomDeleteCookiesCallback.html">TCefCustomDeleteCookiesCallback</a><li><a class="bold" href="uCEFDeleteCookiesCallback.TCefFastDeleteCookiesCallback.html">TCefFastDeleteCookiesCallback</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFDevToolsMessageObserver.TCEFDevToolsMessageObserverOwn.html">TCEFDevToolsMessageObserverOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFDevToolsMessageObserver.TCustomDevToolsMessageObserver.html">TCustomDevToolsMessageObserver</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFDialogHandler.TCefDialogHandlerOwn.html">TCefDialogHandlerOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFDialogHandler.TCustomDialogHandler.html">TCustomDialogHandler</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFDisplayHandler.TCefDisplayHandlerOwn.html">TCefDisplayHandlerOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFDisplayHandler.TCustomDisplayHandler.html">TCustomDisplayHandler</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFDomVisitor.TCefDomVisitorOwn.html">TCefDomVisitorOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFDomVisitor.TCefFastDomVisitor.html">TCefFastDomVisitor</a><li><a class="bold" href="uCEFDomVisitor.TCefFastDomVisitor2.html">TCefFastDomVisitor2</a><li><a class="bold" href="uCEFDomVisitor.TCefFastDomVisitor3.html">TCefFastDomVisitor3</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFDownloadHandler.TCefDownloadHandlerOwn.html">TCefDownloadHandlerOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFDownloadHandler.TCustomDownloadHandler.html">TCustomDownloadHandler</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFDownloadImageCallBack.TCefDownloadImageCallbackOwn.html">TCefDownloadImageCallbackOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFDownloadImageCallBack.TCefCustomDownloadImageCallback.html">TCefCustomDownloadImageCallback</a><li><a class="bold" href="uCEFDownloadImageCallBack.TCefFastDownloadImageCallback.html">TCefFastDownloadImageCallback</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFDragHandler.TCefDragHandlerOwn.html">TCefDragHandlerOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFDragHandler.TCustomDragHandler.html">TCustomDragHandler</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFEndTracingCallback.TCefEndTracingCallbackOwn.html">TCefEndTracingCallbackOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFEndTracingCallback.TCefFastEndTracingCallback.html">TCefFastEndTracingCallback</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFExtensionHandler.TCefExtensionHandlerOwn.html">TCefExtensionHandlerOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFExtensionHandler.TCustomExtensionHandler.html">TCustomExtensionHandler</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFFindHandler.TCefFindHandlerOwn.html">TCefFindHandlerOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFFindHandler.TCustomFindHandler.html">TCustomFindHandler</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFFocusHandler.TCefFocusHandlerOwn.html">TCefFocusHandlerOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFFocusHandler.TCustomFocusHandler.html">TCustomFocusHandler</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFFrameHandler.TCefFrameHandlerOwn.html">TCefFrameHandlerOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFFrameHandler.TCustomFrameHandler.html">TCustomFrameHandler</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFJsDialogHandler.TCefJsDialogHandlerOwn.html">TCefJsDialogHandlerOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFJsDialogHandler.TCustomJsDialogHandler.html">TCustomJsDialogHandler</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFKeyboardHandler.TCefKeyboardHandlerOwn.html">TCefKeyboardHandlerOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFKeyboardHandler.TCustomKeyboardHandler.html">TCustomKeyboardHandler</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFLifeSpanHandler.TCefLifeSpanHandlerOwn.html">TCefLifeSpanHandlerOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFLifeSpanHandler.TCustomLifeSpanHandler.html">TCustomLifeSpanHandler</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFLoadHandler.TCefLoadHandlerOwn.html">TCefLoadHandlerOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFLoadHandler.TCustomLoadHandler.html">TCustomLoadHandler</a><li><a class="bold" href="uCEFLoadHandler.TCustomRenderLoadHandler.html">TCustomRenderLoadHandler</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFMediaAccessHandler.TCefMediaAccessHandlerOwn.html">TCefMediaAccessHandlerOwn</a><li><a class="bold" href="uCEFMediaObserver.TCefMediaObserverOwn.html">TCefMediaObserverOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFMediaObserver.TCustomMediaObserver.html">TCustomMediaObserver</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFMediaRouteCreateCallback.TCefMediaRouteCreateCallbackOwn.html">TCefMediaRouteCreateCallbackOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFMediaRouteCreateCallback.TCefCustomMediaRouteCreateCallback.html">TCefCustomMediaRouteCreateCallback</a><li><a class="bold" href="uCEFMediaRouteCreateCallback.TCefFastMediaRouteCreateCallback.html">TCefFastMediaRouteCreateCallback</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFMediaSinkDeviceInfoCallback.TCefMediaSinkDeviceInfoCallbackOwn.html">TCefMediaSinkDeviceInfoCallbackOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFMediaSinkDeviceInfoCallback.TCefCustomMediaSinkDeviceInfoCallback.html">TCefCustomMediaSinkDeviceInfoCallback</a><li><a class="bold" href="uCEFMediaSinkDeviceInfoCallback.TCefFastMediaSinkDeviceInfoCallback.html">TCefFastMediaSinkDeviceInfoCallback</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFMenuModelDelegate.TCefMenuModelDelegateOwn.html">TCefMenuModelDelegateOwn</a><li><a class="bold" href="uCEFNavigationEntryVisitor.TCefNavigationEntryVisitorOwn.html">TCefNavigationEntryVisitorOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFNavigationEntryVisitor.TCefFastNavigationEntryVisitor.html">TCefFastNavigationEntryVisitor</a><li><a class="bold" href="uCEFNavigationEntryVisitor.TCustomCefNavigationEntryVisitor.html">TCustomCefNavigationEntryVisitor</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFPDFPrintCallback.TCefPdfPrintCallbackOwn.html">TCefPdfPrintCallbackOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFPDFPrintCallback.TCefCustomPDFPrintCallBack.html">TCefCustomPDFPrintCallBack</a><li><a class="bold" href="uCEFPDFPrintCallback.TCefFastPdfPrintCallback.html">TCefFastPdfPrintCallback</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFPermissionHandler.TCefPermissionHandlerOwn.html">TCefPermissionHandlerOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFPermissionHandler.TCustomPermissionHandler.html">TCustomPermissionHandler</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFPostDataElement.TCefPostDataElementOwn.html">TCefPostDataElementOwn</a><li><a class="bold" href="uCEFPrintHandler.TCefPrintHandlerOwn.html">TCefPrintHandlerOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFPrintHandler.TCustomPrintHandler.html">TCustomPrintHandler</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFRenderHandler.TCefRenderHandlerOwn.html">TCefRenderHandlerOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFRenderHandler.TCustomRenderHandler.html">TCustomRenderHandler</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFRenderProcessHandler.TCefRenderProcessHandlerOwn.html">TCefRenderProcessHandlerOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFRenderProcessHandler.TCefCustomRenderProcessHandler.html">TCefCustomRenderProcessHandler</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFRequestContextHandler.TCefRequestContextHandlerOwn.html">TCefRequestContextHandlerOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFRequestContextHandler.TCustomRequestContextHandler.html">TCustomRequestContextHandler</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFRequestHandler.TCefRequestHandlerOwn.html">TCefRequestHandlerOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFRequestHandler.TCustomRequestHandler.html">TCustomRequestHandler</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFResolveCallback.TCefResolveCallbackOwn.html">TCefResolveCallbackOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFResolveCallback.TCefCustomResolveCallback.html">TCefCustomResolveCallback</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFResourceBundleHandler.TCefResourceBundleHandlerOwn.html">TCefResourceBundleHandlerOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFResourceBundleHandler.TCefCustomResourceBundleHandler.html">TCefCustomResourceBundleHandler</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFResourceHandler.TCefResourceHandlerOwn.html">TCefResourceHandlerOwn</a><li><a class="bold" href="uCEFResourceRequestHandler.TCefResourceRequestHandlerOwn.html">TCefResourceRequestHandlerOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFResourceRequestHandler.TCustomResourceRequestHandler.html">TCustomResourceRequestHandler</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFResponseFilter.TCefResponseFilterOwn.html">TCefResponseFilterOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFResponseFilter.TCustomResponseFilter.html">TCustomResponseFilter</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFRunFileDialogCallback.TCefRunFileDialogCallbackOwn.html">TCefRunFileDialogCallbackOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFRunFileDialogCallback.TCefFastRunFileDialogCallback.html">TCefFastRunFileDialogCallback</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFSchemeHandlerFactory.TCefSchemeHandlerFactoryOwn.html">TCefSchemeHandlerFactoryOwn</a><li><a class="bold" href="uCEFServerHandler.TCEFServerHandlerOwn.html">TCEFServerHandlerOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFServerHandler.TCustomServerHandler.html">TCustomServerHandler</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFSetCookieCallback.TCefSetCookieCallbackOwn.html">TCefSetCookieCallbackOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFSetCookieCallback.TCefCustomSetCookieCallback.html">TCefCustomSetCookieCallback</a><li><a class="bold" href="uCEFSetCookieCallback.TCefFastSetCookieCallback.html">TCefFastSetCookieCallback</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFStringVisitor.TCefStringVisitorOwn.html">TCefStringVisitorOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFStringVisitor.TCefFastStringVisitor.html">TCefFastStringVisitor</a><li><a class="bold" href="uCEFStringVisitor.TCustomCefStringVisitor.html">TCustomCefStringVisitor</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFTask.TCefTaskOwn.html">TCefTaskOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFTask.TCefFastTask.html">TCefFastTask</a><li><a class="bold" href="uCEFTask.TCefManagedTask.html">TCefManagedTask</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFTask.TCefChromiumTask.html">TCefChromiumTask</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFTask.TCefBrowserNavigationTask.html">TCefBrowserNavigationTask</a><li><a class="bold" href="uCEFTask.TCefEnableFocusTask.html">TCefEnableFocusTask</a><li><a class="bold" href="uCEFTask.TCefGenericTask.html">TCefGenericTask</a><li><a class="bold" href="uCEFTask.TCefReadZoomTask.html">TCefReadZoomTask</a><li><a class="bold" href="uCEFTask.TCefSavePrefsTask.html">TCefSavePrefsTask</a><li><a class="bold" href="uCEFTask.TCefSetAudioMutedTask.html">TCefSetAudioMutedTask</a><li><a class="bold" href="uCEFTask.TCefSetZoomLevelTask.html">TCefSetZoomLevelTask</a><li><a class="bold" href="uCEFTask.TCefSetZoomPctTask.html">TCefSetZoomPctTask</a><li><a class="bold" href="uCEFTask.TCefSetZoomStepTask.html">TCefSetZoomStepTask</a><li><a class="bold" href="uCEFTask.TCefToggleAudioMutedTask.html">TCefToggleAudioMutedTask</a><li><a class="bold" href="uCEFTask.TCefUpdatePrefsTask.html">TCefUpdatePrefsTask</a><li><a class="bold" href="uCEFTask.TCefUpdateZoomPctTask.html">TCefUpdateZoomPctTask</a><li><a class="bold" href="uCEFTask.TCefUpdateZoomStepTask.html">TCefUpdateZoomStepTask</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFTask.TCefURLRequestClientTask.html">TCefURLRequestClientTask</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFTask.TCefURLRequestTask.html">TCefURLRequestTask</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFTask.TCefViewDelegateTask.html">TCefViewDelegateTask</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFTask.TCefCreateCustomViewTask.html">TCefCreateCustomViewTask</a></ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFUrlrequestClient.TCefUrlrequestClientOwn.html">TCefUrlrequestClientOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFUrlrequestClient.TCustomCefUrlrequestClient.html">TCustomCefUrlrequestClient</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFv8Accessor.TCefV8AccessorOwn.html">TCefV8AccessorOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFv8Accessor.TCefFastV8Accessor.html">TCefFastV8Accessor</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFv8ArrayBufferReleaseCallback.TCefv8ArrayBufferReleaseCallbackOwn.html">TCefv8ArrayBufferReleaseCallbackOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFv8ArrayBufferReleaseCallback.TCefFastv8ArrayBufferReleaseCallback.html">TCefFastv8ArrayBufferReleaseCallback</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFv8Handler.TCefv8HandlerOwn.html">TCefv8HandlerOwn</a><li><a class="bold" href="uCEFv8Interceptor.TCefV8InterceptorOwn.html">TCefV8InterceptorOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFv8Interceptor.TCefFastV8Interceptor.html">TCefFastV8Interceptor</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFViewDelegate.TCefViewDelegateOwn.html">TCefViewDelegateOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFBrowserViewDelegate.TCefBrowserViewDelegateOwn.html">TCefBrowserViewDelegateOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFBrowserViewDelegate.TCustomBrowserViewDelegate.html">TCustomBrowserViewDelegate</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFButtonDelegate.TCefButtonDelegateOwn.html">TCefButtonDelegateOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFMenuButtonDelegate.TCefMenuButtonDelegateOwn.html">TCefMenuButtonDelegateOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFMenuButtonDelegate.TCustomMenuButtonDelegate.html">TCustomMenuButtonDelegate</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFButtonDelegate.TCustomButtonDelegate.html">TCustomButtonDelegate</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFPanelDelegate.TCefPanelDelegateOwn.html">TCefPanelDelegateOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFWindowDelegate.TCefWindowDelegateOwn.html">TCefWindowDelegateOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFWindowDelegate.TCustomWindowDelegate.html">TCustomWindowDelegate</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFPanelDelegate.TCustomPanelDelegate.html">TCustomPanelDelegate</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFTextfieldDelegate.TCefTextfieldDelegateOwn.html">TCefTextfieldDelegateOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFTextfieldDelegate.TCustomTextfieldDelegate.html">TCustomTextfieldDelegate</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFViewDelegate.TCustomViewDelegate.html">TCustomViewDelegate</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFWriteHandler.TCefWriteHandlerOwn.html">TCefWriteHandlerOwn</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFWriteHandler.TCefBytesWriteHandler.html">TCefBytesWriteHandler</a></ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFBaseRefCounted.TCefBaseRefCountedRef.html">TCefBaseRefCountedRef</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFAuthCallback.TCefAuthCallbackRef.html">TCefAuthCallbackRef</a><li><a class="bold" href="uCEFBeforeDownloadCallback.TCefBeforeDownloadCallbackRef.html">TCefBeforeDownloadCallbackRef</a><li><a class="bold" href="uCEFBinaryValue.TCefBinaryValueRef.html">TCefBinaryValueRef</a><li><a class="bold" href="uCEFBrowser.TCefBrowserHostRef.html">TCefBrowserHostRef</a><li><a class="bold" href="uCEFBrowser.TCefBrowserRef.html">TCefBrowserRef</a><li><a class="bold" href="uCEFCallback.TCefCallbackRef.html">TCefCallbackRef</a><li><a class="bold" href="uCEFClient.TCefClientRef.html">TCefClientRef</a><li><a class="bold" href="uCEFCommandLine.TCefCommandLineRef.html">TCefCommandLineRef</a><li><a class="bold" href="uCEFContextMenuParams.TCefContextMenuParamsRef.html">TCefContextMenuParamsRef</a><li><a class="bold" href="uCEFCookieAccessFilter.TCefCookieAccessFilterRef.html">TCefCookieAccessFilterRef</a><li><a class="bold" href="uCEFCookieManager.TCefCookieManagerRef.html">TCefCookieManagerRef</a><li><a class="bold" href="uCEFDictionaryValue.TCefDictionaryValueRef.html">TCefDictionaryValueRef</a><li><a class="bold" href="uCEFDisplay.TCefDisplayRef.html">TCefDisplayRef</a><li><a class="bold" href="uCEFDomDocument.TCefDomDocumentRef.html">TCefDomDocumentRef</a><li><a class="bold" href="uCEFDomNode.TCefDomNodeRef.html">TCefDomNodeRef</a><li><a class="bold" href="uCEFDownloadItemCallback.TCefDownloadItemCallbackRef.html">TCefDownloadItemCallbackRef</a><li><a class="bold" href="uCEFDownloadItem.TCefDownloadItemRef.html">TCefDownloadItemRef</a><li><a class="bold" href="uCEFDragData.TCefDragDataRef.html">TCefDragDataRef</a><li><a class="bold" href="uCEFExtensionHandler.TCefExtensionHandlerRef.html">TCefExtensionHandlerRef</a><li><a class="bold" href="uCEFExtension.TCefExtensionRef.html">TCefExtensionRef</a><li><a class="bold" href="uCEFFileDialogCallback.TCefFileDialogCallbackRef.html">TCefFileDialogCallbackRef</a><li><a class="bold" href="uCEFFrame.TCefFrameRef.html">TCefFrameRef</a><li><a class="bold" href="uCEFGetExtensionResourceCallback.TCefGetExtensionResourceCallbackRef.html">TCefGetExtensionResourceCallbackRef</a><li><a class="bold" href="uCEFImage.TCefImageRef.html">TCefImageRef</a><li><a class="bold" href="uCEFJsDialogCallback.TCefJsDialogCallbackRef.html">TCefJsDialogCallbackRef</a><li><a class="bold" href="uCEFLayout.TCefLayoutRef.html">TCefLayoutRef</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFBoxLayout.TCefBoxLayoutRef.html">TCefBoxLayoutRef</a><li><a class="bold" href="uCEFFillLayout.TCefFillLayoutRef.html">TCefFillLayoutRef</a></ul>
|
||||
</li>
|
||||
<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="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>
|
||||
<li><a class="bold" href="uCEFPanelDelegate.TCefPanelDelegateRef.html">TCefPanelDelegateRef</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFWindowDelegate.TCefWindowDelegateRef.html">TCefWindowDelegateRef</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFTextfieldDelegate.TCefTextfieldDelegateRef.html">TCefTextfieldDelegateRef</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFView.TCefViewRef.html">TCefViewRef</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFBrowserView.TCefBrowserViewRef.html">TCefBrowserViewRef</a><li><a class="bold" href="uCEFButton.TCefButtonRef.html">TCefButtonRef</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFLabelButton.TCefLabelButtonRef.html">TCefLabelButtonRef</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFMenuButton.TCefMenuButtonRef.html">TCefMenuButtonRef</a></ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFPanel.TCefPanelRef.html">TCefPanelRef</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFWindow.TCefWindowRef.html">TCefWindowRef</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFScrollView.TCefScrollViewRef.html">TCefScrollViewRef</a><li><a class="bold" href="uCEFTextfield.TCefTextfieldRef.html">TCefTextfieldRef</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFWaitableEvent.TCefWaitableEventRef.html">TCefWaitableEventRef</a><li><a class="bold" href="uCEFX509Certificate.TCEFX509CertificateRef.html">TCEFX509CertificateRef</a><li><a class="bold" href="uCEFX509CertPrincipal.TCefX509CertPrincipalRef.html">TCefX509CertPrincipalRef</a><li><a class="bold" href="uCEFXmlReader.TCefXmlReaderRef.html">TCefXmlReaderRef</a><li><a class="bold" href="uCEFZipReader.TCefZipReaderRef.html">TCefZipReaderRef</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFStringList.TCefCustomStringList.html">TCefCustomStringList</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFStringList.TCefStringListOwn.html">TCefStringListOwn</a><li><a class="bold" href="uCEFStringList.TCefStringListRef.html">TCefStringListRef</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFStringMap.TCefCustomStringMap.html">TCefCustomStringMap</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFStringMap.TCefStringMapOwn.html">TCefStringMapOwn</a><li><a class="bold" href="uCEFStringMap.TCefStringMapRef.html">TCefStringMapRef</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFStringMultimap.TCefCustomStringMultimap.html">TCefCustomStringMultimap</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFStringMultimap.TCefStringMultimapOwn.html">TCefStringMultimapOwn</a><li><a class="bold" href="uCEFStringMultimap.TCefStringMultimapRef.html">TCefStringMultimapRef</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFBaseRefCounted.TLoggingInterfacedObject.html">TLoggingInterfacedObject</a><li><a class="bold" href="uCEFOLEDragAndDrop.TOLEDataObject.html">TOLEDataObject</a><li><a class="bold" href="uCEFOLEDragAndDrop.TOLEDropSource.html">TOLEDropSource</a><li><a class="bold" href="uCEFOLEDragAndDrop.TOLEDropTarget.html">TOLEDropTarget</a><li><a class="bold" href="uCEFOLEDragAndDrop.TOLEEnumFormatEtc.html">TOLEEnumFormatEtc</a></ul>
|
||||
</li>
|
||||
<li>TObject<ul class="hierarchylevel">
|
||||
<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="uCEFChromiumCore.TBrowserInfoList.html">TBrowserInfoList</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFOLEDragAndDrop.TOLEDragAndDropMgr.html">TOLEDragAndDropMgr</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFDragAndDropMgr.TCEFDragAndDropMgr.html">TCEFDragAndDropMgr</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFPDFPrintOptions.TPDFPrintOptions.html">TPDFPrintOptions</a><li>TPersistent<ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFChromiumFontOptions.TChromiumFontOptions.html">TChromiumFontOptions</a><li><a class="bold" href="uCEFChromiumOptions.TChromiumOptions.html">TChromiumOptions</a><li>TComponent<ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFSentinel.TCEFSentinel.html">TCEFSentinel</a><li><a class="bold" href="uCEFServerComponent.TCEFServerComponent.html">TCEFServerComponent</a><li><a class="bold" href="uCEFUrlRequestClientComponent.TCEFUrlRequestClientComponent.html">TCEFUrlRequestClientComponent</a><li><a class="bold" href="uCEFViewComponent.TCEFViewComponent.html">TCEFViewComponent</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html">TCEFBrowserViewComponent</a><li><a class="bold" href="uCEFButtonComponent.TCEFButtonComponent.html">TCEFButtonComponent</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFLabelButtonComponent.TCEFLabelButtonComponent.html">TCEFLabelButtonComponent</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFMenuButtonComponent.TCEFMenuButtonComponent.html">TCEFMenuButtonComponent</a></ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFPanelComponent.TCEFPanelComponent.html">TCEFPanelComponent</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFWindowComponent.TCEFWindowComponent.html">TCEFWindowComponent</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFScrollViewComponent.TCEFScrollViewComponent.html">TCEFScrollViewComponent</a><li><a class="bold" href="uCEFTextfieldComponent.TCEFTextfieldComponent.html">TCEFTextfieldComponent</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFWorkScheduler.TCEFWorkScheduler.html">TCEFWorkScheduler</a><li><a class="bold" href="uCEFChromiumCore.TChromiumCore.html">TChromiumCore</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFChromium.TChromium.html">TChromium</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFBrowserWindow.TEmbeddedChromium.html">TEmbeddedChromium</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFOsrBrowserWindow.TEmbeddedOsrChromium.html">TEmbeddedOsrChromium</a></ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFFMXChromium.TFMXChromium.html">TFMXChromium</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFFMXWorkScheduler.TFMXWorkScheduler.html">TFMXWorkScheduler</a></ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>TThread<ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFApplicationCore.TCEFDirectoryDeleterThread.html">TCEFDirectoryDeleterThread</a><li><a class="bold" href="uCEFWorkSchedulerQueueThread.TCEFWorkSchedulerQueueThread.html">TCEFWorkSchedulerQueueThread</a><li><a class="bold" href="uCEFWorkSchedulerThread.TCEFWorkSchedulerThread.html">TCEFWorkSchedulerThread</a></ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>TWinControl<ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFWinControl.TCEFWinControl.html">TCEFWinControl</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFLinkedWinControlBase.TCEFLinkedWinControlBase.html">TCEFLinkedWinControlBase</a><ul class="hierarchylevel">
|
||||
<li><a class="bold" href="uCEFBrowserWindow.TBrowserWindow.html">TBrowserWindow</a><li><a class="bold" href="uCEFLinkedWindowParent.TCEFLinkedWindowParent.html">TCEFLinkedWindowParent</a><li><a class="bold" href="uCEFChromiumWindow.TChromiumWindow.html">TChromiumWindow</a></ul>
|
||||
</li>
|
||||
<li><a class="bold" href="uCEFWindowParent.TCEFWindowParent.html">TCEFWindowParent</a></ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<hr><span class="appinfo"><em>Generated by <a href="https://pasdoc.github.io/">PasDoc 0.16.0-snapshot</a>. </em>
|
||||
</span>
|
||||
</body></html>
|
BIN
docs/html/automated.gif
Normal file
BIN
docs/html/automated.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 141 B |
99545
docs/html/cef4delphi.hhc
Normal file
99545
docs/html/cef4delphi.hhc
Normal file
File diff suppressed because it is too large
Load Diff
46248
docs/html/cef4delphi.hhk
Normal file
46248
docs/html/cef4delphi.hhk
Normal file
File diff suppressed because it is too large
Load Diff
935
docs/html/cef4delphi.hhp
Normal file
935
docs/html/cef4delphi.hhp
Normal file
@ -0,0 +1,935 @@
|
||||
[OPTIONS]
|
||||
Binary TOC=Yes
|
||||
Compatibility=1.1 or later
|
||||
Compiled file=cef4delphi.chm
|
||||
Contents file=cef4delphi.hhc
|
||||
Default Window=Default
|
||||
Default topic=AllUnits.html
|
||||
Display compile progress=Yes
|
||||
Error log file=cef4delphi.log
|
||||
Full-text search=Yes
|
||||
Index file=cef4delphi.hhk
|
||||
Title=cef4delphi
|
||||
|
||||
[WINDOWS]
|
||||
Default="cef4delphi","cef4delphi.hhc","cef4delphi.hhk",,,,,,,0x23520,,0x300e,,,,,,,,0
|
||||
|
||||
[FILES]
|
||||
Legend.html
|
||||
AllUnits.html
|
||||
ClassHierarchy.html
|
||||
AllClasses.html
|
||||
AllTypes.html
|
||||
AllVariables.html
|
||||
AllConstants.html
|
||||
AllFunctions.html
|
||||
AllIdentifiers.html
|
||||
uCEFAccessibilityHandler.html
|
||||
uCEFAccessibilityHandler.TCEFAccessibilityHandlerOwn.html
|
||||
uCEFAccessibilityHandler.TCustomAccessibilityHandler.html
|
||||
uCEFApp.html
|
||||
uCEFApp.TCefAppOwn.html
|
||||
uCEFApp.TCustomCefApp.html
|
||||
uCEFApplication.html
|
||||
uCEFApplication.TCefApplication.html
|
||||
uCEFApplicationCore.html
|
||||
uCEFApplicationCore.TCefApplicationCore.html
|
||||
uCEFApplicationCore.TCEFDirectoryDeleterThread.html
|
||||
uCEFApplicationEvents.html
|
||||
uCEFArgCopy.html
|
||||
uCEFArgCopy.TCEFArgCopy.html
|
||||
uCEFAudioHandler.html
|
||||
uCEFAudioHandler.TCefAudioHandlerOwn.html
|
||||
uCEFAudioHandler.TCustomAudioHandler.html
|
||||
uCEFAuthCallback.html
|
||||
uCEFAuthCallback.TCefAuthCallbackRef.html
|
||||
uCEFBaseRefCounted.html
|
||||
uCEFBaseRefCounted.TLoggingInterfacedObject.html
|
||||
uCEFBaseRefCounted.TCefBaseRefCountedOwn.html
|
||||
uCEFBaseRefCounted.TCefBaseRefCountedRef.html
|
||||
uCEFBaseScopedWrapper.html
|
||||
uCEFBaseScopedWrapper.TCEFBaseScopedWrapperRef.html
|
||||
uCEFBeforeDownloadCallback.html
|
||||
uCEFBeforeDownloadCallback.TCefBeforeDownloadCallbackRef.html
|
||||
uCEFBinaryValue.html
|
||||
uCEFBinaryValue.TCefBinaryValueRef.html
|
||||
uCEFBinaryValue.TCefBinaryValueOwn.html
|
||||
uCEFBitmapBitBuffer.html
|
||||
uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html
|
||||
uCEFBoxLayout.html
|
||||
uCEFBoxLayout.TCefBoxLayoutRef.html
|
||||
uCEFBrowser.html
|
||||
uCEFBrowser.TCefBrowserRef.html
|
||||
uCEFBrowser.TCefBrowserHostRef.html
|
||||
uCEFBrowserBitmap.html
|
||||
uCEFBrowserBitmap.TCEFBrowserBitmap.html
|
||||
uCEFBrowserProcessHandler.html
|
||||
uCEFBrowserProcessHandler.TCefBrowserProcessHandlerOwn.html
|
||||
uCEFBrowserProcessHandler.TCefCustomBrowserProcessHandler.html
|
||||
uCEFBrowserView.html
|
||||
uCEFBrowserView.TCefBrowserViewRef.html
|
||||
uCEFBrowserViewComponent.html
|
||||
uCEFBrowserViewComponent.TCEFBrowserViewComponent.html
|
||||
uCEFBrowserViewDelegate.html
|
||||
uCEFBrowserViewDelegate.TCefBrowserViewDelegateRef.html
|
||||
uCEFBrowserViewDelegate.TCefBrowserViewDelegateOwn.html
|
||||
uCEFBrowserViewDelegate.TCustomBrowserViewDelegate.html
|
||||
uCEFBrowserWindow.html
|
||||
uCEFBrowserWindow.TEmbeddedChromium.html
|
||||
uCEFBrowserWindow.TChromiumWrapper.html
|
||||
uCEFBrowserWindow.TBrowserWindow.html
|
||||
uCEFBufferPanel.html
|
||||
uCEFBufferPanel.TBufferPanel.html
|
||||
uCEFButton.html
|
||||
uCEFButton.TCefButtonRef.html
|
||||
uCEFButtonComponent.html
|
||||
uCEFButtonComponent.TCEFButtonComponent.html
|
||||
uCEFButtonDelegate.html
|
||||
uCEFButtonDelegate.TCefButtonDelegateRef.html
|
||||
uCEFButtonDelegate.TCefButtonDelegateOwn.html
|
||||
uCEFButtonDelegate.TCustomButtonDelegate.html
|
||||
uCEFCallback.html
|
||||
uCEFCallback.TCefCallbackRef.html
|
||||
uCEFChromium.html
|
||||
uCEFChromium.TChromium.html
|
||||
uCEFChromiumCore.html
|
||||
uCEFChromiumCore.TChromiumCore.html
|
||||
uCEFChromiumCore.TBrowserInfo.html
|
||||
uCEFChromiumCore.TBrowserInfoList.html
|
||||
uCEFChromiumEvents.html
|
||||
uCEFChromiumFontOptions.html
|
||||
uCEFChromiumFontOptions.TChromiumFontOptions.html
|
||||
uCEFChromiumOptions.html
|
||||
uCEFChromiumOptions.TChromiumOptions.html
|
||||
uCEFChromiumWindow.html
|
||||
uCEFChromiumWindow.TChromiumWindow.html
|
||||
uCEFClient.html
|
||||
uCEFClient.TCefClientRef.html
|
||||
uCEFClient.TCefClientOwn.html
|
||||
uCEFClient.TCustomClientHandler.html
|
||||
uCEFCommandHandler.html
|
||||
uCEFCommandHandler.TCefCommandHandlerOwn.html
|
||||
uCEFCommandHandler.TCustomCommandHandler.html
|
||||
uCEFCommandLine.html
|
||||
uCEFCommandLine.TCefCommandLineRef.html
|
||||
uCEFCompletionCallback.html
|
||||
uCEFCompletionCallback.TCefCompletionCallbackOwn.html
|
||||
uCEFCompletionCallback.TCefFastCompletionCallback.html
|
||||
uCEFCompletionCallback.TCefEventCompletionCallback.html
|
||||
uCEFCompletionCallback.TCefCustomCompletionCallback.html
|
||||
uCEFComponentIdList.html
|
||||
uCEFComponentIdList.TCEFComponentIdList.html
|
||||
uCEFConstants.html
|
||||
uCEFContextMenuHandler.html
|
||||
uCEFContextMenuHandler.TCefContextMenuHandlerOwn.html
|
||||
uCEFContextMenuHandler.TCustomContextMenuHandler.html
|
||||
uCEFContextMenuParams.html
|
||||
uCEFContextMenuParams.TCefContextMenuParamsRef.html
|
||||
uCEFCookieAccessFilter.html
|
||||
uCEFCookieAccessFilter.TCefCookieAccessFilterRef.html
|
||||
uCEFCookieAccessFilter.TCefCookieAccessFilterOwn.html
|
||||
uCEFCookieAccessFilter.TCustomCookieAccessFilter.html
|
||||
uCEFCookieManager.html
|
||||
uCEFCookieManager.TCefCookieManagerRef.html
|
||||
uCEFCookieManager.TCefFlushStoreCompletionCallback.html
|
||||
uCEFCookieVisitor.html
|
||||
uCEFCookieVisitor.TCefCookieVisitorOwn.html
|
||||
uCEFCookieVisitor.TCefFastCookieVisitor.html
|
||||
uCEFCookieVisitor.TCefCustomCookieVisitor.html
|
||||
uCEFCustomStreamReader.html
|
||||
uCEFCustomStreamReader.TCefCustomStreamReader.html
|
||||
uCEFDeleteCookiesCallback.html
|
||||
uCEFDeleteCookiesCallback.TCefDeleteCookiesCallbackOwn.html
|
||||
uCEFDeleteCookiesCallback.TCefFastDeleteCookiesCallback.html
|
||||
uCEFDeleteCookiesCallback.TCefCustomDeleteCookiesCallback.html
|
||||
uCEFDevToolsMessageObserver.html
|
||||
uCEFDevToolsMessageObserver.TCEFDevToolsMessageObserverOwn.html
|
||||
uCEFDevToolsMessageObserver.TCustomDevToolsMessageObserver.html
|
||||
uCEFDialogHandler.html
|
||||
uCEFDialogHandler.TCefDialogHandlerOwn.html
|
||||
uCEFDialogHandler.TCustomDialogHandler.html
|
||||
uCEFDictionaryValue.html
|
||||
uCEFDictionaryValue.TCefDictionaryValueRef.html
|
||||
uCEFDisplay.html
|
||||
uCEFDisplay.TCefDisplayRef.html
|
||||
uCEFDisplayHandler.html
|
||||
uCEFDisplayHandler.TCefDisplayHandlerOwn.html
|
||||
uCEFDisplayHandler.TCustomDisplayHandler.html
|
||||
uCEFDomDocument.html
|
||||
uCEFDomDocument.TCefDomDocumentRef.html
|
||||
uCEFDomNode.html
|
||||
uCEFDomNode.TCefDomNodeRef.html
|
||||
uCEFDomVisitor.html
|
||||
uCEFDomVisitor.TCefDomVisitorOwn.html
|
||||
uCEFDomVisitor.TCefFastDomVisitor.html
|
||||
uCEFDomVisitor.TCefFastDomVisitor2.html
|
||||
uCEFDomVisitor.TCefFastDomVisitor3.html
|
||||
uCEFDownloadHandler.html
|
||||
uCEFDownloadHandler.TCefDownloadHandlerOwn.html
|
||||
uCEFDownloadHandler.TCustomDownloadHandler.html
|
||||
uCEFDownloadImageCallBack.html
|
||||
uCEFDownloadImageCallBack.TCefDownloadImageCallbackOwn.html
|
||||
uCEFDownloadImageCallBack.TCefFastDownloadImageCallback.html
|
||||
uCEFDownloadImageCallBack.TCefCustomDownloadImageCallback.html
|
||||
uCEFDownloadItem.html
|
||||
uCEFDownloadItem.TCefDownloadItemRef.html
|
||||
uCEFDownloadItemCallback.html
|
||||
uCEFDownloadItemCallback.TCefDownloadItemCallbackRef.html
|
||||
uCEFDragAndDropMgr.html
|
||||
uCEFDragAndDropMgr.TCEFDragAndDropMgr.html
|
||||
uCEFDragData.html
|
||||
uCEFDragData.TCefDragDataRef.html
|
||||
uCEFDragHandler.html
|
||||
uCEFDragHandler.TCefDragHandlerOwn.html
|
||||
uCEFDragHandler.TCustomDragHandler.html
|
||||
uCEFEndTracingCallback.html
|
||||
uCEFEndTracingCallback.TCefEndTracingCallbackOwn.html
|
||||
uCEFEndTracingCallback.TCefFastEndTracingCallback.html
|
||||
uCEFExtension.html
|
||||
uCEFExtension.TCefExtensionRef.html
|
||||
uCEFExtensionHandler.html
|
||||
uCEFExtensionHandler.TCefExtensionHandlerRef.html
|
||||
uCEFExtensionHandler.TCefExtensionHandlerOwn.html
|
||||
uCEFExtensionHandler.TCustomExtensionHandler.html
|
||||
uCEFFileDialogCallback.html
|
||||
uCEFFileDialogCallback.TCefFileDialogCallbackRef.html
|
||||
uCEFFileDialogInfo.html
|
||||
uCEFFileDialogInfo.TCEFFileDialogInfo.html
|
||||
uCEFFillLayout.html
|
||||
uCEFFillLayout.TCefFillLayoutRef.html
|
||||
uCEFFindHandler.html
|
||||
uCEFFindHandler.TCefFindHandlerOwn.html
|
||||
uCEFFindHandler.TCustomFindHandler.html
|
||||
uCEFFMXBufferPanel.html
|
||||
uCEFFMXBufferPanel.TFMXBufferPanel.html
|
||||
uCEFFMXChromium.html
|
||||
uCEFFMXChromium.TFMXChromium.html
|
||||
uCEFFMXWindowParent.html
|
||||
uCEFFMXWindowParent.TFMXWindowParent.html
|
||||
uCEFFMXWorkScheduler.html
|
||||
uCEFFMXWorkScheduler.TFMXWorkScheduler.html
|
||||
uCEFFocusHandler.html
|
||||
uCEFFocusHandler.TCefFocusHandlerOwn.html
|
||||
uCEFFocusHandler.TCustomFocusHandler.html
|
||||
uCEFFrame.html
|
||||
uCEFFrame.TCefFrameRef.html
|
||||
uCEFFrameHandler.html
|
||||
uCEFFrameHandler.TCefFrameHandlerOwn.html
|
||||
uCEFFrameHandler.TCustomFrameHandler.html
|
||||
uCEFGetExtensionResourceCallback.html
|
||||
uCEFGetExtensionResourceCallback.TCefGetExtensionResourceCallbackRef.html
|
||||
uCEFImage.html
|
||||
uCEFImage.TCefImageRef.html
|
||||
uCEFInterfaces.html
|
||||
uCEFInterfaces.TCefMediaSinkInfo.html
|
||||
uCEFInterfaces.TCefMediaRouteInfo.html
|
||||
uCEFInterfaces.TCefMediaSourceInfo.html
|
||||
uCEFInterfaces.ICefStringList.html
|
||||
uCEFInterfaces.ICefStringMap.html
|
||||
uCEFInterfaces.ICefStringMultimap.html
|
||||
uCEFInterfaces.IApplicationCoreEvents.html
|
||||
uCEFInterfaces.IChromiumEvents.html
|
||||
uCEFInterfaces.IServerEvents.html
|
||||
uCEFInterfaces.ICEFUrlRequestClientEvents.html
|
||||
uCEFInterfaces.ICefViewDelegateEvents.html
|
||||
uCEFInterfaces.ICefTextfieldDelegateEvents.html
|
||||
uCEFInterfaces.ICefBrowserViewDelegateEvents.html
|
||||
uCEFInterfaces.ICefButtonDelegateEvents.html
|
||||
uCEFInterfaces.ICefMenuButtonDelegateEvents.html
|
||||
uCEFInterfaces.ICefPanelDelegateEvents.html
|
||||
uCEFInterfaces.ICefWindowDelegateEvents.html
|
||||
uCEFInterfaces.ICefBaseRefCounted.html
|
||||
uCEFInterfaces.ICefRunFileDialogCallback.html
|
||||
uCEFInterfaces.ICefNavigationEntryVisitor.html
|
||||
uCEFInterfaces.ICefPdfPrintCallback.html
|
||||
uCEFInterfaces.ICefDownloadImageCallback.html
|
||||
uCEFInterfaces.ICefBrowserHost.html
|
||||
uCEFInterfaces.ICefProcessMessage.html
|
||||
uCEFInterfaces.ICefBrowser.html
|
||||
uCEFInterfaces.ICefPostDataElement.html
|
||||
uCEFInterfaces.ICefPostData.html
|
||||
uCEFInterfaces.ICefRequest.html
|
||||
uCEFInterfaces.ICefStringVisitor.html
|
||||
uCEFInterfaces.ICefFrame.html
|
||||
uCEFInterfaces.ICefFrameHandler.html
|
||||
uCEFInterfaces.ICefCustomStreamReader.html
|
||||
uCEFInterfaces.ICefStreamReader.html
|
||||
uCEFInterfaces.ICefReadHandler.html
|
||||
uCEFInterfaces.ICefWriteHandler.html
|
||||
uCEFInterfaces.ICefStreamWriter.html
|
||||
uCEFInterfaces.ICefResponse.html
|
||||
uCEFInterfaces.ICefDownloadItem.html
|
||||
uCEFInterfaces.ICefBeforeDownloadCallback.html
|
||||
uCEFInterfaces.ICefDownloadItemCallback.html
|
||||
uCEFInterfaces.ICefDownloadHandler.html
|
||||
uCEFInterfaces.ICefV8Exception.html
|
||||
uCEFInterfaces.ICefv8ArrayBufferReleaseCallback.html
|
||||
uCEFInterfaces.ICefv8Context.html
|
||||
uCEFInterfaces.ICefv8Handler.html
|
||||
uCEFInterfaces.ICefV8Interceptor.html
|
||||
uCEFInterfaces.ICefV8Accessor.html
|
||||
uCEFInterfaces.ICefTask.html
|
||||
uCEFInterfaces.ICefTaskRunner.html
|
||||
uCEFInterfaces.ICefThread.html
|
||||
uCEFInterfaces.ICefWaitableEvent.html
|
||||
uCEFInterfaces.ICefv8Value.html
|
||||
uCEFInterfaces.ICefV8StackFrame.html
|
||||
uCEFInterfaces.ICefV8StackTrace.html
|
||||
uCEFInterfaces.ICefXmlReader.html
|
||||
uCEFInterfaces.ICefZipReader.html
|
||||
uCEFInterfaces.ICefDomNode.html
|
||||
uCEFInterfaces.ICefDomDocument.html
|
||||
uCEFInterfaces.ICefDomVisitor.html
|
||||
uCEFInterfaces.ICefCookieVisitor.html
|
||||
uCEFInterfaces.ICefCommandLine.html
|
||||
uCEFInterfaces.ICefRegistration.html
|
||||
uCEFInterfaces.ICefDevToolsMessageObserver.html
|
||||
uCEFInterfaces.ICefMediaRouter.html
|
||||
uCEFInterfaces.ICefMediaObserver.html
|
||||
uCEFInterfaces.ICefMediaRoute.html
|
||||
uCEFInterfaces.ICefMediaRouteCreateCallback.html
|
||||
uCEFInterfaces.ICefMediaSinkDeviceInfoCallback.html
|
||||
uCEFInterfaces.ICefMediaSink.html
|
||||
uCEFInterfaces.ICefMediaSource.html
|
||||
uCEFInterfaces.ICefResourceBundleHandler.html
|
||||
uCEFInterfaces.ICefBrowserProcessHandler.html
|
||||
uCEFInterfaces.ICefRenderProcessHandler.html
|
||||
uCEFInterfaces.ICefApp.html
|
||||
uCEFInterfaces.ICefCompletionCallback.html
|
||||
uCEFInterfaces.ICefSetCookieCallback.html
|
||||
uCEFInterfaces.ICefDeleteCookiesCallback.html
|
||||
uCEFInterfaces.ICefCookieManager.html
|
||||
uCEFInterfaces.ICefCallback.html
|
||||
uCEFInterfaces.ICefResourceSkipCallback.html
|
||||
uCEFInterfaces.ICefResourceReadCallback.html
|
||||
uCEFInterfaces.ICefResourceHandler.html
|
||||
uCEFInterfaces.ICefSchemeHandlerFactory.html
|
||||
uCEFInterfaces.ICefAuthCallback.html
|
||||
uCEFInterfaces.ICefJsDialogCallback.html
|
||||
uCEFInterfaces.ICefContextMenuParams.html
|
||||
uCEFInterfaces.ICefMenuModel.html
|
||||
uCEFInterfaces.ICefValue.html
|
||||
uCEFInterfaces.ICefBinaryValue.html
|
||||
uCEFInterfaces.ICefDictionaryValue.html
|
||||
uCEFInterfaces.ICefListValue.html
|
||||
uCEFInterfaces.ICefLifeSpanHandler.html
|
||||
uCEFInterfaces.ICefCommandHandler.html
|
||||
uCEFInterfaces.ICefGetExtensionResourceCallback.html
|
||||
uCEFInterfaces.ICefExtensionHandler.html
|
||||
uCEFInterfaces.ICefExtension.html
|
||||
uCEFInterfaces.ICefLoadHandler.html
|
||||
uCEFInterfaces.ICefResponseFilter.html
|
||||
uCEFInterfaces.ICefRequestHandler.html
|
||||
uCEFInterfaces.ICefResourceRequestHandler.html
|
||||
uCEFInterfaces.ICefCookieAccessFilter.html
|
||||
uCEFInterfaces.ICefDisplayHandler.html
|
||||
uCEFInterfaces.ICefFocusHandler.html
|
||||
uCEFInterfaces.ICefKeyboardHandler.html
|
||||
uCEFInterfaces.ICefJsDialogHandler.html
|
||||
uCEFInterfaces.ICefAudioHandler.html
|
||||
uCEFInterfaces.ICefRunContextMenuCallback.html
|
||||
uCEFInterfaces.ICefRunQuickMenuCallback.html
|
||||
uCEFInterfaces.ICefContextMenuHandler.html
|
||||
uCEFInterfaces.ICefAccessibilityHandler.html
|
||||
uCEFInterfaces.ICefDialogHandler.html
|
||||
uCEFInterfaces.ICefRenderHandler.html
|
||||
uCEFInterfaces.ICefClient.html
|
||||
uCEFInterfaces.ICefUrlRequest.html
|
||||
uCEFInterfaces.ICefUrlrequestClient.html
|
||||
uCEFInterfaces.ICefEndTracingCallback.html
|
||||
uCEFInterfaces.ICefFileDialogCallback.html
|
||||
uCEFInterfaces.ICefDragData.html
|
||||
uCEFInterfaces.ICefDragHandler.html
|
||||
uCEFInterfaces.ICefFindHandler.html
|
||||
uCEFInterfaces.ICefRequestContextHandler.html
|
||||
uCEFInterfaces.ICefResolveCallback.html
|
||||
uCEFInterfaces.ICefPreferenceManager.html
|
||||
uCEFInterfaces.ICefRequestContext.html
|
||||
uCEFInterfaces.ICefPrintSettings.html
|
||||
uCEFInterfaces.ICefPrintDialogCallback.html
|
||||
uCEFInterfaces.ICefPrintJobCallback.html
|
||||
uCEFInterfaces.ICefPrintHandler.html
|
||||
uCEFInterfaces.ICefNavigationEntry.html
|
||||
uCEFInterfaces.ICefX509CertPrincipal.html
|
||||
uCEFInterfaces.ICefX509Certificate.html
|
||||
uCEFInterfaces.ICefSslInfo.html
|
||||
uCEFInterfaces.ICefSSLStatus.html
|
||||
uCEFInterfaces.ICefSelectClientCertificateCallback.html
|
||||
uCEFInterfaces.ICefResourceBundle.html
|
||||
uCEFInterfaces.ICefImage.html
|
||||
uCEFInterfaces.ICefMenuModelDelegate.html
|
||||
uCEFInterfaces.ICefServer.html
|
||||
uCEFInterfaces.ICefServerHandler.html
|
||||
uCEFInterfaces.ICefMediaAccessCallback.html
|
||||
uCEFInterfaces.ICefMediaAccessHandler.html
|
||||
uCEFInterfaces.ICefPermissionPromptCallback.html
|
||||
uCEFInterfaces.ICefPermissionHandler.html
|
||||
uCEFInterfaces.ICefSharedMemoryRegion.html
|
||||
uCEFInterfaces.ICefSharedProcessMessageBuilder.html
|
||||
uCEFInterfaces.ICefDisplay.html
|
||||
uCEFInterfaces.ICefLayout.html
|
||||
uCEFInterfaces.ICefBoxLayout.html
|
||||
uCEFInterfaces.ICefFillLayout.html
|
||||
uCEFInterfaces.ICefOverlayController.html
|
||||
uCEFInterfaces.ICefView.html
|
||||
uCEFInterfaces.ICefViewDelegate.html
|
||||
uCEFInterfaces.ICefTextfield.html
|
||||
uCEFInterfaces.ICefTextfieldDelegate.html
|
||||
uCEFInterfaces.ICefScrollView.html
|
||||
uCEFInterfaces.ICefPanel.html
|
||||
uCEFInterfaces.ICefPanelDelegate.html
|
||||
uCEFInterfaces.ICefBrowserView.html
|
||||
uCEFInterfaces.ICefBrowserViewDelegate.html
|
||||
uCEFInterfaces.ICefButton.html
|
||||
uCEFInterfaces.ICefButtonDelegate.html
|
||||
uCEFInterfaces.ICefLabelButton.html
|
||||
uCEFInterfaces.ICefMenuButton.html
|
||||
uCEFInterfaces.ICefMenuButtonPressedLock.html
|
||||
uCEFInterfaces.ICefMenuButtonDelegate.html
|
||||
uCEFInterfaces.ICefWindow.html
|
||||
uCEFInterfaces.ICefWindowDelegate.html
|
||||
uCEFJsDialogCallback.html
|
||||
uCEFJsDialogCallback.TCefJsDialogCallbackRef.html
|
||||
uCEFJsDialogHandler.html
|
||||
uCEFJsDialogHandler.TCefJsDialogHandlerOwn.html
|
||||
uCEFJsDialogHandler.TCustomJsDialogHandler.html
|
||||
uCEFJson.html
|
||||
uCEFJson.TCEFJson.html
|
||||
uCEFKeyboardHandler.html
|
||||
uCEFKeyboardHandler.TCefKeyboardHandlerOwn.html
|
||||
uCEFKeyboardHandler.TCustomKeyboardHandler.html
|
||||
uCEFLabelButton.html
|
||||
uCEFLabelButton.TCefLabelButtonRef.html
|
||||
uCEFLabelButtonComponent.html
|
||||
uCEFLabelButtonComponent.TCEFLabelButtonComponent.html
|
||||
uCEFLayout.html
|
||||
uCEFLayout.TCefLayoutRef.html
|
||||
uCEFLazarusCocoa.html
|
||||
uCEFLibFunctions.html
|
||||
uCEFLifeSpanHandler.html
|
||||
uCEFLifeSpanHandler.TCefLifeSpanHandlerOwn.html
|
||||
uCEFLifeSpanHandler.TCustomLifeSpanHandler.html
|
||||
uCEFLinkedWinControlBase.html
|
||||
uCEFLinkedWinControlBase.TCEFLinkedWinControlBase.html
|
||||
uCEFLinkedWindowParent.html
|
||||
uCEFLinkedWindowParent.TCEFLinkedWindowParent.html
|
||||
uCEFLinuxConstants.html
|
||||
uCEFLinuxEventPipe.html
|
||||
uCEFLinuxFunctions.html
|
||||
uCEFLinuxTypes.html
|
||||
uCEFListValue.html
|
||||
uCEFListValue.TCefListValueRef.html
|
||||
uCEFLoadHandler.html
|
||||
uCEFLoadHandler.TCefLoadHandlerOwn.html
|
||||
uCEFLoadHandler.TCustomLoadHandler.html
|
||||
uCEFLoadHandler.TCustomRenderLoadHandler.html
|
||||
uCEFMacOSConstants.html
|
||||
uCEFMacOSCustomCocoaTimer.html
|
||||
uCEFMacOSFunctions.html
|
||||
uCEFMacOSInterfaces.html
|
||||
uCEFMediaAccessCallback.html
|
||||
uCEFMediaAccessCallback.TCefMediaAccessCallbackRef.html
|
||||
uCEFMediaAccessHandler.html
|
||||
uCEFMediaAccessHandler.TCefMediaAccessHandlerOwn.html
|
||||
uCEFMediaObserver.html
|
||||
uCEFMediaObserver.TCefMediaObserverOwn.html
|
||||
uCEFMediaObserver.TCustomMediaObserver.html
|
||||
uCEFMediaRoute.html
|
||||
uCEFMediaRoute.TCefMediaRouteRef.html
|
||||
uCEFMediaRouteCreateCallback.html
|
||||
uCEFMediaRouteCreateCallback.TCefMediaRouteCreateCallbackOwn.html
|
||||
uCEFMediaRouteCreateCallback.TCefFastMediaRouteCreateCallback.html
|
||||
uCEFMediaRouteCreateCallback.TCefCustomMediaRouteCreateCallback.html
|
||||
uCEFMediaRouter.html
|
||||
uCEFMediaRouter.TCefMediaRouterRef.html
|
||||
uCEFMediaSink.html
|
||||
uCEFMediaSink.TCefMediaSinkRef.html
|
||||
uCEFMediaSinkDeviceInfoCallback.html
|
||||
uCEFMediaSinkDeviceInfoCallback.TCefMediaSinkDeviceInfoCallbackOwn.html
|
||||
uCEFMediaSinkDeviceInfoCallback.TCefFastMediaSinkDeviceInfoCallback.html
|
||||
uCEFMediaSinkDeviceInfoCallback.TCefCustomMediaSinkDeviceInfoCallback.html
|
||||
uCEFMediaSource.html
|
||||
uCEFMediaSource.TCefMediaSourceRef.html
|
||||
uCEFMenuButton.html
|
||||
uCEFMenuButton.TCefMenuButtonRef.html
|
||||
uCEFMenuButtonComponent.html
|
||||
uCEFMenuButtonComponent.TCEFMenuButtonComponent.html
|
||||
uCEFMenuButtonDelegate.html
|
||||
uCEFMenuButtonDelegate.TCefMenuButtonDelegateRef.html
|
||||
uCEFMenuButtonDelegate.TCefMenuButtonDelegateOwn.html
|
||||
uCEFMenuButtonDelegate.TCustomMenuButtonDelegate.html
|
||||
uCEFMenuButtonPressedLock.html
|
||||
uCEFMenuButtonPressedLock.TCefMenuButtonPressedLockRef.html
|
||||
uCEFMenuModel.html
|
||||
uCEFMenuModel.TCefMenuModelRef.html
|
||||
uCEFMenuModelDelegate.html
|
||||
uCEFMenuModelDelegate.TCefMenuModelDelegateOwn.html
|
||||
uCEFMiscFunctions.html
|
||||
uCEFNavigationEntry.html
|
||||
uCEFNavigationEntry.TCefNavigationEntryRef.html
|
||||
uCEFNavigationEntryVisitor.html
|
||||
uCEFNavigationEntryVisitor.TCefNavigationEntryVisitorOwn.html
|
||||
uCEFNavigationEntryVisitor.TCefFastNavigationEntryVisitor.html
|
||||
uCEFNavigationEntryVisitor.TCustomCefNavigationEntryVisitor.html
|
||||
uCEFOAuth2Helper.html
|
||||
uCEFOAuth2Helper.TCEFOAuth2Helper.html
|
||||
uCEFOLEDragAndDrop.html
|
||||
uCEFOLEDragAndDrop.TOLEDragAndDropMgr.html
|
||||
uCEFOLEDragAndDrop.TOLEEnumFormatEtc.html
|
||||
uCEFOLEDragAndDrop.TOLEDropSource.html
|
||||
uCEFOLEDragAndDrop.TOLEDataObject.html
|
||||
uCEFOLEDragAndDrop.TOLEDropTarget.html
|
||||
uCEFOsrBrowserWindow.html
|
||||
uCEFOsrBrowserWindow.TEmbeddedOsrChromium.html
|
||||
uCEFOsrBrowserWindow.TOsrBrowserWindow.html
|
||||
uCEFOSRIMEHandler.html
|
||||
uCEFOSRIMEHandler.TCEFOSRIMEHandler.html
|
||||
uCEFOverlayController.html
|
||||
uCEFOverlayController.TCefOverlayControllerRef.html
|
||||
uCEFPanel.html
|
||||
uCEFPanel.TCefPanelRef.html
|
||||
uCEFPanelComponent.html
|
||||
uCEFPanelComponent.TCEFPanelComponent.html
|
||||
uCEFPanelDelegate.html
|
||||
uCEFPanelDelegate.TCefPanelDelegateRef.html
|
||||
uCEFPanelDelegate.TCefPanelDelegateOwn.html
|
||||
uCEFPanelDelegate.TCustomPanelDelegate.html
|
||||
uCEFPDFPrintCallback.html
|
||||
uCEFPDFPrintCallback.TCefPdfPrintCallbackOwn.html
|
||||
uCEFPDFPrintCallback.TCefFastPdfPrintCallback.html
|
||||
uCEFPDFPrintCallback.TCefCustomPDFPrintCallBack.html
|
||||
uCEFPDFPrintOptions.html
|
||||
uCEFPDFPrintOptions.TPDFPrintOptions.html
|
||||
uCEFPermissionHandler.html
|
||||
uCEFPermissionHandler.TCefPermissionHandlerOwn.html
|
||||
uCEFPermissionHandler.TCustomPermissionHandler.html
|
||||
uCEFPermissionPromptCallback.html
|
||||
uCEFPermissionPromptCallback.TCefPermissionPromptCallbackRef.html
|
||||
uCEFPostData.html
|
||||
uCEFPostData.TCefPostDataRef.html
|
||||
uCEFPostDataElement.html
|
||||
uCEFPostDataElement.TCefPostDataElementRef.html
|
||||
uCEFPostDataElement.TCefPostDataElementOwn.html
|
||||
uCEFPreferenceManager.html
|
||||
uCEFPreferenceManager.TCefPreferenceManagerRef.html
|
||||
uCEFPreferenceRegistrar.html
|
||||
uCEFPreferenceRegistrar.TCefPreferenceRegistrarRef.html
|
||||
uCEFPrintDialogCallback.html
|
||||
uCEFPrintDialogCallback.TCefPrintDialogCallbackRef.html
|
||||
uCEFPrintHandler.html
|
||||
uCEFPrintHandler.TCefPrintHandlerOwn.html
|
||||
uCEFPrintHandler.TCustomPrintHandler.html
|
||||
uCEFPrintJobCallback.html
|
||||
uCEFPrintJobCallback.TCefPrintJobCallbackRef.html
|
||||
uCEFPrintSettings.html
|
||||
uCEFPrintSettings.TCefPrintSettingsRef.html
|
||||
uCEFProcessMessage.html
|
||||
uCEFProcessMessage.TCefProcessMessageRef.html
|
||||
uCEFRegistration.html
|
||||
uCEFRegistration.TCefRegistrationRef.html
|
||||
uCEFRenderHandler.html
|
||||
uCEFRenderHandler.TCefRenderHandlerOwn.html
|
||||
uCEFRenderHandler.TCustomRenderHandler.html
|
||||
uCEFRenderProcessHandler.html
|
||||
uCEFRenderProcessHandler.TCefRenderProcessHandlerOwn.html
|
||||
uCEFRenderProcessHandler.TCefCustomRenderProcessHandler.html
|
||||
uCEFRequest.html
|
||||
uCEFRequest.TCefRequestRef.html
|
||||
uCEFRequestContext.html
|
||||
uCEFRequestContext.TCefRequestContextRef.html
|
||||
uCEFRequestContext.TCefClearCertificateExceptionsCompletionCallback.html
|
||||
uCEFRequestContext.TCefClearHttpAuthCredentialsCompletionCallback.html
|
||||
uCEFRequestContext.TCefCloseAllConnectionsCompletionCallback.html
|
||||
uCEFRequestContextHandler.html
|
||||
uCEFRequestContextHandler.TCefRequestContextHandlerRef.html
|
||||
uCEFRequestContextHandler.TCefRequestContextHandlerOwn.html
|
||||
uCEFRequestContextHandler.TCustomRequestContextHandler.html
|
||||
uCEFRequestHandler.html
|
||||
uCEFRequestHandler.TCefRequestHandlerOwn.html
|
||||
uCEFRequestHandler.TCustomRequestHandler.html
|
||||
uCEFResolveCallback.html
|
||||
uCEFResolveCallback.TCefResolveCallbackOwn.html
|
||||
uCEFResolveCallback.TCefCustomResolveCallback.html
|
||||
uCEFResourceBundle.html
|
||||
uCEFResourceBundle.TCefResourceBundleRef.html
|
||||
uCEFResourceBundleHandler.html
|
||||
uCEFResourceBundleHandler.TCefResourceBundleHandlerOwn.html
|
||||
uCEFResourceBundleHandler.TCefCustomResourceBundleHandler.html
|
||||
uCEFResourceHandler.html
|
||||
uCEFResourceHandler.TCefResourceHandlerRef.html
|
||||
uCEFResourceHandler.TCefResourceHandlerOwn.html
|
||||
uCEFResourceReadCallback.html
|
||||
uCEFResourceReadCallback.TCefResourceReadCallbackRef.html
|
||||
uCEFResourceRequestHandler.html
|
||||
uCEFResourceRequestHandler.TCefResourceRequestHandlerRef.html
|
||||
uCEFResourceRequestHandler.TCefResourceRequestHandlerOwn.html
|
||||
uCEFResourceRequestHandler.TCustomResourceRequestHandler.html
|
||||
uCEFResourceSkipCallback.html
|
||||
uCEFResourceSkipCallback.TCefResourceSkipCallbackRef.html
|
||||
uCEFResponse.html
|
||||
uCEFResponse.TCefResponseRef.html
|
||||
uCEFResponseFilter.html
|
||||
uCEFResponseFilter.TCefResponseFilterRef.html
|
||||
uCEFResponseFilter.TCefResponseFilterOwn.html
|
||||
uCEFResponseFilter.TCustomResponseFilter.html
|
||||
uCEFRunContextMenuCallback.html
|
||||
uCEFRunContextMenuCallback.TCefRunContextMenuCallbackRef.html
|
||||
uCEFRunFileDialogCallback.html
|
||||
uCEFRunFileDialogCallback.TCefRunFileDialogCallbackOwn.html
|
||||
uCEFRunFileDialogCallback.TCefFastRunFileDialogCallback.html
|
||||
uCEFRunQuickMenuCallback.html
|
||||
uCEFRunQuickMenuCallback.TCefRunQuickMenuCallbackRef.html
|
||||
uCEFSchemeHandlerFactory.html
|
||||
uCEFSchemeHandlerFactory.TCefSchemeHandlerFactoryOwn.html
|
||||
uCEFSchemeRegistrar.html
|
||||
uCEFSchemeRegistrar.TCefSchemeRegistrarRef.html
|
||||
uCEFScrollView.html
|
||||
uCEFScrollView.TCefScrollViewRef.html
|
||||
uCEFScrollViewComponent.html
|
||||
uCEFScrollViewComponent.TCEFScrollViewComponent.html
|
||||
uCEFSelectClientCertificateCallback.html
|
||||
uCEFSelectClientCertificateCallback.TCefSelectClientCertificateCallbackRef.html
|
||||
uCEFSentinel.html
|
||||
uCEFSentinel.TCEFSentinel.html
|
||||
uCEFServer.html
|
||||
uCEFServer.TCEFServerRef.html
|
||||
uCEFServerComponent.html
|
||||
uCEFServerComponent.TCEFServerComponent.html
|
||||
uCEFServerEvents.html
|
||||
uCEFServerHandler.html
|
||||
uCEFServerHandler.TCEFServerHandlerOwn.html
|
||||
uCEFServerHandler.TCustomServerHandler.html
|
||||
uCEFSetCookieCallback.html
|
||||
uCEFSetCookieCallback.TCefSetCookieCallbackOwn.html
|
||||
uCEFSetCookieCallback.TCefFastSetCookieCallback.html
|
||||
uCEFSetCookieCallback.TCefCustomSetCookieCallback.html
|
||||
uCEFSharedMemoryRegion.html
|
||||
uCEFSharedMemoryRegion.TCefSharedMemoryRegionRef.html
|
||||
uCEFSharedProcessMessageBuilder.html
|
||||
uCEFSharedProcessMessageBuilder.TCefSharedProcessMessageBuilderRef.html
|
||||
uCEFSslInfo.html
|
||||
uCEFSslInfo.TCefSslInfoRef.html
|
||||
uCEFSSLStatus.html
|
||||
uCEFSSLStatus.TCefSSLStatusRef.html
|
||||
uCEFStreamReader.html
|
||||
uCEFStreamReader.TCefStreamReaderRef.html
|
||||
uCEFStreamWriter.html
|
||||
uCEFStreamWriter.TCefStreamWriterRef.html
|
||||
uCEFStringList.html
|
||||
uCEFStringList.TCefCustomStringList.html
|
||||
uCEFStringList.TCefStringListOwn.html
|
||||
uCEFStringList.TCefStringListRef.html
|
||||
uCEFStringMap.html
|
||||
uCEFStringMap.TCefCustomStringMap.html
|
||||
uCEFStringMap.TCefStringMapOwn.html
|
||||
uCEFStringMap.TCefStringMapRef.html
|
||||
uCEFStringMultimap.html
|
||||
uCEFStringMultimap.TCefCustomStringMultimap.html
|
||||
uCEFStringMultimap.TCefStringMultimapOwn.html
|
||||
uCEFStringMultimap.TCefStringMultimapRef.html
|
||||
uCEFStringVisitor.html
|
||||
uCEFStringVisitor.TCefStringVisitorOwn.html
|
||||
uCEFStringVisitor.TCefFastStringVisitor.html
|
||||
uCEFStringVisitor.TCustomCefStringVisitor.html
|
||||
uCEFTask.html
|
||||
uCEFTask.TCefTaskOwn.html
|
||||
uCEFTask.TCefTaskRef.html
|
||||
uCEFTask.TCefFastTask.html
|
||||
uCEFTask.TCefManagedTask.html
|
||||
uCEFTask.TCefChromiumTask.html
|
||||
uCEFTask.TCefViewDelegateTask.html
|
||||
uCEFTask.TCefURLRequestClientTask.html
|
||||
uCEFTask.TCefUpdatePrefsTask.html
|
||||
uCEFTask.TCefSavePrefsTask.html
|
||||
uCEFTask.TCefURLRequestTask.html
|
||||
uCEFTask.TCefGenericTask.html
|
||||
uCEFTask.TCefUpdateZoomStepTask.html
|
||||
uCEFTask.TCefUpdateZoomPctTask.html
|
||||
uCEFTask.TCefReadZoomTask.html
|
||||
uCEFTask.TCefSetZoomLevelTask.html
|
||||
uCEFTask.TCefSetZoomPctTask.html
|
||||
uCEFTask.TCefSetZoomStepTask.html
|
||||
uCEFTask.TCefCreateCustomViewTask.html
|
||||
uCEFTask.TCefBrowserNavigationTask.html
|
||||
uCEFTask.TCefSetAudioMutedTask.html
|
||||
uCEFTask.TCefToggleAudioMutedTask.html
|
||||
uCEFTask.TCefEnableFocusTask.html
|
||||
uCEFTaskRunner.html
|
||||
uCEFTaskRunner.TCefTaskRunnerRef.html
|
||||
uCEFTextfield.html
|
||||
uCEFTextfield.TCefTextfieldRef.html
|
||||
uCEFTextfieldComponent.html
|
||||
uCEFTextfieldComponent.TCEFTextfieldComponent.html
|
||||
uCEFTextfieldDelegate.html
|
||||
uCEFTextfieldDelegate.TCefTextfieldDelegateRef.html
|
||||
uCEFTextfieldDelegate.TCefTextfieldDelegateOwn.html
|
||||
uCEFTextfieldDelegate.TCustomTextfieldDelegate.html
|
||||
uCEFThread.html
|
||||
uCEFThread.TCefThreadRef.html
|
||||
uCEFTimerWorkScheduler.html
|
||||
uCEFTimerWorkScheduler.TCEFTimerWorkScheduler.html
|
||||
uCEFTypes.html
|
||||
uCEFTypes.TMyMemoryStatusEx.html
|
||||
uCEFTypes.TOSVersionInfoEx.html
|
||||
uCEFTypes.TCefStringWide.html
|
||||
uCEFTypes.TCefStringUtf8.html
|
||||
uCEFTypes.TCefStringUtf16.html
|
||||
uCEFTypes.TFileVersionInfo.html
|
||||
uCEFTypes.TCefMainArgs.html
|
||||
uCEFTypes.TCefRect.html
|
||||
uCEFTypes.TCefPoint.html
|
||||
uCEFTypes.TCefSize.html
|
||||
uCEFTypes.TCefRange.html
|
||||
uCEFTypes.TCefCursorInfo.html
|
||||
uCEFTypes.TCefUrlParts.html
|
||||
uCEFTypes.TUrlParts.html
|
||||
uCEFTypes.TCefInsets.html
|
||||
uCEFTypes.TCefTouchHandleState.html
|
||||
uCEFTypes.TCefCompositionUnderline.html
|
||||
uCEFTypes.TCefTime.html
|
||||
uCEFTypes.TCefBoxLayoutSettings.html
|
||||
uCEFTypes.TCefSettings.html
|
||||
uCEFTypes.TCefWindowInfo.html
|
||||
uCEFTypes.TCefDraggableRegion.html
|
||||
uCEFTypes.TCefKeyEvent.html
|
||||
uCEFTypes.TCefPopupFeatures.html
|
||||
uCEFTypes.TCefBrowserSettings.html
|
||||
uCEFTypes.TCefScreenInfo.html
|
||||
uCEFTypes.TCefRequestContextSettings.html
|
||||
uCEFTypes.TCefCookie.html
|
||||
uCEFTypes.TCookie.html
|
||||
uCEFTypes.TCefPdfPrintSettings.html
|
||||
uCEFTypes.TCefMouseEvent.html
|
||||
uCEFTypes.TCefTouchEvent.html
|
||||
uCEFTypes.TCefAudioParameters.html
|
||||
uCEFTypes.TCefMediaSinkDeviceInfo.html
|
||||
uCEFTypes.TCefBaseRefCounted.html
|
||||
uCEFTypes.TCefBaseScoped.html
|
||||
uCEFTypes.TCefStreamWriter.html
|
||||
uCEFTypes.TCefX509CertPrincipal.html
|
||||
uCEFTypes.TCefX509Certificate.html
|
||||
uCEFTypes.TCefSslInfo.html
|
||||
uCEFTypes.TCefSSLStatus.html
|
||||
uCEFTypes.TCefSelectClientCertificateCallback.html
|
||||
uCEFTypes.TCefRunContextMenuCallback.html
|
||||
uCEFTypes.TCefFileDialogCallback.html
|
||||
uCEFTypes.TCefDialogHandler.html
|
||||
uCEFTypes.TCefDisplayHandler.html
|
||||
uCEFTypes.TCefDownloadHandler.html
|
||||
uCEFTypes.TCefDragHandler.html
|
||||
uCEFTypes.TCefFindHandler.html
|
||||
uCEFTypes.TCefFocusHandler.html
|
||||
uCEFTypes.TCefJsDialogHandler.html
|
||||
uCEFTypes.TCefJsDialogCallback.html
|
||||
uCEFTypes.TCefKeyboardHandler.html
|
||||
uCEFTypes.TCefLifeSpanHandler.html
|
||||
uCEFTypes.TCefRegistration.html
|
||||
uCEFTypes.TCefDevToolsMessageObserver.html
|
||||
uCEFTypes.TCefMediaRouter.html
|
||||
uCEFTypes.TCefMediaObserver.html
|
||||
uCEFTypes.TCefMediaRoute.html
|
||||
uCEFTypes.TCefMediaRouteCreateCallback.html
|
||||
uCEFTypes.TCefMediaSink.html
|
||||
uCEFTypes.TCefMediaSinkDeviceInfoCallback.html
|
||||
uCEFTypes.TCefMediaSource.html
|
||||
uCEFTypes.TCefGetExtensionResourceCallback.html
|
||||
uCEFTypes.TCefExtensionHandler.html
|
||||
uCEFTypes.TCefAudioHandler.html
|
||||
uCEFTypes.TCefExtension.html
|
||||
uCEFTypes.TCefLoadHandler.html
|
||||
uCEFTypes.TCefRenderHandler.html
|
||||
uCEFTypes.TCefPreferenceRegistrar.html
|
||||
uCEFTypes.TCefPreferenceManager.html
|
||||
uCEFTypes.TCefV8StackTrace.html
|
||||
uCEFTypes.TCefV8StackFrame.html
|
||||
uCEFTypes.TCefStreamReader.html
|
||||
uCEFTypes.TCefReadHandler.html
|
||||
uCEFTypes.TCefWriteHandler.html
|
||||
uCEFTypes.TCefXmlReader.html
|
||||
uCEFTypes.TCefZipReader.html
|
||||
uCEFTypes.TCefUrlrequestClient.html
|
||||
uCEFTypes.TCefUrlRequest.html
|
||||
uCEFTypes.TCefThread.html
|
||||
uCEFTypes.TCefWaitableEvent.html
|
||||
uCEFTypes.TCefTaskRunner.html
|
||||
uCEFTypes.TCefEndTracingCallback.html
|
||||
uCEFTypes.TCefResourceBundle.html
|
||||
uCEFTypes.TCefMenuModelDelegate.html
|
||||
uCEFTypes.TCefProcessMessage.html
|
||||
uCEFTypes.TCefRenderProcessHandler.html
|
||||
uCEFTypes.TCefRequestHandler.html
|
||||
uCEFTypes.TCefMediaAccessCallback.html
|
||||
uCEFTypes.TCefMediaAccessHandler.html
|
||||
uCEFTypes.TCefPermissionPromptCallback.html
|
||||
uCEFTypes.TCefPermissionHandler.html
|
||||
uCEFTypes.TCefSharedMemoryRegion.html
|
||||
uCEFTypes.TCefSharedProcessMessageBuilder.html
|
||||
uCEFTypes.TCefResourceSkipCallback.html
|
||||
uCEFTypes.TCefResourceReadCallback.html
|
||||
uCEFTypes.TCefResourceHandler.html
|
||||
uCEFTypes.TCefResourceRequestHandler.html
|
||||
uCEFTypes.TCefCookieAccessFilter.html
|
||||
uCEFTypes.TCefResponse.html
|
||||
uCEFTypes.TCefResponseFilter.html
|
||||
uCEFTypes.TCefAuthCallback.html
|
||||
uCEFTypes.TCefCallback.html
|
||||
uCEFTypes.TCefRequestContext.html
|
||||
uCEFTypes.TCefRequestContextHandler.html
|
||||
uCEFTypes.TCefCompletionCallback.html
|
||||
uCEFTypes.TCefCookieManager.html
|
||||
uCEFTypes.TCefSchemeHandlerFactory.html
|
||||
uCEFTypes.TCefResolveCallback.html
|
||||
uCEFTypes.TCefCookieVisitor.html
|
||||
uCEFTypes.TCefSetCookieCallback.html
|
||||
uCEFTypes.TCefDeleteCookiesCallback.html
|
||||
uCEFTypes.TCefRunFileDialogCallback.html
|
||||
uCEFTypes.TCefDownloadImageCallback.html
|
||||
uCEFTypes.TCefImage.html
|
||||
uCEFTypes.TCefPdfPrintCallback.html
|
||||
uCEFTypes.TCefNavigationEntryVisitor.html
|
||||
uCEFTypes.TCefNavigationEntry.html
|
||||
uCEFTypes.TCefPrintSettings.html
|
||||
uCEFTypes.TCefPrintDialogCallback.html
|
||||
uCEFTypes.TCefPrintJobCallback.html
|
||||
uCEFTypes.TCefPrintHandler.html
|
||||
uCEFTypes.TCefDragData.html
|
||||
uCEFTypes.TCefCommandLine.html
|
||||
uCEFTypes.TCefCommandHandler.html
|
||||
uCEFTypes.TCefSchemeRegistrar.html
|
||||
uCEFTypes.TCefBinaryValue.html
|
||||
uCEFTypes.TCefValue.html
|
||||
uCEFTypes.TCefDictionaryValue.html
|
||||
uCEFTypes.TCefListValue.html
|
||||
uCEFTypes.TCefStringVisitor.html
|
||||
uCEFTypes.TCefPostDataElement.html
|
||||
uCEFTypes.TCefPostData.html
|
||||
uCEFTypes.TCefRequest.html
|
||||
uCEFTypes.TCefTask.html
|
||||
uCEFTypes.TCefDomVisitor.html
|
||||
uCEFTypes.TCefMenuModel.html
|
||||
uCEFTypes.TCefContextMenuParams.html
|
||||
uCEFTypes.TCefDownloadItem.html
|
||||
uCEFTypes.TCefBeforeDownloadCallback.html
|
||||
uCEFTypes.TCefDownloadItemCallback.html
|
||||
uCEFTypes.TCefDomNode.html
|
||||
uCEFTypes.TCefDomDocument.html
|
||||
uCEFTypes.TCefv8Handler.html
|
||||
uCEFTypes.TCefV8Exception.html
|
||||
uCEFTypes.TCefv8ArrayBufferReleaseCallback.html
|
||||
uCEFTypes.TCefv8Value.html
|
||||
uCEFTypes.TCefV8Context.html
|
||||
uCEFTypes.TCefV8Interceptor.html
|
||||
uCEFTypes.TCefV8Accessor.html
|
||||
uCEFTypes.TCefFrame.html
|
||||
uCEFTypes.TCefFrameHandler.html
|
||||
uCEFTypes.TCefAccessibilityHandler.html
|
||||
uCEFTypes.TCefContextMenuHandler.html
|
||||
uCEFTypes.TCefRunQuickMenuCallback.html
|
||||
uCEFTypes.TCefClient.html
|
||||
uCEFTypes.TCefBrowserHost.html
|
||||
uCEFTypes.TCefBrowser.html
|
||||
uCEFTypes.TCefResourceBundleHandler.html
|
||||
uCEFTypes.TCefBrowserProcessHandler.html
|
||||
uCEFTypes.TCefApp.html
|
||||
uCEFTypes.TCefServer.html
|
||||
uCEFTypes.TCefServerHandler.html
|
||||
uCEFTypes.TCefDisplay.html
|
||||
uCEFTypes.TCefLayout.html
|
||||
uCEFTypes.TCefBoxLayout.html
|
||||
uCEFTypes.TCefFillLayout.html
|
||||
uCEFTypes.TCefOverlayController.html
|
||||
uCEFTypes.TCefView.html
|
||||
uCEFTypes.TCefViewDelegate.html
|
||||
uCEFTypes.TCefTextfield.html
|
||||
uCEFTypes.TCefTextfieldDelegate.html
|
||||
uCEFTypes.TCefScrollView.html
|
||||
uCEFTypes.TCefPanel.html
|
||||
uCEFTypes.TCefPanelDelegate.html
|
||||
uCEFTypes.TCefBrowserView.html
|
||||
uCEFTypes.TCefBrowserViewDelegate.html
|
||||
uCEFTypes.TCefButton.html
|
||||
uCEFTypes.TCefButtonDelegate.html
|
||||
uCEFTypes.TCefLabelButton.html
|
||||
uCEFTypes.TCefMenuButton.html
|
||||
uCEFTypes.TCefMenuButtonPressedLock.html
|
||||
uCEFTypes.TCefMenuButtonDelegate.html
|
||||
uCEFTypes.TCefWindow.html
|
||||
uCEFTypes.TCefWindowDelegate.html
|
||||
uCEFUrlRequest.html
|
||||
uCEFUrlRequest.TCefUrlRequestRef.html
|
||||
uCEFUrlrequestClient.html
|
||||
uCEFUrlrequestClient.TCefUrlrequestClientOwn.html
|
||||
uCEFUrlrequestClient.TCustomCefUrlrequestClient.html
|
||||
uCEFUrlrequestClient.TCefUrlrequestClientRef.html
|
||||
uCEFUrlRequestClientComponent.html
|
||||
uCEFUrlRequestClientComponent.TCEFUrlRequestClientComponent.html
|
||||
uCEFUrlRequestClientEvents.html
|
||||
uCEFv8Accessor.html
|
||||
uCEFv8Accessor.TCefV8AccessorOwn.html
|
||||
uCEFv8Accessor.TCefFastV8Accessor.html
|
||||
uCEFv8ArrayBufferReleaseCallback.html
|
||||
uCEFv8ArrayBufferReleaseCallback.TCefv8ArrayBufferReleaseCallbackOwn.html
|
||||
uCEFv8ArrayBufferReleaseCallback.TCefFastv8ArrayBufferReleaseCallback.html
|
||||
uCEFv8ArrayBufferReleaseCallback.TCefv8ArrayBufferReleaseCallbackRef.html
|
||||
uCEFv8Context.html
|
||||
uCEFv8Context.TCefv8ContextRef.html
|
||||
uCEFv8Exception.html
|
||||
uCEFv8Exception.TCefV8ExceptionRef.html
|
||||
uCEFv8Handler.html
|
||||
uCEFv8Handler.TCefv8HandlerRef.html
|
||||
uCEFv8Handler.TCefv8HandlerOwn.html
|
||||
uCEFv8Interceptor.html
|
||||
uCEFv8Interceptor.TCefV8InterceptorOwn.html
|
||||
uCEFv8Interceptor.TCefFastV8Interceptor.html
|
||||
uCEFv8StackFrame.html
|
||||
uCEFv8StackFrame.TCefV8StackFrameRef.html
|
||||
uCEFv8StackTrace.html
|
||||
uCEFv8StackTrace.TCefV8StackTraceRef.html
|
||||
uCEFv8Value.html
|
||||
uCEFv8Value.TCefv8ValueRef.html
|
||||
uCEFValue.html
|
||||
uCEFValue.TCefValueRef.html
|
||||
uCEFView.html
|
||||
uCEFView.TCefViewRef.html
|
||||
uCEFViewComponent.html
|
||||
uCEFViewComponent.TCEFViewComponent.html
|
||||
uCEFViewDelegate.html
|
||||
uCEFViewDelegate.TCefViewDelegateRef.html
|
||||
uCEFViewDelegate.TCefViewDelegateOwn.html
|
||||
uCEFViewDelegate.TCustomViewDelegate.html
|
||||
uCEFViewsFrameworkEvents.html
|
||||
uCEFWaitableEvent.html
|
||||
uCEFWaitableEvent.TCefWaitableEventRef.html
|
||||
uCEFWinControl.html
|
||||
uCEFWinControl.TCEFWinControl.html
|
||||
uCEFWindow.html
|
||||
uCEFWindow.TCefWindowRef.html
|
||||
uCEFWindowComponent.html
|
||||
uCEFWindowComponent.TCEFWindowComponent.html
|
||||
uCEFWindowDelegate.html
|
||||
uCEFWindowDelegate.TCefWindowDelegateRef.html
|
||||
uCEFWindowDelegate.TCefWindowDelegateOwn.html
|
||||
uCEFWindowDelegate.TCustomWindowDelegate.html
|
||||
uCEFWindowParent.html
|
||||
uCEFWindowParent.TCEFWindowParent.html
|
||||
uCEFWorkScheduler.html
|
||||
uCEFWorkScheduler.TCEFWorkScheduler.html
|
||||
uCEFWorkSchedulerQueueThread.html
|
||||
uCEFWorkSchedulerQueueThread.TCEFWorkSchedulerQueueThread.html
|
||||
uCEFWorkSchedulerThread.html
|
||||
uCEFWorkSchedulerThread.TCEFWorkSchedulerThread.html
|
||||
uCEFWriteHandler.html
|
||||
uCEFWriteHandler.TCefWriteHandlerOwn.html
|
||||
uCEFWriteHandler.TCefBytesWriteHandler.html
|
||||
uCEFX509Certificate.html
|
||||
uCEFX509Certificate.TCEFX509CertificateRef.html
|
||||
uCEFX509CertPrincipal.html
|
||||
uCEFX509CertPrincipal.TCefX509CertPrincipalRef.html
|
||||
uCEFXmlReader.html
|
||||
uCEFXmlReader.TCefXmlReaderRef.html
|
||||
uCEFZipReader.html
|
||||
uCEFZipReader.TCefZipReaderRef.html
|
||||
|
||||
[INFOTYPES]
|
||||
|
||||
[MERGE FILES]
|
936
docs/html/cef4delphi.log
Normal file
936
docs/html/cef4delphi.log
Normal file
@ -0,0 +1,936 @@
|
||||
Microsoft HTML Help Compiler 4.74.8702
|
||||
|
||||
Compiling c:\Users\usuario\Documents\Embarcadero\Studio\Projects\CEF4Delphi\docs\cef4delphi.chm
|
||||
|
||||
Legend.html
|
||||
AllUnits.html
|
||||
ClassHierarchy.html
|
||||
AllClasses.html
|
||||
AllTypes.html
|
||||
AllVariables.html
|
||||
AllConstants.html
|
||||
AllFunctions.html
|
||||
AllIdentifiers.html
|
||||
uCEFAccessibilityHandler.html
|
||||
uCEFAccessibilityHandler.TCEFAccessibilityHandlerOwn.html
|
||||
uCEFAccessibilityHandler.TCustomAccessibilityHandler.html
|
||||
uCEFApp.html
|
||||
uCEFApp.TCefAppOwn.html
|
||||
uCEFApp.TCustomCefApp.html
|
||||
uCEFApplication.html
|
||||
uCEFApplication.TCefApplication.html
|
||||
uCEFApplicationCore.html
|
||||
uCEFApplicationCore.TCefApplicationCore.html
|
||||
uCEFApplicationCore.TCEFDirectoryDeleterThread.html
|
||||
uCEFApplicationEvents.html
|
||||
uCEFArgCopy.html
|
||||
uCEFArgCopy.TCEFArgCopy.html
|
||||
uCEFAudioHandler.html
|
||||
uCEFAudioHandler.TCefAudioHandlerOwn.html
|
||||
uCEFAudioHandler.TCustomAudioHandler.html
|
||||
uCEFAuthCallback.html
|
||||
uCEFAuthCallback.TCefAuthCallbackRef.html
|
||||
uCEFBaseRefCounted.html
|
||||
uCEFBaseRefCounted.TLoggingInterfacedObject.html
|
||||
uCEFBaseRefCounted.TCefBaseRefCountedOwn.html
|
||||
uCEFBaseRefCounted.TCefBaseRefCountedRef.html
|
||||
uCEFBaseScopedWrapper.html
|
||||
uCEFBaseScopedWrapper.TCEFBaseScopedWrapperRef.html
|
||||
uCEFBeforeDownloadCallback.html
|
||||
uCEFBeforeDownloadCallback.TCefBeforeDownloadCallbackRef.html
|
||||
uCEFBinaryValue.html
|
||||
uCEFBinaryValue.TCefBinaryValueRef.html
|
||||
uCEFBinaryValue.TCefBinaryValueOwn.html
|
||||
uCEFBitmapBitBuffer.html
|
||||
uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html
|
||||
uCEFBoxLayout.html
|
||||
uCEFBoxLayout.TCefBoxLayoutRef.html
|
||||
uCEFBrowser.html
|
||||
uCEFBrowser.TCefBrowserRef.html
|
||||
uCEFBrowser.TCefBrowserHostRef.html
|
||||
uCEFBrowserBitmap.html
|
||||
uCEFBrowserBitmap.TCEFBrowserBitmap.html
|
||||
uCEFBrowserProcessHandler.html
|
||||
uCEFBrowserProcessHandler.TCefBrowserProcessHandlerOwn.html
|
||||
uCEFBrowserProcessHandler.TCefCustomBrowserProcessHandler.html
|
||||
uCEFBrowserView.html
|
||||
uCEFBrowserView.TCefBrowserViewRef.html
|
||||
uCEFBrowserViewComponent.html
|
||||
uCEFBrowserViewComponent.TCEFBrowserViewComponent.html
|
||||
uCEFBrowserViewDelegate.html
|
||||
uCEFBrowserViewDelegate.TCefBrowserViewDelegateRef.html
|
||||
uCEFBrowserViewDelegate.TCefBrowserViewDelegateOwn.html
|
||||
uCEFBrowserViewDelegate.TCustomBrowserViewDelegate.html
|
||||
uCEFBrowserWindow.html
|
||||
uCEFBrowserWindow.TEmbeddedChromium.html
|
||||
uCEFBrowserWindow.TChromiumWrapper.html
|
||||
uCEFBrowserWindow.TBrowserWindow.html
|
||||
uCEFBufferPanel.html
|
||||
uCEFBufferPanel.TBufferPanel.html
|
||||
uCEFButton.html
|
||||
uCEFButton.TCefButtonRef.html
|
||||
uCEFButtonComponent.html
|
||||
uCEFButtonComponent.TCEFButtonComponent.html
|
||||
uCEFButtonDelegate.html
|
||||
uCEFButtonDelegate.TCefButtonDelegateRef.html
|
||||
uCEFButtonDelegate.TCefButtonDelegateOwn.html
|
||||
uCEFButtonDelegate.TCustomButtonDelegate.html
|
||||
uCEFCallback.html
|
||||
uCEFCallback.TCefCallbackRef.html
|
||||
uCEFChromium.html
|
||||
uCEFChromium.TChromium.html
|
||||
uCEFChromiumCore.html
|
||||
uCEFChromiumCore.TChromiumCore.html
|
||||
uCEFChromiumCore.TBrowserInfo.html
|
||||
uCEFChromiumCore.TBrowserInfoList.html
|
||||
uCEFChromiumEvents.html
|
||||
uCEFChromiumFontOptions.html
|
||||
uCEFChromiumFontOptions.TChromiumFontOptions.html
|
||||
uCEFChromiumOptions.html
|
||||
uCEFChromiumOptions.TChromiumOptions.html
|
||||
uCEFChromiumWindow.html
|
||||
uCEFChromiumWindow.TChromiumWindow.html
|
||||
uCEFClient.html
|
||||
uCEFClient.TCefClientRef.html
|
||||
uCEFClient.TCefClientOwn.html
|
||||
uCEFClient.TCustomClientHandler.html
|
||||
uCEFCommandHandler.html
|
||||
uCEFCommandHandler.TCefCommandHandlerOwn.html
|
||||
uCEFCommandHandler.TCustomCommandHandler.html
|
||||
uCEFCommandLine.html
|
||||
uCEFCommandLine.TCefCommandLineRef.html
|
||||
uCEFCompletionCallback.html
|
||||
uCEFCompletionCallback.TCefCompletionCallbackOwn.html
|
||||
uCEFCompletionCallback.TCefFastCompletionCallback.html
|
||||
uCEFCompletionCallback.TCefEventCompletionCallback.html
|
||||
uCEFCompletionCallback.TCefCustomCompletionCallback.html
|
||||
uCEFComponentIdList.html
|
||||
uCEFComponentIdList.TCEFComponentIdList.html
|
||||
uCEFConstants.html
|
||||
uCEFContextMenuHandler.html
|
||||
uCEFContextMenuHandler.TCefContextMenuHandlerOwn.html
|
||||
uCEFContextMenuHandler.TCustomContextMenuHandler.html
|
||||
uCEFContextMenuParams.html
|
||||
uCEFContextMenuParams.TCefContextMenuParamsRef.html
|
||||
uCEFCookieAccessFilter.html
|
||||
uCEFCookieAccessFilter.TCefCookieAccessFilterRef.html
|
||||
uCEFCookieAccessFilter.TCefCookieAccessFilterOwn.html
|
||||
uCEFCookieAccessFilter.TCustomCookieAccessFilter.html
|
||||
uCEFCookieManager.html
|
||||
uCEFCookieManager.TCefCookieManagerRef.html
|
||||
uCEFCookieManager.TCefFlushStoreCompletionCallback.html
|
||||
uCEFCookieVisitor.html
|
||||
uCEFCookieVisitor.TCefCookieVisitorOwn.html
|
||||
uCEFCookieVisitor.TCefFastCookieVisitor.html
|
||||
uCEFCookieVisitor.TCefCustomCookieVisitor.html
|
||||
uCEFCustomStreamReader.html
|
||||
uCEFCustomStreamReader.TCefCustomStreamReader.html
|
||||
uCEFDeleteCookiesCallback.html
|
||||
uCEFDeleteCookiesCallback.TCefDeleteCookiesCallbackOwn.html
|
||||
uCEFDeleteCookiesCallback.TCefFastDeleteCookiesCallback.html
|
||||
uCEFDeleteCookiesCallback.TCefCustomDeleteCookiesCallback.html
|
||||
uCEFDevToolsMessageObserver.html
|
||||
uCEFDevToolsMessageObserver.TCEFDevToolsMessageObserverOwn.html
|
||||
uCEFDevToolsMessageObserver.TCustomDevToolsMessageObserver.html
|
||||
uCEFDialogHandler.html
|
||||
uCEFDialogHandler.TCefDialogHandlerOwn.html
|
||||
uCEFDialogHandler.TCustomDialogHandler.html
|
||||
uCEFDictionaryValue.html
|
||||
uCEFDictionaryValue.TCefDictionaryValueRef.html
|
||||
uCEFDisplay.html
|
||||
uCEFDisplay.TCefDisplayRef.html
|
||||
uCEFDisplayHandler.html
|
||||
uCEFDisplayHandler.TCefDisplayHandlerOwn.html
|
||||
uCEFDisplayHandler.TCustomDisplayHandler.html
|
||||
uCEFDomDocument.html
|
||||
uCEFDomDocument.TCefDomDocumentRef.html
|
||||
uCEFDomNode.html
|
||||
uCEFDomNode.TCefDomNodeRef.html
|
||||
uCEFDomVisitor.html
|
||||
uCEFDomVisitor.TCefDomVisitorOwn.html
|
||||
uCEFDomVisitor.TCefFastDomVisitor.html
|
||||
uCEFDomVisitor.TCefFastDomVisitor2.html
|
||||
uCEFDomVisitor.TCefFastDomVisitor3.html
|
||||
uCEFDownloadHandler.html
|
||||
uCEFDownloadHandler.TCefDownloadHandlerOwn.html
|
||||
uCEFDownloadHandler.TCustomDownloadHandler.html
|
||||
uCEFDownloadImageCallBack.html
|
||||
uCEFDownloadImageCallBack.TCefDownloadImageCallbackOwn.html
|
||||
uCEFDownloadImageCallBack.TCefFastDownloadImageCallback.html
|
||||
uCEFDownloadImageCallBack.TCefCustomDownloadImageCallback.html
|
||||
uCEFDownloadItem.html
|
||||
uCEFDownloadItem.TCefDownloadItemRef.html
|
||||
uCEFDownloadItemCallback.html
|
||||
uCEFDownloadItemCallback.TCefDownloadItemCallbackRef.html
|
||||
uCEFDragAndDropMgr.html
|
||||
uCEFDragAndDropMgr.TCEFDragAndDropMgr.html
|
||||
uCEFDragData.html
|
||||
uCEFDragData.TCefDragDataRef.html
|
||||
uCEFDragHandler.html
|
||||
uCEFDragHandler.TCefDragHandlerOwn.html
|
||||
uCEFDragHandler.TCustomDragHandler.html
|
||||
uCEFEndTracingCallback.html
|
||||
uCEFEndTracingCallback.TCefEndTracingCallbackOwn.html
|
||||
uCEFEndTracingCallback.TCefFastEndTracingCallback.html
|
||||
uCEFExtension.html
|
||||
uCEFExtension.TCefExtensionRef.html
|
||||
uCEFExtensionHandler.html
|
||||
uCEFExtensionHandler.TCefExtensionHandlerRef.html
|
||||
uCEFExtensionHandler.TCefExtensionHandlerOwn.html
|
||||
uCEFExtensionHandler.TCustomExtensionHandler.html
|
||||
uCEFFileDialogCallback.html
|
||||
uCEFFileDialogCallback.TCefFileDialogCallbackRef.html
|
||||
uCEFFileDialogInfo.html
|
||||
uCEFFileDialogInfo.TCEFFileDialogInfo.html
|
||||
uCEFFillLayout.html
|
||||
uCEFFillLayout.TCefFillLayoutRef.html
|
||||
uCEFFindHandler.html
|
||||
uCEFFindHandler.TCefFindHandlerOwn.html
|
||||
uCEFFindHandler.TCustomFindHandler.html
|
||||
uCEFFMXBufferPanel.html
|
||||
uCEFFMXBufferPanel.TFMXBufferPanel.html
|
||||
uCEFFMXChromium.html
|
||||
uCEFFMXChromium.TFMXChromium.html
|
||||
uCEFFMXWindowParent.html
|
||||
uCEFFMXWindowParent.TFMXWindowParent.html
|
||||
uCEFFMXWorkScheduler.html
|
||||
uCEFFMXWorkScheduler.TFMXWorkScheduler.html
|
||||
uCEFFocusHandler.html
|
||||
uCEFFocusHandler.TCefFocusHandlerOwn.html
|
||||
uCEFFocusHandler.TCustomFocusHandler.html
|
||||
uCEFFrame.html
|
||||
uCEFFrame.TCefFrameRef.html
|
||||
uCEFFrameHandler.html
|
||||
uCEFFrameHandler.TCefFrameHandlerOwn.html
|
||||
uCEFFrameHandler.TCustomFrameHandler.html
|
||||
uCEFGetExtensionResourceCallback.html
|
||||
uCEFGetExtensionResourceCallback.TCefGetExtensionResourceCallbackRef.html
|
||||
uCEFImage.html
|
||||
uCEFImage.TCefImageRef.html
|
||||
uCEFInterfaces.html
|
||||
uCEFInterfaces.TCefMediaSinkInfo.html
|
||||
uCEFInterfaces.TCefMediaRouteInfo.html
|
||||
uCEFInterfaces.TCefMediaSourceInfo.html
|
||||
uCEFInterfaces.ICefStringList.html
|
||||
uCEFInterfaces.ICefStringMap.html
|
||||
uCEFInterfaces.ICefStringMultimap.html
|
||||
uCEFInterfaces.IApplicationCoreEvents.html
|
||||
uCEFInterfaces.IChromiumEvents.html
|
||||
uCEFInterfaces.IServerEvents.html
|
||||
uCEFInterfaces.ICEFUrlRequestClientEvents.html
|
||||
uCEFInterfaces.ICefViewDelegateEvents.html
|
||||
uCEFInterfaces.ICefTextfieldDelegateEvents.html
|
||||
uCEFInterfaces.ICefBrowserViewDelegateEvents.html
|
||||
uCEFInterfaces.ICefButtonDelegateEvents.html
|
||||
uCEFInterfaces.ICefMenuButtonDelegateEvents.html
|
||||
uCEFInterfaces.ICefPanelDelegateEvents.html
|
||||
uCEFInterfaces.ICefWindowDelegateEvents.html
|
||||
uCEFInterfaces.ICefBaseRefCounted.html
|
||||
uCEFInterfaces.ICefRunFileDialogCallback.html
|
||||
uCEFInterfaces.ICefNavigationEntryVisitor.html
|
||||
uCEFInterfaces.ICefPdfPrintCallback.html
|
||||
uCEFInterfaces.ICefDownloadImageCallback.html
|
||||
uCEFInterfaces.ICefBrowserHost.html
|
||||
uCEFInterfaces.ICefProcessMessage.html
|
||||
uCEFInterfaces.ICefBrowser.html
|
||||
uCEFInterfaces.ICefPostDataElement.html
|
||||
uCEFInterfaces.ICefPostData.html
|
||||
uCEFInterfaces.ICefRequest.html
|
||||
uCEFInterfaces.ICefStringVisitor.html
|
||||
uCEFInterfaces.ICefFrame.html
|
||||
uCEFInterfaces.ICefFrameHandler.html
|
||||
uCEFInterfaces.ICefCustomStreamReader.html
|
||||
uCEFInterfaces.ICefStreamReader.html
|
||||
uCEFInterfaces.ICefReadHandler.html
|
||||
uCEFInterfaces.ICefWriteHandler.html
|
||||
uCEFInterfaces.ICefStreamWriter.html
|
||||
uCEFInterfaces.ICefResponse.html
|
||||
uCEFInterfaces.ICefDownloadItem.html
|
||||
uCEFInterfaces.ICefBeforeDownloadCallback.html
|
||||
uCEFInterfaces.ICefDownloadItemCallback.html
|
||||
uCEFInterfaces.ICefDownloadHandler.html
|
||||
uCEFInterfaces.ICefV8Exception.html
|
||||
uCEFInterfaces.ICefv8ArrayBufferReleaseCallback.html
|
||||
uCEFInterfaces.ICefv8Context.html
|
||||
uCEFInterfaces.ICefv8Handler.html
|
||||
uCEFInterfaces.ICefV8Interceptor.html
|
||||
uCEFInterfaces.ICefV8Accessor.html
|
||||
uCEFInterfaces.ICefTask.html
|
||||
uCEFInterfaces.ICefTaskRunner.html
|
||||
uCEFInterfaces.ICefThread.html
|
||||
uCEFInterfaces.ICefWaitableEvent.html
|
||||
uCEFInterfaces.ICefv8Value.html
|
||||
uCEFInterfaces.ICefV8StackFrame.html
|
||||
uCEFInterfaces.ICefV8StackTrace.html
|
||||
uCEFInterfaces.ICefXmlReader.html
|
||||
uCEFInterfaces.ICefZipReader.html
|
||||
uCEFInterfaces.ICefDomNode.html
|
||||
uCEFInterfaces.ICefDomDocument.html
|
||||
uCEFInterfaces.ICefDomVisitor.html
|
||||
uCEFInterfaces.ICefCookieVisitor.html
|
||||
uCEFInterfaces.ICefCommandLine.html
|
||||
uCEFInterfaces.ICefRegistration.html
|
||||
uCEFInterfaces.ICefDevToolsMessageObserver.html
|
||||
uCEFInterfaces.ICefMediaRouter.html
|
||||
uCEFInterfaces.ICefMediaObserver.html
|
||||
uCEFInterfaces.ICefMediaRoute.html
|
||||
uCEFInterfaces.ICefMediaRouteCreateCallback.html
|
||||
uCEFInterfaces.ICefMediaSinkDeviceInfoCallback.html
|
||||
uCEFInterfaces.ICefMediaSink.html
|
||||
uCEFInterfaces.ICefMediaSource.html
|
||||
uCEFInterfaces.ICefResourceBundleHandler.html
|
||||
uCEFInterfaces.ICefBrowserProcessHandler.html
|
||||
uCEFInterfaces.ICefRenderProcessHandler.html
|
||||
uCEFInterfaces.ICefApp.html
|
||||
uCEFInterfaces.ICefCompletionCallback.html
|
||||
uCEFInterfaces.ICefSetCookieCallback.html
|
||||
uCEFInterfaces.ICefDeleteCookiesCallback.html
|
||||
uCEFInterfaces.ICefCookieManager.html
|
||||
uCEFInterfaces.ICefCallback.html
|
||||
uCEFInterfaces.ICefResourceSkipCallback.html
|
||||
uCEFInterfaces.ICefResourceReadCallback.html
|
||||
uCEFInterfaces.ICefResourceHandler.html
|
||||
uCEFInterfaces.ICefSchemeHandlerFactory.html
|
||||
uCEFInterfaces.ICefAuthCallback.html
|
||||
uCEFInterfaces.ICefJsDialogCallback.html
|
||||
uCEFInterfaces.ICefContextMenuParams.html
|
||||
uCEFInterfaces.ICefMenuModel.html
|
||||
uCEFInterfaces.ICefValue.html
|
||||
uCEFInterfaces.ICefBinaryValue.html
|
||||
uCEFInterfaces.ICefDictionaryValue.html
|
||||
uCEFInterfaces.ICefListValue.html
|
||||
uCEFInterfaces.ICefLifeSpanHandler.html
|
||||
uCEFInterfaces.ICefCommandHandler.html
|
||||
uCEFInterfaces.ICefGetExtensionResourceCallback.html
|
||||
uCEFInterfaces.ICefExtensionHandler.html
|
||||
uCEFInterfaces.ICefExtension.html
|
||||
uCEFInterfaces.ICefLoadHandler.html
|
||||
uCEFInterfaces.ICefResponseFilter.html
|
||||
uCEFInterfaces.ICefRequestHandler.html
|
||||
uCEFInterfaces.ICefResourceRequestHandler.html
|
||||
uCEFInterfaces.ICefCookieAccessFilter.html
|
||||
uCEFInterfaces.ICefDisplayHandler.html
|
||||
uCEFInterfaces.ICefFocusHandler.html
|
||||
uCEFInterfaces.ICefKeyboardHandler.html
|
||||
uCEFInterfaces.ICefJsDialogHandler.html
|
||||
uCEFInterfaces.ICefAudioHandler.html
|
||||
uCEFInterfaces.ICefRunContextMenuCallback.html
|
||||
uCEFInterfaces.ICefRunQuickMenuCallback.html
|
||||
uCEFInterfaces.ICefContextMenuHandler.html
|
||||
uCEFInterfaces.ICefAccessibilityHandler.html
|
||||
uCEFInterfaces.ICefDialogHandler.html
|
||||
uCEFInterfaces.ICefRenderHandler.html
|
||||
uCEFInterfaces.ICefClient.html
|
||||
uCEFInterfaces.ICefUrlRequest.html
|
||||
uCEFInterfaces.ICefUrlrequestClient.html
|
||||
uCEFInterfaces.ICefEndTracingCallback.html
|
||||
uCEFInterfaces.ICefFileDialogCallback.html
|
||||
uCEFInterfaces.ICefDragData.html
|
||||
uCEFInterfaces.ICefDragHandler.html
|
||||
uCEFInterfaces.ICefFindHandler.html
|
||||
uCEFInterfaces.ICefRequestContextHandler.html
|
||||
uCEFInterfaces.ICefResolveCallback.html
|
||||
uCEFInterfaces.ICefPreferenceManager.html
|
||||
uCEFInterfaces.ICefRequestContext.html
|
||||
uCEFInterfaces.ICefPrintSettings.html
|
||||
uCEFInterfaces.ICefPrintDialogCallback.html
|
||||
uCEFInterfaces.ICefPrintJobCallback.html
|
||||
uCEFInterfaces.ICefPrintHandler.html
|
||||
uCEFInterfaces.ICefNavigationEntry.html
|
||||
uCEFInterfaces.ICefX509CertPrincipal.html
|
||||
uCEFInterfaces.ICefX509Certificate.html
|
||||
uCEFInterfaces.ICefSslInfo.html
|
||||
uCEFInterfaces.ICefSSLStatus.html
|
||||
uCEFInterfaces.ICefSelectClientCertificateCallback.html
|
||||
uCEFInterfaces.ICefResourceBundle.html
|
||||
uCEFInterfaces.ICefImage.html
|
||||
uCEFInterfaces.ICefMenuModelDelegate.html
|
||||
uCEFInterfaces.ICefServer.html
|
||||
uCEFInterfaces.ICefServerHandler.html
|
||||
uCEFInterfaces.ICefMediaAccessCallback.html
|
||||
uCEFInterfaces.ICefMediaAccessHandler.html
|
||||
uCEFInterfaces.ICefPermissionPromptCallback.html
|
||||
uCEFInterfaces.ICefPermissionHandler.html
|
||||
uCEFInterfaces.ICefSharedMemoryRegion.html
|
||||
uCEFInterfaces.ICefSharedProcessMessageBuilder.html
|
||||
uCEFInterfaces.ICefDisplay.html
|
||||
uCEFInterfaces.ICefLayout.html
|
||||
uCEFInterfaces.ICefBoxLayout.html
|
||||
uCEFInterfaces.ICefFillLayout.html
|
||||
uCEFInterfaces.ICefOverlayController.html
|
||||
uCEFInterfaces.ICefView.html
|
||||
uCEFInterfaces.ICefViewDelegate.html
|
||||
uCEFInterfaces.ICefTextfield.html
|
||||
uCEFInterfaces.ICefTextfieldDelegate.html
|
||||
uCEFInterfaces.ICefScrollView.html
|
||||
uCEFInterfaces.ICefPanel.html
|
||||
uCEFInterfaces.ICefPanelDelegate.html
|
||||
uCEFInterfaces.ICefBrowserView.html
|
||||
uCEFInterfaces.ICefBrowserViewDelegate.html
|
||||
uCEFInterfaces.ICefButton.html
|
||||
uCEFInterfaces.ICefButtonDelegate.html
|
||||
uCEFInterfaces.ICefLabelButton.html
|
||||
uCEFInterfaces.ICefMenuButton.html
|
||||
uCEFInterfaces.ICefMenuButtonPressedLock.html
|
||||
uCEFInterfaces.ICefMenuButtonDelegate.html
|
||||
uCEFInterfaces.ICefWindow.html
|
||||
uCEFInterfaces.ICefWindowDelegate.html
|
||||
uCEFJsDialogCallback.html
|
||||
uCEFJsDialogCallback.TCefJsDialogCallbackRef.html
|
||||
uCEFJsDialogHandler.html
|
||||
uCEFJsDialogHandler.TCefJsDialogHandlerOwn.html
|
||||
uCEFJsDialogHandler.TCustomJsDialogHandler.html
|
||||
uCEFJson.html
|
||||
uCEFJson.TCEFJson.html
|
||||
uCEFKeyboardHandler.html
|
||||
uCEFKeyboardHandler.TCefKeyboardHandlerOwn.html
|
||||
uCEFKeyboardHandler.TCustomKeyboardHandler.html
|
||||
uCEFLabelButton.html
|
||||
uCEFLabelButton.TCefLabelButtonRef.html
|
||||
uCEFLabelButtonComponent.html
|
||||
uCEFLabelButtonComponent.TCEFLabelButtonComponent.html
|
||||
uCEFLayout.html
|
||||
uCEFLayout.TCefLayoutRef.html
|
||||
uCEFLazarusCocoa.html
|
||||
uCEFLibFunctions.html
|
||||
uCEFLifeSpanHandler.html
|
||||
uCEFLifeSpanHandler.TCefLifeSpanHandlerOwn.html
|
||||
uCEFLifeSpanHandler.TCustomLifeSpanHandler.html
|
||||
uCEFLinkedWinControlBase.html
|
||||
uCEFLinkedWinControlBase.TCEFLinkedWinControlBase.html
|
||||
uCEFLinkedWindowParent.html
|
||||
uCEFLinkedWindowParent.TCEFLinkedWindowParent.html
|
||||
uCEFLinuxConstants.html
|
||||
uCEFLinuxEventPipe.html
|
||||
uCEFLinuxFunctions.html
|
||||
uCEFLinuxTypes.html
|
||||
uCEFListValue.html
|
||||
uCEFListValue.TCefListValueRef.html
|
||||
uCEFLoadHandler.html
|
||||
uCEFLoadHandler.TCefLoadHandlerOwn.html
|
||||
uCEFLoadHandler.TCustomLoadHandler.html
|
||||
uCEFLoadHandler.TCustomRenderLoadHandler.html
|
||||
uCEFMacOSConstants.html
|
||||
uCEFMacOSCustomCocoaTimer.html
|
||||
uCEFMacOSFunctions.html
|
||||
uCEFMacOSInterfaces.html
|
||||
uCEFMediaAccessCallback.html
|
||||
uCEFMediaAccessCallback.TCefMediaAccessCallbackRef.html
|
||||
uCEFMediaAccessHandler.html
|
||||
uCEFMediaAccessHandler.TCefMediaAccessHandlerOwn.html
|
||||
uCEFMediaObserver.html
|
||||
uCEFMediaObserver.TCefMediaObserverOwn.html
|
||||
uCEFMediaObserver.TCustomMediaObserver.html
|
||||
uCEFMediaRoute.html
|
||||
uCEFMediaRoute.TCefMediaRouteRef.html
|
||||
uCEFMediaRouteCreateCallback.html
|
||||
uCEFMediaRouteCreateCallback.TCefMediaRouteCreateCallbackOwn.html
|
||||
uCEFMediaRouteCreateCallback.TCefFastMediaRouteCreateCallback.html
|
||||
uCEFMediaRouteCreateCallback.TCefCustomMediaRouteCreateCallback.html
|
||||
uCEFMediaRouter.html
|
||||
uCEFMediaRouter.TCefMediaRouterRef.html
|
||||
uCEFMediaSink.html
|
||||
uCEFMediaSink.TCefMediaSinkRef.html
|
||||
uCEFMediaSinkDeviceInfoCallback.html
|
||||
uCEFMediaSinkDeviceInfoCallback.TCefMediaSinkDeviceInfoCallbackOwn.html
|
||||
uCEFMediaSinkDeviceInfoCallback.TCefFastMediaSinkDeviceInfoCallback.html
|
||||
uCEFMediaSinkDeviceInfoCallback.TCefCustomMediaSinkDeviceInfoCallback.html
|
||||
uCEFMediaSource.html
|
||||
uCEFMediaSource.TCefMediaSourceRef.html
|
||||
uCEFMenuButton.html
|
||||
uCEFMenuButton.TCefMenuButtonRef.html
|
||||
uCEFMenuButtonComponent.html
|
||||
uCEFMenuButtonComponent.TCEFMenuButtonComponent.html
|
||||
uCEFMenuButtonDelegate.html
|
||||
uCEFMenuButtonDelegate.TCefMenuButtonDelegateRef.html
|
||||
uCEFMenuButtonDelegate.TCefMenuButtonDelegateOwn.html
|
||||
uCEFMenuButtonDelegate.TCustomMenuButtonDelegate.html
|
||||
uCEFMenuButtonPressedLock.html
|
||||
uCEFMenuButtonPressedLock.TCefMenuButtonPressedLockRef.html
|
||||
uCEFMenuModel.html
|
||||
uCEFMenuModel.TCefMenuModelRef.html
|
||||
uCEFMenuModelDelegate.html
|
||||
uCEFMenuModelDelegate.TCefMenuModelDelegateOwn.html
|
||||
uCEFMiscFunctions.html
|
||||
uCEFNavigationEntry.html
|
||||
uCEFNavigationEntry.TCefNavigationEntryRef.html
|
||||
uCEFNavigationEntryVisitor.html
|
||||
uCEFNavigationEntryVisitor.TCefNavigationEntryVisitorOwn.html
|
||||
uCEFNavigationEntryVisitor.TCefFastNavigationEntryVisitor.html
|
||||
uCEFNavigationEntryVisitor.TCustomCefNavigationEntryVisitor.html
|
||||
uCEFOAuth2Helper.html
|
||||
uCEFOAuth2Helper.TCEFOAuth2Helper.html
|
||||
uCEFOLEDragAndDrop.html
|
||||
uCEFOLEDragAndDrop.TOLEDragAndDropMgr.html
|
||||
uCEFOLEDragAndDrop.TOLEEnumFormatEtc.html
|
||||
uCEFOLEDragAndDrop.TOLEDropSource.html
|
||||
uCEFOLEDragAndDrop.TOLEDataObject.html
|
||||
uCEFOLEDragAndDrop.TOLEDropTarget.html
|
||||
uCEFOsrBrowserWindow.html
|
||||
uCEFOsrBrowserWindow.TEmbeddedOsrChromium.html
|
||||
uCEFOsrBrowserWindow.TOsrBrowserWindow.html
|
||||
uCEFOSRIMEHandler.html
|
||||
uCEFOSRIMEHandler.TCEFOSRIMEHandler.html
|
||||
uCEFOverlayController.html
|
||||
uCEFOverlayController.TCefOverlayControllerRef.html
|
||||
uCEFPanel.html
|
||||
uCEFPanel.TCefPanelRef.html
|
||||
uCEFPanelComponent.html
|
||||
uCEFPanelComponent.TCEFPanelComponent.html
|
||||
uCEFPanelDelegate.html
|
||||
uCEFPanelDelegate.TCefPanelDelegateRef.html
|
||||
uCEFPanelDelegate.TCefPanelDelegateOwn.html
|
||||
uCEFPanelDelegate.TCustomPanelDelegate.html
|
||||
uCEFPDFPrintCallback.html
|
||||
uCEFPDFPrintCallback.TCefPdfPrintCallbackOwn.html
|
||||
uCEFPDFPrintCallback.TCefFastPdfPrintCallback.html
|
||||
uCEFPDFPrintCallback.TCefCustomPDFPrintCallBack.html
|
||||
uCEFPDFPrintOptions.html
|
||||
uCEFPDFPrintOptions.TPDFPrintOptions.html
|
||||
uCEFPermissionHandler.html
|
||||
uCEFPermissionHandler.TCefPermissionHandlerOwn.html
|
||||
uCEFPermissionHandler.TCustomPermissionHandler.html
|
||||
uCEFPermissionPromptCallback.html
|
||||
uCEFPermissionPromptCallback.TCefPermissionPromptCallbackRef.html
|
||||
uCEFPostData.html
|
||||
uCEFPostData.TCefPostDataRef.html
|
||||
uCEFPostDataElement.html
|
||||
uCEFPostDataElement.TCefPostDataElementRef.html
|
||||
uCEFPostDataElement.TCefPostDataElementOwn.html
|
||||
uCEFPreferenceManager.html
|
||||
uCEFPreferenceManager.TCefPreferenceManagerRef.html
|
||||
uCEFPreferenceRegistrar.html
|
||||
uCEFPreferenceRegistrar.TCefPreferenceRegistrarRef.html
|
||||
uCEFPrintDialogCallback.html
|
||||
uCEFPrintDialogCallback.TCefPrintDialogCallbackRef.html
|
||||
uCEFPrintHandler.html
|
||||
uCEFPrintHandler.TCefPrintHandlerOwn.html
|
||||
uCEFPrintHandler.TCustomPrintHandler.html
|
||||
uCEFPrintJobCallback.html
|
||||
uCEFPrintJobCallback.TCefPrintJobCallbackRef.html
|
||||
uCEFPrintSettings.html
|
||||
uCEFPrintSettings.TCefPrintSettingsRef.html
|
||||
uCEFProcessMessage.html
|
||||
uCEFProcessMessage.TCefProcessMessageRef.html
|
||||
uCEFRegistration.html
|
||||
uCEFRegistration.TCefRegistrationRef.html
|
||||
uCEFRenderHandler.html
|
||||
uCEFRenderHandler.TCefRenderHandlerOwn.html
|
||||
uCEFRenderHandler.TCustomRenderHandler.html
|
||||
uCEFRenderProcessHandler.html
|
||||
uCEFRenderProcessHandler.TCefRenderProcessHandlerOwn.html
|
||||
uCEFRenderProcessHandler.TCefCustomRenderProcessHandler.html
|
||||
uCEFRequest.html
|
||||
uCEFRequest.TCefRequestRef.html
|
||||
uCEFRequestContext.html
|
||||
uCEFRequestContext.TCefRequestContextRef.html
|
||||
uCEFRequestContext.TCefClearCertificateExceptionsCompletionCallback.html
|
||||
uCEFRequestContext.TCefClearHttpAuthCredentialsCompletionCallback.html
|
||||
uCEFRequestContext.TCefCloseAllConnectionsCompletionCallback.html
|
||||
uCEFRequestContextHandler.html
|
||||
uCEFRequestContextHandler.TCefRequestContextHandlerRef.html
|
||||
uCEFRequestContextHandler.TCefRequestContextHandlerOwn.html
|
||||
uCEFRequestContextHandler.TCustomRequestContextHandler.html
|
||||
uCEFRequestHandler.html
|
||||
uCEFRequestHandler.TCefRequestHandlerOwn.html
|
||||
uCEFRequestHandler.TCustomRequestHandler.html
|
||||
uCEFResolveCallback.html
|
||||
uCEFResolveCallback.TCefResolveCallbackOwn.html
|
||||
uCEFResolveCallback.TCefCustomResolveCallback.html
|
||||
uCEFResourceBundle.html
|
||||
uCEFResourceBundle.TCefResourceBundleRef.html
|
||||
uCEFResourceBundleHandler.html
|
||||
uCEFResourceBundleHandler.TCefResourceBundleHandlerOwn.html
|
||||
uCEFResourceBundleHandler.TCefCustomResourceBundleHandler.html
|
||||
uCEFResourceHandler.html
|
||||
uCEFResourceHandler.TCefResourceHandlerRef.html
|
||||
uCEFResourceHandler.TCefResourceHandlerOwn.html
|
||||
uCEFResourceReadCallback.html
|
||||
uCEFResourceReadCallback.TCefResourceReadCallbackRef.html
|
||||
uCEFResourceRequestHandler.html
|
||||
uCEFResourceRequestHandler.TCefResourceRequestHandlerRef.html
|
||||
uCEFResourceRequestHandler.TCefResourceRequestHandlerOwn.html
|
||||
uCEFResourceRequestHandler.TCustomResourceRequestHandler.html
|
||||
uCEFResourceSkipCallback.html
|
||||
uCEFResourceSkipCallback.TCefResourceSkipCallbackRef.html
|
||||
uCEFResponse.html
|
||||
uCEFResponse.TCefResponseRef.html
|
||||
uCEFResponseFilter.html
|
||||
uCEFResponseFilter.TCefResponseFilterRef.html
|
||||
uCEFResponseFilter.TCefResponseFilterOwn.html
|
||||
uCEFResponseFilter.TCustomResponseFilter.html
|
||||
uCEFRunContextMenuCallback.html
|
||||
uCEFRunContextMenuCallback.TCefRunContextMenuCallbackRef.html
|
||||
uCEFRunFileDialogCallback.html
|
||||
uCEFRunFileDialogCallback.TCefRunFileDialogCallbackOwn.html
|
||||
uCEFRunFileDialogCallback.TCefFastRunFileDialogCallback.html
|
||||
uCEFRunQuickMenuCallback.html
|
||||
uCEFRunQuickMenuCallback.TCefRunQuickMenuCallbackRef.html
|
||||
uCEFSchemeHandlerFactory.html
|
||||
uCEFSchemeHandlerFactory.TCefSchemeHandlerFactoryOwn.html
|
||||
uCEFSchemeRegistrar.html
|
||||
uCEFSchemeRegistrar.TCefSchemeRegistrarRef.html
|
||||
uCEFScrollView.html
|
||||
uCEFScrollView.TCefScrollViewRef.html
|
||||
uCEFScrollViewComponent.html
|
||||
uCEFScrollViewComponent.TCEFScrollViewComponent.html
|
||||
uCEFSelectClientCertificateCallback.html
|
||||
uCEFSelectClientCertificateCallback.TCefSelectClientCertificateCallbackRef.html
|
||||
uCEFSentinel.html
|
||||
uCEFSentinel.TCEFSentinel.html
|
||||
uCEFServer.html
|
||||
uCEFServer.TCEFServerRef.html
|
||||
uCEFServerComponent.html
|
||||
uCEFServerComponent.TCEFServerComponent.html
|
||||
uCEFServerEvents.html
|
||||
uCEFServerHandler.html
|
||||
uCEFServerHandler.TCEFServerHandlerOwn.html
|
||||
uCEFServerHandler.TCustomServerHandler.html
|
||||
uCEFSetCookieCallback.html
|
||||
uCEFSetCookieCallback.TCefSetCookieCallbackOwn.html
|
||||
uCEFSetCookieCallback.TCefFastSetCookieCallback.html
|
||||
uCEFSetCookieCallback.TCefCustomSetCookieCallback.html
|
||||
uCEFSharedMemoryRegion.html
|
||||
uCEFSharedMemoryRegion.TCefSharedMemoryRegionRef.html
|
||||
uCEFSharedProcessMessageBuilder.html
|
||||
uCEFSharedProcessMessageBuilder.TCefSharedProcessMessageBuilderRef.html
|
||||
uCEFSslInfo.html
|
||||
uCEFSslInfo.TCefSslInfoRef.html
|
||||
uCEFSSLStatus.html
|
||||
uCEFSSLStatus.TCefSSLStatusRef.html
|
||||
uCEFStreamReader.html
|
||||
uCEFStreamReader.TCefStreamReaderRef.html
|
||||
uCEFStreamWriter.html
|
||||
uCEFStreamWriter.TCefStreamWriterRef.html
|
||||
uCEFStringList.html
|
||||
uCEFStringList.TCefCustomStringList.html
|
||||
uCEFStringList.TCefStringListOwn.html
|
||||
uCEFStringList.TCefStringListRef.html
|
||||
uCEFStringMap.html
|
||||
uCEFStringMap.TCefCustomStringMap.html
|
||||
uCEFStringMap.TCefStringMapOwn.html
|
||||
uCEFStringMap.TCefStringMapRef.html
|
||||
uCEFStringMultimap.html
|
||||
uCEFStringMultimap.TCefCustomStringMultimap.html
|
||||
uCEFStringMultimap.TCefStringMultimapOwn.html
|
||||
uCEFStringMultimap.TCefStringMultimapRef.html
|
||||
uCEFStringVisitor.html
|
||||
uCEFStringVisitor.TCefStringVisitorOwn.html
|
||||
uCEFStringVisitor.TCefFastStringVisitor.html
|
||||
uCEFStringVisitor.TCustomCefStringVisitor.html
|
||||
uCEFTask.html
|
||||
uCEFTask.TCefTaskOwn.html
|
||||
uCEFTask.TCefTaskRef.html
|
||||
uCEFTask.TCefFastTask.html
|
||||
uCEFTask.TCefManagedTask.html
|
||||
uCEFTask.TCefChromiumTask.html
|
||||
uCEFTask.TCefViewDelegateTask.html
|
||||
uCEFTask.TCefURLRequestClientTask.html
|
||||
uCEFTask.TCefUpdatePrefsTask.html
|
||||
uCEFTask.TCefSavePrefsTask.html
|
||||
uCEFTask.TCefURLRequestTask.html
|
||||
uCEFTask.TCefGenericTask.html
|
||||
uCEFTask.TCefUpdateZoomStepTask.html
|
||||
uCEFTask.TCefUpdateZoomPctTask.html
|
||||
uCEFTask.TCefReadZoomTask.html
|
||||
uCEFTask.TCefSetZoomLevelTask.html
|
||||
uCEFTask.TCefSetZoomPctTask.html
|
||||
uCEFTask.TCefSetZoomStepTask.html
|
||||
uCEFTask.TCefCreateCustomViewTask.html
|
||||
uCEFTask.TCefBrowserNavigationTask.html
|
||||
uCEFTask.TCefSetAudioMutedTask.html
|
||||
uCEFTask.TCefToggleAudioMutedTask.html
|
||||
uCEFTask.TCefEnableFocusTask.html
|
||||
uCEFTaskRunner.html
|
||||
uCEFTaskRunner.TCefTaskRunnerRef.html
|
||||
uCEFTextfield.html
|
||||
uCEFTextfield.TCefTextfieldRef.html
|
||||
uCEFTextfieldComponent.html
|
||||
uCEFTextfieldComponent.TCEFTextfieldComponent.html
|
||||
uCEFTextfieldDelegate.html
|
||||
uCEFTextfieldDelegate.TCefTextfieldDelegateRef.html
|
||||
uCEFTextfieldDelegate.TCefTextfieldDelegateOwn.html
|
||||
uCEFTextfieldDelegate.TCustomTextfieldDelegate.html
|
||||
uCEFThread.html
|
||||
uCEFThread.TCefThreadRef.html
|
||||
uCEFTimerWorkScheduler.html
|
||||
uCEFTimerWorkScheduler.TCEFTimerWorkScheduler.html
|
||||
uCEFTypes.html
|
||||
uCEFTypes.TMyMemoryStatusEx.html
|
||||
uCEFTypes.TOSVersionInfoEx.html
|
||||
uCEFTypes.TCefStringWide.html
|
||||
uCEFTypes.TCefStringUtf8.html
|
||||
uCEFTypes.TCefStringUtf16.html
|
||||
uCEFTypes.TFileVersionInfo.html
|
||||
uCEFTypes.TCefMainArgs.html
|
||||
uCEFTypes.TCefRect.html
|
||||
uCEFTypes.TCefPoint.html
|
||||
uCEFTypes.TCefSize.html
|
||||
uCEFTypes.TCefRange.html
|
||||
uCEFTypes.TCefCursorInfo.html
|
||||
uCEFTypes.TCefUrlParts.html
|
||||
uCEFTypes.TUrlParts.html
|
||||
uCEFTypes.TCefInsets.html
|
||||
uCEFTypes.TCefTouchHandleState.html
|
||||
uCEFTypes.TCefCompositionUnderline.html
|
||||
uCEFTypes.TCefTime.html
|
||||
uCEFTypes.TCefBoxLayoutSettings.html
|
||||
uCEFTypes.TCefSettings.html
|
||||
uCEFTypes.TCefWindowInfo.html
|
||||
uCEFTypes.TCefDraggableRegion.html
|
||||
uCEFTypes.TCefKeyEvent.html
|
||||
uCEFTypes.TCefPopupFeatures.html
|
||||
uCEFTypes.TCefBrowserSettings.html
|
||||
uCEFTypes.TCefScreenInfo.html
|
||||
uCEFTypes.TCefRequestContextSettings.html
|
||||
uCEFTypes.TCefCookie.html
|
||||
uCEFTypes.TCookie.html
|
||||
uCEFTypes.TCefPdfPrintSettings.html
|
||||
uCEFTypes.TCefMouseEvent.html
|
||||
uCEFTypes.TCefTouchEvent.html
|
||||
uCEFTypes.TCefAudioParameters.html
|
||||
uCEFTypes.TCefMediaSinkDeviceInfo.html
|
||||
uCEFTypes.TCefBaseRefCounted.html
|
||||
uCEFTypes.TCefBaseScoped.html
|
||||
uCEFTypes.TCefStreamWriter.html
|
||||
uCEFTypes.TCefX509CertPrincipal.html
|
||||
uCEFTypes.TCefX509Certificate.html
|
||||
uCEFTypes.TCefSslInfo.html
|
||||
uCEFTypes.TCefSSLStatus.html
|
||||
uCEFTypes.TCefSelectClientCertificateCallback.html
|
||||
uCEFTypes.TCefRunContextMenuCallback.html
|
||||
uCEFTypes.TCefFileDialogCallback.html
|
||||
uCEFTypes.TCefDialogHandler.html
|
||||
uCEFTypes.TCefDisplayHandler.html
|
||||
uCEFTypes.TCefDownloadHandler.html
|
||||
uCEFTypes.TCefDragHandler.html
|
||||
uCEFTypes.TCefFindHandler.html
|
||||
uCEFTypes.TCefFocusHandler.html
|
||||
uCEFTypes.TCefJsDialogHandler.html
|
||||
uCEFTypes.TCefJsDialogCallback.html
|
||||
uCEFTypes.TCefKeyboardHandler.html
|
||||
uCEFTypes.TCefLifeSpanHandler.html
|
||||
uCEFTypes.TCefRegistration.html
|
||||
uCEFTypes.TCefDevToolsMessageObserver.html
|
||||
uCEFTypes.TCefMediaRouter.html
|
||||
uCEFTypes.TCefMediaObserver.html
|
||||
uCEFTypes.TCefMediaRoute.html
|
||||
uCEFTypes.TCefMediaRouteCreateCallback.html
|
||||
uCEFTypes.TCefMediaSink.html
|
||||
uCEFTypes.TCefMediaSinkDeviceInfoCallback.html
|
||||
uCEFTypes.TCefMediaSource.html
|
||||
uCEFTypes.TCefGetExtensionResourceCallback.html
|
||||
uCEFTypes.TCefExtensionHandler.html
|
||||
uCEFTypes.TCefAudioHandler.html
|
||||
uCEFTypes.TCefExtension.html
|
||||
uCEFTypes.TCefLoadHandler.html
|
||||
uCEFTypes.TCefRenderHandler.html
|
||||
uCEFTypes.TCefPreferenceRegistrar.html
|
||||
uCEFTypes.TCefPreferenceManager.html
|
||||
uCEFTypes.TCefV8StackTrace.html
|
||||
uCEFTypes.TCefV8StackFrame.html
|
||||
uCEFTypes.TCefStreamReader.html
|
||||
uCEFTypes.TCefReadHandler.html
|
||||
uCEFTypes.TCefWriteHandler.html
|
||||
uCEFTypes.TCefXmlReader.html
|
||||
uCEFTypes.TCefZipReader.html
|
||||
uCEFTypes.TCefUrlrequestClient.html
|
||||
uCEFTypes.TCefUrlRequest.html
|
||||
uCEFTypes.TCefThread.html
|
||||
uCEFTypes.TCefWaitableEvent.html
|
||||
uCEFTypes.TCefTaskRunner.html
|
||||
uCEFTypes.TCefEndTracingCallback.html
|
||||
uCEFTypes.TCefResourceBundle.html
|
||||
uCEFTypes.TCefMenuModelDelegate.html
|
||||
uCEFTypes.TCefProcessMessage.html
|
||||
uCEFTypes.TCefRenderProcessHandler.html
|
||||
uCEFTypes.TCefRequestHandler.html
|
||||
uCEFTypes.TCefMediaAccessCallback.html
|
||||
uCEFTypes.TCefMediaAccessHandler.html
|
||||
uCEFTypes.TCefPermissionPromptCallback.html
|
||||
uCEFTypes.TCefPermissionHandler.html
|
||||
uCEFTypes.TCefSharedMemoryRegion.html
|
||||
uCEFTypes.TCefSharedProcessMessageBuilder.html
|
||||
uCEFTypes.TCefResourceSkipCallback.html
|
||||
uCEFTypes.TCefResourceReadCallback.html
|
||||
uCEFTypes.TCefResourceHandler.html
|
||||
uCEFTypes.TCefResourceRequestHandler.html
|
||||
uCEFTypes.TCefCookieAccessFilter.html
|
||||
uCEFTypes.TCefResponse.html
|
||||
uCEFTypes.TCefResponseFilter.html
|
||||
uCEFTypes.TCefAuthCallback.html
|
||||
uCEFTypes.TCefCallback.html
|
||||
uCEFTypes.TCefRequestContext.html
|
||||
uCEFTypes.TCefRequestContextHandler.html
|
||||
uCEFTypes.TCefCompletionCallback.html
|
||||
uCEFTypes.TCefCookieManager.html
|
||||
uCEFTypes.TCefSchemeHandlerFactory.html
|
||||
uCEFTypes.TCefResolveCallback.html
|
||||
uCEFTypes.TCefCookieVisitor.html
|
||||
uCEFTypes.TCefSetCookieCallback.html
|
||||
uCEFTypes.TCefDeleteCookiesCallback.html
|
||||
uCEFTypes.TCefRunFileDialogCallback.html
|
||||
uCEFTypes.TCefDownloadImageCallback.html
|
||||
uCEFTypes.TCefImage.html
|
||||
uCEFTypes.TCefPdfPrintCallback.html
|
||||
uCEFTypes.TCefNavigationEntryVisitor.html
|
||||
uCEFTypes.TCefNavigationEntry.html
|
||||
uCEFTypes.TCefPrintSettings.html
|
||||
uCEFTypes.TCefPrintDialogCallback.html
|
||||
uCEFTypes.TCefPrintJobCallback.html
|
||||
uCEFTypes.TCefPrintHandler.html
|
||||
uCEFTypes.TCefDragData.html
|
||||
uCEFTypes.TCefCommandLine.html
|
||||
uCEFTypes.TCefCommandHandler.html
|
||||
uCEFTypes.TCefSchemeRegistrar.html
|
||||
uCEFTypes.TCefBinaryValue.html
|
||||
uCEFTypes.TCefValue.html
|
||||
uCEFTypes.TCefDictionaryValue.html
|
||||
uCEFTypes.TCefListValue.html
|
||||
uCEFTypes.TCefStringVisitor.html
|
||||
uCEFTypes.TCefPostDataElement.html
|
||||
uCEFTypes.TCefPostData.html
|
||||
uCEFTypes.TCefRequest.html
|
||||
uCEFTypes.TCefTask.html
|
||||
uCEFTypes.TCefDomVisitor.html
|
||||
uCEFTypes.TCefMenuModel.html
|
||||
uCEFTypes.TCefContextMenuParams.html
|
||||
uCEFTypes.TCefDownloadItem.html
|
||||
uCEFTypes.TCefBeforeDownloadCallback.html
|
||||
uCEFTypes.TCefDownloadItemCallback.html
|
||||
uCEFTypes.TCefDomNode.html
|
||||
uCEFTypes.TCefDomDocument.html
|
||||
uCEFTypes.TCefv8Handler.html
|
||||
uCEFTypes.TCefV8Exception.html
|
||||
uCEFTypes.TCefv8ArrayBufferReleaseCallback.html
|
||||
uCEFTypes.TCefv8Value.html
|
||||
uCEFTypes.TCefV8Context.html
|
||||
uCEFTypes.TCefV8Interceptor.html
|
||||
uCEFTypes.TCefV8Accessor.html
|
||||
uCEFTypes.TCefFrame.html
|
||||
uCEFTypes.TCefFrameHandler.html
|
||||
uCEFTypes.TCefAccessibilityHandler.html
|
||||
uCEFTypes.TCefContextMenuHandler.html
|
||||
uCEFTypes.TCefRunQuickMenuCallback.html
|
||||
uCEFTypes.TCefClient.html
|
||||
uCEFTypes.TCefBrowserHost.html
|
||||
uCEFTypes.TCefBrowser.html
|
||||
uCEFTypes.TCefResourceBundleHandler.html
|
||||
uCEFTypes.TCefBrowserProcessHandler.html
|
||||
uCEFTypes.TCefApp.html
|
||||
uCEFTypes.TCefServer.html
|
||||
uCEFTypes.TCefServerHandler.html
|
||||
uCEFTypes.TCefDisplay.html
|
||||
uCEFTypes.TCefLayout.html
|
||||
uCEFTypes.TCefBoxLayout.html
|
||||
uCEFTypes.TCefFillLayout.html
|
||||
uCEFTypes.TCefOverlayController.html
|
||||
uCEFTypes.TCefView.html
|
||||
uCEFTypes.TCefViewDelegate.html
|
||||
uCEFTypes.TCefTextfield.html
|
||||
uCEFTypes.TCefTextfieldDelegate.html
|
||||
uCEFTypes.TCefScrollView.html
|
||||
uCEFTypes.TCefPanel.html
|
||||
uCEFTypes.TCefPanelDelegate.html
|
||||
uCEFTypes.TCefBrowserView.html
|
||||
uCEFTypes.TCefBrowserViewDelegate.html
|
||||
uCEFTypes.TCefButton.html
|
||||
uCEFTypes.TCefButtonDelegate.html
|
||||
uCEFTypes.TCefLabelButton.html
|
||||
uCEFTypes.TCefMenuButton.html
|
||||
uCEFTypes.TCefMenuButtonPressedLock.html
|
||||
uCEFTypes.TCefMenuButtonDelegate.html
|
||||
uCEFTypes.TCefWindow.html
|
||||
uCEFTypes.TCefWindowDelegate.html
|
||||
uCEFUrlRequest.html
|
||||
uCEFUrlRequest.TCefUrlRequestRef.html
|
||||
uCEFUrlrequestClient.html
|
||||
uCEFUrlrequestClient.TCefUrlrequestClientOwn.html
|
||||
uCEFUrlrequestClient.TCustomCefUrlrequestClient.html
|
||||
uCEFUrlrequestClient.TCefUrlrequestClientRef.html
|
||||
uCEFUrlRequestClientComponent.html
|
||||
uCEFUrlRequestClientComponent.TCEFUrlRequestClientComponent.html
|
||||
uCEFUrlRequestClientEvents.html
|
||||
uCEFv8Accessor.html
|
||||
uCEFv8Accessor.TCefV8AccessorOwn.html
|
||||
uCEFv8Accessor.TCefFastV8Accessor.html
|
||||
uCEFv8ArrayBufferReleaseCallback.html
|
||||
uCEFv8ArrayBufferReleaseCallback.TCefv8ArrayBufferReleaseCallbackOwn.html
|
||||
uCEFv8ArrayBufferReleaseCallback.TCefFastv8ArrayBufferReleaseCallback.html
|
||||
uCEFv8ArrayBufferReleaseCallback.TCefv8ArrayBufferReleaseCallbackRef.html
|
||||
uCEFv8Context.html
|
||||
uCEFv8Context.TCefv8ContextRef.html
|
||||
uCEFv8Exception.html
|
||||
uCEFv8Exception.TCefV8ExceptionRef.html
|
||||
uCEFv8Handler.html
|
||||
uCEFv8Handler.TCefv8HandlerRef.html
|
||||
uCEFv8Handler.TCefv8HandlerOwn.html
|
||||
uCEFv8Interceptor.html
|
||||
uCEFv8Interceptor.TCefV8InterceptorOwn.html
|
||||
uCEFv8Interceptor.TCefFastV8Interceptor.html
|
||||
uCEFv8StackFrame.html
|
||||
uCEFv8StackFrame.TCefV8StackFrameRef.html
|
||||
uCEFv8StackTrace.html
|
||||
uCEFv8StackTrace.TCefV8StackTraceRef.html
|
||||
uCEFv8Value.html
|
||||
uCEFv8Value.TCefv8ValueRef.html
|
||||
uCEFValue.html
|
||||
uCEFValue.TCefValueRef.html
|
||||
uCEFView.html
|
||||
uCEFView.TCefViewRef.html
|
||||
uCEFViewComponent.html
|
||||
uCEFViewComponent.TCEFViewComponent.html
|
||||
uCEFViewDelegate.html
|
||||
uCEFViewDelegate.TCefViewDelegateRef.html
|
||||
uCEFViewDelegate.TCefViewDelegateOwn.html
|
||||
uCEFViewDelegate.TCustomViewDelegate.html
|
||||
uCEFViewsFrameworkEvents.html
|
||||
uCEFWaitableEvent.html
|
||||
uCEFWaitableEvent.TCefWaitableEventRef.html
|
||||
uCEFWinControl.html
|
||||
uCEFWinControl.TCEFWinControl.html
|
||||
uCEFWindow.html
|
||||
uCEFWindow.TCefWindowRef.html
|
||||
uCEFWindowComponent.html
|
||||
uCEFWindowComponent.TCEFWindowComponent.html
|
||||
uCEFWindowDelegate.html
|
||||
uCEFWindowDelegate.TCefWindowDelegateRef.html
|
||||
uCEFWindowDelegate.TCefWindowDelegateOwn.html
|
||||
uCEFWindowDelegate.TCustomWindowDelegate.html
|
||||
uCEFWindowParent.html
|
||||
uCEFWindowParent.TCEFWindowParent.html
|
||||
uCEFWorkScheduler.html
|
||||
uCEFWorkScheduler.TCEFWorkScheduler.html
|
||||
uCEFWorkSchedulerQueueThread.html
|
||||
uCEFWorkSchedulerQueueThread.TCEFWorkSchedulerQueueThread.html
|
||||
uCEFWorkSchedulerThread.html
|
||||
uCEFWorkSchedulerThread.TCEFWorkSchedulerThread.html
|
||||
uCEFWriteHandler.html
|
||||
uCEFWriteHandler.TCefWriteHandlerOwn.html
|
||||
uCEFWriteHandler.TCefBytesWriteHandler.html
|
||||
uCEFX509Certificate.html
|
||||
uCEFX509Certificate.TCEFX509CertificateRef.html
|
||||
uCEFX509CertPrincipal.html
|
||||
uCEFX509CertPrincipal.TCefX509CertPrincipalRef.html
|
||||
uCEFXmlReader.html
|
||||
uCEFXmlReader.TCefXmlReaderRef.html
|
||||
uCEFZipReader.html
|
||||
uCEFZipReader.TCefZipReaderRef.html
|
||||
cef4delphi.hhc
|
||||
cef4delphi.hhk
|
||||
private.gif
|
||||
protected.gif
|
||||
public.gif
|
||||
published.gif
|
||||
automated.gif
|
||||
pasdoc.css
|
||||
|
||||
Compile time: 0 minutes, 15 seconds
|
||||
16,338 Topics
|
||||
136,184 Local links
|
||||
35 Internet links
|
||||
5 Graphics
|
||||
|
||||
|
||||
Created c:\Users\usuario\Documents\Embarcadero\Studio\Projects\CEF4Delphi\docs\cef4delphi.chm, 3,519,300 bytes
|
||||
Compression decreased file by 22,870,880 bytes.
|
892
docs/html/index.html
Normal file
892
docs/html/index.html
Normal file
@ -0,0 +1,892 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: All Units</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="allitems">All Units</h1>
|
||||
<table class="unitstable wide_list">
|
||||
<tr class="listheader">
|
||||
<th class="itemname">Name</th>
|
||||
<th class="itemdesc">Description</th>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFAccessibilityHandler.html">uCEFAccessibilityHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFApp.html">uCEFApp</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFApplication.html">uCEFApplication</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFApplicationCore.html">uCEFApplicationCore</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFApplicationEvents.html">uCEFApplicationEvents</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFArgCopy.html">uCEFArgCopy</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFAudioHandler.html">uCEFAudioHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFAuthCallback.html">uCEFAuthCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFBaseRefCounted.html">uCEFBaseRefCounted</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFBaseScopedWrapper.html">uCEFBaseScopedWrapper</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFBeforeDownloadCallback.html">uCEFBeforeDownloadCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFBinaryValue.html">uCEFBinaryValue</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFBitmapBitBuffer.html">uCEFBitmapBitBuffer</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFBoxLayout.html">uCEFBoxLayout</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFBrowser.html">uCEFBrowser</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFBrowserBitmap.html">uCEFBrowserBitmap</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFBrowserProcessHandler.html">uCEFBrowserProcessHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFBrowserView.html">uCEFBrowserView</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFBrowserViewComponent.html">uCEFBrowserViewComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFBrowserViewDelegate.html">uCEFBrowserViewDelegate</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFBrowserWindow.html">uCEFBrowserWindow</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFBufferPanel.html">uCEFBufferPanel</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFButton.html">uCEFButton</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFButtonComponent.html">uCEFButtonComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFButtonDelegate.html">uCEFButtonDelegate</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFCallback.html">uCEFCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFChromium.html">uCEFChromium</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFChromiumCore.html">uCEFChromiumCore</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFChromiumEvents.html">uCEFChromiumEvents</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFChromiumFontOptions.html">uCEFChromiumFontOptions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFChromiumOptions.html">uCEFChromiumOptions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFChromiumWindow.html">uCEFChromiumWindow</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFClient.html">uCEFClient</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFCommandHandler.html">uCEFCommandHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFCommandLine.html">uCEFCommandLine</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFCompletionCallback.html">uCEFCompletionCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFComponentIdList.html">uCEFComponentIdList</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFConstants.html">uCEFConstants</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFContextMenuHandler.html">uCEFContextMenuHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFContextMenuParams.html">uCEFContextMenuParams</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFCookieAccessFilter.html">uCEFCookieAccessFilter</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFCookieManager.html">uCEFCookieManager</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFCookieVisitor.html">uCEFCookieVisitor</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFCustomStreamReader.html">uCEFCustomStreamReader</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFDeleteCookiesCallback.html">uCEFDeleteCookiesCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFDevToolsMessageObserver.html">uCEFDevToolsMessageObserver</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFDialogHandler.html">uCEFDialogHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFDictionaryValue.html">uCEFDictionaryValue</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFDisplay.html">uCEFDisplay</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFDisplayHandler.html">uCEFDisplayHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFDomDocument.html">uCEFDomDocument</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFDomNode.html">uCEFDomNode</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFDomVisitor.html">uCEFDomVisitor</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFDownloadHandler.html">uCEFDownloadHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFDownloadImageCallBack.html">uCEFDownloadImageCallBack</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFDownloadItem.html">uCEFDownloadItem</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFDownloadItemCallback.html">uCEFDownloadItemCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFDragAndDropMgr.html">uCEFDragAndDropMgr</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFDragData.html">uCEFDragData</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFDragHandler.html">uCEFDragHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFEndTracingCallback.html">uCEFEndTracingCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFExtension.html">uCEFExtension</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFExtensionHandler.html">uCEFExtensionHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFFileDialogCallback.html">uCEFFileDialogCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFFileDialogInfo.html">uCEFFileDialogInfo</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFFillLayout.html">uCEFFillLayout</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFFindHandler.html">uCEFFindHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFFMXBufferPanel.html">uCEFFMXBufferPanel</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFFMXChromium.html">uCEFFMXChromium</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFFMXWindowParent.html">uCEFFMXWindowParent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFFMXWorkScheduler.html">uCEFFMXWorkScheduler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFFocusHandler.html">uCEFFocusHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFFrame.html">uCEFFrame</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFFrameHandler.html">uCEFFrameHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFGetExtensionResourceCallback.html">uCEFGetExtensionResourceCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFImage.html">uCEFImage</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFInterfaces.html">uCEFInterfaces</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFJsDialogCallback.html">uCEFJsDialogCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFJsDialogHandler.html">uCEFJsDialogHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFJson.html">uCEFJson</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFKeyboardHandler.html">uCEFKeyboardHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLabelButton.html">uCEFLabelButton</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLabelButtonComponent.html">uCEFLabelButtonComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLayout.html">uCEFLayout</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLazarusCocoa.html">uCEFLazarusCocoa</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLibFunctions.html">uCEFLibFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLifeSpanHandler.html">uCEFLifeSpanHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLinkedWinControlBase.html">uCEFLinkedWinControlBase</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLinkedWindowParent.html">uCEFLinkedWindowParent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLinuxConstants.html">uCEFLinuxConstants</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLinuxEventPipe.html">uCEFLinuxEventPipe</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFLinuxFunctions.html">uCEFLinuxFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLinuxTypes.html">uCEFLinuxTypes</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFListValue.html">uCEFListValue</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFLoadHandler.html">uCEFLoadHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMacOSConstants.html">uCEFMacOSConstants</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMacOSCustomCocoaTimer.html">uCEFMacOSCustomCocoaTimer</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMacOSFunctions.html">uCEFMacOSFunctions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMacOSInterfaces.html">uCEFMacOSInterfaces</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMediaAccessCallback.html">uCEFMediaAccessCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMediaAccessHandler.html">uCEFMediaAccessHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMediaObserver.html">uCEFMediaObserver</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMediaRoute.html">uCEFMediaRoute</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMediaRouteCreateCallback.html">uCEFMediaRouteCreateCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMediaRouter.html">uCEFMediaRouter</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMediaSink.html">uCEFMediaSink</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMediaSinkDeviceInfoCallback.html">uCEFMediaSinkDeviceInfoCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMediaSource.html">uCEFMediaSource</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMenuButton.html">uCEFMenuButton</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMenuButtonComponent.html">uCEFMenuButtonComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMenuButtonDelegate.html">uCEFMenuButtonDelegate</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMenuButtonPressedLock.html">uCEFMenuButtonPressedLock</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFMenuModel.html">uCEFMenuModel</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFMenuModelDelegate.html">uCEFMenuModelDelegate</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><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="uCEFNavigationEntry.html">uCEFNavigationEntry</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFNavigationEntryVisitor.html">uCEFNavigationEntryVisitor</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFOAuth2Helper.html">uCEFOAuth2Helper</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFOLEDragAndDrop.html">uCEFOLEDragAndDrop</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFOsrBrowserWindow.html">uCEFOsrBrowserWindow</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFOSRIMEHandler.html">uCEFOSRIMEHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFOverlayController.html">uCEFOverlayController</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFPanel.html">uCEFPanel</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFPanelComponent.html">uCEFPanelComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFPanelDelegate.html">uCEFPanelDelegate</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFPDFPrintCallback.html">uCEFPDFPrintCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFPDFPrintOptions.html">uCEFPDFPrintOptions</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFPermissionHandler.html">uCEFPermissionHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFPermissionPromptCallback.html">uCEFPermissionPromptCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFPostData.html">uCEFPostData</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFPostDataElement.html">uCEFPostDataElement</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFPreferenceManager.html">uCEFPreferenceManager</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFPreferenceRegistrar.html">uCEFPreferenceRegistrar</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFPrintDialogCallback.html">uCEFPrintDialogCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFPrintHandler.html">uCEFPrintHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFPrintJobCallback.html">uCEFPrintJobCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFPrintSettings.html">uCEFPrintSettings</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFProcessMessage.html">uCEFProcessMessage</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFRegistration.html">uCEFRegistration</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFRenderHandler.html">uCEFRenderHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFRenderProcessHandler.html">uCEFRenderProcessHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFRequest.html">uCEFRequest</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFRequestContext.html">uCEFRequestContext</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFRequestContextHandler.html">uCEFRequestContextHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFRequestHandler.html">uCEFRequestHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFResolveCallback.html">uCEFResolveCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFResourceBundle.html">uCEFResourceBundle</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFResourceBundleHandler.html">uCEFResourceBundleHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFResourceHandler.html">uCEFResourceHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFResourceReadCallback.html">uCEFResourceReadCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFResourceRequestHandler.html">uCEFResourceRequestHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFResourceSkipCallback.html">uCEFResourceSkipCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFResponse.html">uCEFResponse</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFResponseFilter.html">uCEFResponseFilter</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFRunContextMenuCallback.html">uCEFRunContextMenuCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFRunFileDialogCallback.html">uCEFRunFileDialogCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFRunQuickMenuCallback.html">uCEFRunQuickMenuCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFSchemeHandlerFactory.html">uCEFSchemeHandlerFactory</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFSchemeRegistrar.html">uCEFSchemeRegistrar</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFScrollView.html">uCEFScrollView</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFScrollViewComponent.html">uCEFScrollViewComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFSelectClientCertificateCallback.html">uCEFSelectClientCertificateCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFSentinel.html">uCEFSentinel</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFServer.html">uCEFServer</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFServerComponent.html">uCEFServerComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFServerEvents.html">uCEFServerEvents</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFServerHandler.html">uCEFServerHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFSetCookieCallback.html">uCEFSetCookieCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFSharedMemoryRegion.html">uCEFSharedMemoryRegion</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFSharedProcessMessageBuilder.html">uCEFSharedProcessMessageBuilder</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFSslInfo.html">uCEFSslInfo</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFSSLStatus.html">uCEFSSLStatus</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFStreamReader.html">uCEFStreamReader</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFStreamWriter.html">uCEFStreamWriter</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFStringList.html">uCEFStringList</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFStringMap.html">uCEFStringMap</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFStringMultimap.html">uCEFStringMultimap</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFStringVisitor.html">uCEFStringVisitor</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFTask.html">uCEFTask</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFTaskRunner.html">uCEFTaskRunner</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFTextfield.html">uCEFTextfield</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFTextfieldComponent.html">uCEFTextfieldComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFTextfieldDelegate.html">uCEFTextfieldDelegate</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFThread.html">uCEFThread</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFTimerWorkScheduler.html">uCEFTimerWorkScheduler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFTypes.html">uCEFTypes</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFUrlRequest.html">uCEFUrlRequest</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFUrlrequestClient.html">uCEFUrlrequestClient</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFUrlRequestClientComponent.html">uCEFUrlRequestClientComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFUrlRequestClientEvents.html">uCEFUrlRequestClientEvents</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8Accessor.html">uCEFv8Accessor</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8ArrayBufferReleaseCallback.html">uCEFv8ArrayBufferReleaseCallback</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8Context.html">uCEFv8Context</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8Exception.html">uCEFv8Exception</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8Handler.html">uCEFv8Handler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8Interceptor.html">uCEFv8Interceptor</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8StackFrame.html">uCEFv8StackFrame</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8StackTrace.html">uCEFv8StackTrace</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFv8Value.html">uCEFv8Value</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFValue.html">uCEFValue</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFView.html">uCEFView</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFViewComponent.html">uCEFViewComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFViewDelegate.html">uCEFViewDelegate</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFViewsFrameworkEvents.html">uCEFViewsFrameworkEvents</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFWaitableEvent.html">uCEFWaitableEvent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFWinControl.html">uCEFWinControl</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFWindow.html">uCEFWindow</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFWindowComponent.html">uCEFWindowComponent</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFWindowDelegate.html">uCEFWindowDelegate</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>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFWorkScheduler.html">uCEFWorkScheduler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFWorkSchedulerQueueThread.html">uCEFWorkSchedulerQueueThread</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFWorkSchedulerThread.html">uCEFWorkSchedulerThread</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFWriteHandler.html">uCEFWriteHandler</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFX509Certificate.html">uCEFX509Certificate</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFX509CertPrincipal.html">uCEFX509CertPrincipal</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname"><a class="bold" href="uCEFXmlReader.html">uCEFXmlReader</a></td>
|
||||
<td class="itemdesc"><p> </p></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname"><a class="bold" href="uCEFZipReader.html">uCEFZipReader</a></td>
|
||||
<td class="itemdesc"><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>
|
52
docs/html/legend.html
Normal file
52
docs/html/legend.html
Normal file
@ -0,0 +1,52 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: Legend</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="markerlegend">Legend</h1>
|
||||
<table class="markerlegend wide_list">
|
||||
<tr class="listheader">
|
||||
<th class="itemname">Marker</th>
|
||||
<th class="itemdesc">Visibility</th>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="legendmarker"><img src="private.gif" alt="Strict Private" title="Strict Private"></td>
|
||||
<td class="legenddesc">Strict Private</td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="legendmarker"><img src="private.gif" alt="Private" title="Private"></td>
|
||||
<td class="legenddesc">Private</td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="legendmarker"><img src="protected.gif" alt="Strict Protected" title="Strict Protected"></td>
|
||||
<td class="legenddesc">Strict Protected</td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="legendmarker"><img src="protected.gif" alt="Protected" title="Protected"></td>
|
||||
<td class="legenddesc">Protected</td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="legendmarker"><img src="public.gif" alt="Public" title="Public"></td>
|
||||
<td class="legenddesc">Public</td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="legendmarker"><img src="published.gif" alt="Published" title="Published"></td>
|
||||
<td class="legenddesc">Published</td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="legendmarker"><img src="automated.gif" alt="Automated" title="Automated"></td>
|
||||
<td class="legenddesc">Automated</td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="legendmarker"><img src="published.gif" alt="Implicit" title="Implicit"></td>
|
||||
<td class="legenddesc">Implicit</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>
|
266
docs/html/pasdoc.css
Normal file
266
docs/html/pasdoc.css
Normal file
@ -0,0 +1,266 @@
|
||||
/*
|
||||
Copyright 1998-2018 PasDoc developers.
|
||||
|
||||
This file is part of "PasDoc".
|
||||
|
||||
"PasDoc" is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
"PasDoc" is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with "PasDoc"; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
|
||||
----------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
body, html {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: Verdana,Arial;
|
||||
color: black;
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.container {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border-spacing: 0;
|
||||
}
|
||||
|
||||
.navigation {
|
||||
float: left;
|
||||
width: 20em; /* must match .content margin-left */
|
||||
height: 100%;
|
||||
color: white;
|
||||
background-color: #787878;
|
||||
position: fixed;
|
||||
margin: 0;
|
||||
box-sizing: border-box; /* without this, you could not have padding here, it would overlap with .content, causing errors on narrow screens */
|
||||
padding: 1em;
|
||||
}
|
||||
.navigation ul {
|
||||
margin: 0em;
|
||||
padding: 0em;
|
||||
}
|
||||
.navigation li {
|
||||
list-style-type: none;
|
||||
margin: 0.2em 0em 0em 0em;
|
||||
padding: 0.25em;
|
||||
}
|
||||
.navigation h2 {
|
||||
text-align: center;
|
||||
margin: 0em;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
.content {
|
||||
margin-left: 20em; /* must match .navigation width */
|
||||
box-sizing: border-box; /* without this, you could not have padding here, it would overlap with .navigation, causing errors on narrow screens */
|
||||
padding: 1em;
|
||||
}
|
||||
.content h1 {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.appinfo {
|
||||
float: right;
|
||||
text-align: right;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
img { border:0px; }
|
||||
|
||||
hr {
|
||||
border-bottom: medium none;
|
||||
border-top: thin solid #888;
|
||||
}
|
||||
|
||||
a:link {color:#C91E0C; text-decoration: none; }
|
||||
a:visited {color:#7E5C31; text-decoration: none; }
|
||||
a:hover {text-decoration: underline; }
|
||||
a:active {text-decoration: underline; }
|
||||
|
||||
.navigation a:link { color: white; text-decoration: none; }
|
||||
.navigation a:visited { color: white; text-decoration: none; }
|
||||
.navigation a:hover { color: white; font-weight: bold; text-decoration: none; }
|
||||
.navigation a:active { color: white; text-decoration: none; }
|
||||
|
||||
a.bold:link {color:#C91E0C; text-decoration: none; font-weight:bold; }
|
||||
a.bold:visited {color:#7E5C31; text-decoration: none; font-weight:bold; }
|
||||
a.bold:hover {text-decoration: underline; font-weight:bold; }
|
||||
a.bold:active {text-decoration: underline; font-weight:bold; }
|
||||
|
||||
a.section {color: green; text-decoration: none; font-weight: bold; }
|
||||
a.section:hover {color: green; text-decoration: underline; font-weight: bold; }
|
||||
|
||||
ul.useslist a:link {color:#C91E0C; text-decoration: none; font-weight:bold; }
|
||||
ul.useslist a:visited {color:#7E5C31; text-decoration: none; font-weight:bold; }
|
||||
ul.useslist a:hover {text-decoration: underline; font-weight:bold; }
|
||||
ul.useslist a:active {text-decoration: underline; font-weight:bold; }
|
||||
|
||||
ul.hierarchy { list-style-type:none; }
|
||||
ul.hierarchylevel { list-style-type:none; }
|
||||
|
||||
p.unitlink a:link {color:#C91E0C; text-decoration: none; font-weight:bold; }
|
||||
p.unitlink a:visited {color:#7E5C31; text-decoration: none; font-weight:bold; }
|
||||
p.unitlink a:hover {text-decoration: underline; font-weight:bold; }
|
||||
p.unitlink a:active {text-decoration: underline; font-weight:bold; }
|
||||
|
||||
tr.list { background: #FFBF44; }
|
||||
tr.list2 { background: #FFC982; }
|
||||
tr.listheader { background: #C91E0C; color: white; }
|
||||
|
||||
table.wide_list { border-spacing:2px; width:100%; }
|
||||
table.wide_list td { vertical-align:top; padding:4px; }
|
||||
|
||||
table.markerlegend { width:auto; }
|
||||
table.markerlegend td.legendmarker { text-align:center; }
|
||||
|
||||
.sections { background:white; }
|
||||
.sections .one_section {
|
||||
background:lightgray;
|
||||
display: inline-block;
|
||||
margin: 0.2em;
|
||||
padding: 0.5em 1em;
|
||||
}
|
||||
|
||||
table.summary td.itemcode { width:100%; }
|
||||
table.detail td.itemcode { width:100%; }
|
||||
|
||||
td.itemname {white-space:nowrap; }
|
||||
td.itemunit {white-space:nowrap; }
|
||||
td.itemdesc { width:100%; }
|
||||
|
||||
/* The paragraph "This item has no description." with this CSS class appears
|
||||
on items that have no description, and no ancestor from which
|
||||
to take a description.
|
||||
By default we hide it, you can inhide it to explicitly see where descriptions are missing. */
|
||||
p.nodescription {
|
||||
color:red;
|
||||
display: none;
|
||||
}
|
||||
p.inheritdescription { color:red; }
|
||||
dl.description dt { color:red;}
|
||||
dl.parameters dt {
|
||||
color:blue;
|
||||
}
|
||||
|
||||
code {
|
||||
font-family: monospace;
|
||||
font-size:1.2em;
|
||||
}
|
||||
|
||||
/* style for warning and note tag */
|
||||
dl.tag.warning {
|
||||
margin-left:-2px;
|
||||
padding-left: 3px;
|
||||
border-left:4px solid;
|
||||
border-color: #FF0000;
|
||||
}
|
||||
dl.tag.note {
|
||||
margin-left:-2px;
|
||||
padding-left: 3px;
|
||||
border-left:4px solid;
|
||||
border-color: #D0C000;
|
||||
}
|
||||
|
||||
/* Various browsers have various default styles for <h6>,
|
||||
sometimes ugly for our purposes, so it's best to set things
|
||||
like font-size and font-weight in out pasdoc.css explicitly. */
|
||||
h6.description_section {
|
||||
/* font-size 100% means that it has the same font size as the
|
||||
parent element, i.e. normal description text */
|
||||
font-size: 100%;
|
||||
font-weight: bold;
|
||||
/* By default browsers usually have some large margin-bottom and
|
||||
margin-top for <h1-6> tags. In our case, margin-bottom is
|
||||
unnecessary, we want to visually show that description_section
|
||||
is closely related to content below. In this situation
|
||||
(where the font size is just as a normal text), smaller bottom
|
||||
margin seems to look good. */
|
||||
margin-top: 1.4em;
|
||||
margin-bottom: 0em;
|
||||
}
|
||||
|
||||
/* Style applied to Pascal code in documentation
|
||||
(e.g. produced by @longcode tag) } */
|
||||
.longcode {
|
||||
font-family: monospace;
|
||||
font-size: 1.2em;
|
||||
background-color: #eee;
|
||||
padding: 0.5em;
|
||||
border: thin solid #ccc;
|
||||
}
|
||||
span.pascal_string { color: #000080; }
|
||||
span.pascal_keyword { font-weight: bolder; }
|
||||
span.pascal_comment { color: #000080; font-style: italic; }
|
||||
span.pascal_compiler_comment { color: #008000; }
|
||||
span.pascal_numeric { }
|
||||
span.pascal_hex { }
|
||||
|
||||
p.hint_directive { color: red; }
|
||||
|
||||
input#search_text { }
|
||||
input#search_submit_button { }
|
||||
|
||||
acronym.mispelling { background-color: #f00; }
|
||||
|
||||
/* Actually this reduces vertical space between *every* paragraph
|
||||
inside list with @itemSpacing(compact).
|
||||
While we would like to reduce this space only for the
|
||||
top of 1st and bottom of last paragraph within each list item.
|
||||
But, well, user probably will not do any paragraph breaks
|
||||
within a list with @itemSpacing(compact) anyway, so it's
|
||||
acceptable solution. */
|
||||
ul.compact_spacing p { margin-top: 0em; margin-bottom: 0em; }
|
||||
ol.compact_spacing p { margin-top: 0em; margin-bottom: 0em; }
|
||||
dl.compact_spacing p { margin-top: 0em; margin-bottom: 0em; }
|
||||
|
||||
/* Style for table created by @table tags:
|
||||
just some thin border.
|
||||
|
||||
This way we have some borders around the cells
|
||||
(so cells are visibly separated), but the border
|
||||
"blends with the background" so it doesn't look too ugly.
|
||||
Hopefully it looks satisfactory in most cases and for most
|
||||
people.
|
||||
|
||||
We add padding for cells, otherwise they look too close.
|
||||
This is normal thing to do when border-collapse is set to
|
||||
collapse (because this eliminates spacing between cells).
|
||||
*/
|
||||
table.table_tag { border-collapse: collapse; }
|
||||
table.table_tag td { border: 1pt solid gray; padding: 0.3em; }
|
||||
table.table_tag th { border: 1pt solid gray; padding: 0.3em; }
|
||||
|
||||
table.detail {
|
||||
border: 1pt solid gray;
|
||||
margin-top: 0.3em;
|
||||
margin-bottom: 0.3em;
|
||||
}
|
||||
|
||||
.search-form { white-space: nowrap; }
|
||||
.search-input input { max-width: 80%; } /* this provides some safe space to always fit even on very narrow screens */
|
||||
.search-input input, .search-button { display: inline-block; vertical-align: middle; }
|
||||
.search-input { display: inline-block; }
|
||||
|
||||
/* Do not make extra vertical space at the beginning/end of table cells.
|
||||
We need ">" selector, to not change paragraphs inside lists inside
|
||||
table cells. */
|
||||
table.table_tag td > p:first-child,
|
||||
table.table_tag th > p:first-child,
|
||||
td.itemdesc > p:first-child { margin-top: 0em; }
|
||||
|
||||
table.table_tag td > p:last-child,
|
||||
table.table_tag th > p:last-child,
|
||||
td.itemdesc > p:last-child { margin-bottom: 0em; }
|
BIN
docs/html/private.gif
Normal file
BIN
docs/html/private.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 141 B |
BIN
docs/html/protected.gif
Normal file
BIN
docs/html/protected.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 141 B |
BIN
docs/html/public.gif
Normal file
BIN
docs/html/public.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 141 B |
BIN
docs/html/published.gif
Normal file
BIN
docs/html/published.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 141 B |
@ -0,0 +1,72 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFAccessibilityHandler: Class TCEFAccessibilityHandlerOwn</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="TCEFAccessibilityHandlerOwn"></span><h1 class="cio">Class TCEFAccessibilityHandlerOwn</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="uCEFAccessibilityHandler.html">uCEFAccessibilityHandler</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCEFAccessibilityHandlerOwn = class(<a class="normal" href="uCEFBaseRefCounted.TCefBaseRefCountedOwn.html">TCefBaseRefCountedOwn</a>, <a class="normal" href="uCEFInterfaces.ICefAccessibilityHandler.html">ICefAccessibilityHandler</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.TCefBaseRefCountedOwn.html">TCefBaseRefCountedOwn</a></li>
|
||||
<li class="thisitem">TCEFAccessibilityHandlerOwn</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="uCEFAccessibilityHandler.TCEFAccessibilityHandlerOwn.html#OnAccessibilityTreeChange-ICefValue-">OnAccessibilityTreeChange</a></strong>(const value: <a href="uCEFInterfaces.ICefValue.html">ICefValue</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="uCEFAccessibilityHandler.TCEFAccessibilityHandlerOwn.html#OnAccessibilityLocationChange-ICefValue-">OnAccessibilityLocationChange</a></strong>(const value: <a href="uCEFInterfaces.ICefValue.html">ICefValue</a>); virtual;</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="uCEFAccessibilityHandler.TCEFAccessibilityHandlerOwn.html#Create">Create</a></strong>; virtual;</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="OnAccessibilityTreeChange-ICefValue-"></span><code>procedure <strong>OnAccessibilityTreeChange</strong>(const value: <a href="uCEFInterfaces.ICefValue.html">ICefValue</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.ICefAccessibilityHandler.html#OnAccessibilityTreeChange-ICefValue-">ICefAccessibilityHandler.OnAccessibilityTreeChange</a>.</p><p>
|
||||
Called after renderer process sends accessibility tree changes to the browser 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="OnAccessibilityLocationChange-ICefValue-"></span><code>procedure <strong>OnAccessibilityLocationChange</strong>(const value: <a href="uCEFInterfaces.ICefValue.html">ICefValue</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.ICefAccessibilityHandler.html#OnAccessibilityLocationChange-ICefValue-">ICefAccessibilityHandler.OnAccessibilityLocationChange</a>.</p><p>
|
||||
Called after renderer process sends accessibility location changes to the browser 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="Create"></span><code>constructor <strong>Create</strong>; virtual;</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>
|
@ -0,0 +1,129 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFAccessibilityHandler: Class TCustomAccessibilityHandler</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="TCustomAccessibilityHandler"></span><h1 class="cio">Class TCustomAccessibilityHandler</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"><a class="section" href="#PasDoc-Fields">Fields</a></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="uCEFAccessibilityHandler.html">uCEFAccessibilityHandler</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCustomAccessibilityHandler = class(<a class="normal" href="uCEFAccessibilityHandler.TCEFAccessibilityHandlerOwn.html">TCEFAccessibilityHandlerOwn</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.TCefBaseRefCountedOwn.html">TCefBaseRefCountedOwn</a></li>
|
||||
<li class="ancestor"><a class="normal" href="uCEFAccessibilityHandler.TCEFAccessibilityHandlerOwn.html">TCEFAccessibilityHandlerOwn</a></li>
|
||||
<li class="thisitem">TCustomAccessibilityHandler</li></ul><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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFAccessibilityHandler.TCustomAccessibilityHandler.html#FOnTreeChange">FOnTreeChange</a></strong>: TOnAccessibilityEvent;</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="uCEFAccessibilityHandler.TCustomAccessibilityHandler.html#FOnLocationChange">FOnLocationChange</a></strong>: TOnAccessibilityEvent;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<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="uCEFAccessibilityHandler.TCustomAccessibilityHandler.html#OnAccessibilityTreeChange-ICefValue-">OnAccessibilityTreeChange</a></strong>(const value: <a href="uCEFInterfaces.ICefValue.html">ICefValue</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="uCEFAccessibilityHandler.TCustomAccessibilityHandler.html#OnAccessibilityLocationChange-ICefValue-">OnAccessibilityLocationChange</a></strong>(const value: <a href="uCEFInterfaces.ICefValue.html">ICefValue</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="uCEFAccessibilityHandler.TCustomAccessibilityHandler.html#Create">Create</a></strong>; override;</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="uCEFAccessibilityHandler.TCustomAccessibilityHandler.html#OnTreeChange">OnTreeChange</a></strong> : TOnAccessibilityEvent read <a href="uCEFAccessibilityHandler.TCustomAccessibilityHandler.html#FOnTreeChange">FOnTreeChange</a> write <a href="uCEFAccessibilityHandler.TCustomAccessibilityHandler.html#FOnTreeChange">FOnTreeChange</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="uCEFAccessibilityHandler.TCustomAccessibilityHandler.html#OnLocationChange">OnLocationChange</a></strong> : TOnAccessibilityEvent read <a href="uCEFAccessibilityHandler.TCustomAccessibilityHandler.html#FOnLocationChange">FOnLocationChange</a> write <a href="uCEFAccessibilityHandler.TCustomAccessibilityHandler.html#FOnLocationChange">FOnLocationChange</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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="FOnTreeChange"></span><code><strong>FOnTreeChange</strong>: TOnAccessibilityEvent;</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="FOnLocationChange"></span><code><strong>FOnLocationChange</strong>: TOnAccessibilityEvent;</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">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="OnAccessibilityTreeChange-ICefValue-"></span><code>procedure <strong>OnAccessibilityTreeChange</strong>(const value: <a href="uCEFInterfaces.ICefValue.html">ICefValue</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.ICefAccessibilityHandler.html#OnAccessibilityTreeChange-ICefValue-">ICefAccessibilityHandler.OnAccessibilityTreeChange</a>.</p><p>
|
||||
Called after renderer process sends accessibility tree changes to the browser 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="OnAccessibilityLocationChange-ICefValue-"></span><code>procedure <strong>OnAccessibilityLocationChange</strong>(const value: <a href="uCEFInterfaces.ICefValue.html">ICefValue</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.ICefAccessibilityHandler.html#OnAccessibilityLocationChange-ICefValue-">ICefAccessibilityHandler.OnAccessibilityLocationChange</a>.</p><p>
|
||||
Called after renderer process sends accessibility location changes to the browser 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="Create"></span><code>constructor <strong>Create</strong>; override;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</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="OnTreeChange"></span><code>property <strong>OnTreeChange</strong> : TOnAccessibilityEvent read <a href="uCEFAccessibilityHandler.TCustomAccessibilityHandler.html#FOnTreeChange">FOnTreeChange</a> write <a href="uCEFAccessibilityHandler.TCustomAccessibilityHandler.html#FOnTreeChange">FOnTreeChange</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="OnLocationChange"></span><code>property <strong>OnLocationChange</strong> : TOnAccessibilityEvent read <a href="uCEFAccessibilityHandler.TCustomAccessibilityHandler.html#FOnLocationChange">FOnLocationChange</a> write <a href="uCEFAccessibilityHandler.TCustomAccessibilityHandler.html#FOnLocationChange">FOnLocationChange</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>
|
48
docs/html/uCEFAccessibilityHandler.html
Normal file
48
docs/html/uCEFAccessibilityHandler.html
Normal file
@ -0,0 +1,48 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFAccessibilityHandler</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 uCEFAccessibilityHandler</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"><a class="section" href="#PasDoc-Types">Types</a></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="uCEFAccessibilityHandler.TCEFAccessibilityHandlerOwn.html"><code>TCEFAccessibilityHandlerOwn</code></a></td>
|
||||
<td class="itemdesc"> </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname">Class <a class="bold" href="uCEFAccessibilityHandler.TCustomAccessibilityHandler.html"><code>TCustomAccessibilityHandler</code></a></td>
|
||||
<td class="itemdesc"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<span id="PasDoc-Types"></span><h3 class="summary">Types</h3>
|
||||
<table class="summary wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFAccessibilityHandler.html#TOnAccessibilityEvent-TObject-ICefValue-">TOnAccessibilityEvent</a></strong> = procedure(Sender: TObject; const value: <a href="uCEFInterfaces.ICefValue.html">ICefValue</a>) of object;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2 class="description">Description</h2>
|
||||
<h3 class="detail">Types</h3>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="TOnAccessibilityEvent-TObject-ICefValue-"></span><code><strong>TOnAccessibilityEvent</strong> = procedure(Sender: TObject; const value: <a href="uCEFInterfaces.ICefValue.html">ICefValue</a>) of object;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<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>
|
134
docs/html/uCEFApp.TCefAppOwn.html
Normal file
134
docs/html/uCEFApp.TCefAppOwn.html
Normal file
@ -0,0 +1,134 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFApp: Class TCefAppOwn</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="TCefAppOwn"></span><h1 class="cio">Class TCefAppOwn</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="uCEFApp.html">uCEFApp</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCefAppOwn = class(<a class="normal" href="uCEFBaseRefCounted.TCefBaseRefCountedOwn.html">TCefBaseRefCountedOwn</a>, <a class="normal" href="uCEFInterfaces.ICefApp.html">ICefApp</a>)</code></p>
|
||||
<h2 class="description">Description</h2>
|
||||
<p>
|
||||
Implement this interface to provide handler implementations. Methods will be called by the process and/or thread indicated. </p>
|
||||
<p>
|
||||
|
||||
|
||||
<p><see href="<a href="https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/cef_app_capi.h">https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/cef_app_capi.h</a>">CEF source file: /include/capi/cef_app_capi.h (cef_app_t))</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.TCefBaseRefCountedOwn.html">TCefBaseRefCountedOwn</a></li>
|
||||
<li class="thisitem">TCefAppOwn</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="uCEFApp.TCefAppOwn.html#OnBeforeCommandLineProcessing-ustring-ICefCommandLine-">OnBeforeCommandLineProcessing</a></strong>(const processType: <a href="uCEFTypes.html#ustring">ustring</a>; const commandLine: <a href="uCEFInterfaces.ICefCommandLine.html">ICefCommandLine</a>); virtual; abstract;</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="uCEFApp.TCefAppOwn.html#OnRegisterCustomSchemes-TCefSchemeRegistrarRef-">OnRegisterCustomSchemes</a></strong>(const registrar: <a href="uCEFSchemeRegistrar.TCefSchemeRegistrarRef.html">TCefSchemeRegistrarRef</a>); virtual; abstract;</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="uCEFApp.TCefAppOwn.html#GetResourceBundleHandler-ICefResourceBundleHandler-">GetResourceBundleHandler</a></strong>(var aHandler : <a href="uCEFInterfaces.ICefResourceBundleHandler.html">ICefResourceBundleHandler</a>); virtual; abstract;</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="uCEFApp.TCefAppOwn.html#GetBrowserProcessHandler-ICefBrowserProcessHandler-">GetBrowserProcessHandler</a></strong>(var aHandler : <a href="uCEFInterfaces.ICefBrowserProcessHandler.html">ICefBrowserProcessHandler</a>); virtual; abstract;</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="uCEFApp.TCefAppOwn.html#GetRenderProcessHandler-ICefRenderProcessHandler-">GetRenderProcessHandler</a></strong>(var aHandler : <a href="uCEFInterfaces.ICefRenderProcessHandler.html">ICefRenderProcessHandler</a>); virtual; abstract;</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="uCEFApp.TCefAppOwn.html#RemoveReferences">RemoveReferences</a></strong>; virtual; abstract;</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="uCEFApp.TCefAppOwn.html#Create">Create</a></strong>; virtual;</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="OnBeforeCommandLineProcessing-ustring-ICefCommandLine-"></span><code>procedure <strong>OnBeforeCommandLineProcessing</strong>(const processType: <a href="uCEFTypes.html#ustring">ustring</a>; const commandLine: <a href="uCEFInterfaces.ICefCommandLine.html">ICefCommandLine</a>); virtual; abstract;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefApp.html#OnBeforeCommandLineProcessing-ustring-ICefCommandLine-">ICefApp.OnBeforeCommandLineProcessing</a>.</p><p>
|
||||
Provides an opportunity to view and/or modify command-line arguments before processing by CEF and Chromium. The |process_type| value will be NULL for the browser process. Do not keep a reference to the ICefCommandLine object passed to this function. The TCefSettings.command_line_args_disabled value can be used to start with an NULL command-line object. Any values specified in CefSettings that equate to command-line arguments will be set before this function is called. Be cautious when using this function to modify command-line arguments for non-browser processes as this may result in undefined behavior including crashes. </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="OnRegisterCustomSchemes-TCefSchemeRegistrarRef-"></span><code>procedure <strong>OnRegisterCustomSchemes</strong>(const registrar: <a href="uCEFSchemeRegistrar.TCefSchemeRegistrarRef.html">TCefSchemeRegistrarRef</a>); virtual; abstract;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefApp.html#OnRegisterCustomSchemes-TCefSchemeRegistrarRef-">ICefApp.OnRegisterCustomSchemes</a>.</p><p>
|
||||
Provides an opportunity to register custom schemes. Do not keep a reference to the |registrar| object. This function is called on the main thread for each process and the registered schemes should be the same across all processes. </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="GetResourceBundleHandler-ICefResourceBundleHandler-"></span><code>procedure <strong>GetResourceBundleHandler</strong>(var aHandler : <a href="uCEFInterfaces.ICefResourceBundleHandler.html">ICefResourceBundleHandler</a>); virtual; abstract;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefApp.html#GetResourceBundleHandler-ICefResourceBundleHandler-">ICefApp.GetResourceBundleHandler</a>.</p><p>
|
||||
Return the handler for resource bundle events. If TCefSettings.pack_loading_disabled is true (1) a handler must be returned. If no handler is returned resources will be loaded from pack files. This function is called by the browser and render processes on multiple threads. </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="GetBrowserProcessHandler-ICefBrowserProcessHandler-"></span><code>procedure <strong>GetBrowserProcessHandler</strong>(var aHandler : <a href="uCEFInterfaces.ICefBrowserProcessHandler.html">ICefBrowserProcessHandler</a>); virtual; abstract;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefApp.html#GetBrowserProcessHandler-ICefBrowserProcessHandler-">ICefApp.GetBrowserProcessHandler</a>.</p><p>
|
||||
Return the handler for functionality specific to the browser process. This function is called on multiple threads in the browser 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="GetRenderProcessHandler-ICefRenderProcessHandler-"></span><code>procedure <strong>GetRenderProcessHandler</strong>(var aHandler : <a href="uCEFInterfaces.ICefRenderProcessHandler.html">ICefRenderProcessHandler</a>); virtual; abstract;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefApp.html#GetRenderProcessHandler-ICefRenderProcessHandler-">ICefApp.GetRenderProcessHandler</a>.</p><p>
|
||||
Return the handler for functionality specific to the render process. This function is called on the render process main 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="RemoveReferences"></span><code>procedure <strong>RemoveReferences</strong>; virtual; abstract;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefApp.html#RemoveReferences">ICefApp.RemoveReferences</a>.</p><p>
|
||||
Custom procedure to clear all references. </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"></span><code>constructor <strong>Create</strong>; virtual;</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>
|
209
docs/html/uCEFApp.TCustomCefApp.html
Normal file
209
docs/html/uCEFApp.TCustomCefApp.html
Normal file
@ -0,0 +1,209 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFApp: Class TCustomCefApp</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="TCustomCefApp"></span><h1 class="cio">Class TCustomCefApp</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"><a class="section" href="#PasDoc-Fields">Fields</a></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="uCEFApp.html">uCEFApp</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCustomCefApp = class(<a class="normal" href="uCEFApp.TCefAppOwn.html">TCefAppOwn</a>)</code></p>
|
||||
<h2 class="description">Description</h2>
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFApp.TCefAppOwn.html">TCefAppOwn</a>.</p><p>
|
||||
Implement this interface to provide handler implementations. Methods will be called by the process and/or thread indicated.
|
||||
|
||||
<p><see href="<a href="https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/cef_app_capi.h">https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/cef_app_capi.h</a>">CEF source file: /include/capi/cef_app_capi.h (cef_app_t))</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.TCefBaseRefCountedOwn.html">TCefBaseRefCountedOwn</a></li>
|
||||
<li class="ancestor"><a class="normal" href="uCEFApp.TCefAppOwn.html">TCefAppOwn</a></li>
|
||||
<li class="thisitem">TCustomCefApp</li></ul><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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFApp.TCustomCefApp.html#FCefApp">FCefApp</a></strong>: <a href="uCEFApplicationCore.TCefApplicationCore.html">TCefApplicationCore</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="uCEFApp.TCustomCefApp.html#FResourceBundleHandler">FResourceBundleHandler</a></strong>: <a href="uCEFInterfaces.ICefResourceBundleHandler.html">ICefResourceBundleHandler</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><strong><a href="uCEFApp.TCustomCefApp.html#FBrowserProcessHandler">FBrowserProcessHandler</a></strong>: <a href="uCEFInterfaces.ICefBrowserProcessHandler.html">ICefBrowserProcessHandler</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="uCEFApp.TCustomCefApp.html#FRenderProcessHandler">FRenderProcessHandler</a></strong>: <a href="uCEFInterfaces.ICefRenderProcessHandler.html">ICefRenderProcessHandler</a>;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<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="uCEFApp.TCustomCefApp.html#OnBeforeCommandLineProcessing-ustring-ICefCommandLine-">OnBeforeCommandLineProcessing</a></strong>(const processType: <a href="uCEFTypes.html#ustring">ustring</a>; const commandLine: <a href="uCEFInterfaces.ICefCommandLine.html">ICefCommandLine</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="uCEFApp.TCustomCefApp.html#OnRegisterCustomSchemes-TCefSchemeRegistrarRef-">OnRegisterCustomSchemes</a></strong>(const registrar: <a href="uCEFSchemeRegistrar.TCefSchemeRegistrarRef.html">TCefSchemeRegistrarRef</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="uCEFApp.TCustomCefApp.html#GetResourceBundleHandler-ICefResourceBundleHandler-">GetResourceBundleHandler</a></strong>(var aHandler : <a href="uCEFInterfaces.ICefResourceBundleHandler.html">ICefResourceBundleHandler</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="uCEFApp.TCustomCefApp.html#GetBrowserProcessHandler-ICefBrowserProcessHandler-">GetBrowserProcessHandler</a></strong>(var aHandler : <a href="uCEFInterfaces.ICefBrowserProcessHandler.html">ICefBrowserProcessHandler</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="uCEFApp.TCustomCefApp.html#GetRenderProcessHandler-ICefRenderProcessHandler-">GetRenderProcessHandler</a></strong>(var aHandler : <a href="uCEFInterfaces.ICefRenderProcessHandler.html">ICefRenderProcessHandler</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="uCEFApp.TCustomCefApp.html#InitializeVars">InitializeVars</a></strong>;</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="uCEFApp.TCustomCefApp.html#RemoveReferences">RemoveReferences</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="uCEFApp.TCustomCefApp.html#Create-TCefApplicationCore-">Create</a></strong>(const aCefApp : <a href="uCEFApplicationCore.TCefApplicationCore.html">TCefApplicationCore</a>); reintroduce;</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>destructor <strong><a href="uCEFApp.TCustomCefApp.html#Destroy">Destroy</a></strong>; override;</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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="FCefApp"></span><code><strong>FCefApp</strong>: <a href="uCEFApplicationCore.TCefApplicationCore.html">TCefApplicationCore</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="FResourceBundleHandler"></span><code><strong>FResourceBundleHandler</strong>: <a href="uCEFInterfaces.ICefResourceBundleHandler.html">ICefResourceBundleHandler</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="FBrowserProcessHandler"></span><code><strong>FBrowserProcessHandler</strong>: <a href="uCEFInterfaces.ICefBrowserProcessHandler.html">ICefBrowserProcessHandler</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="FRenderProcessHandler"></span><code><strong>FRenderProcessHandler</strong>: <a href="uCEFInterfaces.ICefRenderProcessHandler.html">ICefRenderProcessHandler</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">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="OnBeforeCommandLineProcessing-ustring-ICefCommandLine-"></span><code>procedure <strong>OnBeforeCommandLineProcessing</strong>(const processType: <a href="uCEFTypes.html#ustring">ustring</a>; const commandLine: <a href="uCEFInterfaces.ICefCommandLine.html">ICefCommandLine</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.ICefApp.html#OnBeforeCommandLineProcessing-ustring-ICefCommandLine-">ICefApp.OnBeforeCommandLineProcessing</a>.</p><p>
|
||||
Provides an opportunity to view and/or modify command-line arguments before processing by CEF and Chromium. The |process_type| value will be NULL for the browser process. Do not keep a reference to the ICefCommandLine object passed to this function. The TCefSettings.command_line_args_disabled value can be used to start with an NULL command-line object. Any values specified in CefSettings that equate to command-line arguments will be set before this function is called. Be cautious when using this function to modify command-line arguments for non-browser processes as this may result in undefined behavior including crashes. </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="OnRegisterCustomSchemes-TCefSchemeRegistrarRef-"></span><code>procedure <strong>OnRegisterCustomSchemes</strong>(const registrar: <a href="uCEFSchemeRegistrar.TCefSchemeRegistrarRef.html">TCefSchemeRegistrarRef</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.ICefApp.html#OnRegisterCustomSchemes-TCefSchemeRegistrarRef-">ICefApp.OnRegisterCustomSchemes</a>.</p><p>
|
||||
Provides an opportunity to register custom schemes. Do not keep a reference to the |registrar| object. This function is called on the main thread for each process and the registered schemes should be the same across all processes. </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="GetResourceBundleHandler-ICefResourceBundleHandler-"></span><code>procedure <strong>GetResourceBundleHandler</strong>(var aHandler : <a href="uCEFInterfaces.ICefResourceBundleHandler.html">ICefResourceBundleHandler</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.ICefApp.html#GetResourceBundleHandler-ICefResourceBundleHandler-">ICefApp.GetResourceBundleHandler</a>.</p><p>
|
||||
Return the handler for resource bundle events. If TCefSettings.pack_loading_disabled is true (1) a handler must be returned. If no handler is returned resources will be loaded from pack files. This function is called by the browser and render processes on multiple threads. </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="GetBrowserProcessHandler-ICefBrowserProcessHandler-"></span><code>procedure <strong>GetBrowserProcessHandler</strong>(var aHandler : <a href="uCEFInterfaces.ICefBrowserProcessHandler.html">ICefBrowserProcessHandler</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.ICefApp.html#GetBrowserProcessHandler-ICefBrowserProcessHandler-">ICefApp.GetBrowserProcessHandler</a>.</p><p>
|
||||
Return the handler for functionality specific to the browser process. This function is called on multiple threads in the browser 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="GetRenderProcessHandler-ICefRenderProcessHandler-"></span><code>procedure <strong>GetRenderProcessHandler</strong>(var aHandler : <a href="uCEFInterfaces.ICefRenderProcessHandler.html">ICefRenderProcessHandler</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.ICefApp.html#GetRenderProcessHandler-ICefRenderProcessHandler-">ICefApp.GetRenderProcessHandler</a>.</p><p>
|
||||
Return the handler for functionality specific to the render process. This function is called on the render process main 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="InitializeVars"></span><code>procedure <strong>InitializeVars</strong>;</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="RemoveReferences"></span><code>procedure <strong>RemoveReferences</strong>; 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.ICefApp.html#RemoveReferences">ICefApp.RemoveReferences</a>.</p><p>
|
||||
Custom procedure to clear all references. </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-TCefApplicationCore-"></span><code>constructor <strong>Create</strong>(const aCefApp : <a href="uCEFApplicationCore.TCefApplicationCore.html">TCefApplicationCore</a>); reintroduce;</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="Destroy"></span><code>destructor <strong>Destroy</strong>; override;</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>
|
33
docs/html/uCEFApp.html
Normal file
33
docs/html/uCEFApp.html
Normal file
@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFApp</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 uCEFApp</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="uCEFApp.TCefAppOwn.html"><code>TCefAppOwn</code></a></td>
|
||||
<td class="itemdesc"> Implement this interface to provide handler implementations. Methods will be called by the process and/or thread indicated. </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname">Class <a class="bold" href="uCEFApp.TCustomCefApp.html"><code>TCustomCefApp</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>
|
200
docs/html/uCEFApplication.TCefApplication.html
Normal file
200
docs/html/uCEFApplication.TCefApplication.html
Normal file
@ -0,0 +1,200 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFApplication: Class TCefApplication</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="TCefApplication"></span><h1 class="cio">Class TCefApplication</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"><a class="section" href="#PasDoc-Fields">Fields</a></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="uCEFApplication.html">uCEFApplication</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCefApplication = class(<a class="normal" href="uCEFApplicationCore.TCefApplicationCore.html">TCefApplicationCore</a>)</code></p>
|
||||
<h2 class="description">Description</h2>
|
||||
<p>
|
||||
Main class used to simplify the CEF initialization and destruction. </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="uCEFApplicationCore.TCefApplicationCore.html">TCefApplicationCore</a></li>
|
||||
<li class="thisitem">TCefApplication</li></ul><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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplication.TCefApplication.html#FDestroyApplicationObject">FDestroyApplicationObject</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><strong><a href="uCEFApplication.TCefApplication.html#FDestroyAppWindows">FDestroyAppWindows</a></strong>: 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><strong><a href="uCEFApplication.TCefApplication.html#FContextInitializedHandlers">FContextInitializedHandlers</a></strong>: TMethodList;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<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="uCEFApplication.TCefApplication.html#CallContextInitializedHandlers-PtrInt-">CallContextInitializedHandlers</a></strong>(Data: PtrInt);</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="uCEFApplication.TCefApplication.html#doOnContextInitialized">doOnContextInitialized</a></strong>; 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="uCEFApplication.TCefApplication.html#BeforeInitSubProcess">BeforeInitSubProcess</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="uCEFApplication.TCefApplication.html#Create">Create</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>destructor <strong><a href="uCEFApplication.TCefApplication.html#Destroy">Destroy</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>procedure <strong><a href="uCEFApplication.TCefApplication.html#UpdateDeviceScaleFactor">UpdateDeviceScaleFactor</a></strong>; 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>Procedure <strong><a href="uCEFApplication.TCefApplication.html#AddContextInitializedHandler-TNotifyEvent-">AddContextInitializedHandler</a></strong>(AHandler: TNotifyEvent);</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="uCEFApplication.TCefApplication.html#RemoveContextInitializedHandler-TNotifyEvent-">RemoveContextInitializedHandler</a></strong>(AHandler: TNotifyEvent);</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="uCEFApplication.TCefApplication.html#DestroyApplicationObject">DestroyApplicationObject</a></strong> : boolean read <a href="uCEFApplication.TCefApplication.html#FDestroyApplicationObject">FDestroyApplicationObject</a> write <a href="uCEFApplication.TCefApplication.html#FDestroyApplicationObject">FDestroyApplicationObject</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="uCEFApplication.TCefApplication.html#DestroyAppWindows">DestroyAppWindows</a></strong> : boolean read <a href="uCEFApplication.TCefApplication.html#FDestroyAppWindows">FDestroyAppWindows</a> write <a href="uCEFApplication.TCefApplication.html#FDestroyAppWindows">FDestroyAppWindows</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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="FDestroyApplicationObject"></span><code><strong>FDestroyApplicationObject</strong>: 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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="FDestroyAppWindows"></span><code><strong>FDestroyAppWindows</strong>: 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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="FContextInitializedHandlers"></span><code><strong>FContextInitializedHandlers</strong>: TMethodList;</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">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="CallContextInitializedHandlers-PtrInt-"></span><code>procedure <strong>CallContextInitializedHandlers</strong>(Data: PtrInt);</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="doOnContextInitialized"></span><code>procedure <strong>doOnContextInitialized</strong>; override;</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="BeforeInitSubProcess"></span><code>procedure <strong>BeforeInitSubProcess</strong>; override;</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="Create"></span><code>constructor <strong>Create</strong>;</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="Destroy"></span><code>destructor <strong>Destroy</strong>; override;</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="UpdateDeviceScaleFactor"></span><code>procedure <strong>UpdateDeviceScaleFactor</strong>; override;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFApplicationCore.TCefApplicationCore.html#UpdateDeviceScaleFactor">TCefApplicationCore.UpdateDeviceScaleFactor</a>.</p><p>
|
||||
Update the DeviceScaleFactor value with the current monitor scale. </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="AddContextInitializedHandler-TNotifyEvent-"></span><code>Procedure <strong>AddContextInitializedHandler</strong>(AHandler: TNotifyEvent);</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="RemoveContextInitializedHandler-TNotifyEvent-"></span><code>Procedure <strong>RemoveContextInitializedHandler</strong>(AHandler: TNotifyEvent);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</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="DestroyApplicationObject"></span><code>property <strong>DestroyApplicationObject</strong> : boolean read <a href="uCEFApplication.TCefApplication.html#FDestroyApplicationObject">FDestroyApplicationObject</a> write <a href="uCEFApplication.TCefApplication.html#FDestroyApplicationObject">FDestroyApplicationObject</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="DestroyAppWindows"></span><code>property <strong>DestroyAppWindows</strong> : boolean read <a href="uCEFApplication.TCefApplication.html#FDestroyAppWindows">FDestroyAppWindows</a> write <a href="uCEFApplication.TCefApplication.html#FDestroyAppWindows">FDestroyAppWindows</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>
|
186
docs/html/uCEFApplication.html
Normal file
186
docs/html/uCEFApplication.html
Normal file
@ -0,0 +1,186 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFApplication</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 uCEFApplication</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"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section"><a class="section" href="#PasDoc-Types">Types</a></div><div class="one_section"><a class="section" href="#PasDoc-Constants">Constants</a></div><div class="one_section"><a class="section" href="#PasDoc-Variables">Variables</a></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="uCEFApplication.TCefApplication.html"><code>TCefApplication</code></a></td>
|
||||
<td class="itemdesc"> Main class used to simplify the CEF initialization and destruction. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3>
|
||||
<table class="summary wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>function <strong><a href="uCEFApplication.html#CefCursorToWindowsCursor-TCefCursorType-">CefCursorToWindowsCursor</a></strong>(aCefCursor : <a href="uCEFTypes.html#TCefCursorType">TCefCursorType</a>) : TCursor;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFApplication.html#DestroyGlobalCEFApp">DestroyGlobalCEFApp</a></strong>;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<span id="PasDoc-Types"></span><h3 class="summary">Types</h3>
|
||||
<table class="summary wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplication.html#TCEFDirectoryDeleterThread">TCEFDirectoryDeleterThread</a></strong> = <a href="uCEFApplicationCore.TCEFDirectoryDeleterThread.html">uCEFApplicationCore.TCEFDirectoryDeleterThread</a>;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<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="uCEFApplication.html#CEF_SUPPORTED_VERSION_MAJOR">CEF_SUPPORTED_VERSION_MAJOR</a></strong> = <a href="uCEFApplicationCore.html#CEF_SUPPORTED_VERSION_MAJOR">uCefApplicationCore.CEF_SUPPORTED_VERSION_MAJOR</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplication.html#CEF_SUPPORTED_VERSION_MINOR">CEF_SUPPORTED_VERSION_MINOR</a></strong> = <a href="uCEFApplicationCore.html#CEF_SUPPORTED_VERSION_MINOR">uCefApplicationCore.CEF_SUPPORTED_VERSION_MINOR</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplication.html#CEF_SUPPORTED_VERSION_RELEASE">CEF_SUPPORTED_VERSION_RELEASE</a></strong> = <a href="uCEFApplicationCore.html#CEF_SUPPORTED_VERSION_RELEASE">uCefApplicationCore.CEF_SUPPORTED_VERSION_RELEASE</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplication.html#CEF_SUPPORTED_VERSION_BUILD">CEF_SUPPORTED_VERSION_BUILD</a></strong> = <a href="uCEFApplicationCore.html#CEF_SUPPORTED_VERSION_BUILD">uCefApplicationCore.CEF_SUPPORTED_VERSION_BUILD</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplication.html#CEF_CHROMEELF_VERSION_MAJOR">CEF_CHROMEELF_VERSION_MAJOR</a></strong> = <a href="uCEFApplicationCore.html#CEF_CHROMEELF_VERSION_MAJOR">uCefApplicationCore.CEF_CHROMEELF_VERSION_MAJOR</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplication.html#CEF_CHROMEELF_VERSION_MINOR">CEF_CHROMEELF_VERSION_MINOR</a></strong> = <a href="uCEFApplicationCore.html#CEF_CHROMEELF_VERSION_MINOR">uCefApplicationCore.CEF_CHROMEELF_VERSION_MINOR</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplication.html#CEF_CHROMEELF_VERSION_RELEASE">CEF_CHROMEELF_VERSION_RELEASE</a></strong> = <a href="uCEFApplicationCore.html#CEF_CHROMEELF_VERSION_RELEASE">uCefApplicationCore.CEF_CHROMEELF_VERSION_RELEASE</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplication.html#CEF_CHROMEELF_VERSION_BUILD">CEF_CHROMEELF_VERSION_BUILD</a></strong> = <a href="uCEFApplicationCore.html#CEF_CHROMEELF_VERSION_BUILD">uCefApplicationCore.CEF_CHROMEELF_VERSION_BUILD</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplication.html#LIBCEF_DLL">LIBCEF_DLL</a></strong> = <a href="uCEFApplicationCore.html#LIBCEF_DLL">uCefApplicationCore.LIBCEF_DLL</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplication.html#CHROMEELF_DLL">CHROMEELF_DLL</a></strong> = <a href="uCEFApplicationCore.html#CHROMEELF_DLL">uCefApplicationCore.CHROMEELF_DLL</a>;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<span id="PasDoc-Variables"></span><h3 class="summary">Variables</h3>
|
||||
<table class="summary wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplication.html#GlobalCEFApp">GlobalCEFApp</a></strong>: <a href="uCEFApplication.TCefApplication.html">TCefApplication</a> = nil;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2 class="description">Description</h2>
|
||||
<h3 class="detail">Functions and Procedures</h3>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="CefCursorToWindowsCursor-TCefCursorType-"></span><code>function <strong>CefCursorToWindowsCursor</strong>(aCefCursor : <a href="uCEFTypes.html#TCefCursorType">TCefCursorType</a>) : TCursor;</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="DestroyGlobalCEFApp"></span><code>procedure <strong>DestroyGlobalCEFApp</strong>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<h3 class="detail">Types</h3>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="TCEFDirectoryDeleterThread"></span><code><strong>TCEFDirectoryDeleterThread</strong> = <a href="uCEFApplicationCore.TCEFDirectoryDeleterThread.html">uCEFApplicationCore.TCEFDirectoryDeleterThread</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<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> = <a href="uCEFApplicationCore.html#CEF_SUPPORTED_VERSION_MAJOR">uCefApplicationCore.CEF_SUPPORTED_VERSION_MAJOR</a>;</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_SUPPORTED_VERSION_MINOR"></span><code><strong>CEF_SUPPORTED_VERSION_MINOR</strong> = <a href="uCEFApplicationCore.html#CEF_SUPPORTED_VERSION_MINOR">uCefApplicationCore.CEF_SUPPORTED_VERSION_MINOR</a>;</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_SUPPORTED_VERSION_RELEASE"></span><code><strong>CEF_SUPPORTED_VERSION_RELEASE</strong> = <a href="uCEFApplicationCore.html#CEF_SUPPORTED_VERSION_RELEASE">uCefApplicationCore.CEF_SUPPORTED_VERSION_RELEASE</a>;</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_SUPPORTED_VERSION_BUILD"></span><code><strong>CEF_SUPPORTED_VERSION_BUILD</strong> = <a href="uCEFApplicationCore.html#CEF_SUPPORTED_VERSION_BUILD">uCefApplicationCore.CEF_SUPPORTED_VERSION_BUILD</a>;</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_MAJOR"></span><code><strong>CEF_CHROMEELF_VERSION_MAJOR</strong> = <a href="uCEFApplicationCore.html#CEF_CHROMEELF_VERSION_MAJOR">uCefApplicationCore.CEF_CHROMEELF_VERSION_MAJOR</a>;</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_MINOR"></span><code><strong>CEF_CHROMEELF_VERSION_MINOR</strong> = <a href="uCEFApplicationCore.html#CEF_CHROMEELF_VERSION_MINOR">uCefApplicationCore.CEF_CHROMEELF_VERSION_MINOR</a>;</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_RELEASE"></span><code><strong>CEF_CHROMEELF_VERSION_RELEASE</strong> = <a href="uCEFApplicationCore.html#CEF_CHROMEELF_VERSION_RELEASE">uCefApplicationCore.CEF_CHROMEELF_VERSION_RELEASE</a>;</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> = <a href="uCEFApplicationCore.html#CEF_CHROMEELF_VERSION_BUILD">uCefApplicationCore.CEF_CHROMEELF_VERSION_BUILD</a>;</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="LIBCEF_DLL"></span><code><strong>LIBCEF_DLL</strong> = <a href="uCEFApplicationCore.html#LIBCEF_DLL">uCefApplicationCore.LIBCEF_DLL</a>;</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="CHROMEELF_DLL"></span><code><strong>CHROMEELF_DLL</strong> = <a href="uCEFApplicationCore.html#CHROMEELF_DLL">uCefApplicationCore.CHROMEELF_DLL</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<h3 class="detail">Variables</h3>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="GlobalCEFApp"></span><code><strong>GlobalCEFApp</strong>: <a href="uCEFApplication.TCefApplication.html">TCefApplication</a> = nil;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<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>
|
@ -0,0 +1,72 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFApplicationCore: Class TCEFDirectoryDeleterThread</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="TCEFDirectoryDeleterThread"></span><h1 class="cio">Class TCEFDirectoryDeleterThread</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"><a class="section" href="#PasDoc-Fields">Fields</a></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="uCEFApplicationCore.html">uCEFApplicationCore</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCEFDirectoryDeleterThread = class(TThread)</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">TObject</li>
|
||||
<li class="ancestor">TThread</li>
|
||||
<li class="thisitem">TCEFDirectoryDeleterThread</li></ul><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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationCore.TCEFDirectoryDeleterThread.html#FDirectory">FDirectory</a></strong>: string;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<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="uCEFApplicationCore.TCEFDirectoryDeleterThread.html#Execute">Execute</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="uCEFApplicationCore.TCEFDirectoryDeleterThread.html#Create-string-">Create</a></strong>(const aDirectory : string);</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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="FDirectory"></span><code><strong>FDirectory</strong>: string;</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">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="Execute"></span><code>procedure <strong>Execute</strong>; override;</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="Create-string-"></span><code>constructor <strong>Create</strong>(const aDirectory : string);</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>
|
6179
docs/html/uCEFApplicationCore.TCefApplicationCore.html
Normal file
6179
docs/html/uCEFApplicationCore.TCefApplicationCore.html
Normal file
File diff suppressed because it is too large
Load Diff
198
docs/html/uCEFApplicationCore.html
Normal file
198
docs/html/uCEFApplicationCore.html
Normal file
@ -0,0 +1,198 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFApplicationCore</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 uCEFApplicationCore</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"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section"><a class="section" href="#PasDoc-Constants">Constants</a></div><div class="one_section"><a class="section" href="#PasDoc-Variables">Variables</a></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="uCEFApplicationCore.TCefApplicationCore.html"><code>TCefApplicationCore</code></a></td>
|
||||
<td class="itemdesc"> Parent class of TCefApplication used to simplify the CEF initialization and destruction. </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname">Class <a class="bold" href="uCEFApplicationCore.TCEFDirectoryDeleterThread.html"><code>TCEFDirectoryDeleterThread</code></a></td>
|
||||
<td class="itemdesc"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3>
|
||||
<table class="summary wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFApplicationCore.html#DestroyGlobalCEFApp">DestroyGlobalCEFApp</a></strong>;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<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> = 122;</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> = 1;</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> = 5;</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>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationCore.html#CEF_CHROMEELF_VERSION_MAJOR">CEF_CHROMEELF_VERSION_MAJOR</a></strong> = <a href="uCEFApplicationCore.html#CEF_SUPPORTED_VERSION_MAJOR">CEF_SUPPORTED_VERSION_MAJOR</a>;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<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> = 6261;</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> = 29;</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>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationCore.html#CHROMEELF_DLL">CHROMEELF_DLL</a></strong> = 'chrome_elf.dll';</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationCore.html#LIBCEF_PAK">LIBCEF_PAK</a></strong> = 'cef.pak';</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationCore.html#LIBCEF_LOCALE_DIR">LIBCEF_LOCALE_DIR</a></strong> = 'locales';</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationCore.html#LIBCEF_LOCALE_ENUS">LIBCEF_LOCALE_ENUS</a></strong> = 'en-US.pak';</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<span id="PasDoc-Variables"></span><h3 class="summary">Variables</h3>
|
||||
<table class="summary wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationCore.html#GlobalCEFApp">GlobalCEFApp</a></strong>: <a href="uCEFApplicationCore.TCefApplicationCore.html">TCefApplicationCore</a> = nil;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2 class="description">Description</h2>
|
||||
<h3 class="detail">Functions and Procedures</h3>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="DestroyGlobalCEFApp"></span><code>procedure <strong>DestroyGlobalCEFApp</strong>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<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> = 122;</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_SUPPORTED_VERSION_MINOR"></span><code><strong>CEF_SUPPORTED_VERSION_MINOR</strong> = 1;</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_SUPPORTED_VERSION_RELEASE"></span><code><strong>CEF_SUPPORTED_VERSION_RELEASE</strong> = 5;</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_SUPPORTED_VERSION_BUILD"></span><code><strong>CEF_SUPPORTED_VERSION_BUILD</strong> = 0;</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_MAJOR"></span><code><strong>CEF_CHROMEELF_VERSION_MAJOR</strong> = <a href="uCEFApplicationCore.html#CEF_SUPPORTED_VERSION_MAJOR">CEF_SUPPORTED_VERSION_MAJOR</a>;</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_MINOR"></span><code><strong>CEF_CHROMEELF_VERSION_MINOR</strong> = 0;</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_RELEASE"></span><code><strong>CEF_CHROMEELF_VERSION_RELEASE</strong> = 6261;</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> = 29;</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="LIBCEF_DLL"></span><code><strong>LIBCEF_DLL</strong> = 'libcef.dll';</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="CHROMEELF_DLL"></span><code><strong>CHROMEELF_DLL</strong> = 'chrome_elf.dll';</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="LIBCEF_PAK"></span><code><strong>LIBCEF_PAK</strong> = 'cef.pak';</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<p>
|
||||
for InitLibLocationFromArgs</p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="LIBCEF_LOCALE_DIR"></span><code><strong>LIBCEF_LOCALE_DIR</strong> = 'locales';</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="LIBCEF_LOCALE_ENUS"></span><code><strong>LIBCEF_LOCALE_ENUS</strong> = 'en-US.pak';</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<h3 class="detail">Variables</h3>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="GlobalCEFApp"></span><code><strong>GlobalCEFApp</strong>: <a href="uCEFApplicationCore.TCefApplicationCore.html">TCefApplicationCore</a> = nil;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<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>
|
263
docs/html/uCEFApplicationEvents.html
Normal file
263
docs/html/uCEFApplicationEvents.html
Normal file
@ -0,0 +1,263 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFApplicationEvents</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 uCEFApplicationEvents</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">Classes, Interfaces, Objects and Records</div><div class="one_section">Functions and Procedures</div><div class="one_section"><a class="section" href="#PasDoc-Types">Types</a></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-Types"></span><h3 class="summary">Types</h3>
|
||||
<table class="summary wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationEvents.html#TOnRegisterCustomSchemesEvent-TCefSchemeRegistrarRef-">TOnRegisterCustomSchemesEvent</a></strong> = procedure(const registrar: <a href="uCEFSchemeRegistrar.TCefSchemeRegistrarRef.html">TCefSchemeRegistrarRef</a>) ;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationEvents.html#TOnRegisterCustomPreferencesEvent-TCefPreferencesType-TCefPreferenceRegistrarRef-">TOnRegisterCustomPreferencesEvent</a></strong> = procedure(type_: <a href="uCEFTypes.html#TCefPreferencesType">TCefPreferencesType</a>; const registrar: <a href="uCEFPreferenceRegistrar.TCefPreferenceRegistrarRef.html">TCefPreferenceRegistrarRef</a>) ;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationEvents.html#TOnContextInitializedEvent">TOnContextInitializedEvent</a></strong> = procedure() ;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationEvents.html#TOnBeforeChildProcessLaunchEvent-ICefCommandLine-">TOnBeforeChildProcessLaunchEvent</a></strong> = procedure(const commandLine: <a href="uCEFInterfaces.ICefCommandLine.html">ICefCommandLine</a>) ;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationEvents.html#TOnAlreadyRunningAppRelaunchEvent-ICefCommandLine-ustring-boolean-">TOnAlreadyRunningAppRelaunchEvent</a></strong> = procedure(const commandLine: <a href="uCEFInterfaces.ICefCommandLine.html">ICefCommandLine</a>; const current_directory: <a href="uCEFTypes.html#ustring">ustring</a>; var aResult: boolean) ;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationEvents.html#TOnScheduleMessagePumpWorkEvent-Int64-">TOnScheduleMessagePumpWorkEvent</a></strong> = procedure(const delayMs: Int64) ;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationEvents.html#TOnGetDefaultClientEvent-ICefClient-">TOnGetDefaultClientEvent</a></strong> = procedure(var aClient : <a href="uCEFInterfaces.ICefClient.html">ICefClient</a>) ;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationEvents.html#TOnGetDefaultRequestContextHandlerEvent-ICefRequestContextHandler-">TOnGetDefaultRequestContextHandlerEvent</a></strong> = procedure(var aRequestContextHandler : <a href="uCEFInterfaces.ICefRequestContextHandler.html">ICefRequestContextHandler</a>) ;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationEvents.html#TOnGetLocalizedStringEvent-Integer-ustring-Boolean-">TOnGetLocalizedStringEvent</a></strong> = procedure(stringId: Integer; out stringVal: <a href="uCEFTypes.html#ustring">ustring</a>; var aResult : Boolean) ;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationEvents.html#TOnGetDataResourceEvent-Integer-Pointer-NativeUInt-Boolean-">TOnGetDataResourceEvent</a></strong> = procedure(resourceId: Integer; out data: Pointer; out dataSize: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; var aResult : Boolean) ;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationEvents.html#TOnGetDataResourceForScaleEvent-Integer-TCefScaleFactor-Pointer-NativeUInt-Boolean-">TOnGetDataResourceForScaleEvent</a></strong> = procedure(resourceId: Integer; scaleFactor: <a href="uCEFTypes.html#TCefScaleFactor">TCefScaleFactor</a>; out data: Pointer; out dataSize: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; var aResult : Boolean) ;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationEvents.html#TOnWebKitInitializedEvent">TOnWebKitInitializedEvent</a></strong> = procedure() ;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationEvents.html#TOnBrowserCreatedEvent-ICefBrowser-ICefDictionaryValue-">TOnBrowserCreatedEvent</a></strong> = procedure(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const extra_info: <a href="uCEFInterfaces.ICefDictionaryValue.html">ICefDictionaryValue</a>) ;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationEvents.html#TOnBrowserDestroyedEvent-ICefBrowser-">TOnBrowserDestroyedEvent</a></strong> = procedure(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>) ;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationEvents.html#TOnContextCreatedEvent-ICefBrowser-ICefFrame-ICefv8Context-">TOnContextCreatedEvent</a></strong> = procedure(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const frame: <a href="uCEFInterfaces.ICefFrame.html">ICefFrame</a>; const context: <a href="uCEFInterfaces.ICefv8Context.html">ICefv8Context</a>) ;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationEvents.html#TOnContextReleasedEvent-ICefBrowser-ICefFrame-ICefv8Context-">TOnContextReleasedEvent</a></strong> = procedure(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const frame: <a href="uCEFInterfaces.ICefFrame.html">ICefFrame</a>; const context: <a href="uCEFInterfaces.ICefv8Context.html">ICefv8Context</a>) ;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationEvents.html#TOnUncaughtExceptionEvent-ICefBrowser-ICefFrame-ICefv8Context-ICefV8Exception-ICefV8StackTrace-">TOnUncaughtExceptionEvent</a></strong> = procedure(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const frame: <a href="uCEFInterfaces.ICefFrame.html">ICefFrame</a>; const context: <a href="uCEFInterfaces.ICefv8Context.html">ICefv8Context</a>; const exception: <a href="uCEFInterfaces.ICefV8Exception.html">ICefV8Exception</a>; const stackTrace: <a href="uCEFInterfaces.ICefV8StackTrace.html">ICefV8StackTrace</a>) ;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationEvents.html#TOnFocusedNodeChangedEvent-ICefBrowser-ICefFrame-ICefDomNode-">TOnFocusedNodeChangedEvent</a></strong> = procedure(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const frame: <a href="uCEFInterfaces.ICefFrame.html">ICefFrame</a>; const node: <a href="uCEFInterfaces.ICefDomNode.html">ICefDomNode</a>) ;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationEvents.html#TOnProcessMessageReceivedEvent-ICefBrowser-ICefFrame-TCefProcessId-ICefProcessMessage-boolean-">TOnProcessMessageReceivedEvent</a></strong> = procedure(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const frame: <a href="uCEFInterfaces.ICefFrame.html">ICefFrame</a>; sourceProcess: <a href="uCEFTypes.html#TCefProcessId">TCefProcessId</a>; const message: <a href="uCEFInterfaces.ICefProcessMessage.html">ICefProcessMessage</a>; var aHandled : boolean) of object ;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationEvents.html#TOnRenderLoadingStateChange-ICefBrowser-Boolean-Boolean-Boolean-">TOnRenderLoadingStateChange</a></strong> = procedure(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; isLoading, canGoBack, canGoForward: Boolean) ;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationEvents.html#TOnRenderLoadStart-ICefBrowser-ICefFrame-TCefTransitionType-">TOnRenderLoadStart</a></strong> = procedure(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const frame: <a href="uCEFInterfaces.ICefFrame.html">ICefFrame</a>; transitionType: <a href="uCEFTypes.html#TCefTransitionType">TCefTransitionType</a>) ;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationEvents.html#TOnRenderLoadEnd-ICefBrowser-ICefFrame-Integer-">TOnRenderLoadEnd</a></strong> = procedure(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const frame: <a href="uCEFInterfaces.ICefFrame.html">ICefFrame</a>; httpStatusCode: Integer) ;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFApplicationEvents.html#TOnRenderLoadError-ICefBrowser-ICefFrame-TCefErrorCode-ustring-ustring-">TOnRenderLoadError</a></strong> = procedure(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const frame: <a href="uCEFInterfaces.ICefFrame.html">ICefFrame</a>; errorCode: <a href="uCEFTypes.html#TCefErrorCode">TCefErrorCode</a>; const errorText, failedUrl: <a href="uCEFTypes.html#ustring">ustring</a>) ;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2 class="description">Description</h2>
|
||||
<h3 class="detail">Types</h3>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="TOnRegisterCustomSchemesEvent-TCefSchemeRegistrarRef-"></span><code><strong>TOnRegisterCustomSchemesEvent</strong> = procedure(const registrar: <a href="uCEFSchemeRegistrar.TCefSchemeRegistrarRef.html">TCefSchemeRegistrarRef</a>) ;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<p>
|
||||
ICefApp</p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="TOnRegisterCustomPreferencesEvent-TCefPreferencesType-TCefPreferenceRegistrarRef-"></span><code><strong>TOnRegisterCustomPreferencesEvent</strong> = procedure(type_: <a href="uCEFTypes.html#TCefPreferencesType">TCefPreferencesType</a>; const registrar: <a href="uCEFPreferenceRegistrar.TCefPreferenceRegistrarRef.html">TCefPreferenceRegistrarRef</a>) ;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<p>
|
||||
ICefBrowserProcessHandler</p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="TOnContextInitializedEvent"></span><code><strong>TOnContextInitializedEvent</strong> = procedure() ;</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="TOnBeforeChildProcessLaunchEvent-ICefCommandLine-"></span><code><strong>TOnBeforeChildProcessLaunchEvent</strong> = procedure(const commandLine: <a href="uCEFInterfaces.ICefCommandLine.html">ICefCommandLine</a>) ;</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="TOnAlreadyRunningAppRelaunchEvent-ICefCommandLine-ustring-boolean-"></span><code><strong>TOnAlreadyRunningAppRelaunchEvent</strong> = procedure(const commandLine: <a href="uCEFInterfaces.ICefCommandLine.html">ICefCommandLine</a>; const current_directory: <a href="uCEFTypes.html#ustring">ustring</a>; var aResult: boolean) ;</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="TOnScheduleMessagePumpWorkEvent-Int64-"></span><code><strong>TOnScheduleMessagePumpWorkEvent</strong> = procedure(const delayMs: Int64) ;</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="TOnGetDefaultClientEvent-ICefClient-"></span><code><strong>TOnGetDefaultClientEvent</strong> = procedure(var aClient : <a href="uCEFInterfaces.ICefClient.html">ICefClient</a>) ;</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="TOnGetDefaultRequestContextHandlerEvent-ICefRequestContextHandler-"></span><code><strong>TOnGetDefaultRequestContextHandlerEvent</strong> = procedure(var aRequestContextHandler : <a href="uCEFInterfaces.ICefRequestContextHandler.html">ICefRequestContextHandler</a>) ;</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="TOnGetLocalizedStringEvent-Integer-ustring-Boolean-"></span><code><strong>TOnGetLocalizedStringEvent</strong> = procedure(stringId: Integer; out stringVal: <a href="uCEFTypes.html#ustring">ustring</a>; var aResult : Boolean) ;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<p>
|
||||
ICefResourceBundleHandler</p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="TOnGetDataResourceEvent-Integer-Pointer-NativeUInt-Boolean-"></span><code><strong>TOnGetDataResourceEvent</strong> = procedure(resourceId: Integer; out data: Pointer; out dataSize: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; var aResult : Boolean) ;</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="TOnGetDataResourceForScaleEvent-Integer-TCefScaleFactor-Pointer-NativeUInt-Boolean-"></span><code><strong>TOnGetDataResourceForScaleEvent</strong> = procedure(resourceId: Integer; scaleFactor: <a href="uCEFTypes.html#TCefScaleFactor">TCefScaleFactor</a>; out data: Pointer; out dataSize: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>; var aResult : Boolean) ;</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="TOnWebKitInitializedEvent"></span><code><strong>TOnWebKitInitializedEvent</strong> = procedure() ;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<p>
|
||||
ICefRenderProcessHandler</p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="TOnBrowserCreatedEvent-ICefBrowser-ICefDictionaryValue-"></span><code><strong>TOnBrowserCreatedEvent</strong> = procedure(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const extra_info: <a href="uCEFInterfaces.ICefDictionaryValue.html">ICefDictionaryValue</a>) ;</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="TOnBrowserDestroyedEvent-ICefBrowser-"></span><code><strong>TOnBrowserDestroyedEvent</strong> = procedure(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>) ;</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="TOnContextCreatedEvent-ICefBrowser-ICefFrame-ICefv8Context-"></span><code><strong>TOnContextCreatedEvent</strong> = procedure(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const frame: <a href="uCEFInterfaces.ICefFrame.html">ICefFrame</a>; const context: <a href="uCEFInterfaces.ICefv8Context.html">ICefv8Context</a>) ;</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="TOnContextReleasedEvent-ICefBrowser-ICefFrame-ICefv8Context-"></span><code><strong>TOnContextReleasedEvent</strong> = procedure(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const frame: <a href="uCEFInterfaces.ICefFrame.html">ICefFrame</a>; const context: <a href="uCEFInterfaces.ICefv8Context.html">ICefv8Context</a>) ;</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="TOnUncaughtExceptionEvent-ICefBrowser-ICefFrame-ICefv8Context-ICefV8Exception-ICefV8StackTrace-"></span><code><strong>TOnUncaughtExceptionEvent</strong> = procedure(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const frame: <a href="uCEFInterfaces.ICefFrame.html">ICefFrame</a>; const context: <a href="uCEFInterfaces.ICefv8Context.html">ICefv8Context</a>; const exception: <a href="uCEFInterfaces.ICefV8Exception.html">ICefV8Exception</a>; const stackTrace: <a href="uCEFInterfaces.ICefV8StackTrace.html">ICefV8StackTrace</a>) ;</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="TOnFocusedNodeChangedEvent-ICefBrowser-ICefFrame-ICefDomNode-"></span><code><strong>TOnFocusedNodeChangedEvent</strong> = procedure(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const frame: <a href="uCEFInterfaces.ICefFrame.html">ICefFrame</a>; const node: <a href="uCEFInterfaces.ICefDomNode.html">ICefDomNode</a>) ;</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="TOnProcessMessageReceivedEvent-ICefBrowser-ICefFrame-TCefProcessId-ICefProcessMessage-boolean-"></span><code><strong>TOnProcessMessageReceivedEvent</strong> = procedure(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const frame: <a href="uCEFInterfaces.ICefFrame.html">ICefFrame</a>; sourceProcess: <a href="uCEFTypes.html#TCefProcessId">TCefProcessId</a>; const message: <a href="uCEFInterfaces.ICefProcessMessage.html">ICefProcessMessage</a>; var aHandled : 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="TOnRenderLoadingStateChange-ICefBrowser-Boolean-Boolean-Boolean-"></span><code><strong>TOnRenderLoadingStateChange</strong> = procedure(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; isLoading, canGoBack, canGoForward: Boolean) ;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<p>
|
||||
ICefLoadHandler</p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="TOnRenderLoadStart-ICefBrowser-ICefFrame-TCefTransitionType-"></span><code><strong>TOnRenderLoadStart</strong> = procedure(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const frame: <a href="uCEFInterfaces.ICefFrame.html">ICefFrame</a>; transitionType: <a href="uCEFTypes.html#TCefTransitionType">TCefTransitionType</a>) ;</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="TOnRenderLoadEnd-ICefBrowser-ICefFrame-Integer-"></span><code><strong>TOnRenderLoadEnd</strong> = procedure(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const frame: <a href="uCEFInterfaces.ICefFrame.html">ICefFrame</a>; httpStatusCode: Integer) ;</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="TOnRenderLoadError-ICefBrowser-ICefFrame-TCefErrorCode-ustring-ustring-"></span><code><strong>TOnRenderLoadError</strong> = procedure(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const frame: <a href="uCEFInterfaces.ICefFrame.html">ICefFrame</a>; errorCode: <a href="uCEFTypes.html#TCefErrorCode">TCefErrorCode</a>; const errorText, failedUrl: <a href="uCEFTypes.html#ustring">ustring</a>) ;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<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>
|
147
docs/html/uCEFArgCopy.TCEFArgCopy.html
Normal file
147
docs/html/uCEFArgCopy.TCEFArgCopy.html
Normal file
@ -0,0 +1,147 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFArgCopy: Class TCEFArgCopy</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="TCEFArgCopy"></span><h1 class="cio">Class TCEFArgCopy</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"><a class="section" href="#PasDoc-Fields">Fields</a></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="uCEFArgCopy.html">uCEFArgCopy</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCEFArgCopy = class(TObject)</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">TObject</li>
|
||||
<li class="thisitem">TCEFArgCopy</li></ul><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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFArgCopy.TCEFArgCopy.html#FArgCCopy">FArgCCopy</a></strong>: longint;</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="uCEFArgCopy.TCEFArgCopy.html#FArgVCopy">FArgVCopy</a></strong>: PPAnsiChar;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<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="uCEFArgCopy.TCEFArgCopy.html#InitializeFields">InitializeFields</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="uCEFArgCopy.TCEFArgCopy.html#DestroyFields">DestroyFields</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>constructor <strong><a href="uCEFArgCopy.TCEFArgCopy.html#Create">Create</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>destructor <strong><a href="uCEFArgCopy.TCEFArgCopy.html#Destroy">Destroy</a></strong>; 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>procedure <strong><a href="uCEFArgCopy.TCEFArgCopy.html#CopyFromArgs-longint-PPAnsiChar-">CopyFromArgs</a></strong>(aArgc : longint; aArgv : PPAnsiChar);</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="uCEFArgCopy.TCEFArgCopy.html#argc">argc</a></strong> : longint read <a href="uCEFArgCopy.TCEFArgCopy.html#FArgCCopy">FArgCCopy</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="uCEFArgCopy.TCEFArgCopy.html#argv">argv</a></strong> : PPAnsiChar read <a href="uCEFArgCopy.TCEFArgCopy.html#FArgVCopy">FArgVCopy</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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="FArgCCopy"></span><code><strong>FArgCCopy</strong>: longint;</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="FArgVCopy"></span><code><strong>FArgVCopy</strong>: PPAnsiChar;</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">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="InitializeFields"></span><code>procedure <strong>InitializeFields</strong>;</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="DestroyFields"></span><code>procedure <strong>DestroyFields</strong>;</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="Create"></span><code>constructor <strong>Create</strong>;</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="Destroy"></span><code>destructor <strong>Destroy</strong>; override;</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="CopyFromArgs-longint-PPAnsiChar-"></span><code>procedure <strong>CopyFromArgs</strong>(aArgc : longint; aArgv : PPAnsiChar);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</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="argc"></span><code>property <strong>argc</strong> : longint read <a href="uCEFArgCopy.TCEFArgCopy.html#FArgCCopy">FArgCCopy</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="argv"></span><code>property <strong>argv</strong> : PPAnsiChar read <a href="uCEFArgCopy.TCEFArgCopy.html#FArgVCopy">FArgVCopy</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/uCEFArgCopy.html
Normal file
29
docs/html/uCEFArgCopy.html
Normal file
@ -0,0 +1,29 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFArgCopy</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 uCEFArgCopy</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="uCEFArgCopy.TCEFArgCopy.html"><code>TCEFArgCopy</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>
|
128
docs/html/uCEFAudioHandler.TCefAudioHandlerOwn.html
Normal file
128
docs/html/uCEFAudioHandler.TCefAudioHandlerOwn.html
Normal file
@ -0,0 +1,128 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFAudioHandler: Class TCefAudioHandlerOwn</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="TCefAudioHandlerOwn"></span><h1 class="cio">Class TCefAudioHandlerOwn</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="uCEFAudioHandler.html">uCEFAudioHandler</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCefAudioHandlerOwn = class(<a class="normal" href="uCEFBaseRefCounted.TCefBaseRefCountedOwn.html">TCefBaseRefCountedOwn</a>, <a class="normal" href="uCEFInterfaces.ICefAudioHandler.html">ICefAudioHandler</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.TCefBaseRefCountedOwn.html">TCefBaseRefCountedOwn</a></li>
|
||||
<li class="thisitem">TCefAudioHandlerOwn</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="uCEFAudioHandler.TCefAudioHandlerOwn.html#OnGetAudioParameters-ICefBrowser-TCefAudioParameters-boolean-">OnGetAudioParameters</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; var params: <a href="uCEFTypes.TCefAudioParameters.html">TCefAudioParameters</a>; var aResult: boolean); 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="uCEFAudioHandler.TCefAudioHandlerOwn.html#OnAudioStreamStarted-ICefBrowser-TCefAudioParameters-integer-">OnAudioStreamStarted</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const params: <a href="uCEFTypes.TCefAudioParameters.html">TCefAudioParameters</a>; channels: integer); 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="uCEFAudioHandler.TCefAudioHandlerOwn.html#OnAudioStreamPacket-ICefBrowser-PPSingle-integer-int64-">OnAudioStreamPacket</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const data : <a href="uCEFTypes.html#PPSingle">PPSingle</a>; frames: integer; pts: int64); 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="uCEFAudioHandler.TCefAudioHandlerOwn.html#OnAudioStreamStopped-ICefBrowser-">OnAudioStreamStopped</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</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="uCEFAudioHandler.TCefAudioHandlerOwn.html#OnAudioStreamError-ICefBrowser-ustring-">OnAudioStreamError</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const message_: <a href="uCEFTypes.html#ustring">ustring</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="uCEFAudioHandler.TCefAudioHandlerOwn.html#RemoveReferences">RemoveReferences</a></strong>; virtual;</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="uCEFAudioHandler.TCefAudioHandlerOwn.html#Create">Create</a></strong>; virtual;</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="OnGetAudioParameters-ICefBrowser-TCefAudioParameters-boolean-"></span><code>procedure <strong>OnGetAudioParameters</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; var params: <a href="uCEFTypes.TCefAudioParameters.html">TCefAudioParameters</a>; var aResult: 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.ICefAudioHandler.html#OnGetAudioParameters-ICefBrowser-TCefAudioParameters-boolean-">ICefAudioHandler.OnGetAudioParameters</a>.</p><p>
|
||||
Called on the UI thread to allow configuration of audio stream parameters. Return true (1) to proceed with audio stream capture, or false (0) to cancel it. All members of |params| can optionally be configured here, but they are also pre-filled with some sensible defaults. </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="OnAudioStreamStarted-ICefBrowser-TCefAudioParameters-integer-"></span><code>procedure <strong>OnAudioStreamStarted</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const params: <a href="uCEFTypes.TCefAudioParameters.html">TCefAudioParameters</a>; channels: integer); 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.ICefAudioHandler.html#OnAudioStreamStarted-ICefBrowser-TCefAudioParameters-integer-">ICefAudioHandler.OnAudioStreamStarted</a>.</p><p>
|
||||
Called on a browser audio capture thread when the browser starts streaming audio. OnAudioStreamStopped will always be called after OnAudioStreamStarted; both functions may be called multiple times for the same browser. |params| contains the audio parameters like sample rate and channel layout. |channels| is the number of channels. </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="OnAudioStreamPacket-ICefBrowser-PPSingle-integer-int64-"></span><code>procedure <strong>OnAudioStreamPacket</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const data : <a href="uCEFTypes.html#PPSingle">PPSingle</a>; frames: integer; pts: int64); 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.ICefAudioHandler.html#OnAudioStreamPacket-ICefBrowser-PPSingle-integer-int64-">ICefAudioHandler.OnAudioStreamPacket</a>.</p><p>
|
||||
Called on the audio stream thread when a PCM packet is received for the stream. |data| is an array representing the raw PCM data as a floating point type, i.e. 4-byte value(s). |frames| is the number of frames in the PCM packet. |pts| is the presentation timestamp (in milliseconds since the Unix Epoch) and represents the time at which the decompressed packet should be presented to the user. Based on |frames| and the |channel_layout| value passed to OnAudioStreamStarted you can calculate the size of the |data| array in bytes. </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="OnAudioStreamStopped-ICefBrowser-"></span><code>procedure <strong>OnAudioStreamStopped</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.ICefAudioHandler.html#OnAudioStreamStopped-ICefBrowser-">ICefAudioHandler.OnAudioStreamStopped</a>.</p><p>
|
||||
Called on the UI thread when the stream has stopped. OnAudioSteamStopped will always be called after OnAudioStreamStarted; both functions may be called multiple times for the same stream. </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="OnAudioStreamError-ICefBrowser-ustring-"></span><code>procedure <strong>OnAudioStreamError</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const message_: <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.ICefAudioHandler.html#OnAudioStreamError-ICefBrowser-ustring-">ICefAudioHandler.OnAudioStreamError</a>.</p><p>
|
||||
Called on the UI or audio stream thread when an error occurred. During the stream creation phase this callback will be called on the UI thread while in the capturing phase it will be called on the audio stream thread. The stream will be stopped immediately. </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="RemoveReferences"></span><code>procedure <strong>RemoveReferences</strong>; 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.ICefAudioHandler.html#RemoveReferences">ICefAudioHandler.RemoveReferences</a>.</p><p>
|
||||
Custom procedure to clear all references. </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"></span><code>constructor <strong>Create</strong>; virtual;</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>
|
157
docs/html/uCEFAudioHandler.TCustomAudioHandler.html
Normal file
157
docs/html/uCEFAudioHandler.TCustomAudioHandler.html
Normal file
@ -0,0 +1,157 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFAudioHandler: Class TCustomAudioHandler</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="TCustomAudioHandler"></span><h1 class="cio">Class TCustomAudioHandler</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"><a class="section" href="#PasDoc-Fields">Fields</a></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="uCEFAudioHandler.html">uCEFAudioHandler</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCustomAudioHandler = class(<a class="normal" href="uCEFAudioHandler.TCefAudioHandlerOwn.html">TCefAudioHandlerOwn</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.TCefBaseRefCountedOwn.html">TCefBaseRefCountedOwn</a></li>
|
||||
<li class="ancestor"><a class="normal" href="uCEFAudioHandler.TCefAudioHandlerOwn.html">TCefAudioHandlerOwn</a></li>
|
||||
<li class="thisitem">TCustomAudioHandler</li></ul><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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFAudioHandler.TCustomAudioHandler.html#FEvents">FEvents</a></strong>: Pointer;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<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="uCEFAudioHandler.TCustomAudioHandler.html#OnGetAudioParameters-ICefBrowser-TCefAudioParameters-boolean-">OnGetAudioParameters</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; var params: <a href="uCEFTypes.TCefAudioParameters.html">TCefAudioParameters</a>; var aResult: boolean); 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="uCEFAudioHandler.TCustomAudioHandler.html#OnAudioStreamStarted-ICefBrowser-TCefAudioParameters-integer-">OnAudioStreamStarted</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const params: <a href="uCEFTypes.TCefAudioParameters.html">TCefAudioParameters</a>; channels: integer); 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="uCEFAudioHandler.TCustomAudioHandler.html#OnAudioStreamPacket-ICefBrowser-PPSingle-integer-int64-">OnAudioStreamPacket</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const data : <a href="uCEFTypes.html#PPSingle">PPSingle</a>; frames: integer; pts: int64); 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="uCEFAudioHandler.TCustomAudioHandler.html#OnAudioStreamStopped-ICefBrowser-">OnAudioStreamStopped</a></strong>(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="uCEFAudioHandler.TCustomAudioHandler.html#OnAudioStreamError-ICefBrowser-ustring-">OnAudioStreamError</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const message_: <a href="uCEFTypes.html#ustring">ustring</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="uCEFAudioHandler.TCustomAudioHandler.html#RemoveReferences">RemoveReferences</a></strong>; 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="uCEFAudioHandler.TCustomAudioHandler.html#Create-IChromiumEvents-">Create</a></strong>(const events : <a href="uCEFInterfaces.IChromiumEvents.html">IChromiumEvents</a>); reintroduce; 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>destructor <strong><a href="uCEFAudioHandler.TCustomAudioHandler.html#Destroy">Destroy</a></strong>; override;</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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="FEvents"></span><code><strong>FEvents</strong>: Pointer;</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">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="OnGetAudioParameters-ICefBrowser-TCefAudioParameters-boolean-"></span><code>procedure <strong>OnGetAudioParameters</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; var params: <a href="uCEFTypes.TCefAudioParameters.html">TCefAudioParameters</a>; var aResult: 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.ICefAudioHandler.html#OnGetAudioParameters-ICefBrowser-TCefAudioParameters-boolean-">ICefAudioHandler.OnGetAudioParameters</a>.</p><p>
|
||||
Called on the UI thread to allow configuration of audio stream parameters. Return true (1) to proceed with audio stream capture, or false (0) to cancel it. All members of |params| can optionally be configured here, but they are also pre-filled with some sensible defaults. </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="OnAudioStreamStarted-ICefBrowser-TCefAudioParameters-integer-"></span><code>procedure <strong>OnAudioStreamStarted</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const params: <a href="uCEFTypes.TCefAudioParameters.html">TCefAudioParameters</a>; channels: integer); 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.ICefAudioHandler.html#OnAudioStreamStarted-ICefBrowser-TCefAudioParameters-integer-">ICefAudioHandler.OnAudioStreamStarted</a>.</p><p>
|
||||
Called on a browser audio capture thread when the browser starts streaming audio. OnAudioStreamStopped will always be called after OnAudioStreamStarted; both functions may be called multiple times for the same browser. |params| contains the audio parameters like sample rate and channel layout. |channels| is the number of channels. </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="OnAudioStreamPacket-ICefBrowser-PPSingle-integer-int64-"></span><code>procedure <strong>OnAudioStreamPacket</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const data : <a href="uCEFTypes.html#PPSingle">PPSingle</a>; frames: integer; pts: int64); 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.ICefAudioHandler.html#OnAudioStreamPacket-ICefBrowser-PPSingle-integer-int64-">ICefAudioHandler.OnAudioStreamPacket</a>.</p><p>
|
||||
Called on the audio stream thread when a PCM packet is received for the stream. |data| is an array representing the raw PCM data as a floating point type, i.e. 4-byte value(s). |frames| is the number of frames in the PCM packet. |pts| is the presentation timestamp (in milliseconds since the Unix Epoch) and represents the time at which the decompressed packet should be presented to the user. Based on |frames| and the |channel_layout| value passed to OnAudioStreamStarted you can calculate the size of the |data| array in bytes. </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="OnAudioStreamStopped-ICefBrowser-"></span><code>procedure <strong>OnAudioStreamStopped</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.ICefAudioHandler.html#OnAudioStreamStopped-ICefBrowser-">ICefAudioHandler.OnAudioStreamStopped</a>.</p><p>
|
||||
Called on the UI thread when the stream has stopped. OnAudioSteamStopped will always be called after OnAudioStreamStarted; both functions may be called multiple times for the same stream. </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="OnAudioStreamError-ICefBrowser-ustring-"></span><code>procedure <strong>OnAudioStreamError</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; const message_: <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.ICefAudioHandler.html#OnAudioStreamError-ICefBrowser-ustring-">ICefAudioHandler.OnAudioStreamError</a>.</p><p>
|
||||
Called on the UI or audio stream thread when an error occurred. During the stream creation phase this callback will be called on the UI thread while in the capturing phase it will be called on the audio stream thread. The stream will be stopped immediately. </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="RemoveReferences"></span><code>procedure <strong>RemoveReferences</strong>; 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.ICefAudioHandler.html#RemoveReferences">ICefAudioHandler.RemoveReferences</a>.</p><p>
|
||||
Custom procedure to clear all references. </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-IChromiumEvents-"></span><code>constructor <strong>Create</strong>(const events : <a href="uCEFInterfaces.IChromiumEvents.html">IChromiumEvents</a>); reintroduce; 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="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="Destroy"></span><code>destructor <strong>Destroy</strong>; override;</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>
|
33
docs/html/uCEFAudioHandler.html
Normal file
33
docs/html/uCEFAudioHandler.html
Normal file
@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFAudioHandler</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 uCEFAudioHandler</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="uCEFAudioHandler.TCefAudioHandlerOwn.html"><code>TCefAudioHandlerOwn</code></a></td>
|
||||
<td class="itemdesc"> </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname">Class <a class="bold" href="uCEFAudioHandler.TCustomAudioHandler.html"><code>TCustomAudioHandler</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>
|
72
docs/html/uCEFAuthCallback.TCefAuthCallbackRef.html
Normal file
72
docs/html/uCEFAuthCallback.TCefAuthCallbackRef.html
Normal file
@ -0,0 +1,72 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFAuthCallback: Class TCefAuthCallbackRef</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="TCefAuthCallbackRef"></span><h1 class="cio">Class TCefAuthCallbackRef</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="uCEFAuthCallback.html">uCEFAuthCallback</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCefAuthCallbackRef = class(<a class="normal" href="uCEFBaseRefCounted.TCefBaseRefCountedRef.html">TCefBaseRefCountedRef</a>, <a class="normal" href="uCEFInterfaces.ICefAuthCallback.html">ICefAuthCallback</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">TCefAuthCallbackRef</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="uCEFAuthCallback.TCefAuthCallbackRef.html#Cont-ustring-ustring-">Cont</a></strong>(const username, password: <a href="uCEFTypes.html#ustring">ustring</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="uCEFAuthCallback.TCefAuthCallbackRef.html#Cancel">Cancel</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="uCEFAuthCallback.TCefAuthCallbackRef.html#UnWrap-Pointer-">UnWrap</a></strong>(data: Pointer): <a href="uCEFInterfaces.ICefAuthCallback.html">ICefAuthCallback</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="Cont-ustring-ustring-"></span><code>procedure <strong>Cont</strong>(const username, password: <a href="uCEFTypes.html#ustring">ustring</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.ICefAuthCallback.html#Cont-ustring-ustring-">ICefAuthCallback.Cont</a>.</p><p>
|
||||
Continue the authentication request. </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="Cancel"></span><code>procedure <strong>Cancel</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.ICefAuthCallback.html#Cancel">ICefAuthCallback.Cancel</a>.</p><p>
|
||||
Cancel the authentication request. </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.ICefAuthCallback.html">ICefAuthCallback</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/uCEFAuthCallback.html
Normal file
29
docs/html/uCEFAuthCallback.html
Normal file
@ -0,0 +1,29 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFAuthCallback</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 uCEFAuthCallback</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="uCEFAuthCallback.TCefAuthCallbackRef.html"><code>TCefAuthCallbackRef</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>
|
153
docs/html/uCEFBaseRefCounted.TCefBaseRefCountedOwn.html
Normal file
153
docs/html/uCEFBaseRefCounted.TCefBaseRefCountedOwn.html
Normal file
@ -0,0 +1,153 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBaseRefCounted: Class TCefBaseRefCountedOwn</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="TCefBaseRefCountedOwn"></span><h1 class="cio">Class TCefBaseRefCountedOwn</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"><a class="section" href="#PasDoc-Fields">Fields</a></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="uCEFBaseRefCounted.html">uCEFBaseRefCounted</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCefBaseRefCountedOwn = class(TInterfacedObject, <a class="normal" href="uCEFInterfaces.ICefBaseRefCounted.html">ICefBaseRefCounted</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="thisitem">TCefBaseRefCountedOwn</li></ul><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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFBaseRefCounted.TCefBaseRefCountedOwn.html#FData">FData</a></strong>: Pointer;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<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>function <strong><a href="uCEFBaseRefCounted.TCefBaseRefCountedOwn.html#HasOneRef">HasOneRef</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="uCEFBaseRefCounted.TCefBaseRefCountedOwn.html#HasAtLeastOneRef">HasAtLeastOneRef</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>constructor <strong><a href="uCEFBaseRefCounted.TCefBaseRefCountedOwn.html#CreateData-Cardinal-boolean-">CreateData</a></strong>(size: Cardinal; owned : boolean = False); 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>destructor <strong><a href="uCEFBaseRefCounted.TCefBaseRefCountedOwn.html#Destroy">Destroy</a></strong>; 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>function <strong><a href="uCEFBaseRefCounted.TCefBaseRefCountedOwn.html#SameAs-Pointer-">SameAs</a></strong>(aData : Pointer) : boolean; overload;</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="uCEFBaseRefCounted.TCefBaseRefCountedOwn.html#SameAs-ICefBaseRefCounted-">SameAs</a></strong>(const aBaseRefCounted : <a href="uCEFInterfaces.ICefBaseRefCounted.html">ICefBaseRefCounted</a>) : boolean; overload;</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="uCEFBaseRefCounted.TCefBaseRefCountedOwn.html#DestroyOtherRefs">DestroyOtherRefs</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="uCEFBaseRefCounted.TCefBaseRefCountedOwn.html#Wrap">Wrap</a></strong>: Pointer;</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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="FData"></span><code><strong>FData</strong>: Pointer;</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">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="HasOneRef"></span><code>function <strong>HasOneRef</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.ICefBaseRefCounted.html#HasOneRef">ICefBaseRefCounted.HasOneRef</a>.</p><p>
|
||||
Returns true (1) if the current reference count is 1. </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="HasAtLeastOneRef"></span><code>function <strong>HasAtLeastOneRef</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.ICefBaseRefCounted.html#HasAtLeastOneRef">ICefBaseRefCounted.HasAtLeastOneRef</a>.</p><p>
|
||||
Returns true (1) if the current reference count is at least 1. </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="CreateData-Cardinal-boolean-"></span><code>constructor <strong>CreateData</strong>(size: Cardinal; owned : boolean = False); 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="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="Destroy"></span><code>destructor <strong>Destroy</strong>; override;</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="SameAs-Pointer-"></span><code>function <strong>SameAs</strong>(aData : Pointer) : boolean; overload;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefBaseRefCounted.html#SameAs-Pointer-">ICefBaseRefCounted.SameAs</a>.</p><p>
|
||||
Compares the aData pointer with the FData field if the current instance. </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="SameAs-ICefBaseRefCounted-"></span><code>function <strong>SameAs</strong>(const aBaseRefCounted : <a href="uCEFInterfaces.ICefBaseRefCounted.html">ICefBaseRefCounted</a>) : boolean; overload;</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="DestroyOtherRefs"></span><code>procedure <strong>DestroyOtherRefs</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.ICefBaseRefCounted.html#DestroyOtherRefs">ICefBaseRefCounted.DestroyOtherRefs</a>.</p><p>
|
||||
Releases all other instances. </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="Wrap"></span><code>function <strong>Wrap</strong>: Pointer;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefBaseRefCounted.html#Wrap">ICefBaseRefCounted.Wrap</a>.</p><p>
|
||||
Called to increment the reference count for the object. Should be called for every new copy of a pointer to a given object. </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>
|
165
docs/html/uCEFBaseRefCounted.TCefBaseRefCountedRef.html
Normal file
165
docs/html/uCEFBaseRefCounted.TCefBaseRefCountedRef.html
Normal file
@ -0,0 +1,165 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBaseRefCounted: Class TCefBaseRefCountedRef</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="TCefBaseRefCountedRef"></span><h1 class="cio">Class TCefBaseRefCountedRef</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"><a class="section" href="#PasDoc-Fields">Fields</a></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="uCEFBaseRefCounted.html">uCEFBaseRefCounted</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCefBaseRefCountedRef = class(TInterfacedObject, <a class="normal" href="uCEFInterfaces.ICefBaseRefCounted.html">ICefBaseRefCounted</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="thisitem">TCefBaseRefCountedRef</li></ul><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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFBaseRefCounted.TCefBaseRefCountedRef.html#FData">FData</a></strong>: Pointer;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<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>function <strong><a href="uCEFBaseRefCounted.TCefBaseRefCountedRef.html#HasOneRef">HasOneRef</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="uCEFBaseRefCounted.TCefBaseRefCountedRef.html#HasAtLeastOneRef">HasAtLeastOneRef</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>constructor <strong><a href="uCEFBaseRefCounted.TCefBaseRefCountedRef.html#Create-Pointer-">Create</a></strong>(data: Pointer); 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>destructor <strong><a href="uCEFBaseRefCounted.TCefBaseRefCountedRef.html#Destroy">Destroy</a></strong>; 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>function <strong><a href="uCEFBaseRefCounted.TCefBaseRefCountedRef.html#SameAs-Pointer-">SameAs</a></strong>(aData : Pointer) : boolean; overload;</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="uCEFBaseRefCounted.TCefBaseRefCountedRef.html#SameAs-ICefBaseRefCounted-">SameAs</a></strong>(const aBaseRefCounted : <a href="uCEFInterfaces.ICefBaseRefCounted.html">ICefBaseRefCounted</a>) : boolean; overload;</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="uCEFBaseRefCounted.TCefBaseRefCountedRef.html#DestroyOtherRefs">DestroyOtherRefs</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="uCEFBaseRefCounted.TCefBaseRefCountedRef.html#Wrap">Wrap</a></strong>: Pointer;</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="uCEFBaseRefCounted.TCefBaseRefCountedRef.html#UnWrap-Pointer-">UnWrap</a></strong>(data: Pointer): <a href="uCEFInterfaces.ICefBaseRefCounted.html">ICefBaseRefCounted</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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="FData"></span><code><strong>FData</strong>: Pointer;</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">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="HasOneRef"></span><code>function <strong>HasOneRef</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.ICefBaseRefCounted.html#HasOneRef">ICefBaseRefCounted.HasOneRef</a>.</p><p>
|
||||
Returns true (1) if the current reference count is 1. </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="HasAtLeastOneRef"></span><code>function <strong>HasAtLeastOneRef</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.ICefBaseRefCounted.html#HasAtLeastOneRef">ICefBaseRefCounted.HasAtLeastOneRef</a>.</p><p>
|
||||
Returns true (1) if the current reference count is at least 1. </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-Pointer-"></span><code>constructor <strong>Create</strong>(data: Pointer); 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="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="Destroy"></span><code>destructor <strong>Destroy</strong>; override;</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="SameAs-Pointer-"></span><code>function <strong>SameAs</strong>(aData : Pointer) : boolean; overload;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefBaseRefCounted.html#SameAs-Pointer-">ICefBaseRefCounted.SameAs</a>.</p><p>
|
||||
Compares the aData pointer with the FData field if the current instance. </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="SameAs-ICefBaseRefCounted-"></span><code>function <strong>SameAs</strong>(const aBaseRefCounted : <a href="uCEFInterfaces.ICefBaseRefCounted.html">ICefBaseRefCounted</a>) : boolean; overload;</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="DestroyOtherRefs"></span><code>procedure <strong>DestroyOtherRefs</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.ICefBaseRefCounted.html#DestroyOtherRefs">ICefBaseRefCounted.DestroyOtherRefs</a>.</p><p>
|
||||
Releases all other instances. </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="Wrap"></span><code>function <strong>Wrap</strong>: Pointer;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefBaseRefCounted.html#Wrap">ICefBaseRefCounted.Wrap</a>.</p><p>
|
||||
Called to increment the reference count for the object. Should be called for every new copy of a pointer to a given object. </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.ICefBaseRefCounted.html">ICefBaseRefCounted</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>
|
67
docs/html/uCEFBaseRefCounted.TLoggingInterfacedObject.html
Normal file
67
docs/html/uCEFBaseRefCounted.TLoggingInterfacedObject.html
Normal file
@ -0,0 +1,67 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBaseRefCounted: Class TLoggingInterfacedObject</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="TLoggingInterfacedObject"></span><h1 class="cio">Class TLoggingInterfacedObject</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="uCEFBaseRefCounted.html">uCEFBaseRefCounted</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TLoggingInterfacedObject = class(TInterfacedObject)</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="thisitem">TLoggingInterfacedObject</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>function <strong><a href="uCEFBaseRefCounted.TLoggingInterfacedObject.html#_AddRef">_AddRef</a></strong>: Integer; reintroduce; stdcall;</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="uCEFBaseRefCounted.TLoggingInterfacedObject.html#_Release">_Release</a></strong>: Integer; reintroduce; 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>class function <strong><a href="uCEFBaseRefCounted.TLoggingInterfacedObject.html#NewInstance">NewInstance</a></strong>: TObject; override;</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="_AddRef"></span><code>function <strong>_AddRef</strong>: Integer; reintroduce; 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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="_Release"></span><code>function <strong>_Release</strong>: Integer; reintroduce; 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="NewInstance"></span><code>class function <strong>NewInstance</strong>: TObject; override;</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>
|
37
docs/html/uCEFBaseRefCounted.html
Normal file
37
docs/html/uCEFBaseRefCounted.html
Normal file
@ -0,0 +1,37 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBaseRefCounted</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 uCEFBaseRefCounted</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="uCEFBaseRefCounted.TLoggingInterfacedObject.html"><code>TLoggingInterfacedObject</code></a></td>
|
||||
<td class="itemdesc"> </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname">Class <a class="bold" href="uCEFBaseRefCounted.TCefBaseRefCountedOwn.html"><code>TCefBaseRefCountedOwn</code></a></td>
|
||||
<td class="itemdesc"> </td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname">Class <a class="bold" href="uCEFBaseRefCounted.TCefBaseRefCountedRef.html"><code>TCefBaseRefCountedRef</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>
|
@ -0,0 +1,73 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBaseScopedWrapper: Class TCEFBaseScopedWrapperRef</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="TCEFBaseScopedWrapperRef"></span><h1 class="cio">Class TCEFBaseScopedWrapperRef</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"><a class="section" href="#PasDoc-Fields">Fields</a></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="uCEFBaseScopedWrapper.html">uCEFBaseScopedWrapper</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCEFBaseScopedWrapperRef = class(TObject)</code></p>
|
||||
<h2 class="description">Description</h2>
|
||||
<p>
|
||||
The complete list of compiler versions is here : <a href="http://docwiki.embarcadero.com/RADStudio/Tokyo/en/Compiler_Versions">http://docwiki.embarcadero.com/RADStudio/Tokyo/en/Compiler_Versions</a> Delphi 5 Delphi 6 Delphi 7 Delphi 8 Delphi 2005 Delphi 2009 Delphi 2010 Delphi XE Delphi XE2 (First FireMonkey and 64bit compiler) Delphi XE3 Delphi XE4 Delphi XE5 Delphi XE6 Delphi XE7 Delphi XE8 Rad Studio 10 - Delphi Seattle Rad Studio 10.1 - Delphi Berlin Rad Studio 10.2 - Delphi Tokyo Rad Studio 10.3 - Delphi Rio Rad Studio 10.4 - Delphi Sydney Rad Studio 11.0 - Delphi Alexandria Rad Studio 12.0 - Delphi Yukon Delphi uses MACOS for the new MacOSX and DARWIN is not defined FPC uses DARWIN for the new MacOSX and MACOS is defined for the classic Macintosh OS (System 7) We define MACOSX to avoid conflicts in both situations</p>
|
||||
<span id="PasDoc-Hierarchy"></span><h2 class="hierarchy">Hierarchy</h2>
|
||||
<ul class="hierarchy"><li class="ancestor">TObject</li>
|
||||
<li class="thisitem">TCEFBaseScopedWrapperRef</li></ul><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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFBaseScopedWrapper.TCEFBaseScopedWrapperRef.html#FData">FData</a></strong>: Pointer;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<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>constructor <strong><a href="uCEFBaseScopedWrapper.TCEFBaseScopedWrapperRef.html#Create-Pointer-">Create</a></strong>(data: Pointer); 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>function <strong><a href="uCEFBaseScopedWrapper.TCEFBaseScopedWrapperRef.html#Wrap">Wrap</a></strong>: Pointer;</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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="FData"></span><code><strong>FData</strong>: Pointer;</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">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="Create-Pointer-"></span><code>constructor <strong>Create</strong>(data: Pointer); 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="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="Wrap"></span><code>function <strong>Wrap</strong>: Pointer;</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/uCEFBaseScopedWrapper.html
Normal file
29
docs/html/uCEFBaseScopedWrapper.html
Normal file
@ -0,0 +1,29 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBaseScopedWrapper</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 uCEFBaseScopedWrapper</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="uCEFBaseScopedWrapper.TCEFBaseScopedWrapperRef.html"><code>TCEFBaseScopedWrapperRef</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>
|
@ -0,0 +1,58 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBeforeDownloadCallback: Class TCefBeforeDownloadCallbackRef</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="TCefBeforeDownloadCallbackRef"></span><h1 class="cio">Class TCefBeforeDownloadCallbackRef</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="uCEFBeforeDownloadCallback.html">uCEFBeforeDownloadCallback</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCefBeforeDownloadCallbackRef = class(<a class="normal" href="uCEFBaseRefCounted.TCefBaseRefCountedRef.html">TCefBaseRefCountedRef</a>, <a class="normal" href="uCEFInterfaces.ICefBeforeDownloadCallback.html">ICefBeforeDownloadCallback</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">TCefBeforeDownloadCallbackRef</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="uCEFBeforeDownloadCallback.TCefBeforeDownloadCallbackRef.html#Cont-ustring-Boolean-">Cont</a></strong>(const downloadPath: <a href="uCEFTypes.html#ustring">ustring</a>; showDialog: 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="uCEFBeforeDownloadCallback.TCefBeforeDownloadCallbackRef.html#UnWrap-Pointer-">UnWrap</a></strong>(data: Pointer): <a href="uCEFInterfaces.ICefBeforeDownloadCallback.html">ICefBeforeDownloadCallback</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="Cont-ustring-Boolean-"></span><code>procedure <strong>Cont</strong>(const downloadPath: <a href="uCEFTypes.html#ustring">ustring</a>; showDialog: 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.ICefBeforeDownloadCallback.html#Cont-ustring-Boolean-">ICefBeforeDownloadCallback.Cont</a>.</p><p>
|
||||
Call to continue the download. Set |download_path| to the full file path for the download including the file name or leave blank to use the suggested name and the default temp directory. Set |show_dialog| to true (1) if you do wish to show the default "Save As" dialog. </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.ICefBeforeDownloadCallback.html">ICefBeforeDownloadCallback</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/uCEFBeforeDownloadCallback.html
Normal file
29
docs/html/uCEFBeforeDownloadCallback.html
Normal file
@ -0,0 +1,29 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBeforeDownloadCallback</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 uCEFBeforeDownloadCallback</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="uCEFBeforeDownloadCallback.TCefBeforeDownloadCallbackRef.html"><code>TCefBeforeDownloadCallbackRef</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>
|
156
docs/html/uCEFBinaryValue.TCefBinaryValueOwn.html
Normal file
156
docs/html/uCEFBinaryValue.TCefBinaryValueOwn.html
Normal file
@ -0,0 +1,156 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBinaryValue: Class TCefBinaryValueOwn</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="TCefBinaryValueOwn"></span><h1 class="cio">Class TCefBinaryValueOwn</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="uCEFBinaryValue.html">uCEFBinaryValue</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCefBinaryValueOwn = class(<a class="normal" href="uCEFBaseRefCounted.TCefBaseRefCountedOwn.html">TCefBaseRefCountedOwn</a>, <a class="normal" href="uCEFInterfaces.ICefBinaryValue.html">ICefBinaryValue</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.TCefBaseRefCountedOwn.html">TCefBaseRefCountedOwn</a></li>
|
||||
<li class="thisitem">TCefBinaryValueOwn</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>function <strong><a href="uCEFBinaryValue.TCefBinaryValueOwn.html#IsValid">IsValid</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="uCEFBinaryValue.TCefBinaryValueOwn.html#IsOwned">IsOwned</a></strong>: 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="uCEFBinaryValue.TCefBinaryValueOwn.html#IsSame-ICefBinaryValue-">IsSame</a></strong>(const that: <a href="uCEFInterfaces.ICefBinaryValue.html">ICefBinaryValue</a>): 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="uCEFBinaryValue.TCefBinaryValueOwn.html#IsEqual-ICefBinaryValue-">IsEqual</a></strong>(const that: <a href="uCEFInterfaces.ICefBinaryValue.html">ICefBinaryValue</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="uCEFBinaryValue.TCefBinaryValueOwn.html#Copy">Copy</a></strong>: <a href="uCEFInterfaces.ICefBinaryValue.html">ICefBinaryValue</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="uCEFBinaryValue.TCefBinaryValueOwn.html#GetRawData">GetRawData</a></strong>: Pointer;</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="uCEFBinaryValue.TCefBinaryValueOwn.html#GetSize">GetSize</a></strong>: <a href="uCEFTypes.html#NativeUInt">NativeUInt</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="uCEFBinaryValue.TCefBinaryValueOwn.html#GetData-Pointer-NativeUInt-NativeUInt-">GetData</a></strong>(buffer: Pointer; bufferSize, dataOffset: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>): <a href="uCEFTypes.html#NativeUInt">NativeUInt</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>constructor <strong><a href="uCEFBinaryValue.TCefBinaryValueOwn.html#Create">Create</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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="IsValid"></span><code>function <strong>IsValid</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.ICefBinaryValue.html#IsValid">ICefBinaryValue.IsValid</a>.</p><p>
|
||||
Returns true (1) if this object is valid. This object may become invalid if the underlying data is owned by another object (e.g. list or dictionary) and that other object is then modified or destroyed. Do not call any other functions if this function returns false (0). </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="IsOwned"></span><code>function <strong>IsOwned</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.ICefBinaryValue.html#IsOwned">ICefBinaryValue.IsOwned</a>.</p><p>
|
||||
Returns true (1) if this object is currently owned by another object. </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="IsSame-ICefBinaryValue-"></span><code>function <strong>IsSame</strong>(const that: <a href="uCEFInterfaces.ICefBinaryValue.html">ICefBinaryValue</a>): 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.ICefBinaryValue.html#IsSame-ICefBinaryValue-">ICefBinaryValue.IsSame</a>.</p><p>
|
||||
Returns true (1) if this object and |that| object have the same underlying data. </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="IsEqual-ICefBinaryValue-"></span><code>function <strong>IsEqual</strong>(const that: <a href="uCEFInterfaces.ICefBinaryValue.html">ICefBinaryValue</a>): 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.ICefBinaryValue.html#IsEqual-ICefBinaryValue-">ICefBinaryValue.IsEqual</a>.</p><p>
|
||||
Returns true (1) if this object and |that| object have an equivalent underlying value but are not necessarily the same object. </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="Copy"></span><code>function <strong>Copy</strong>: <a href="uCEFInterfaces.ICefBinaryValue.html">ICefBinaryValue</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.ICefBinaryValue.html#Copy">ICefBinaryValue.Copy</a>.</p><p>
|
||||
Returns a copy of this object. The data in this object will also be copied. </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="GetRawData"></span><code>function <strong>GetRawData</strong>: Pointer;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefBinaryValue.html#GetRawData">ICefBinaryValue.GetRawData</a>.</p><p>
|
||||
Returns a pointer to the beginning of the memory block. The returned pointer is valid as long as the ICefBinaryValue is alive. </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="GetSize"></span><code>function <strong>GetSize</strong>: <a href="uCEFTypes.html#NativeUInt">NativeUInt</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.ICefBinaryValue.html#GetSize">ICefBinaryValue.GetSize</a>.</p><p>
|
||||
Returns the data size. </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="GetData-Pointer-NativeUInt-NativeUInt-"></span><code>function <strong>GetData</strong>(buffer: Pointer; bufferSize, dataOffset: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>): <a href="uCEFTypes.html#NativeUInt">NativeUInt</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.ICefBinaryValue.html#GetData-Pointer-NativeUInt-NativeUInt-">ICefBinaryValue.GetData</a>.</p><p>
|
||||
Read up to |buffer_size| number of bytes into |buffer|. Reading begins at the specified byte |data_offset|. Returns the number of bytes read. </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"></span><code>constructor <strong>Create</strong>;</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>
|
168
docs/html/uCEFBinaryValue.TCefBinaryValueRef.html
Normal file
168
docs/html/uCEFBinaryValue.TCefBinaryValueRef.html
Normal file
@ -0,0 +1,168 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBinaryValue: Class TCefBinaryValueRef</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="TCefBinaryValueRef"></span><h1 class="cio">Class TCefBinaryValueRef</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="uCEFBinaryValue.html">uCEFBinaryValue</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCefBinaryValueRef = class(<a class="normal" href="uCEFBaseRefCounted.TCefBaseRefCountedRef.html">TCefBaseRefCountedRef</a>, <a class="normal" href="uCEFInterfaces.ICefBinaryValue.html">ICefBinaryValue</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">TCefBinaryValueRef</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>function <strong><a href="uCEFBinaryValue.TCefBinaryValueRef.html#IsValid">IsValid</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="uCEFBinaryValue.TCefBinaryValueRef.html#IsOwned">IsOwned</a></strong>: 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="uCEFBinaryValue.TCefBinaryValueRef.html#IsSame-ICefBinaryValue-">IsSame</a></strong>(const that: <a href="uCEFInterfaces.ICefBinaryValue.html">ICefBinaryValue</a>): 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="uCEFBinaryValue.TCefBinaryValueRef.html#IsEqual-ICefBinaryValue-">IsEqual</a></strong>(const that: <a href="uCEFInterfaces.ICefBinaryValue.html">ICefBinaryValue</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="uCEFBinaryValue.TCefBinaryValueRef.html#Copy">Copy</a></strong>: <a href="uCEFInterfaces.ICefBinaryValue.html">ICefBinaryValue</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="uCEFBinaryValue.TCefBinaryValueRef.html#GetRawData">GetRawData</a></strong>: Pointer;</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="uCEFBinaryValue.TCefBinaryValueRef.html#GetSize">GetSize</a></strong>: <a href="uCEFTypes.html#NativeUInt">NativeUInt</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="uCEFBinaryValue.TCefBinaryValueRef.html#GetData-Pointer-NativeUInt-NativeUInt-">GetData</a></strong>(buffer: Pointer; bufferSize, dataOffset: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>): <a href="uCEFTypes.html#NativeUInt">NativeUInt</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="uCEFBinaryValue.TCefBinaryValueRef.html#UnWrap-Pointer-">UnWrap</a></strong>(data: Pointer): <a href="uCEFInterfaces.ICefBinaryValue.html">ICefBinaryValue</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="uCEFBinaryValue.TCefBinaryValueRef.html#New-Pointer-NativeUInt-">New</a></strong>(const data: Pointer; dataSize: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>): <a href="uCEFInterfaces.ICefBinaryValue.html">ICefBinaryValue</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="IsValid"></span><code>function <strong>IsValid</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.ICefBinaryValue.html#IsValid">ICefBinaryValue.IsValid</a>.</p><p>
|
||||
Returns true (1) if this object is valid. This object may become invalid if the underlying data is owned by another object (e.g. list or dictionary) and that other object is then modified or destroyed. Do not call any other functions if this function returns false (0). </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="IsOwned"></span><code>function <strong>IsOwned</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.ICefBinaryValue.html#IsOwned">ICefBinaryValue.IsOwned</a>.</p><p>
|
||||
Returns true (1) if this object is currently owned by another object. </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="IsSame-ICefBinaryValue-"></span><code>function <strong>IsSame</strong>(const that: <a href="uCEFInterfaces.ICefBinaryValue.html">ICefBinaryValue</a>): 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.ICefBinaryValue.html#IsSame-ICefBinaryValue-">ICefBinaryValue.IsSame</a>.</p><p>
|
||||
Returns true (1) if this object and |that| object have the same underlying data. </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="IsEqual-ICefBinaryValue-"></span><code>function <strong>IsEqual</strong>(const that: <a href="uCEFInterfaces.ICefBinaryValue.html">ICefBinaryValue</a>): 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.ICefBinaryValue.html#IsEqual-ICefBinaryValue-">ICefBinaryValue.IsEqual</a>.</p><p>
|
||||
Returns true (1) if this object and |that| object have an equivalent underlying value but are not necessarily the same object. </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="Copy"></span><code>function <strong>Copy</strong>: <a href="uCEFInterfaces.ICefBinaryValue.html">ICefBinaryValue</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.ICefBinaryValue.html#Copy">ICefBinaryValue.Copy</a>.</p><p>
|
||||
Returns a copy of this object. The data in this object will also be copied. </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="GetRawData"></span><code>function <strong>GetRawData</strong>: Pointer;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefBinaryValue.html#GetRawData">ICefBinaryValue.GetRawData</a>.</p><p>
|
||||
Returns a pointer to the beginning of the memory block. The returned pointer is valid as long as the ICefBinaryValue is alive. </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="GetSize"></span><code>function <strong>GetSize</strong>: <a href="uCEFTypes.html#NativeUInt">NativeUInt</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.ICefBinaryValue.html#GetSize">ICefBinaryValue.GetSize</a>.</p><p>
|
||||
Returns the data size. </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="GetData-Pointer-NativeUInt-NativeUInt-"></span><code>function <strong>GetData</strong>(buffer: Pointer; bufferSize, dataOffset: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>): <a href="uCEFTypes.html#NativeUInt">NativeUInt</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.ICefBinaryValue.html#GetData-Pointer-NativeUInt-NativeUInt-">ICefBinaryValue.GetData</a>.</p><p>
|
||||
Read up to |buffer_size| number of bytes into |buffer|. Reading begins at the specified byte |data_offset|. Returns the number of bytes read. </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.ICefBinaryValue.html">ICefBinaryValue</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="New-Pointer-NativeUInt-"></span><code>class function <strong>New</strong>(const data: Pointer; dataSize: <a href="uCEFTypes.html#NativeUInt">NativeUInt</a>): <a href="uCEFInterfaces.ICefBinaryValue.html">ICefBinaryValue</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>
|
33
docs/html/uCEFBinaryValue.html
Normal file
33
docs/html/uCEFBinaryValue.html
Normal file
@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBinaryValue</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 uCEFBinaryValue</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="uCEFBinaryValue.TCefBinaryValueRef.html"><code>TCefBinaryValueRef</code></a></td>
|
||||
<td class="itemdesc"> </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname">Class <a class="bold" href="uCEFBinaryValue.TCefBinaryValueOwn.html"><code>TCefBinaryValueOwn</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>
|
335
docs/html/uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html
Normal file
335
docs/html/uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html
Normal file
@ -0,0 +1,335 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBitmapBitBuffer: Class TCEFBitmapBitBuffer</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="TCEFBitmapBitBuffer"></span><h1 class="cio">Class TCEFBitmapBitBuffer</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"><a class="section" href="#PasDoc-Fields">Fields</a></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="uCEFBitmapBitBuffer.html">uCEFBitmapBitBuffer</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCEFBitmapBitBuffer = class(TObject)</code></p>
|
||||
<h2 class="description">Description</h2>
|
||||
<p>
|
||||
Class that stores a copy of the raw bitmap buffer sent by CEF in the TChromiumCore.OnPaint event. </p>
|
||||
<span id="PasDoc-Hierarchy"></span><h2 class="hierarchy">Hierarchy</h2>
|
||||
<ul class="hierarchy"><li class="ancestor">TObject</li>
|
||||
<li class="thisitem">TCEFBitmapBitBuffer</li></ul><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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#FBuffer">FBuffer</a></strong>: pointer;</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="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#FImageWidth">FImageWidth</a></strong>: integer;</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><strong><a href="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#FImageHeight">FImageHeight</a></strong>: integer;</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="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#FBufferWidth">FBufferWidth</a></strong>: integer;</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><strong><a href="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#FBufferHeight">FBufferHeight</a></strong>: integer;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<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>function <strong><a href="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#GetBufferScanlineSize">GetBufferScanlineSize</a></strong>: integer;</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="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#GetScanlineSize">GetScanlineSize</a></strong>: integer;</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="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#GetBufferLength">GetBufferLength</a></strong>: integer;</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="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#GetEmpty">GetEmpty</a></strong>: 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="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#GetScanline-integer-">GetScanline</a></strong>(y : integer) : PByte;</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="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#CreateBuffer">CreateBuffer</a></strong>;</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="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#DestroyBuffer">DestroyBuffer</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>constructor <strong><a href="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#Create-integer-integer-">Create</a></strong>(aWidth, aHeight : integer);</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>destructor <strong><a href="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#Destroy">Destroy</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>procedure <strong><a href="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#UpdateSize-integer-integer-">UpdateSize</a></strong>(aWidth, aHeight : integer);</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="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#Width">Width</a></strong> : integer read <a href="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#FImageWidth">FImageWidth</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="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#Height">Height</a></strong> : integer read <a href="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#FImageHeight">FImageHeight</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="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#BufferLength">BufferLength</a></strong> : integer read <a href="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#GetBufferLength">GetBufferLength</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="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#Empty">Empty</a></strong> : boolean read <a href="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#GetEmpty">GetEmpty</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="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#Scanline">Scanline</a></strong>[y: integer]: PByte read <a href="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#GetScanline-integer-">GetScanline</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="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#ScanlineSize">ScanlineSize</a></strong> : integer read <a href="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#GetScanlineSize">GetScanlineSize</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="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#BufferScanlineSize">BufferScanlineSize</a></strong> : integer read <a href="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#GetBufferScanlineSize">GetBufferScanlineSize</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="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#BufferBits">BufferBits</a></strong> : pointer read <a href="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#FBuffer">FBuffer</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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="FBuffer"></span><code><strong>FBuffer</strong>: pointer;</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="FImageWidth"></span><code><strong>FImageWidth</strong>: 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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="FImageHeight"></span><code><strong>FImageHeight</strong>: 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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="FBufferWidth"></span><code><strong>FBufferWidth</strong>: 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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="FBufferHeight"></span><code><strong>FBufferHeight</strong>: integer;</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">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="GetBufferScanlineSize"></span><code>function <strong>GetBufferScanlineSize</strong>: 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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="GetScanlineSize"></span><code>function <strong>GetScanlineSize</strong>: 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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="GetBufferLength"></span><code>function <strong>GetBufferLength</strong>: 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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="GetEmpty"></span><code>function <strong>GetEmpty</strong>: 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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="GetScanline-integer-"></span><code>function <strong>GetScanline</strong>(y : integer) : PByte;</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="CreateBuffer"></span><code>procedure <strong>CreateBuffer</strong>;</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="DestroyBuffer"></span><code>procedure <strong>DestroyBuffer</strong>;</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="Create-integer-integer-"></span><code>constructor <strong>Create</strong>(aWidth, aHeight : 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="Destroy"></span><code>destructor <strong>Destroy</strong>; override;</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="UpdateSize-integer-integer-"></span><code>procedure <strong>UpdateSize</strong>(aWidth, aHeight : integer);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Updates the image size. </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="Width"></span><code>property <strong>Width</strong> : integer read <a href="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#FImageWidth">FImageWidth</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Image width. </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="Height"></span><code>property <strong>Height</strong> : integer read <a href="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#FImageHeight">FImageHeight</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Image height. </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="BufferLength"></span><code>property <strong>BufferLength</strong> : integer read <a href="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#GetBufferLength">GetBufferLength</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Buffer length. </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="Empty"></span><code>property <strong>Empty</strong> : boolean read <a href="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#GetEmpty">GetEmpty</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns true if the buffer is empty. </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="Scanline"></span><code>property <strong>Scanline</strong>[y: integer]: PByte read <a href="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#GetScanline-integer-">GetScanline</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns a pointer to the first byte in of the Y scnaline. </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="ScanlineSize"></span><code>property <strong>ScanlineSize</strong> : integer read <a href="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#GetScanlineSize">GetScanlineSize</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the scanline size. </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="BufferScanlineSize"></span><code>property <strong>BufferScanlineSize</strong> : integer read <a href="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#GetBufferScanlineSize">GetBufferScanlineSize</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the real buffer scanline size. </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="BufferBits"></span><code>property <strong>BufferBits</strong> : pointer read <a href="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html#FBuffer">FBuffer</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns a pointer to the buffer that stores the image. </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/uCEFBitmapBitBuffer.html
Normal file
29
docs/html/uCEFBitmapBitBuffer.html
Normal file
@ -0,0 +1,29 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBitmapBitBuffer</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 uCEFBitmapBitBuffer</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="uCEFBitmapBitBuffer.TCEFBitmapBitBuffer.html"><code>TCEFBitmapBitBuffer</code></a></td>
|
||||
<td class="itemdesc"> Class that stores a copy of the raw bitmap buffer sent by CEF in the TChromiumCore.OnPaint event. </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
docs/html/uCEFBoxLayout.TCefBoxLayoutRef.html
Normal file
83
docs/html/uCEFBoxLayout.TCefBoxLayoutRef.html
Normal file
@ -0,0 +1,83 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBoxLayout: Class TCefBoxLayoutRef</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="TCefBoxLayoutRef"></span><h1 class="cio">Class TCefBoxLayoutRef</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="uCEFBoxLayout.html">uCEFBoxLayout</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCefBoxLayoutRef = class(<a class="normal" href="uCEFLayout.TCefLayoutRef.html">TCefLayoutRef</a>, <a class="normal" href="uCEFInterfaces.ICefBoxLayout.html">ICefBoxLayout</a>)</code></p>
|
||||
<h2 class="description">Description</h2>
|
||||
<p>
|
||||
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. </p>
|
||||
<p>
|
||||
|
||||
|
||||
<p>UNKNOWN
|
||||
|
||||
<p><see href="<a href="https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/views/cef_box_layout_capi.h">https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/views/cef_box_layout_capi.h</a>">CEF source file: /include/capi/views/cef_box_layout_capi.h (cef_box_layout_t))</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="ancestor"><a class="normal" href="uCEFLayout.TCefLayoutRef.html">TCefLayoutRef</a></li>
|
||||
<li class="thisitem">TCefBoxLayoutRef</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="uCEFBoxLayout.TCefBoxLayoutRef.html#SetFlexForView-ICefView-Integer-">SetFlexForView</a></strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; flex: Integer);</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="uCEFBoxLayout.TCefBoxLayoutRef.html#ClearFlexForView-ICefView-">ClearFlexForView</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>class function <strong><a href="uCEFBoxLayout.TCefBoxLayoutRef.html#UnWrap-Pointer-">UnWrap</a></strong>(data: Pointer): <a href="uCEFInterfaces.ICefBoxLayout.html">ICefBoxLayout</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="SetFlexForView-ICefView-Integer-"></span><code>procedure <strong>SetFlexForView</strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; flex: Integer);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Set the flex weight for the given |view|. Using the preferred size as the basis, free space along the main axis is distributed to views in the ratio of their flex weights. Similarly, if the views will overflow the parent, space is subtracted in these ratios. A flex of 0 means this view is not resized. Flex values must not be negative. </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="ClearFlexForView-ICefView-"></span><code>procedure <strong>ClearFlexForView</strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Clears the flex for the given |view|, causing it to use the default flex specified via TCefBoxLayoutSettings.default_flex. </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.ICefBoxLayout.html">ICefBoxLayout</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns a ICefBoxLayout instance using a PCefBoxLayout data pointer. </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/uCEFBoxLayout.html
Normal file
29
docs/html/uCEFBoxLayout.html
Normal file
@ -0,0 +1,29 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBoxLayout</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 uCEFBoxLayout</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="uCEFBoxLayout.TCefBoxLayoutRef.html"><code>TCefBoxLayoutRef</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>
|
||||
</table>
|
||||
<hr><span class="appinfo"><em>Generated by <a href="https://pasdoc.github.io/">PasDoc 0.16.0-snapshot</a>. </em>
|
||||
</span>
|
||||
</body></html>
|
1046
docs/html/uCEFBrowser.TCefBrowserHostRef.html
Normal file
1046
docs/html/uCEFBrowser.TCefBrowserHostRef.html
Normal file
File diff suppressed because it is too large
Load Diff
338
docs/html/uCEFBrowser.TCefBrowserRef.html
Normal file
338
docs/html/uCEFBrowser.TCefBrowserRef.html
Normal file
@ -0,0 +1,338 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBrowser: Class TCefBrowserRef</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="TCefBrowserRef"></span><h1 class="cio">Class TCefBrowserRef</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="uCEFBrowser.html">uCEFBrowser</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCefBrowserRef = class(<a class="normal" href="uCEFBaseRefCounted.TCefBaseRefCountedRef.html">TCefBaseRefCountedRef</a>, <a class="normal" href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</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">TCefBrowserRef</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>function <strong><a href="uCEFBrowser.TCefBrowserRef.html#IsValid">IsValid</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.TCefBrowserRef.html#GetHost">GetHost</a></strong>: <a href="uCEFInterfaces.ICefBrowserHost.html">ICefBrowserHost</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.TCefBrowserRef.html#CanGoBack">CanGoBack</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>procedure <strong><a href="uCEFBrowser.TCefBrowserRef.html#GoBack">GoBack</a></strong>;</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.TCefBrowserRef.html#CanGoForward">CanGoForward</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>procedure <strong><a href="uCEFBrowser.TCefBrowserRef.html#GoForward">GoForward</a></strong>;</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.TCefBrowserRef.html#IsLoading">IsLoading</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>procedure <strong><a href="uCEFBrowser.TCefBrowserRef.html#Reload">Reload</a></strong>;</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="uCEFBrowser.TCefBrowserRef.html#ReloadIgnoreCache">ReloadIgnoreCache</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="uCEFBrowser.TCefBrowserRef.html#StopLoad">StopLoad</a></strong>;</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.TCefBrowserRef.html#GetIdentifier">GetIdentifier</a></strong>: Integer;</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.TCefBrowserRef.html#IsSame-ICefBrowser-">IsSame</a></strong>(const that: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</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="uCEFBrowser.TCefBrowserRef.html#IsPopup">IsPopup</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.TCefBrowserRef.html#HasDocument">HasDocument</a></strong>: 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="uCEFBrowser.TCefBrowserRef.html#GetMainFrame">GetMainFrame</a></strong>: <a href="uCEFInterfaces.ICefFrame.html">ICefFrame</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="uCEFBrowser.TCefBrowserRef.html#GetFocusedFrame">GetFocusedFrame</a></strong>: <a href="uCEFInterfaces.ICefFrame.html">ICefFrame</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.TCefBrowserRef.html#GetFrameByIdentifier-ustring-">GetFrameByIdentifier</a></strong>(const identifier: <a href="uCEFTypes.html#ustring">ustring</a>): <a href="uCEFInterfaces.ICefFrame.html">ICefFrame</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="uCEFBrowser.TCefBrowserRef.html#GetFrameByName-ustring-">GetFrameByName</a></strong>(const name: <a href="uCEFTypes.html#ustring">ustring</a>): <a href="uCEFInterfaces.ICefFrame.html">ICefFrame</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.TCefBrowserRef.html#GetFrameCount">GetFrameCount</a></strong>: <a href="uCEFTypes.html#NativeUInt">NativeUInt</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="uCEFBrowser.TCefBrowserRef.html#GetFrameIdentifiers-TStrings-">GetFrameIdentifiers</a></strong>(var aFrameIdentifiers : TStrings) : 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="uCEFBrowser.TCefBrowserRef.html#GetFrameNames-TStrings-">GetFrameNames</a></strong>(var aFrameNames : TStrings) : 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="uCEFBrowser.TCefBrowserRef.html#UnWrap-Pointer-">UnWrap</a></strong>(data: Pointer): <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</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="IsValid"></span><code>function <strong>IsValid</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.ICefBrowser.html#IsValid">ICefBrowser.IsValid</a>.</p><p>
|
||||
True if this object is currently valid. This will return false (0) after ICefLifeSpanHandler.OnBeforeClose is called. </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="GetHost"></span><code>function <strong>GetHost</strong>: <a href="uCEFInterfaces.ICefBrowserHost.html">ICefBrowserHost</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.ICefBrowser.html#GetHost">ICefBrowser.GetHost</a>.</p><p>
|
||||
Returns the browser host object. This function can only be called in the browser 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="CanGoBack"></span><code>function <strong>CanGoBack</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.ICefBrowser.html#CanGoBack">ICefBrowser.CanGoBack</a>.</p><p>
|
||||
Returns true (1) if the browser can navigate backwards. </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="GoBack"></span><code>procedure <strong>GoBack</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.ICefBrowser.html#GoBack">ICefBrowser.GoBack</a>.</p><p>
|
||||
Navigate backwards. </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="CanGoForward"></span><code>function <strong>CanGoForward</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.ICefBrowser.html#CanGoForward">ICefBrowser.CanGoForward</a>.</p><p>
|
||||
Returns true (1) if the browser can navigate forwards. </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="GoForward"></span><code>procedure <strong>GoForward</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.ICefBrowser.html#GoForward">ICefBrowser.GoForward</a>.</p><p>
|
||||
Navigate forwards. </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="IsLoading"></span><code>function <strong>IsLoading</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.ICefBrowser.html#IsLoading">ICefBrowser.IsLoading</a>.</p><p>
|
||||
Returns true (1) if the browser is currently loading. </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="Reload"></span><code>procedure <strong>Reload</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.ICefBrowser.html#Reload">ICefBrowser.Reload</a>.</p><p>
|
||||
Reload the current page. </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="ReloadIgnoreCache"></span><code>procedure <strong>ReloadIgnoreCache</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.ICefBrowser.html#ReloadIgnoreCache">ICefBrowser.ReloadIgnoreCache</a>.</p><p>
|
||||
Reload the current page ignoring any cached data. </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="StopLoad"></span><code>procedure <strong>StopLoad</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.ICefBrowser.html#StopLoad">ICefBrowser.StopLoad</a>.</p><p>
|
||||
Stop loading the page. </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="GetIdentifier"></span><code>function <strong>GetIdentifier</strong>: Integer;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefBrowser.html#GetIdentifier">ICefBrowser.GetIdentifier</a>.</p><p>
|
||||
Returns the globally unique identifier for this browser. This value is also used as the tabId for extension APIs. </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="IsSame-ICefBrowser-"></span><code>function <strong>IsSame</strong>(const that: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>): 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.ICefBrowser.html#IsSame-ICefBrowser-">ICefBrowser.IsSame</a>.</p><p>
|
||||
Returns true (1) if this object is pointing to the same handle as |that| object. </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="IsPopup"></span><code>function <strong>IsPopup</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.ICefBrowser.html#IsPopup">ICefBrowser.IsPopup</a>.</p><p>
|
||||
Returns true (1) if the browser is a popup. </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="HasDocument"></span><code>function <strong>HasDocument</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.ICefBrowser.html#HasDocument">ICefBrowser.HasDocument</a>.</p><p>
|
||||
Returns true (1) if a document has been loaded in the browser. </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="GetMainFrame"></span><code>function <strong>GetMainFrame</strong>: <a href="uCEFInterfaces.ICefFrame.html">ICefFrame</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.ICefBrowser.html#GetMainFrame">ICefBrowser.GetMainFrame</a>.</p><p>
|
||||
Returns the main (top-level) frame for the browser. In the browser process this will return a valid object until after ICefLifeSpanHandler.OnBeforeClose is called. In the renderer process this will return NULL if the main frame is hosted in a different renderer process (e.g. for cross-origin sub-frames). The main frame object will change during cross-origin navigation or re-navigation after renderer process termination (due to crashes, etc). </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="GetFocusedFrame"></span><code>function <strong>GetFocusedFrame</strong>: <a href="uCEFInterfaces.ICefFrame.html">ICefFrame</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.ICefBrowser.html#GetFocusedFrame">ICefBrowser.GetFocusedFrame</a>.</p><p>
|
||||
Returns the focused frame for the browser. </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="GetFrameByIdentifier-ustring-"></span><code>function <strong>GetFrameByIdentifier</strong>(const identifier: <a href="uCEFTypes.html#ustring">ustring</a>): <a href="uCEFInterfaces.ICefFrame.html">ICefFrame</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.ICefBrowser.html#GetFrameByIdentifier-ustring-">ICefBrowser.GetFrameByIdentifier</a>.</p><p>
|
||||
Returns the frame with the specified identifier, or NULL if not found. </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="GetFrameByName-ustring-"></span><code>function <strong>GetFrameByName</strong>(const name: <a href="uCEFTypes.html#ustring">ustring</a>): <a href="uCEFInterfaces.ICefFrame.html">ICefFrame</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.ICefBrowser.html#GetFrameByName-ustring-">ICefBrowser.GetFrameByName</a>.</p><p>
|
||||
Returns the frame with the specified name, or NULL if not found. </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="GetFrameCount"></span><code>function <strong>GetFrameCount</strong>: <a href="uCEFTypes.html#NativeUInt">NativeUInt</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.ICefBrowser.html#GetFrameCount">ICefBrowser.GetFrameCount</a>.</p><p>
|
||||
Returns the number of frames that currently exist. </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="GetFrameIdentifiers-TStrings-"></span><code>function <strong>GetFrameIdentifiers</strong>(var aFrameIdentifiers : TStrings) : 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.ICefBrowser.html#GetFrameIdentifiers-TStrings-">ICefBrowser.GetFrameIdentifiers</a>.</p><p>
|
||||
Returns the identifiers of all existing frames. </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="GetFrameNames-TStrings-"></span><code>function <strong>GetFrameNames</strong>(var aFrameNames : TStrings) : 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.ICefBrowser.html#GetFrameNames-TStrings-">ICefBrowser.GetFrameNames</a>.</p><p>
|
||||
Returns the names of all existing frames. </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.ICefBrowser.html">ICefBrowser</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>
|
33
docs/html/uCEFBrowser.html
Normal file
33
docs/html/uCEFBrowser.html
Normal file
@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBrowser</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 uCEFBrowser</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="uCEFBrowser.TCefBrowserRef.html"><code>TCefBrowserRef</code></a></td>
|
||||
<td class="itemdesc"> </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname">Class <a class="bold" href="uCEFBrowser.TCefBrowserHostRef.html"><code>TCefBrowserHostRef</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>
|
231
docs/html/uCEFBrowserBitmap.TCEFBrowserBitmap.html
Normal file
231
docs/html/uCEFBrowserBitmap.TCEFBrowserBitmap.html
Normal file
@ -0,0 +1,231 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBrowserBitmap: Class TCEFBrowserBitmap</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="TCEFBrowserBitmap"></span><h1 class="cio">Class TCEFBrowserBitmap</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"><a class="section" href="#PasDoc-Fields">Fields</a></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="uCEFBrowserBitmap.html">uCEFBrowserBitmap</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCEFBrowserBitmap = class(TBitmap)</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">TBitmap</li>
|
||||
<li class="thisitem">TCEFBrowserBitmap</li></ul><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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFBrowserBitmap.TCEFBrowserBitmap.html#FScanlineSize">FScanlineSize</a></strong>: integer;</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="uCEFBrowserBitmap.TCEFBrowserBitmap.html#FDeviceScaleFactor">FDeviceScaleFactor</a></strong>: single;</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><strong><a href="uCEFBrowserBitmap.TCEFBrowserBitmap.html#FSyncObj">FSyncObj</a></strong>: THandle;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<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>function <strong><a href="uCEFBrowserBitmap.TCEFBrowserBitmap.html#GetBufferBits">GetBufferBits</a></strong>: pointer;</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="uCEFBrowserBitmap.TCEFBrowserBitmap.html#CreateSyncObj">CreateSyncObj</a></strong>;</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="uCEFBrowserBitmap.TCEFBrowserBitmap.html#DestroySyncObj">DestroySyncObj</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>constructor <strong><a href="uCEFBrowserBitmap.TCEFBrowserBitmap.html#Create">Create</a></strong>; 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>destructor <strong><a href="uCEFBrowserBitmap.TCEFBrowserBitmap.html#Destroy">Destroy</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>function <strong><a href="uCEFBrowserBitmap.TCEFBrowserBitmap.html#BeginBufferDraw">BeginBufferDraw</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>procedure <strong><a href="uCEFBrowserBitmap.TCEFBrowserBitmap.html#EndBufferDraw">EndBufferDraw</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="uCEFBrowserBitmap.TCEFBrowserBitmap.html#UpdateBufferDimensions-integer-integer-">UpdateBufferDimensions</a></strong>(aWidth, aHeight : integer) : 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="uCEFBrowserBitmap.TCEFBrowserBitmap.html#BufferIsResized-boolean-">BufferIsResized</a></strong>(aUseMutex : boolean = True) : 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="uCEFBrowserBitmap.TCEFBrowserBitmap.html#BufferDraw-TBitmap-TRect-TRect-">BufferDraw</a></strong>(const aBitmap : TBitmap; const aSrcRect, aDstRect : TRect);</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="uCEFBrowserBitmap.TCEFBrowserBitmap.html#ScanlineSize">ScanlineSize</a></strong> : integer read <a href="uCEFBrowserBitmap.TCEFBrowserBitmap.html#FScanlineSize">FScanlineSize</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="uCEFBrowserBitmap.TCEFBrowserBitmap.html#BufferBits">BufferBits</a></strong> : pointer read <a href="uCEFBrowserBitmap.TCEFBrowserBitmap.html#GetBufferBits">GetBufferBits</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="uCEFBrowserBitmap.TCEFBrowserBitmap.html#DeviceScaleFactor">DeviceScaleFactor</a></strong> : single read <a href="uCEFBrowserBitmap.TCEFBrowserBitmap.html#FDeviceScaleFactor">FDeviceScaleFactor</a> write <a href="uCEFBrowserBitmap.TCEFBrowserBitmap.html#FDeviceScaleFactor">FDeviceScaleFactor</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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="FScanlineSize"></span><code><strong>FScanlineSize</strong>: 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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="FDeviceScaleFactor"></span><code><strong>FDeviceScaleFactor</strong>: single;</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="FSyncObj"></span><code><strong>FSyncObj</strong>: THandle;</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">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="GetBufferBits"></span><code>function <strong>GetBufferBits</strong>: pointer;</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="CreateSyncObj"></span><code>procedure <strong>CreateSyncObj</strong>;</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="DestroySyncObj"></span><code>procedure <strong>DestroySyncObj</strong>;</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="Create"></span><code>constructor <strong>Create</strong>; override;</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="Destroy"></span><code>destructor <strong>Destroy</strong>; override;</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="BeginBufferDraw"></span><code>function <strong>BeginBufferDraw</strong>: 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="EndBufferDraw"></span><code>procedure <strong>EndBufferDraw</strong>;</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="UpdateBufferDimensions-integer-integer-"></span><code>function <strong>UpdateBufferDimensions</strong>(aWidth, aHeight : integer) : 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="BufferIsResized-boolean-"></span><code>function <strong>BufferIsResized</strong>(aUseMutex : boolean = True) : 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="BufferDraw-TBitmap-TRect-TRect-"></span><code>procedure <strong>BufferDraw</strong>(const aBitmap : TBitmap; const aSrcRect, aDstRect : TRect);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</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="ScanlineSize"></span><code>property <strong>ScanlineSize</strong> : integer read <a href="uCEFBrowserBitmap.TCEFBrowserBitmap.html#FScanlineSize">FScanlineSize</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="BufferBits"></span><code>property <strong>BufferBits</strong> : pointer read <a href="uCEFBrowserBitmap.TCEFBrowserBitmap.html#GetBufferBits">GetBufferBits</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="DeviceScaleFactor"></span><code>property <strong>DeviceScaleFactor</strong> : single read <a href="uCEFBrowserBitmap.TCEFBrowserBitmap.html#FDeviceScaleFactor">FDeviceScaleFactor</a> write <a href="uCEFBrowserBitmap.TCEFBrowserBitmap.html#FDeviceScaleFactor">FDeviceScaleFactor</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/uCEFBrowserBitmap.html
Normal file
29
docs/html/uCEFBrowserBitmap.html
Normal file
@ -0,0 +1,29 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBrowserBitmap</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 uCEFBrowserBitmap</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="uCEFBrowserBitmap.TCEFBrowserBitmap.html"><code>TCEFBrowserBitmap</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>
|
@ -0,0 +1,174 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBrowserProcessHandler: Class TCefBrowserProcessHandlerOwn</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="TCefBrowserProcessHandlerOwn"></span><h1 class="cio">Class TCefBrowserProcessHandlerOwn</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="uCEFBrowserProcessHandler.html">uCEFBrowserProcessHandler</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCefBrowserProcessHandlerOwn = class(<a class="normal" href="uCEFBaseRefCounted.TCefBaseRefCountedOwn.html">TCefBaseRefCountedOwn</a>, <a class="normal" href="uCEFInterfaces.ICefBrowserProcessHandler.html">ICefBrowserProcessHandler</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.TCefBaseRefCountedOwn.html">TCefBaseRefCountedOwn</a></li>
|
||||
<li class="thisitem">TCefBrowserProcessHandlerOwn</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="uCEFBrowserProcessHandler.TCefBrowserProcessHandlerOwn.html#OnRegisterCustomPreferences-TCefPreferencesType-PCefPreferenceRegistrar-">OnRegisterCustomPreferences</a></strong>(type_: <a href="uCEFTypes.html#TCefPreferencesType">TCefPreferencesType</a>; registrar: <a href="uCEFTypes.html#PCefPreferenceRegistrar">PCefPreferenceRegistrar</a>); virtual; abstract;</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="uCEFBrowserProcessHandler.TCefBrowserProcessHandlerOwn.html#OnContextInitialized">OnContextInitialized</a></strong>; virtual; abstract;</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="uCEFBrowserProcessHandler.TCefBrowserProcessHandlerOwn.html#OnBeforeChildProcessLaunch-ICefCommandLine-">OnBeforeChildProcessLaunch</a></strong>(const commandLine: <a href="uCEFInterfaces.ICefCommandLine.html">ICefCommandLine</a>); virtual; abstract;</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="uCEFBrowserProcessHandler.TCefBrowserProcessHandlerOwn.html#OnAlreadyRunningAppRelaunch-ICefCommandLine-ustring-boolean-">OnAlreadyRunningAppRelaunch</a></strong>(const commandLine: <a href="uCEFInterfaces.ICefCommandLine.html">ICefCommandLine</a>; const current_directory: <a href="uCEFTypes.html#ustring">ustring</a>; var aResult: boolean); virtual; abstract;</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="uCEFBrowserProcessHandler.TCefBrowserProcessHandlerOwn.html#OnScheduleMessagePumpWork-Int64-">OnScheduleMessagePumpWork</a></strong>(const delayMs: Int64); virtual; abstract;</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="uCEFBrowserProcessHandler.TCefBrowserProcessHandlerOwn.html#GetDefaultClient-ICefClient-">GetDefaultClient</a></strong>(var aClient : <a href="uCEFInterfaces.ICefClient.html">ICefClient</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="uCEFBrowserProcessHandler.TCefBrowserProcessHandlerOwn.html#GetDefaultRequestContextHandler-ICefRequestContextHandler-">GetDefaultRequestContextHandler</a></strong>(var aRequestContextHandler : <a href="uCEFInterfaces.ICefRequestContextHandler.html">ICefRequestContextHandler</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="uCEFBrowserProcessHandler.TCefBrowserProcessHandlerOwn.html#RemoveReferences">RemoveReferences</a></strong>; virtual; abstract;</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="uCEFBrowserProcessHandler.TCefBrowserProcessHandlerOwn.html#Create">Create</a></strong>; virtual;</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="OnRegisterCustomPreferences-TCefPreferencesType-PCefPreferenceRegistrar-"></span><code>procedure <strong>OnRegisterCustomPreferences</strong>(type_: <a href="uCEFTypes.html#TCefPreferencesType">TCefPreferencesType</a>; registrar: <a href="uCEFTypes.html#PCefPreferenceRegistrar">PCefPreferenceRegistrar</a>); virtual; abstract;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefBrowserProcessHandler.html#OnRegisterCustomPreferences-TCefPreferencesType-PCefPreferenceRegistrar-">ICefBrowserProcessHandler.OnRegisterCustomPreferences</a>.</p><p>
|
||||
|
||||
|
||||
<p>Provides an opportunity to register custom preferences prior to global and request context initialization.
|
||||
|
||||
<p>If |type| is CEF_PREFERENCES_TYPE_GLOBAL the registered preferences can be accessed via ICefPreferenceManager.GetGlobalPreferences after OnContextInitialized is called. Global preferences are registered a single time at application startup. See related TCefSettings.cache_path and TCefSettings.persist_user_preferences configuration.
|
||||
|
||||
<p>If |type| is CEF_PREFERENCES_TYPE_REQUEST_CONTEXT the preferences can be accessed via the ICefRequestContext after ICefRequestContextHandler.OnRequestContextInitialized is called. Request context preferences are registered each time a new ICefRequestContext is created. It is intended but not required that all request contexts have the same registered preferences. See related TCefRequestContextSettings.cache_path and TCefRequestContextSettings.persist_user_preferences configuration.
|
||||
|
||||
<p>Do not keep a reference to the |registrar| object. This function is called on the browser process UI thread.
|
||||
|
||||
<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="OnContextInitialized"></span><code>procedure <strong>OnContextInitialized</strong>; virtual; abstract;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefBrowserProcessHandler.html#OnContextInitialized">ICefBrowserProcessHandler.OnContextInitialized</a>.</p><p>
|
||||
Called on the browser process UI thread immediately after the CEF context has been initialized. </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="OnBeforeChildProcessLaunch-ICefCommandLine-"></span><code>procedure <strong>OnBeforeChildProcessLaunch</strong>(const commandLine: <a href="uCEFInterfaces.ICefCommandLine.html">ICefCommandLine</a>); virtual; abstract;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefBrowserProcessHandler.html#OnBeforeChildProcessLaunch-ICefCommandLine-">ICefBrowserProcessHandler.OnBeforeChildProcessLaunch</a>.</p><p>
|
||||
Called before a child process is launched. Will be called on the browser process UI thread when launching a render process and on the browser process IO thread when launching a GPU process. Provides an opportunity to modify the child process command line. Do not keep a reference to |command_line| outside of this function. </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="OnAlreadyRunningAppRelaunch-ICefCommandLine-ustring-boolean-"></span><code>procedure <strong>OnAlreadyRunningAppRelaunch</strong>(const commandLine: <a href="uCEFInterfaces.ICefCommandLine.html">ICefCommandLine</a>; const current_directory: <a href="uCEFTypes.html#ustring">ustring</a>; var aResult: boolean); virtual; abstract;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefBrowserProcessHandler.html#OnAlreadyRunningAppRelaunch-ICefCommandLine-ustring-boolean-">ICefBrowserProcessHandler.OnAlreadyRunningAppRelaunch</a>.</p><p>
|
||||
|
||||
|
||||
<p>Implement this function to provide app-specific behavior when an already running app is relaunched with the same TCefSettings.root_cache_path value. For example, activate an existing app window or create a new app window. |command_line| will be read-only. Do not keep a reference to |command_line| outside of this function. Return true (1) if the relaunch is handled or false (0) for default relaunch behavior. Default behavior will create a new default styled Chrome window.
|
||||
|
||||
<p>To avoid cache corruption only a single app instance is allowed to run for a given TCefSettings.root_cache_path value. On relaunch the app checks a process singleton lock and then forwards the new launch arguments to the already running app process before exiting early. Client apps should therefore check the cef_initialize() return value for early exit before proceeding.
|
||||
|
||||
<p>This function will be called on the browser process UI thread.
|
||||
|
||||
<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="OnScheduleMessagePumpWork-Int64-"></span><code>procedure <strong>OnScheduleMessagePumpWork</strong>(const delayMs: Int64); virtual; abstract;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefBrowserProcessHandler.html#OnScheduleMessagePumpWork-Int64-">ICefBrowserProcessHandler.OnScheduleMessagePumpWork</a>.</p><p>
|
||||
Called from any thread when work has been scheduled for the browser process main (UI) thread. This callback is used in combination with TCefSettings.external_message_pump and GlobalCEFApp.DoMessageLoopWork in cases where the CEF message loop must be integrated into an existing application message loop (see additional comments and warnings on GlobalCEFApp.DoMessageLoopWork). This callback should schedule a GlobalCEFApp.DoMessageLoopWork call to happen on the main (UI) thread. |delay_ms| is the requested delay in milliseconds. If |delay_ms| is <= 0 then the call should happen reasonably soon. If |delay_ms| is > 0 then the call should be scheduled to happen after the specified delay and any currently pending scheduled call should be cancelled. </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="GetDefaultClient-ICefClient-"></span><code>procedure <strong>GetDefaultClient</strong>(var aClient : <a href="uCEFInterfaces.ICefClient.html">ICefClient</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.ICefBrowserProcessHandler.html#GetDefaultClient-ICefClient-">ICefBrowserProcessHandler.GetDefaultClient</a>.</p><p>
|
||||
Return the default client for use with a newly created browser window (TCefBrowser object). If null is returned the TCefBrowser will be unmanaged (no callbacks will be executed for that TCefBrowser) and application shutdown will be blocked until the browser window is closed manually. This function is currently only used with the Chrome runtime when creating new browser windows via Chrome UI. </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="GetDefaultRequestContextHandler-ICefRequestContextHandler-"></span><code>procedure <strong>GetDefaultRequestContextHandler</strong>(var aRequestContextHandler : <a href="uCEFInterfaces.ICefRequestContextHandler.html">ICefRequestContextHandler</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.ICefBrowserProcessHandler.html#GetDefaultRequestContextHandler-ICefRequestContextHandler-">ICefBrowserProcessHandler.GetDefaultRequestContextHandler</a>.</p><p>
|
||||
Return the default handler for use with a new user or incognito profile (TCefRequestContext object). If null is returned the TCefRequestContext will be unmanaged (no callbacks will be executed for that TCefRequestContext). This function is currently only used with the Chrome runtime when creating new browser windows via Chrome UI. </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="RemoveReferences"></span><code>procedure <strong>RemoveReferences</strong>; virtual; abstract;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefBrowserProcessHandler.html#RemoveReferences">ICefBrowserProcessHandler.RemoveReferences</a>.</p><p>
|
||||
Custom procedure to clear all references. </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"></span><code>constructor <strong>Create</strong>; virtual;</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>
|
@ -0,0 +1,203 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBrowserProcessHandler: Class TCefCustomBrowserProcessHandler</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="TCefCustomBrowserProcessHandler"></span><h1 class="cio">Class TCefCustomBrowserProcessHandler</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"><a class="section" href="#PasDoc-Fields">Fields</a></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="uCEFBrowserProcessHandler.html">uCEFBrowserProcessHandler</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCefCustomBrowserProcessHandler = class(<a class="normal" href="uCEFBrowserProcessHandler.TCefBrowserProcessHandlerOwn.html">TCefBrowserProcessHandlerOwn</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.TCefBaseRefCountedOwn.html">TCefBaseRefCountedOwn</a></li>
|
||||
<li class="ancestor"><a class="normal" href="uCEFBrowserProcessHandler.TCefBrowserProcessHandlerOwn.html">TCefBrowserProcessHandlerOwn</a></li>
|
||||
<li class="thisitem">TCefCustomBrowserProcessHandler</li></ul><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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFBrowserProcessHandler.TCefCustomBrowserProcessHandler.html#FCefApp">FCefApp</a></strong>: <a href="uCEFApplicationCore.TCefApplicationCore.html">TCefApplicationCore</a>;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<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="uCEFBrowserProcessHandler.TCefCustomBrowserProcessHandler.html#OnRegisterCustomPreferences-TCefPreferencesType-PCefPreferenceRegistrar-">OnRegisterCustomPreferences</a></strong>(type_: <a href="uCEFTypes.html#TCefPreferencesType">TCefPreferencesType</a>; registrar: <a href="uCEFTypes.html#PCefPreferenceRegistrar">PCefPreferenceRegistrar</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="uCEFBrowserProcessHandler.TCefCustomBrowserProcessHandler.html#OnContextInitialized">OnContextInitialized</a></strong>; 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="uCEFBrowserProcessHandler.TCefCustomBrowserProcessHandler.html#OnBeforeChildProcessLaunch-ICefCommandLine-">OnBeforeChildProcessLaunch</a></strong>(const commandLine: <a href="uCEFInterfaces.ICefCommandLine.html">ICefCommandLine</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="uCEFBrowserProcessHandler.TCefCustomBrowserProcessHandler.html#OnAlreadyRunningAppRelaunch-ICefCommandLine-ustring-boolean-">OnAlreadyRunningAppRelaunch</a></strong>(const commandLine: <a href="uCEFInterfaces.ICefCommandLine.html">ICefCommandLine</a>; const current_directory: <a href="uCEFTypes.html#ustring">ustring</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="uCEFBrowserProcessHandler.TCefCustomBrowserProcessHandler.html#OnScheduleMessagePumpWork-Int64-">OnScheduleMessagePumpWork</a></strong>(const delayMs: Int64); 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="uCEFBrowserProcessHandler.TCefCustomBrowserProcessHandler.html#GetDefaultClient-ICefClient-">GetDefaultClient</a></strong>(var aClient : <a href="uCEFInterfaces.ICefClient.html">ICefClient</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="uCEFBrowserProcessHandler.TCefCustomBrowserProcessHandler.html#GetDefaultRequestContextHandler-ICefRequestContextHandler-">GetDefaultRequestContextHandler</a></strong>(var aRequestContextHandler : <a href="uCEFInterfaces.ICefRequestContextHandler.html">ICefRequestContextHandler</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="uCEFBrowserProcessHandler.TCefCustomBrowserProcessHandler.html#RemoveReferences">RemoveReferences</a></strong>; 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="uCEFBrowserProcessHandler.TCefCustomBrowserProcessHandler.html#Create-TCefApplicationCore-">Create</a></strong>(const aCefApp : <a href="uCEFApplicationCore.TCefApplicationCore.html">TCefApplicationCore</a>); reintroduce;</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>destructor <strong><a href="uCEFBrowserProcessHandler.TCefCustomBrowserProcessHandler.html#Destroy">Destroy</a></strong>; override;</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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="FCefApp"></span><code><strong>FCefApp</strong>: <a href="uCEFApplicationCore.TCefApplicationCore.html">TCefApplicationCore</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">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="OnRegisterCustomPreferences-TCefPreferencesType-PCefPreferenceRegistrar-"></span><code>procedure <strong>OnRegisterCustomPreferences</strong>(type_: <a href="uCEFTypes.html#TCefPreferencesType">TCefPreferencesType</a>; registrar: <a href="uCEFTypes.html#PCefPreferenceRegistrar">PCefPreferenceRegistrar</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.ICefBrowserProcessHandler.html#OnRegisterCustomPreferences-TCefPreferencesType-PCefPreferenceRegistrar-">ICefBrowserProcessHandler.OnRegisterCustomPreferences</a>.</p><p>
|
||||
|
||||
|
||||
<p>Provides an opportunity to register custom preferences prior to global and request context initialization.
|
||||
|
||||
<p>If |type| is CEF_PREFERENCES_TYPE_GLOBAL the registered preferences can be accessed via ICefPreferenceManager.GetGlobalPreferences after OnContextInitialized is called. Global preferences are registered a single time at application startup. See related TCefSettings.cache_path and TCefSettings.persist_user_preferences configuration.
|
||||
|
||||
<p>If |type| is CEF_PREFERENCES_TYPE_REQUEST_CONTEXT the preferences can be accessed via the ICefRequestContext after ICefRequestContextHandler.OnRequestContextInitialized is called. Request context preferences are registered each time a new ICefRequestContext is created. It is intended but not required that all request contexts have the same registered preferences. See related TCefRequestContextSettings.cache_path and TCefRequestContextSettings.persist_user_preferences configuration.
|
||||
|
||||
<p>Do not keep a reference to the |registrar| object. This function is called on the browser process UI thread.
|
||||
|
||||
<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="OnContextInitialized"></span><code>procedure <strong>OnContextInitialized</strong>; 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.ICefBrowserProcessHandler.html#OnContextInitialized">ICefBrowserProcessHandler.OnContextInitialized</a>.</p><p>
|
||||
Called on the browser process UI thread immediately after the CEF context has been initialized. </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="OnBeforeChildProcessLaunch-ICefCommandLine-"></span><code>procedure <strong>OnBeforeChildProcessLaunch</strong>(const commandLine: <a href="uCEFInterfaces.ICefCommandLine.html">ICefCommandLine</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.ICefBrowserProcessHandler.html#OnBeforeChildProcessLaunch-ICefCommandLine-">ICefBrowserProcessHandler.OnBeforeChildProcessLaunch</a>.</p><p>
|
||||
Called before a child process is launched. Will be called on the browser process UI thread when launching a render process and on the browser process IO thread when launching a GPU process. Provides an opportunity to modify the child process command line. Do not keep a reference to |command_line| outside of this function. </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="OnAlreadyRunningAppRelaunch-ICefCommandLine-ustring-boolean-"></span><code>procedure <strong>OnAlreadyRunningAppRelaunch</strong>(const commandLine: <a href="uCEFInterfaces.ICefCommandLine.html">ICefCommandLine</a>; const current_directory: <a href="uCEFTypes.html#ustring">ustring</a>; var aResult: 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.ICefBrowserProcessHandler.html#OnAlreadyRunningAppRelaunch-ICefCommandLine-ustring-boolean-">ICefBrowserProcessHandler.OnAlreadyRunningAppRelaunch</a>.</p><p>
|
||||
|
||||
|
||||
<p>Implement this function to provide app-specific behavior when an already running app is relaunched with the same TCefSettings.root_cache_path value. For example, activate an existing app window or create a new app window. |command_line| will be read-only. Do not keep a reference to |command_line| outside of this function. Return true (1) if the relaunch is handled or false (0) for default relaunch behavior. Default behavior will create a new default styled Chrome window.
|
||||
|
||||
<p>To avoid cache corruption only a single app instance is allowed to run for a given TCefSettings.root_cache_path value. On relaunch the app checks a process singleton lock and then forwards the new launch arguments to the already running app process before exiting early. Client apps should therefore check the cef_initialize() return value for early exit before proceeding.
|
||||
|
||||
<p>This function will be called on the browser process UI thread.
|
||||
|
||||
<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="OnScheduleMessagePumpWork-Int64-"></span><code>procedure <strong>OnScheduleMessagePumpWork</strong>(const delayMs: Int64); 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.ICefBrowserProcessHandler.html#OnScheduleMessagePumpWork-Int64-">ICefBrowserProcessHandler.OnScheduleMessagePumpWork</a>.</p><p>
|
||||
Called from any thread when work has been scheduled for the browser process main (UI) thread. This callback is used in combination with TCefSettings.external_message_pump and GlobalCEFApp.DoMessageLoopWork in cases where the CEF message loop must be integrated into an existing application message loop (see additional comments and warnings on GlobalCEFApp.DoMessageLoopWork). This callback should schedule a GlobalCEFApp.DoMessageLoopWork call to happen on the main (UI) thread. |delay_ms| is the requested delay in milliseconds. If |delay_ms| is <= 0 then the call should happen reasonably soon. If |delay_ms| is > 0 then the call should be scheduled to happen after the specified delay and any currently pending scheduled call should be cancelled. </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="GetDefaultClient-ICefClient-"></span><code>procedure <strong>GetDefaultClient</strong>(var aClient : <a href="uCEFInterfaces.ICefClient.html">ICefClient</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.ICefBrowserProcessHandler.html#GetDefaultClient-ICefClient-">ICefBrowserProcessHandler.GetDefaultClient</a>.</p><p>
|
||||
Return the default client for use with a newly created browser window (TCefBrowser object). If null is returned the TCefBrowser will be unmanaged (no callbacks will be executed for that TCefBrowser) and application shutdown will be blocked until the browser window is closed manually. This function is currently only used with the Chrome runtime when creating new browser windows via Chrome UI. </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="GetDefaultRequestContextHandler-ICefRequestContextHandler-"></span><code>procedure <strong>GetDefaultRequestContextHandler</strong>(var aRequestContextHandler : <a href="uCEFInterfaces.ICefRequestContextHandler.html">ICefRequestContextHandler</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.ICefBrowserProcessHandler.html#GetDefaultRequestContextHandler-ICefRequestContextHandler-">ICefBrowserProcessHandler.GetDefaultRequestContextHandler</a>.</p><p>
|
||||
Return the default handler for use with a new user or incognito profile (TCefRequestContext object). If null is returned the TCefRequestContext will be unmanaged (no callbacks will be executed for that TCefRequestContext). This function is currently only used with the Chrome runtime when creating new browser windows via Chrome UI. </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="RemoveReferences"></span><code>procedure <strong>RemoveReferences</strong>; 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.ICefBrowserProcessHandler.html#RemoveReferences">ICefBrowserProcessHandler.RemoveReferences</a>.</p><p>
|
||||
Custom procedure to clear all references. </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-TCefApplicationCore-"></span><code>constructor <strong>Create</strong>(const aCefApp : <a href="uCEFApplicationCore.TCefApplicationCore.html">TCefApplicationCore</a>); reintroduce;</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="Destroy"></span><code>destructor <strong>Destroy</strong>; override;</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>
|
33
docs/html/uCEFBrowserProcessHandler.html
Normal file
33
docs/html/uCEFBrowserProcessHandler.html
Normal file
@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBrowserProcessHandler</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 uCEFBrowserProcessHandler</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="uCEFBrowserProcessHandler.TCefBrowserProcessHandlerOwn.html"><code>TCefBrowserProcessHandlerOwn</code></a></td>
|
||||
<td class="itemdesc"> </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname">Class <a class="bold" href="uCEFBrowserProcessHandler.TCefCustomBrowserProcessHandler.html"><code>TCefCustomBrowserProcessHandler</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>
|
123
docs/html/uCEFBrowserView.TCefBrowserViewRef.html
Normal file
123
docs/html/uCEFBrowserView.TCefBrowserViewRef.html
Normal file
@ -0,0 +1,123 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBrowserView: Class TCefBrowserViewRef</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="TCefBrowserViewRef"></span><h1 class="cio">Class TCefBrowserViewRef</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="uCEFBrowserView.html">uCEFBrowserView</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCefBrowserViewRef = class(<a class="normal" href="uCEFView.TCefViewRef.html">TCefViewRef</a>, <a class="normal" href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>)</code></p>
|
||||
<h2 class="description">Description</h2>
|
||||
<p>
|
||||
A View hosting a ICefBrowser instance. Methods must be called on the browser process UI thread unless otherwise indicated. </p>
|
||||
<p>
|
||||
|
||||
|
||||
<p><see href="<a href="https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/views/cef_browser_view_capi.h">https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/views/cef_browser_view_capi.h</a>">CEF source file: /include/capi/views/cef_browser_view_capi.h (cef_browser_view_t))</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="ancestor"><a class="normal" href="uCEFView.TCefViewRef.html">TCefViewRef</a></li>
|
||||
<li class="thisitem">TCefBrowserViewRef</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>function <strong><a href="uCEFBrowserView.TCefBrowserViewRef.html#GetBrowser">GetBrowser</a></strong>: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</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="uCEFBrowserView.TCefBrowserViewRef.html#GetChromeToolbar">GetChromeToolbar</a></strong>: <a href="uCEFInterfaces.ICefView.html">ICefView</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="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>
|
||||
</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>
|
||||
</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#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>
|
||||
<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="GetBrowser"></span><code>function <strong>GetBrowser</strong>: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the ICefBrowser hosted by this BrowserView. Will return NULL if the browser has not yet been created or has already been destroyed. </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="GetChromeToolbar"></span><code>function <strong>GetChromeToolbar</strong>: <a href="uCEFInterfaces.ICefView.html">ICefView</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the Chrome toolbar associated with this BrowserView. Only supported when using the Chrome runtime. The ICefBrowserViewDelegate.GetChromeToolbarType function must return a value other than CEF_CTT_NONE and the toolbar will not be available until after this BrowserView is added to a ICefWindow and ICefViewDelegate.OnWindowChanged() has been called. </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="SetPreferAccelerators-boolean-"></span><code>procedure <strong>SetPreferAccelerators</strong>(prefer_accelerators: boolean);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Sets whether accelerators registered with ICefWindow.SetAccelerator are triggered before or after the event is sent to the ICefBrowser. If |prefer_accelerators| is true (1) then the matching accelerator will be triggered immediately and the event will not be sent to the ICefBrowser. If |prefer_accelerators| is false (0) then the matching accelerator will only be triggered if the event is not handled by web content or by ICefKeyboardHandler. The default value is false (0). </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>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns a ICefBrowserView instance using a PCefBrowserView data pointer. </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-ICefBrowserViewDelegate-"></span><code>class 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>; const delegate: <a href="uCEFInterfaces.ICefBrowserViewDelegate.html">ICefBrowserViewDelegate</a>): <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Create a new BrowserView. The underlying cef_browser_t will not be created until this view is added to the views hierarchy. The optional |extra_info| parameter provides an opportunity to specify extra information specific to the created browser that will be passed to cef_render_process_handler_t::on_browser_created() in the render 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="GetForBrowser-ICefBrowser-"></span><code>class function <strong>GetForBrowser</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>): <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the BrowserView associated with |browser|. </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/uCEFBrowserView.html
Normal file
29
docs/html/uCEFBrowserView.html
Normal file
@ -0,0 +1,29 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBrowserView</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 uCEFBrowserView</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="uCEFBrowserView.TCefBrowserViewRef.html"><code>TCefBrowserViewRef</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>
|
||||
</table>
|
||||
<hr><span class="appinfo"><em>Generated by <a href="https://pasdoc.github.io/">PasDoc 0.16.0-snapshot</a>. </em>
|
||||
</span>
|
||||
</body></html>
|
480
docs/html/uCEFBrowserViewComponent.TCEFBrowserViewComponent.html
Normal file
480
docs/html/uCEFBrowserViewComponent.TCEFBrowserViewComponent.html
Normal file
@ -0,0 +1,480 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBrowserViewComponent: Class TCEFBrowserViewComponent</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="TCEFBrowserViewComponent"></span><h1 class="cio">Class TCEFBrowserViewComponent</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"><a class="section" href="#PasDoc-Fields">Fields</a></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="uCEFBrowserViewComponent.html">uCEFBrowserViewComponent</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCEFBrowserViewComponent = class(<a class="normal" href="uCEFViewComponent.TCEFViewComponent.html">TCEFViewComponent</a>, <a class="normal" href="uCEFInterfaces.ICefBrowserViewDelegateEvents.html">ICefBrowserViewDelegateEvents</a>)</code></p>
|
||||
<h2 class="description">Description</h2>
|
||||
<p>
|
||||
Component hosting a ICefBrowserView instance. Used in Chrome runtime mode only. </p>
|
||||
<span id="PasDoc-Hierarchy"></span><h2 class="hierarchy">Hierarchy</h2>
|
||||
<ul class="hierarchy"><li class="ancestor">TObject</li>
|
||||
<li class="ancestor">TPersistent</li>
|
||||
<li class="ancestor">TComponent</li>
|
||||
<li class="ancestor"><a class="normal" href="uCEFViewComponent.TCEFViewComponent.html">TCEFViewComponent</a></li>
|
||||
<li class="thisitem">TCEFBrowserViewComponent</li></ul><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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FBrowserView">FBrowserView</a></strong>: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</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#FBrowserViewDlg">FBrowserViewDlg</a></strong>: <a href="uCEFInterfaces.ICefBrowserViewDelegate.html">ICefBrowserViewDelegate</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><strong><a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnBrowserCreated">FOnBrowserCreated</a></strong>: TOnBrowserCreatedEvent;</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#FOnBrowserDestroyed">FOnBrowserDestroyed</a></strong>: TOnBrowserDestroyedEvent;</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><strong><a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnGetDelegateForPopupBrowserView">FOnGetDelegateForPopupBrowserView</a></strong>: TOnGetDelegateForPopupBrowserViewEvent;</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#FOnPopupBrowserViewCreated">FOnPopupBrowserViewCreated</a></strong>: TOnPopupBrowserViewCreatedEvent;</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><strong><a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnGetChromeToolbarType">FOnGetChromeToolbarType</a></strong>: TOnGetChromeToolbarTypeEvent;</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#FOnUseFramelessWindowForPictureInPicture">FOnUseFramelessWindowForPictureInPicture</a></strong>: TOnUseFramelessWindowForPictureInPicture;</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><strong><a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnGestureCommand">FOnGestureCommand</a></strong>: TOnGestureCommandEvent;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<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="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#DestroyView">DestroyView</a></strong>; 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="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#Initialize">Initialize</a></strong>; 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>function <strong><a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#GetInitialized">GetInitialized</a></strong>: boolean; 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>function <strong><a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#GetAsView">GetAsView</a></strong>: <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>function <strong><a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#GetAsBrowserView">GetAsBrowserView</a></strong>: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</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>function <strong><a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#GetBrowser">GetBrowser</a></strong>: <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#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="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#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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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="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>
|
||||
</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="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#GetForBrowser-ICefBrowser-">GetForBrowser</a></strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</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="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#SetPreferAccelerators-boolean-">SetPreferAccelerators</a></strong>(prefer_accelerators: boolean);</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="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#Browser">Browser</a></strong> : <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a> read <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#GetBrowser">GetBrowser</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="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="published.gif" alt="Published" title="Published"></a></td>
|
||||
<td class="itemcode"><code>property <strong><a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#OnBrowserCreated">OnBrowserCreated</a></strong> : TOnBrowserCreatedEvent read <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnBrowserCreated">FOnBrowserCreated</a> write <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnBrowserCreated">FOnBrowserCreated</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#OnBrowserDestroyed">OnBrowserDestroyed</a></strong> : TOnBrowserDestroyedEvent read <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnBrowserDestroyed">FOnBrowserDestroyed</a> write <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnBrowserDestroyed">FOnBrowserDestroyed</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#OnGetDelegateForPopupBrowserView">OnGetDelegateForPopupBrowserView</a></strong> : TOnGetDelegateForPopupBrowserViewEvent read <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnGetDelegateForPopupBrowserView">FOnGetDelegateForPopupBrowserView</a> write <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnGetDelegateForPopupBrowserView">FOnGetDelegateForPopupBrowserView</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#OnPopupBrowserViewCreated">OnPopupBrowserViewCreated</a></strong> : TOnPopupBrowserViewCreatedEvent read <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnPopupBrowserViewCreated">FOnPopupBrowserViewCreated</a> write <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnPopupBrowserViewCreated">FOnPopupBrowserViewCreated</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#OnGetChromeToolbarType">OnGetChromeToolbarType</a></strong> : TOnGetChromeToolbarTypeEvent read <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnGetChromeToolbarType">FOnGetChromeToolbarType</a> write <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnGetChromeToolbarType">FOnGetChromeToolbarType</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#OnUseFramelessWindowForPictureInPicture">OnUseFramelessWindowForPictureInPicture</a></strong> : TOnUseFramelessWindowForPictureInPicture read <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnUseFramelessWindowForPictureInPicture">FOnUseFramelessWindowForPictureInPicture</a> write <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnUseFramelessWindowForPictureInPicture">FOnUseFramelessWindowForPictureInPicture</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#OnGestureCommand">OnGestureCommand</a></strong> : TOnGestureCommandEvent read <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnGestureCommand">FOnGestureCommand</a> write <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnGestureCommand">FOnGestureCommand</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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="FBrowserView"></span><code><strong>FBrowserView</strong>: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</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="FBrowserViewDlg"></span><code><strong>FBrowserViewDlg</strong>: <a href="uCEFInterfaces.ICefBrowserViewDelegate.html">ICefBrowserViewDelegate</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="FOnBrowserCreated"></span><code><strong>FOnBrowserCreated</strong>: TOnBrowserCreatedEvent;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
ICefBrowserViewDelegateEvents</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="FOnBrowserDestroyed"></span><code><strong>FOnBrowserDestroyed</strong>: TOnBrowserDestroyedEvent;</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="FOnGetDelegateForPopupBrowserView"></span><code><strong>FOnGetDelegateForPopupBrowserView</strong>: TOnGetDelegateForPopupBrowserViewEvent;</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="FOnPopupBrowserViewCreated"></span><code><strong>FOnPopupBrowserViewCreated</strong>: TOnPopupBrowserViewCreatedEvent;</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="FOnGetChromeToolbarType"></span><code><strong>FOnGetChromeToolbarType</strong>: TOnGetChromeToolbarTypeEvent;</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="FOnUseFramelessWindowForPictureInPicture"></span><code><strong>FOnUseFramelessWindowForPictureInPicture</strong>: TOnUseFramelessWindowForPictureInPicture;</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="FOnGestureCommand"></span><code><strong>FOnGestureCommand</strong>: TOnGestureCommandEvent;</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">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="DestroyView"></span><code>procedure <strong>DestroyView</strong>; override;</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="Initialize"></span><code>procedure <strong>Initialize</strong>; override;</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="GetInitialized"></span><code>function <strong>GetInitialized</strong>: boolean; override;</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="GetAsView"></span><code>function <strong>GetAsView</strong>: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; override;</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="GetAsBrowserView"></span><code>function <strong>GetAsBrowserView</strong>: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; override;</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="GetBrowser"></span><code>function <strong>GetBrowser</strong>: <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="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">
|
||||
<p>
|
||||
ICefBrowserViewDelegateEvents</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="doOnBrowserDestroyed-ICefBrowserView-ICefBrowser-"></span><code>procedure <strong>doOnBrowserDestroyed</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">
|
||||
<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="doOnGetDelegateForPopupBrowserView-ICefBrowserView-TCefBrowserSettings-ICefClient-boolean-ICefBrowserViewDelegate-"></span><code>procedure <strong>doOnGetDelegateForPopupBrowserView</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><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="doOnPopupBrowserViewCreated-ICefBrowserView-ICefBrowserView-boolean-boolean-"></span><code>procedure <strong>doOnPopupBrowserViewCreated</strong>(const browser_view, popup_browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; is_devtools: boolean; var aResult : 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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="doOnGetChromeToolbarType-ICefBrowserView-TCefChromeToolbarType-"></span><code>procedure <strong>doOnGetChromeToolbarType</strong>(const browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; var aChromeToolbarType: <a href="uCEFTypes.html#TCefChromeToolbarType">TCefChromeToolbarType</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="doOnUseFramelessWindowForPictureInPicture-ICefBrowserView-boolean-"></span><code>procedure <strong>doOnUseFramelessWindowForPictureInPicture</strong>(const browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; var aResult: 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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="doOnGestureCommand-ICefBrowserView-TCefGestureCommand-boolean-"></span><code>procedure <strong>doOnGestureCommand</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><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>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Create a new ICefBrowserView. The underlying ICefBrowser will not be created until this view is added to the views hierarchy. The optional |extra_info| parameter provides an opportunity to specify extra information specific to the created browser that will be passed to ICefRenderProcessHandler.OnBrowserCreated in the render 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="GetForBrowser-ICefBrowser-"></span><code>function <strong>GetForBrowser</strong>(const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>): boolean;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Updates the internal ICefBrowserView with the ICefBrowserView associated with |browser|. </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="SetPreferAccelerators-boolean-"></span><code>procedure <strong>SetPreferAccelerators</strong>(prefer_accelerators: boolean);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Sets whether accelerators registered with ICefWindow.SetAccelerator are triggered before or after the event is sent to the ICefBrowser. If |prefer_accelerators| is true (1) then the matching accelerator will be triggered immediately and the event will not be sent to the ICefBrowser. If |prefer_accelerators| is false (0) then the matching accelerator will only be triggered if the event is not handled by web content or by ICefKeyboardHandler. The default value is false (0). </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="Browser"></span><code>property <strong>Browser</strong> : <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a> read <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#GetBrowser">GetBrowser</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the ICefBrowser hosted by this BrowserView. Will return NULL if the browser has not yet been created or has already been destroyed. </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="BrowserView"></span><code>property <strong>BrowserView</strong> : <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a> read <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FBrowserView">FBrowserView</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
ICefBrowserView assiciated to this component. </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> : TOnBrowserCreatedEvent read <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnBrowserCreated">FOnBrowserCreated</a> write <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnBrowserCreated">FOnBrowserCreated</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Called when |browser| associated with |browser_view| is created. This function will be called after ICefLifeSpanHandler.OnAfterCreated() is called for |browser| and before OnPopupBrowserViewCreated() is called for |browser|'s parent delegate if |browser| is a popup. </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="OnBrowserDestroyed"></span><code>property <strong>OnBrowserDestroyed</strong> : TOnBrowserDestroyedEvent read <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnBrowserDestroyed">FOnBrowserDestroyed</a> write <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnBrowserDestroyed">FOnBrowserDestroyed</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Called when |browser| associated with |browser_view| is destroyed. Release all references to |browser| and do not attempt to execute any functions on |browser| after this callback returns. This function will be called before ICefLifeSpanHandler.OnBeforeClose() is called for |browser|. </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="OnGetDelegateForPopupBrowserView"></span><code>property <strong>OnGetDelegateForPopupBrowserView</strong> : TOnGetDelegateForPopupBrowserViewEvent read <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnGetDelegateForPopupBrowserView">FOnGetDelegateForPopupBrowserView</a> write <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnGetDelegateForPopupBrowserView">FOnGetDelegateForPopupBrowserView</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Called before a new popup BrowserView is created. The popup originated from |browser_view|. |settings| and |client| are the values returned from ICefLifeSpanHandler.OnBeforePopup(). |is_devtools| will be true (1) if the popup will be a DevTools browser. Return the delegate that will be used for the new popup BrowserView. </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="OnPopupBrowserViewCreated"></span><code>property <strong>OnPopupBrowserViewCreated</strong> : TOnPopupBrowserViewCreatedEvent read <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnPopupBrowserViewCreated">FOnPopupBrowserViewCreated</a> write <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnPopupBrowserViewCreated">FOnPopupBrowserViewCreated</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Called after |popup_browser_view| is created. This function will be called after ICefLifeSpanHandler.OnAfterCreated() and OnBrowserCreated() are called for the new popup browser. The popup originated from |browser_view|. |is_devtools| will be true (1) if the popup is a DevTools browser. Optionally add |popup_browser_view| to the views hierarchy yourself and return true (1). Otherwise return false (0) and a default ICefWindow will be created for the popup. </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="OnGetChromeToolbarType"></span><code>property <strong>OnGetChromeToolbarType</strong> : TOnGetChromeToolbarTypeEvent read <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnGetChromeToolbarType">FOnGetChromeToolbarType</a> write <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnGetChromeToolbarType">FOnGetChromeToolbarType</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the Chrome toolbar type that will be available via ICefBrowserView.GetChromeToolbar(). See that function for related documentation. </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="OnUseFramelessWindowForPictureInPicture"></span><code>property <strong>OnUseFramelessWindowForPictureInPicture</strong> : TOnUseFramelessWindowForPictureInPicture read <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnUseFramelessWindowForPictureInPicture">FOnUseFramelessWindowForPictureInPicture</a> write <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnUseFramelessWindowForPictureInPicture">FOnUseFramelessWindowForPictureInPicture</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Return true (1) to create frameless windows for Document picture-in- picture popups. Content in frameless windows should specify draggable regions using "-webkit-app-region: drag" CSS. </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="OnGestureCommand"></span><code>property <strong>OnGestureCommand</strong> : TOnGestureCommandEvent read <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnGestureCommand">FOnGestureCommand</a> write <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html#FOnGestureCommand">FOnGestureCommand</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<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>
|
||||
<hr><span class="appinfo"><em>Generated by <a href="https://pasdoc.github.io/">PasDoc 0.16.0-snapshot</a>. </em>
|
||||
</span>
|
||||
</body></html>
|
44
docs/html/uCEFBrowserViewComponent.html
Normal file
44
docs/html/uCEFBrowserViewComponent.html
Normal file
@ -0,0 +1,44 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBrowserViewComponent</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 uCEFBrowserViewComponent</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"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></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="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html"><code>TCEFBrowserViewComponent</code></a></td>
|
||||
<td class="itemdesc"> Component hosting a ICefBrowserView instance. Used in Chrome runtime mode only. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3>
|
||||
<table class="summary wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFBrowserViewComponent.html#Register">Register</a></strong>;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2 class="description">Description</h2>
|
||||
<h3 class="detail">Functions and Procedures</h3>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="Register"></span><code>procedure <strong>Register</strong>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<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>
|
@ -0,0 +1,163 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBrowserViewDelegate: Class TCefBrowserViewDelegateOwn</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="TCefBrowserViewDelegateOwn"></span><h1 class="cio">Class TCefBrowserViewDelegateOwn</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="uCEFBrowserViewDelegate.html">uCEFBrowserViewDelegate</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCefBrowserViewDelegateOwn = class(<a class="normal" href="uCEFViewDelegate.TCefViewDelegateOwn.html">TCefViewDelegateOwn</a>, <a class="normal" href="uCEFInterfaces.ICefBrowserViewDelegate.html">ICefBrowserViewDelegate</a>)</code></p>
|
||||
<h2 class="description">Description</h2>
|
||||
<p>
|
||||
Implement this interface to handle BrowserView events. The functions of this interface will be called on the browser process UI thread unless otherwise indicated. </p>
|
||||
<p>
|
||||
|
||||
|
||||
<p><see href="<a href="https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/views/cef_browser_view_delegate_capi.h">https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/views/cef_browser_view_delegate_capi.h</a>">CEF source file: /include/capi/views/cef_browser_view_delegate_capi.h (cef_browser_view_delegate_t))</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.TCefBaseRefCountedOwn.html">TCefBaseRefCountedOwn</a></li>
|
||||
<li class="ancestor"><a class="normal" href="uCEFViewDelegate.TCefViewDelegateOwn.html">TCefViewDelegateOwn</a></li>
|
||||
<li class="thisitem">TCefBrowserViewDelegateOwn</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="uCEFBrowserViewDelegate.TCefBrowserViewDelegateOwn.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>); 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="uCEFBrowserViewDelegate.TCefBrowserViewDelegateOwn.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>); 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#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>); 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="uCEFBrowserViewDelegate.TCefBrowserViewDelegateOwn.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); 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#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>); 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="uCEFBrowserViewDelegate.TCefBrowserViewDelegateOwn.html#OnUseFramelessWindowForPictureInPicture-ICefBrowserView-boolean-">OnUseFramelessWindowForPictureInPicture</a></strong>(const browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; var aResult: 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="uCEFBrowserViewDelegate.TCefBrowserViewDelegateOwn.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); 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="uCEFBrowserViewDelegate.TCefBrowserViewDelegateOwn.html#InitializeCEFMethods">InitializeCEFMethods</a></strong>; 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="uCEFBrowserViewDelegate.TCefBrowserViewDelegateOwn.html#Create">Create</a></strong>; override;</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="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>); virtual;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Called when |browser| associated with |browser_view| is created. This function will be called after ICefLifeSpanHandler.OnAfterCreated() is called for |browser| and before OnPopupBrowserViewCreated() is called for |browser|'s parent delegate if |browser| is a popup. </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="OnBrowserDestroyed-ICefBrowserView-ICefBrowser-"></span><code>procedure <strong>OnBrowserDestroyed</strong>(const browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>); virtual;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Called when |browser| associated with |browser_view| is destroyed. Release all references to |browser| and do not attempt to execute any functions on |browser| after this callback returns. This function will be called before ICefLifeSpanHandler.OnBeforeClose() is called for |browser|. </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="OnGetDelegateForPopupBrowserView-ICefBrowserView-TCefBrowserSettings-ICefClient-boolean-ICefBrowserViewDelegate-"></span><code>procedure <strong>OnGetDelegateForPopupBrowserView</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>); virtual;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Called before a new popup BrowserView is created. The popup originated from |browser_view|. |settings| and |client| are the values returned from ICefLifeSpanHandler.OnBeforePopup(). |is_devtools| will be true (1) if the popup will be a DevTools browser. Return the delegate that will be used for the new popup BrowserView. </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="OnPopupBrowserViewCreated-ICefBrowserView-ICefBrowserView-boolean-boolean-"></span><code>procedure <strong>OnPopupBrowserViewCreated</strong>(const browser_view, popup_browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; is_devtools: boolean; var aResult : boolean); virtual;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Called after |popup_browser_view| is created. This function will be called after ICefLifeSpanHandler.OnAfterCreated() and OnBrowserCreated() are called for the new popup browser. The popup originated from |browser_view|. |is_devtools| will be true (1) if the popup is a DevTools browser. Optionally add |popup_browser_view| to the views hierarchy yourself and return true (1). Otherwise return false (0) and a default ICefWindow will be created for the popup. </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="OnGetChromeToolbarType-ICefBrowserView-TCefChromeToolbarType-"></span><code>procedure <strong>OnGetChromeToolbarType</strong>(const browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; var aResult : <a href="uCEFTypes.html#TCefChromeToolbarType">TCefChromeToolbarType</a>); virtual;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the Chrome toolbar type that will be available via ICefBrowserView.GetChromeToolbar(). See that function for related documentation. </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="OnUseFramelessWindowForPictureInPicture-ICefBrowserView-boolean-"></span><code>procedure <strong>OnUseFramelessWindowForPictureInPicture</strong>(const browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; var aResult: boolean); virtual;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Return true (1) to create frameless windows for Document picture-in- picture popups. Content in frameless windows should specify draggable regions using "-webkit-app-region: drag" CSS. </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="OnGestureCommand-ICefBrowserView-TCefGestureCommand-boolean-"></span><code>procedure <strong>OnGestureCommand</strong>(const browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; gesture_command: <a href="uCEFTypes.html#TCefGestureCommand">TCefGestureCommand</a>; var aResult : boolean); virtual;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<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="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">
|
||||
<p>
|
||||
Links the methods in the internal CEF record data pointer with the methods in this class. </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"></span><code>constructor <strong>Create</strong>; override;</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>
|
@ -0,0 +1,145 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBrowserViewDelegate: Class TCefBrowserViewDelegateRef</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="TCefBrowserViewDelegateRef"></span><h1 class="cio">Class TCefBrowserViewDelegateRef</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="uCEFBrowserViewDelegate.html">uCEFBrowserViewDelegate</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCefBrowserViewDelegateRef = class(<a class="normal" href="uCEFViewDelegate.TCefViewDelegateRef.html">TCefViewDelegateRef</a>, <a class="normal" href="uCEFInterfaces.ICefBrowserViewDelegate.html">ICefBrowserViewDelegate</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="ancestor"><a class="normal" href="uCEFViewDelegate.TCefViewDelegateRef.html">TCefViewDelegateRef</a></li>
|
||||
<li class="thisitem">TCefBrowserViewDelegateRef</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="uCEFBrowserViewDelegate.TCefBrowserViewDelegateRef.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>);</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#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>);</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.TCefBrowserViewDelegateRef.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>);</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#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);</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.TCefBrowserViewDelegateRef.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>);</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#OnUseFramelessWindowForPictureInPicture-ICefBrowserView-boolean-">OnUseFramelessWindowForPictureInPicture</a></strong>(const browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</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="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="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>
|
||||
</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="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>);</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#OnBrowserCreated-ICefBrowserView-ICefBrowser-">ICefBrowserViewDelegate.OnBrowserCreated</a>.</p><p>
|
||||
Called when |browser| associated with |browser_view| is created. This function will be called after ICefLifeSpanHandler.OnAfterCreated() is called for |browser| and before OnPopupBrowserViewCreated() is called for |browser|'s parent delegate if |browser| is a popup. </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="OnBrowserDestroyed-ICefBrowserView-ICefBrowser-"></span><code>procedure <strong>OnBrowserDestroyed</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">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefBrowserViewDelegate.html#OnBrowserDestroyed-ICefBrowserView-ICefBrowser-">ICefBrowserViewDelegate.OnBrowserDestroyed</a>.</p><p>
|
||||
Called when |browser| associated with |browser_view| is destroyed. Release all references to |browser| and do not attempt to execute any functions on |browser| after this callback returns. This function will be called before ICefLifeSpanHandler.OnBeforeClose() is called for |browser|. </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="OnGetDelegateForPopupBrowserView-ICefBrowserView-TCefBrowserSettings-ICefClient-boolean-ICefBrowserViewDelegate-"></span><code>procedure <strong>OnGetDelegateForPopupBrowserView</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><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefBrowserViewDelegate.html#OnGetDelegateForPopupBrowserView-ICefBrowserView-TCefBrowserSettings-ICefClient-boolean-ICefBrowserViewDelegate-">ICefBrowserViewDelegate.OnGetDelegateForPopupBrowserView</a>.</p><p>
|
||||
Called before a new popup BrowserView is created. The popup originated from |browser_view|. |settings| and |client| are the values returned from ICefLifeSpanHandler.OnBeforePopup(). |is_devtools| will be true (1) if the popup will be a DevTools browser. Return the delegate that will be used for the new popup BrowserView. </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="OnPopupBrowserViewCreated-ICefBrowserView-ICefBrowserView-boolean-boolean-"></span><code>procedure <strong>OnPopupBrowserViewCreated</strong>(const browser_view, popup_browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; is_devtools: boolean; var aResult : 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.ICefBrowserViewDelegate.html#OnPopupBrowserViewCreated-ICefBrowserView-ICefBrowserView-boolean-boolean-">ICefBrowserViewDelegate.OnPopupBrowserViewCreated</a>.</p><p>
|
||||
Called after |popup_browser_view| is created. This function will be called after ICefLifeSpanHandler.OnAfterCreated() and OnBrowserCreated() are called for the new popup browser. The popup originated from |browser_view|. |is_devtools| will be true (1) if the popup is a DevTools browser. Optionally add |popup_browser_view| to the views hierarchy yourself and return true (1). Otherwise return false (0) and a default ICefWindow will be created for the popup. </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="OnGetChromeToolbarType-ICefBrowserView-TCefChromeToolbarType-"></span><code>procedure <strong>OnGetChromeToolbarType</strong>(const browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; var aResult: <a href="uCEFTypes.html#TCefChromeToolbarType">TCefChromeToolbarType</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#OnGetChromeToolbarType-ICefBrowserView-TCefChromeToolbarType-">ICefBrowserViewDelegate.OnGetChromeToolbarType</a>.</p><p>
|
||||
Returns the Chrome toolbar type that will be available via ICefBrowserView.GetChromeToolbar(). See that function for related documentation. </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="OnUseFramelessWindowForPictureInPicture-ICefBrowserView-boolean-"></span><code>procedure <strong>OnUseFramelessWindowForPictureInPicture</strong>(const browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; var aResult: 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.ICefBrowserViewDelegate.html#OnUseFramelessWindowForPictureInPicture-ICefBrowserView-boolean-">ICefBrowserViewDelegate.OnUseFramelessWindowForPictureInPicture</a>.</p><p>
|
||||
Return true (1) to create frameless windows for Document picture-in- picture popups. Content in frameless windows should specify draggable regions using "-webkit-app-region: drag" CSS. </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="OnGestureCommand-ICefBrowserView-TCefGestureCommand-boolean-"></span><code>procedure <strong>OnGestureCommand</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><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFInterfaces.ICefBrowserViewDelegate.html#OnGestureCommand-ICefBrowserView-TCefGestureCommand-boolean-">ICefBrowserViewDelegate.OnGestureCommand</a>.</p><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="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>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns a ICefBrowserViewDelegate instance using a PCefBrowserViewDelegate data pointer. </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>
|
@ -0,0 +1,302 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBrowserViewDelegate: Class TCustomBrowserViewDelegate</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="TCustomBrowserViewDelegate"></span><h1 class="cio">Class TCustomBrowserViewDelegate</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"><a class="section" href="#PasDoc-Fields">Fields</a></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="uCEFBrowserViewDelegate.html">uCEFBrowserViewDelegate</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCustomBrowserViewDelegate = class(<a class="normal" href="uCEFBrowserViewDelegate.TCefBrowserViewDelegateOwn.html">TCefBrowserViewDelegateOwn</a>)</code></p>
|
||||
<h2 class="description">Description</h2>
|
||||
<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>
|
||||
<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.TCefBaseRefCountedOwn.html">TCefBaseRefCountedOwn</a></li>
|
||||
<li class="ancestor"><a class="normal" href="uCEFViewDelegate.TCefViewDelegateOwn.html">TCefViewDelegateOwn</a></li>
|
||||
<li class="ancestor"><a class="normal" href="uCEFBrowserViewDelegate.TCefBrowserViewDelegateOwn.html">TCefBrowserViewDelegateOwn</a></li>
|
||||
<li class="thisitem">TCustomBrowserViewDelegate</li></ul><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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFBrowserViewDelegate.TCustomBrowserViewDelegate.html#FEvents">FEvents</a></strong>: Pointer;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<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="uCEFBrowserViewDelegate.TCustomBrowserViewDelegate.html#OnGetPreferredSize-ICefView-TCefSize-">OnGetPreferredSize</a></strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; var aResult : <a href="uCEFTypes.TCefSize.html">TCefSize</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#OnGetMinimumSize-ICefView-TCefSize-">OnGetMinimumSize</a></strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; var aResult : <a href="uCEFTypes.TCefSize.html">TCefSize</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#OnGetMaximumSize-ICefView-TCefSize-">OnGetMaximumSize</a></strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; var aResult : <a href="uCEFTypes.TCefSize.html">TCefSize</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#OnGetHeightForWidth-ICefView-Integer-Integer-">OnGetHeightForWidth</a></strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; width: Integer; var aResult: Integer); 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#OnParentViewChanged-ICefView-boolean-ICefView-">OnParentViewChanged</a></strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; added: boolean; const parent: <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#OnChildViewChanged-ICefView-boolean-ICefView-">OnChildViewChanged</a></strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; added: boolean; const child: <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="uCEFBrowserViewDelegate.TCustomBrowserViewDelegate.html#OnWindowChanged-ICefView-boolean-">OnWindowChanged</a></strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; added: boolean); 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#OnLayoutChanged-ICefView-TCefRect-">OnLayoutChanged</a></strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; new_bounds: <a href="uCEFTypes.TCefRect.html">TCefRect</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#OnFocus-ICefView-">OnFocus</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#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="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="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#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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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">
|
||||
<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="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>
|
||||
</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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="FEvents"></span><code><strong>FEvents</strong>: Pointer;</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">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="OnGetPreferredSize-ICefView-TCefSize-"></span><code>procedure <strong>OnGetPreferredSize</strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; var aResult : <a href="uCEFTypes.TCefSize.html">TCefSize</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
ICefViewDelegate</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="OnGetMinimumSize-ICefView-TCefSize-"></span><code>procedure <strong>OnGetMinimumSize</strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; var aResult : <a href="uCEFTypes.TCefSize.html">TCefSize</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#OnGetMinimumSize-ICefView-TCefSize-">TCefViewDelegateOwn.OnGetMinimumSize</a>.</p><p>
|
||||
Return the minimum size for |view|. </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="OnGetMaximumSize-ICefView-TCefSize-"></span><code>procedure <strong>OnGetMaximumSize</strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; var aResult : <a href="uCEFTypes.TCefSize.html">TCefSize</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#OnGetMaximumSize-ICefView-TCefSize-">TCefViewDelegateOwn.OnGetMaximumSize</a>.</p><p>
|
||||
Return the maximum size for |view|. </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="OnGetHeightForWidth-ICefView-Integer-Integer-"></span><code>procedure <strong>OnGetHeightForWidth</strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; width: Integer; var aResult: Integer); 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#OnGetHeightForWidth-ICefView-Integer-Integer-">TCefViewDelegateOwn.OnGetHeightForWidth</a>.</p><p>
|
||||
Return the height necessary to display |view| with the provided |width|. If not specified the result of get_preferred_size().height will be used by default. Override if |view|'s preferred height depends upon the width (for example, with Labels). </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="OnParentViewChanged-ICefView-boolean-ICefView-"></span><code>procedure <strong>OnParentViewChanged</strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; added: boolean; const parent: <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#OnParentViewChanged-ICefView-boolean-ICefView-">TCefViewDelegateOwn.OnParentViewChanged</a>.</p><p>
|
||||
Called when the parent of |view| has changed. If |view| is being added to |parent| then |added| will be true (1). If |view| is being removed from |parent| then |added| will be false (0). If |view| is being reparented the remove notification will be sent before the add notification. Do not modify the view hierarchy in this callback. </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="OnChildViewChanged-ICefView-boolean-ICefView-"></span><code>procedure <strong>OnChildViewChanged</strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; added: boolean; const child: <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#OnChildViewChanged-ICefView-boolean-ICefView-">TCefViewDelegateOwn.OnChildViewChanged</a>.</p><p>
|
||||
Called when a child of |view| has changed. If |child| is being added to |view| then |added| will be true (1). If |child| is being removed from |view| then |added| will be false (0). If |child| is being reparented the remove notification will be sent to the old parent before the add notification is sent to the new parent. Do not modify the view hierarchy in this callback. </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="OnWindowChanged-ICefView-boolean-"></span><code>procedure <strong>OnWindowChanged</strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; added: 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="uCEFViewDelegate.TCefViewDelegateOwn.html#OnWindowChanged-ICefView-boolean-">TCefViewDelegateOwn.OnWindowChanged</a>.</p><p>
|
||||
Called when |view| is added or removed from the ICefWindow. </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="OnLayoutChanged-ICefView-TCefRect-"></span><code>procedure <strong>OnLayoutChanged</strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; new_bounds: <a href="uCEFTypes.TCefRect.html">TCefRect</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#OnLayoutChanged-ICefView-TCefRect-">TCefViewDelegateOwn.OnLayoutChanged</a>.</p><p>
|
||||
Called when the layout of |view| has changed. </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="OnFocus-ICefView-"></span><code>procedure <strong>OnFocus</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#OnFocus-ICefView-">TCefViewDelegateOwn.OnFocus</a>.</p><p>
|
||||
Called when |view| gains focus. </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="OnBlur-ICefView-"></span><code>procedure <strong>OnBlur</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#OnBlur-ICefView-">TCefViewDelegateOwn.OnBlur</a>.</p><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="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">
|
||||
<p>
|
||||
ICefBrowserViewDelegate</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="OnBrowserDestroyed-ICefBrowserView-ICefBrowser-"></span><code>procedure <strong>OnBrowserDestroyed</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">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFBrowserViewDelegate.TCefBrowserViewDelegateOwn.html#OnBrowserDestroyed-ICefBrowserView-ICefBrowser-">TCefBrowserViewDelegateOwn.OnBrowserDestroyed</a>.</p><p>
|
||||
Called when |browser| associated with |browser_view| is destroyed. Release all references to |browser| and do not attempt to execute any functions on |browser| after this callback returns. This function will be called before ICefLifeSpanHandler.OnBeforeClose() is called for |browser|. </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="OnGetDelegateForPopupBrowserView-ICefBrowserView-TCefBrowserSettings-ICefClient-boolean-ICefBrowserViewDelegate-"></span><code>procedure <strong>OnGetDelegateForPopupBrowserView</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><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFBrowserViewDelegate.TCefBrowserViewDelegateOwn.html#OnGetDelegateForPopupBrowserView-ICefBrowserView-TCefBrowserSettings-ICefClient-boolean-ICefBrowserViewDelegate-">TCefBrowserViewDelegateOwn.OnGetDelegateForPopupBrowserView</a>.</p><p>
|
||||
Called before a new popup BrowserView is created. The popup originated from |browser_view|. |settings| and |client| are the values returned from ICefLifeSpanHandler.OnBeforePopup(). |is_devtools| will be true (1) if the popup will be a DevTools browser. Return the delegate that will be used for the new popup BrowserView. </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="OnPopupBrowserViewCreated-ICefBrowserView-ICefBrowserView-boolean-boolean-"></span><code>procedure <strong>OnPopupBrowserViewCreated</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><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFBrowserViewDelegate.TCefBrowserViewDelegateOwn.html#OnPopupBrowserViewCreated-ICefBrowserView-ICefBrowserView-boolean-boolean-">TCefBrowserViewDelegateOwn.OnPopupBrowserViewCreated</a>.</p><p>
|
||||
Called after |popup_browser_view| is created. This function will be called after ICefLifeSpanHandler.OnAfterCreated() and OnBrowserCreated() are called for the new popup browser. The popup originated from |browser_view|. |is_devtools| will be true (1) if the popup is a DevTools browser. Optionally add |popup_browser_view| to the views hierarchy yourself and return true (1). Otherwise return false (0) and a default ICefWindow will be created for the popup. </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="OnGetChromeToolbarType-ICefBrowserView-TCefChromeToolbarType-"></span><code>procedure <strong>OnGetChromeToolbarType</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><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFBrowserViewDelegate.TCefBrowserViewDelegateOwn.html#OnGetChromeToolbarType-ICefBrowserView-TCefChromeToolbarType-">TCefBrowserViewDelegateOwn.OnGetChromeToolbarType</a>.</p><p>
|
||||
Returns the Chrome toolbar type that will be available via ICefBrowserView.GetChromeToolbar(). See that function for related documentation. </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="OnUseFramelessWindowForPictureInPicture-ICefBrowserView-boolean-"></span><code>procedure <strong>OnUseFramelessWindowForPictureInPicture</strong>(const browser_view: <a href="uCEFInterfaces.ICefBrowserView.html">ICefBrowserView</a>; var aResult: 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="uCEFBrowserViewDelegate.TCefBrowserViewDelegateOwn.html#OnUseFramelessWindowForPictureInPicture-ICefBrowserView-boolean-">TCefBrowserViewDelegateOwn.OnUseFramelessWindowForPictureInPicture</a>.</p><p>
|
||||
Return true (1) to create frameless windows for Document picture-in- picture popups. Content in frameless windows should specify draggable regions using "-webkit-app-region: drag" CSS. </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="OnGestureCommand-ICefBrowserView-TCefGestureCommand-boolean-"></span><code>procedure <strong>OnGestureCommand</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><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFBrowserViewDelegate.TCefBrowserViewDelegateOwn.html#OnGestureCommand-ICefBrowserView-TCefGestureCommand-boolean-">TCefBrowserViewDelegateOwn.OnGestureCommand</a>.</p><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="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>
|
||||
<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>
|
37
docs/html/uCEFBrowserViewDelegate.html
Normal file
37
docs/html/uCEFBrowserViewDelegate.html
Normal file
@ -0,0 +1,37 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBrowserViewDelegate</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 uCEFBrowserViewDelegate</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="uCEFBrowserViewDelegate.TCefBrowserViewDelegateRef.html"><code>TCefBrowserViewDelegateRef</code></a></td>
|
||||
<td class="itemdesc"> </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname">Class <a class="bold" href="uCEFBrowserViewDelegate.TCefBrowserViewDelegateOwn.html"><code>TCefBrowserViewDelegateOwn</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="list">
|
||||
<td class="itemname">Class <a class="bold" href="uCEFBrowserViewDelegate.TCustomBrowserViewDelegate.html"><code>TCustomBrowserViewDelegate</code></a></td>
|
||||
<td class="itemdesc"> This class handles all the ICefBrowserViewDelegate methods which call the ICefBrowserViewDelegateEvents methods. ICefBrowserViewDelegateEvents will be implemented by the control receiving the ICefBrowserViewDelegate events. </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>
|
277
docs/html/uCEFBrowserWindow.TBrowserWindow.html
Normal file
277
docs/html/uCEFBrowserWindow.TBrowserWindow.html
Normal file
@ -0,0 +1,277 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBrowserWindow: Class TBrowserWindow</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="TBrowserWindow"></span><h1 class="cio">Class TBrowserWindow</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"><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="uCEFBrowserWindow.html">uCEFBrowserWindow</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TBrowserWindow = class(<a class="normal" href="uCEFLinkedWinControlBase.TCEFLinkedWinControlBase.html">TCEFLinkedWinControlBase</a>)</code></p>
|
||||
<h2 class="description">Description</h2>
|
||||
<p>
|
||||
TBrowserWindow
|
||||
|
||||
<p>A simple "drop on the Form" component for an full embedded browser.
|
||||
|
||||
<p>The component handles most events required by CEF. The only additions needed to be made by the User in their code are:
|
||||
|
||||
<p>* Implement TForm.OnCloseQuery CEF must be able to destroy the browser, before the main form is closed. (That is while the Form still has a Handle, and the event loop is still running) It is adviced to do the same for any other form (other than the main form).
|
||||
|
||||
<p>TForm.OnCloseQuery should call (for each TBrowserWindow) TBrowserWindow.CloseBrowser(True); The Form can be allowed to close by setting (checking for all BrowserWindows) CanClose := BrowserWindow.IsClosed;
|
||||
|
||||
<p>On Windows and Linux it is also possible to Destroy the TBrowserWindow. This will wait for the browser to close, and after that the form can be closed. - However, this must be done in OnCloseQuery (or before). - Once TForm.Destroy is called, it is to late. By that time the event loop no longer runs.
|
||||
|
||||
<p>*** IMPORTANT: (MacOS) *** On MacOs CloseBrowser() must be called, and the *event* must be awaited. Neither destroying the component, nor waiting with App.ProcessMessages will work. On MacOS, CEF will not finish until the OnCloseQuery event returned to the main event loop. (Hence ProcessMessage does not work). The same is true for any action taken in OnClick or other event. CEF always waits for any event to return to the main event loop. See also the BrowserWindowEX example how that affect modal forms.
|
||||
|
||||
<p>* Implement TBrowserWindow.OnBrowserClosed If TForm.OnCloseQuery called CloseBrowser, this callback can be used to call Form.Close again (the callback should check if the browser was closed by OnCloseQuery.
|
||||
|
||||
<p>* On Windows: handle the WM_ENTERMENULOOP and WM_EXITMENULOOP, as shown in examples
|
||||
|
||||
<p>* Optional prevent pop-up windows by implementing Chromium.BeforePopup Chromium.OpenUrlFromTab</p>
|
||||
<span id="PasDoc-Hierarchy"></span><h2 class="hierarchy">Hierarchy</h2>
|
||||
<ul class="hierarchy"><li class="ancestor">TWinControl</li>
|
||||
<li class="ancestor"><a class="normal" href="uCEFWinControl.TCEFWinControl.html">TCEFWinControl</a></li>
|
||||
<li class="ancestor"><a class="normal" href="uCEFLinkedWinControlBase.TCEFLinkedWinControlBase.html">TCEFLinkedWinControlBase</a></li>
|
||||
<li class="thisitem">TBrowserWindow</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>function <strong><a href="uCEFBrowserWindow.TBrowserWindow.html#GetChromium">GetChromium</a></strong>: <a href="uCEFChromium.TChromium.html">TChromium</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="uCEFBrowserWindow.TBrowserWindow.html#DestroyHandle">DestroyHandle</a></strong>; 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="uCEFBrowserWindow.TBrowserWindow.html#RealizeBounds">RealizeBounds</a></strong>; 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="uCEFBrowserWindow.TBrowserWindow.html#DoEnter">DoEnter</a></strong>; 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="uCEFBrowserWindow.TBrowserWindow.html#DoExit">DoExit</a></strong>; 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="uCEFBrowserWindow.TBrowserWindow.html#DoOnCreated">DoOnCreated</a></strong>;</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="uCEFBrowserWindow.TBrowserWindow.html#DoOnClosed-PtrInt-">DoOnClosed</a></strong>(Data: PtrInt);</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="uCEFBrowserWindow.TBrowserWindow.html#DoOnFocus-PtrInt-">DoOnFocus</a></strong>(Data: PtrInt);</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="uCEFBrowserWindow.TBrowserWindow.html#Create-TComponent-">Create</a></strong>(AOwner: TComponent); 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>destructor <strong><a href="uCEFBrowserWindow.TBrowserWindow.html#Destroy">Destroy</a></strong>; 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>procedure <strong><a href="uCEFBrowserWindow.TBrowserWindow.html#CreateHandle">CreateHandle</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>procedure <strong><a href="uCEFBrowserWindow.TBrowserWindow.html#CloseBrowser-boolean-">CloseBrowser</a></strong>(aForceClose: 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="uCEFBrowserWindow.TBrowserWindow.html#WaitForBrowserClosed">WaitForBrowserClosed</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="uCEFBrowserWindow.TBrowserWindow.html#IsClosed">IsClosed</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>procedure <strong><a href="uCEFBrowserWindow.TBrowserWindow.html#LoadURL-ustring-">LoadURL</a></strong>(aURL: <a href="uCEFTypes.html#ustring">ustring</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="published.gif" alt="Published" title="Published"></a></td>
|
||||
<td class="itemcode"><code>property <strong><a href="uCEFBrowserWindow.TBrowserWindow.html#Chromium">Chromium</a></strong>: <a href="uCEFBrowserWindow.TEmbeddedChromium.html">TEmbeddedChromium</a> read GetEmbeddedChromium;</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="uCEFBrowserWindow.TBrowserWindow.html#OnBrowserCreated">OnBrowserCreated</a></strong> : TNotifyEvent read FOnBrowserCreated write FOnBrowserCreated;</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="uCEFBrowserWindow.TBrowserWindow.html#OnBrowserClosed">OnBrowserClosed</a></strong> : TNotifyEvent read FOnBrowserClosed write FOnBrowserClosed;</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="GetChromium"></span><code>function <strong>GetChromium</strong>: <a href="uCEFChromium.TChromium.html">TChromium</a>; override;</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="DestroyHandle"></span><code>procedure <strong>DestroyHandle</strong>; override;</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="RealizeBounds"></span><code>procedure <strong>RealizeBounds</strong>; override;</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="DoEnter"></span><code>procedure <strong>DoEnter</strong>; override;</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="DoExit"></span><code>procedure <strong>DoExit</strong>; override;</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="DoOnCreated"></span><code>procedure <strong>DoOnCreated</strong>;</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="DoOnClosed-PtrInt-"></span><code>procedure <strong>DoOnClosed</strong>(Data: PtrInt);</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="DoOnFocus-PtrInt-"></span><code>procedure <strong>DoOnFocus</strong>(Data: PtrInt);</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="Create-TComponent-"></span><code>constructor <strong>Create</strong>(AOwner: TComponent); override;</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="Destroy"></span><code>destructor <strong>Destroy</strong>; override;</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="CreateHandle"></span><code>procedure <strong>CreateHandle</strong>; override;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFWinControl.TCEFWinControl.html#CreateHandle">TCEFWinControl.CreateHandle</a>.</p><p>
|
||||
Exposes the CreateHandle procedure to create the Handle at any time. </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="CloseBrowser-boolean-"></span><code>procedure <strong>CloseBrowser</strong>(aForceClose: 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="WaitForBrowserClosed"></span><code>procedure <strong>WaitForBrowserClosed</strong>;</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="IsClosed"></span><code>function <strong>IsClosed</strong>: 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="LoadURL-ustring-"></span><code>procedure <strong>LoadURL</strong>(aURL: <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>
|
||||
</table>
|
||||
<h3 class="detail">Properties</h3>
|
||||
<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="Chromium"></span><code>property <strong>Chromium</strong>: <a href="uCEFBrowserWindow.TEmbeddedChromium.html">TEmbeddedChromium</a> read GetEmbeddedChromium;</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="published.gif" alt="Published" title="Published"></a></td>
|
||||
<td class="itemcode"><span id="OnBrowserCreated"></span><code>property <strong>OnBrowserCreated</strong> : TNotifyEvent read FOnBrowserCreated write FOnBrowserCreated;</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="published.gif" alt="Published" title="Published"></a></td>
|
||||
<td class="itemcode"><span id="OnBrowserClosed"></span><code>property <strong>OnBrowserClosed</strong> : TNotifyEvent read FOnBrowserClosed write FOnBrowserClosed;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
OnBrowserClosed will not be called, if the TBrowserWindow is destroyed/destroying before the browser is closed.</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>
|
262
docs/html/uCEFBrowserWindow.TChromiumWrapper.html
Normal file
262
docs/html/uCEFBrowserWindow.TChromiumWrapper.html
Normal file
@ -0,0 +1,262 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBrowserWindow: Class TChromiumWrapper</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="TChromiumWrapper"></span><h1 class="cio">Class TChromiumWrapper</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"><a class="section" href="#PasDoc-NestedTypes">Nested Types</a></div><div class="one_section"><a class="section" href="#PasDoc-Fields">Fields</a></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="uCEFBrowserWindow.html">uCEFBrowserWindow</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TChromiumWrapper = class(TObject)</code></p>
|
||||
<h2 class="description">Description</h2>
|
||||
<p>
|
||||
TChromiumWrapper</p>
|
||||
<span id="PasDoc-Hierarchy"></span><h2 class="hierarchy">Hierarchy</h2>
|
||||
<ul class="hierarchy"><li class="ancestor">TObject</li>
|
||||
<li class="thisitem">TChromiumWrapper</li></ul><h2 class="overview">Overview</h2>
|
||||
<span id="PasDoc-NestedTypes"></span><h3 class="summary">Nested Types</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><strong><a href="uCEFBrowserWindow.TChromiumWrapper.html#TWrapperState">TWrapperState</a></strong> = (...);</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFBrowserWindow.TChromiumWrapper.html#FChromium">FChromium</a></strong>: <a href="uCEFBrowserWindow.TEmbeddedChromium.html">TEmbeddedChromium</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="uCEFBrowserWindow.TChromiumWrapper.html#FWrapperState">FWrapperState</a></strong>: <a href="uCEFBrowserWindow.TChromiumWrapper.html#TWrapperState">TWrapperState</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><strong><a href="uCEFBrowserWindow.TChromiumWrapper.html#FBrowserWindow">FBrowserWindow</a></strong>: <a href="uCEFBrowserWindow.TBrowserWindow.html">TBrowserWindow</a>;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<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="uCEFBrowserWindow.TChromiumWrapper.html#DoOnAfterCreated-TObject-">DoOnAfterCreated</a></strong>(Sender: TObject);</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="uCEFBrowserWindow.TChromiumWrapper.html#DoOnBeforeClose-TObject-">DoOnBeforeClose</a></strong>(Sender: TObject);</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="uCEFBrowserWindow.TChromiumWrapper.html#BrowserThread_OnClose-TObject-ICefBrowser-TCefCloseBrowserAction-">BrowserThread_OnClose</a></strong>(Sender: TObject; const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; var aAction : <a href="uCEFTypes.html#TCefCloseBrowserAction">TCefCloseBrowserAction</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="uCEFBrowserWindow.TChromiumWrapper.html#BrowserThread_OnGotFocus-TObject-ICefBrowser-">BrowserThread_OnGotFocus</a></strong>(Sender: TObject; 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="uCEFBrowserWindow.TChromiumWrapper.html#MaybeDestroy">MaybeDestroy</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>constructor <strong><a href="uCEFBrowserWindow.TChromiumWrapper.html#Create-TBrowserWindow-">Create</a></strong>(AOwner: <a href="uCEFBrowserWindow.TBrowserWindow.html">TBrowserWindow</a>); reintroduce;</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>destructor <strong><a href="uCEFBrowserWindow.TChromiumWrapper.html#Destroy">Destroy</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>function <strong><a href="uCEFBrowserWindow.TChromiumWrapper.html#CreateBrowser">CreateBrowser</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>procedure <strong><a href="uCEFBrowserWindow.TChromiumWrapper.html#LoadURL-ustring-">LoadURL</a></strong>(aURL: <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>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFBrowserWindow.TChromiumWrapper.html#CloseBrowser-boolean-">CloseBrowser</a></strong>(aForceClose: 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="uCEFBrowserWindow.TChromiumWrapper.html#IsClosed">IsClosed</a></strong>: 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="uCEFBrowserWindow.TChromiumWrapper.html#WaitForBrowserClosed">WaitForBrowserClosed</a></strong>;</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="published.gif" alt="Published" title="Published"></a></td>
|
||||
<td class="itemcode"><code>property <strong><a href="uCEFBrowserWindow.TChromiumWrapper.html#Chromium">Chromium</a></strong>: <a href="uCEFBrowserWindow.TEmbeddedChromium.html">TEmbeddedChromium</a> read <a href="uCEFBrowserWindow.TChromiumWrapper.html#FChromium">FChromium</a>;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2 class="description">Description</h2>
|
||||
<h3 class="detail">Nested Types</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="TWrapperState"></span><code><strong>TWrapperState</strong> = (...);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</p><h6 class="description_section">Values</h6>
|
||||
<ul>
|
||||
<li>
|
||||
<span id="wsNone">wsNone</span></li>
|
||||
<li>
|
||||
<span id="wsWaitingForClose">wsWaitingForClose</span></li>
|
||||
<li>
|
||||
<span id="wsSentCloseEventAfterWait">wsSentCloseEventAfterWait</span></li>
|
||||
<li>
|
||||
<span id="wsDestroyAfterWait">wsDestroyAfterWait</span></li>
|
||||
</ul>
|
||||
</td></tr>
|
||||
</table>
|
||||
<h3 class="detail">Fields</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="FChromium"></span><code><strong>FChromium</strong>: <a href="uCEFBrowserWindow.TEmbeddedChromium.html">TEmbeddedChromium</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="FWrapperState"></span><code><strong>FWrapperState</strong>: <a href="uCEFBrowserWindow.TChromiumWrapper.html#TWrapperState">TWrapperState</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="FBrowserWindow"></span><code><strong>FBrowserWindow</strong>: <a href="uCEFBrowserWindow.TBrowserWindow.html">TBrowserWindow</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">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="DoOnAfterCreated-TObject-"></span><code>procedure <strong>DoOnAfterCreated</strong>(Sender: TObject);</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="DoOnBeforeClose-TObject-"></span><code>procedure <strong>DoOnBeforeClose</strong>(Sender: TObject);</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="BrowserThread_OnClose-TObject-ICefBrowser-TCefCloseBrowserAction-"></span><code>procedure <strong>BrowserThread_OnClose</strong>(Sender: TObject; const browser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>; var aAction : <a href="uCEFTypes.html#TCefCloseBrowserAction">TCefCloseBrowserAction</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="BrowserThread_OnGotFocus-TObject-ICefBrowser-"></span><code>procedure <strong>BrowserThread_OnGotFocus</strong>(Sender: TObject; 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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="MaybeDestroy"></span><code>procedure <strong>MaybeDestroy</strong>;</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="Create-TBrowserWindow-"></span><code>constructor <strong>Create</strong>(AOwner: <a href="uCEFBrowserWindow.TBrowserWindow.html">TBrowserWindow</a>); reintroduce;</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="Destroy"></span><code>destructor <strong>Destroy</strong>; override;</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="CreateBrowser"></span><code>function <strong>CreateBrowser</strong>: 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="LoadURL-ustring-"></span><code>procedure <strong>LoadURL</strong>(aURL: <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>
|
||||
</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="CloseBrowser-boolean-"></span><code>procedure <strong>CloseBrowser</strong>(aForceClose: 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="IsClosed"></span><code>function <strong>IsClosed</strong>: 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="WaitForBrowserClosed"></span><code>procedure <strong>WaitForBrowserClosed</strong>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
WaitForBrowserClosed calls ProcessMessages. It therefore is possible that the TBrowserWindow will be destroyed when this method returns. It is the callers responsibility to take any necessary precaution.</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="published.gif" alt="Published" title="Published"></a></td>
|
||||
<td class="itemcode"><span id="Chromium"></span><code>property <strong>Chromium</strong>: <a href="uCEFBrowserWindow.TEmbeddedChromium.html">TEmbeddedChromium</a> read <a href="uCEFBrowserWindow.TChromiumWrapper.html#FChromium">FChromium</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>
|
299
docs/html/uCEFBrowserWindow.TEmbeddedChromium.html
Normal file
299
docs/html/uCEFBrowserWindow.TEmbeddedChromium.html
Normal file
@ -0,0 +1,299 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBrowserWindow: Class TEmbeddedChromium</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="TEmbeddedChromium"></span><h1 class="cio">Class TEmbeddedChromium</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"><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="uCEFBrowserWindow.html">uCEFBrowserWindow</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TEmbeddedChromium = class(<a class="normal" href="uCEFChromium.TChromium.html">TChromium</a>)</code></p>
|
||||
<h2 class="description">Description</h2>
|
||||
<p>
|
||||
TEmbeddedChromium
|
||||
|
||||
<p>1) TEmbeddedChromium keeps track of the browser while it is created. This allows for CloseBrowser to function, even if the Browser object is not yet known. Also calls to "LoadUrl" are cached until the browser object is created.
|
||||
|
||||
<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>
|
||||
<span id="PasDoc-Hierarchy"></span><h2 class="hierarchy">Hierarchy</h2>
|
||||
<ul class="hierarchy"><li class="ancestor">TObject</li>
|
||||
<li class="ancestor">TPersistent</li>
|
||||
<li class="ancestor">TComponent</li>
|
||||
<li class="ancestor"><a class="normal" href="uCEFChromiumCore.TChromiumCore.html">TChromiumCore</a></li>
|
||||
<li class="ancestor"><a class="normal" href="uCEFChromium.TChromium.html">TChromium</a></li>
|
||||
<li class="thisitem">TEmbeddedChromium</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>function <strong><a href="uCEFBrowserWindow.TEmbeddedChromium.html#GetHasBrowser">GetHasBrowser</a></strong>: boolean; reintroduce;</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="uCEFBrowserWindow.TEmbeddedChromium.html#doOnBeforeClose-ICefBrowser-">doOnBeforeClose</a></strong>(const ABrowser: <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="uCEFBrowserWindow.TEmbeddedChromium.html#doOnAfterCreated-ICefBrowser-">doOnAfterCreated</a></strong>(const ABrowser: <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="uCEFBrowserWindow.TEmbeddedChromium.html#doOnGotFocus-ICefBrowser-">doOnGotFocus</a></strong>(const Abrowser: <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>function <strong><a href="uCEFBrowserWindow.TEmbeddedChromium.html#MustCreateFocusHandler">MustCreateFocusHandler</a></strong>: boolean; 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="uCEFBrowserWindow.TEmbeddedChromium.html#DoCreated-PtrInt-">DoCreated</a></strong>(Data: PtrInt);</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="uCEFBrowserWindow.TEmbeddedChromium.html#DoOnClosed-PtrInt-">DoOnClosed</a></strong>(Data: PtrInt);</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="uCEFBrowserWindow.TEmbeddedChromium.html#Create-TComponent-">Create</a></strong>(AOwner: TComponent); 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>destructor <strong><a href="uCEFBrowserWindow.TEmbeddedChromium.html#Destroy">Destroy</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>function <strong><a href="uCEFBrowserWindow.TEmbeddedChromium.html#CreateBrowser-TWinControl-ustring-ICefRequestContext-ICefDictionaryValue-">CreateBrowser</a></strong>(const aBrowserParent: TWinControl = nil; const aWindowName: <a href="uCEFTypes.html#ustring">ustring</a> = ''; const aContext: <a href="uCEFInterfaces.ICefRequestContext.html">ICefRequestContext</a> = nil; const aExtraInfo: <a href="uCEFInterfaces.ICefDictionaryValue.html">ICefDictionaryValue</a> = nil): boolean; overload; 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>function <strong><a href="uCEFBrowserWindow.TEmbeddedChromium.html#CreateBrowser-TCefWindowHandle-TRect-ustring-ICefRequestContext-ICefDictionaryValue-boolean-">CreateBrowser</a></strong>(aParentHandle: <a href="uCEFTypes.html#TCefWindowHandle">TCefWindowHandle</a>; aParentRect: TRect; const aWindowName: <a href="uCEFTypes.html#ustring">ustring</a> = ''; const aContext: <a href="uCEFInterfaces.ICefRequestContext.html">ICefRequestContext</a> = nil; const aExtraInfo: <a href="uCEFInterfaces.ICefDictionaryValue.html">ICefDictionaryValue</a> = nil; aForceAsPopup : boolean = False): boolean; overload; 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>function <strong><a href="uCEFBrowserWindow.TEmbeddedChromium.html#CreateBrowser-ustring-TCEFBrowserViewComponent-ICefRequestContext-ICefDictionaryValue-">CreateBrowser</a></strong>(const aURL: <a href="uCEFTypes.html#ustring">ustring</a>; const aBrowserViewComp: <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html">TCEFBrowserViewComponent</a>; const aContext: <a href="uCEFInterfaces.ICefRequestContext.html">ICefRequestContext</a> = nil; const aExtraInfo: <a href="uCEFInterfaces.ICefDictionaryValue.html">ICefDictionaryValue</a> = nil): boolean; overload; 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>procedure <strong><a href="uCEFBrowserWindow.TEmbeddedChromium.html#CloseBrowser-boolean-">CloseBrowser</a></strong>(aForceClose: boolean); reintroduce;</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="uCEFBrowserWindow.TEmbeddedChromium.html#LoadURL-ustring-ustring-">LoadURL</a></strong>(const aURL: <a href="uCEFTypes.html#ustring">ustring</a>; const aFrameName: <a href="uCEFTypes.html#ustring">ustring</a> = ''); overload;</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="uCEFBrowserWindow.TEmbeddedChromium.html#HasBrowser">HasBrowser</a></strong>: Boolean read <a href="uCEFBrowserWindow.TEmbeddedChromium.html#GetHasBrowser">GetHasBrowser</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="uCEFBrowserWindow.TEmbeddedChromium.html#IsClosing">IsClosing</a></strong> : Boolean read GetIsClosing;</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="uCEFBrowserWindow.TEmbeddedChromium.html#InternalOnBrowserCreated">InternalOnBrowserCreated</a></strong> : TNotifyEvent read FInternalOnBrowserCreated write FInternalOnBrowserCreated;</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="uCEFBrowserWindow.TEmbeddedChromium.html#InternalOnBrowserClosed">InternalOnBrowserClosed</a></strong> : TNotifyEvent read FInternalOnBrowserClosed write FInternalOnBrowserClosed;</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="uCEFBrowserWindow.TEmbeddedChromium.html#InternalOnGotFocus">InternalOnGotFocus</a></strong> : TOnGotFocus read FInternalOnGotFocus write FInternalOnGotFocus;</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="GetHasBrowser"></span><code>function <strong>GetHasBrowser</strong>: boolean; reintroduce;</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="doOnBeforeClose-ICefBrowser-"></span><code>procedure <strong>doOnBeforeClose</strong>(const ABrowser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>); override;</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="doOnAfterCreated-ICefBrowser-"></span><code>procedure <strong>doOnAfterCreated</strong>(const ABrowser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>); override;</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="doOnGotFocus-ICefBrowser-"></span><code>procedure <strong>doOnGotFocus</strong>(const Abrowser: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>); override;</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="MustCreateFocusHandler"></span><code>function <strong>MustCreateFocusHandler</strong>: boolean; override;</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="DoCreated-PtrInt-"></span><code>procedure <strong>DoCreated</strong>(Data: PtrInt);</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="DoOnClosed-PtrInt-"></span><code>procedure <strong>DoOnClosed</strong>(Data: PtrInt);</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="Create-TComponent-"></span><code>constructor <strong>Create</strong>(AOwner: TComponent); override;</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="Destroy"></span><code>destructor <strong>Destroy</strong>; override;</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="CreateBrowser-TWinControl-ustring-ICefRequestContext-ICefDictionaryValue-"></span><code>function <strong>CreateBrowser</strong>(const aBrowserParent: TWinControl = nil; const aWindowName: <a href="uCEFTypes.html#ustring">ustring</a> = ''; const aContext: <a href="uCEFInterfaces.ICefRequestContext.html">ICefRequestContext</a> = nil; const aExtraInfo: <a href="uCEFInterfaces.ICefDictionaryValue.html">ICefDictionaryValue</a> = nil): boolean; overload; override;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFChromium.TChromium.html#CreateBrowser-TWinControl-ustring-ICefRequestContext-ICefDictionaryValue-">TChromium.CreateBrowser</a>.</p><p>
|
||||
Used to create the browser after the global request context has been initialized. You need to set all properties and events before calling this function because it will only create the internal handlers needed for those events and the property values will be used in the browser initialization. The browser will be fully initialized when the TChromiumCore.OnAfterCreated event is triggered. </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="CreateBrowser-TCefWindowHandle-TRect-ustring-ICefRequestContext-ICefDictionaryValue-boolean-"></span><code>function <strong>CreateBrowser</strong>(aParentHandle: <a href="uCEFTypes.html#TCefWindowHandle">TCefWindowHandle</a>; aParentRect: TRect; const aWindowName: <a href="uCEFTypes.html#ustring">ustring</a> = ''; const aContext: <a href="uCEFInterfaces.ICefRequestContext.html">ICefRequestContext</a> = nil; const aExtraInfo: <a href="uCEFInterfaces.ICefDictionaryValue.html">ICefDictionaryValue</a> = nil; aForceAsPopup : boolean = False): boolean; overload; override;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFChromiumCore.TChromiumCore.html#CreateBrowser-TCefWindowHandle-TRect-ustring-ICefRequestContext-ICefDictionaryValue-boolean-">TChromiumCore.CreateBrowser</a>.</p><p>
|
||||
|
||||
|
||||
<p>Used to create the browser after the global request context has been initialized. You need to set all properties and events before calling this function because it will only create the internal handlers needed for those events and the property values will be used in the browser initialization.
|
||||
|
||||
<p>The browser will be fully initialized when the TChromiumCore.OnAfterCreated event is triggered.
|
||||
|
||||
<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="CreateBrowser-ustring-TCEFBrowserViewComponent-ICefRequestContext-ICefDictionaryValue-"></span><code>function <strong>CreateBrowser</strong>(const aURL: <a href="uCEFTypes.html#ustring">ustring</a>; const aBrowserViewComp: <a href="uCEFBrowserViewComponent.TCEFBrowserViewComponent.html">TCEFBrowserViewComponent</a>; const aContext: <a href="uCEFInterfaces.ICefRequestContext.html">ICefRequestContext</a> = nil; const aExtraInfo: <a href="uCEFInterfaces.ICefDictionaryValue.html">ICefDictionaryValue</a> = nil): boolean; overload; override;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFChromiumCore.TChromiumCore.html#CreateBrowser-ustring-TCEFBrowserViewComponent-ICefRequestContext-ICefDictionaryValue-">TChromiumCore.CreateBrowser</a>.</p><p>
|
||||
|
||||
|
||||
<p>Used to create the browser after the global request context has been initialized. You need to set all properties and events before calling this function because it will only create the internal handlers needed for those events and the property values will be used in the browser initialization.
|
||||
|
||||
<p>The browser will be fully initialized when the TChromiumCore.OnAfterCreated event is triggered.
|
||||
|
||||
<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="CloseBrowser-boolean-"></span><code>procedure <strong>CloseBrowser</strong>(aForceClose: boolean); reintroduce;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
CloseBrowser will work, even if the browser is still in creation, and Initialized is still 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="LoadURL-ustring-ustring-"></span><code>procedure <strong>LoadURL</strong>(const aURL: <a href="uCEFTypes.html#ustring">ustring</a>; const aFrameName: <a href="uCEFTypes.html#ustring">ustring</a> = ''); overload;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
LoadURL will work, even if the browser is still in creation, and Initialized is still false</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="HasBrowser"></span><code>property <strong>HasBrowser</strong>: Boolean read <a href="uCEFBrowserWindow.TEmbeddedChromium.html#GetHasBrowser">GetHasBrowser</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="IsClosing"></span><code>property <strong>IsClosing</strong> : Boolean read GetIsClosing;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Includes browser in creation</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="InternalOnBrowserCreated"></span><code>property <strong>InternalOnBrowserCreated</strong> : TNotifyEvent read FInternalOnBrowserCreated write FInternalOnBrowserCreated;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
- Events for use by the Owning component ONLY - Events are called in main thread - OnBrowserCreated: the parent event may be called when procedure Initialized is still false. - OnBrowserCreated: may not be called, if the CloseBrowser has already been called</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="InternalOnBrowserClosed"></span><code>property <strong>InternalOnBrowserClosed</strong> : TNotifyEvent read FInternalOnBrowserClosed write FInternalOnBrowserClosed;</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="InternalOnGotFocus"></span><code>property <strong>InternalOnGotFocus</strong> : TOnGotFocus read FInternalOnGotFocus write FInternalOnGotFocus;</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>
|
52
docs/html/uCEFBrowserWindow.html
Normal file
52
docs/html/uCEFBrowserWindow.html
Normal file
@ -0,0 +1,52 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBrowserWindow</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 uCEFBrowserWindow</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"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></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="uCEFBrowserWindow.TEmbeddedChromium.html"><code>TEmbeddedChromium</code></a></td>
|
||||
<td class="itemdesc"> </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname">Class <a class="bold" href="uCEFBrowserWindow.TChromiumWrapper.html"><code>TChromiumWrapper</code></a></td>
|
||||
<td class="itemdesc"> </td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemname">Class <a class="bold" href="uCEFBrowserWindow.TBrowserWindow.html"><code>TBrowserWindow</code></a></td>
|
||||
<td class="itemdesc"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3>
|
||||
<table class="summary wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFBrowserWindow.html#Register">Register</a></strong>;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2 class="description">Description</h2>
|
||||
<h3 class="detail">Functions and Procedures</h3>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="Register"></span><code>procedure <strong>Register</strong>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<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>
|
2091
docs/html/uCEFBufferPanel.TBufferPanel.html
Normal file
2091
docs/html/uCEFBufferPanel.TBufferPanel.html
Normal file
File diff suppressed because it is too large
Load Diff
78
docs/html/uCEFBufferPanel.html
Normal file
78
docs/html/uCEFBufferPanel.html
Normal file
@ -0,0 +1,78 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFBufferPanel</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 uCEFBufferPanel</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"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section"><a class="section" href="#PasDoc-Types">Types</a></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="uCEFBufferPanel.TBufferPanel.html"><code>TBufferPanel</code></a></td>
|
||||
<td class="itemdesc"> 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. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3>
|
||||
<table class="summary wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFBufferPanel.html#Register">Register</a></strong>;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<span id="PasDoc-Types"></span><h3 class="summary">Types</h3>
|
||||
<table class="summary wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFBufferPanel.html#TOnIMECommitTextEvent-TObject-ustring-PCefRange-integer-">TOnIMECommitTextEvent</a></strong> = procedure(Sender: TObject; const aText : <a href="uCEFTypes.html#ustring">ustring</a>; const replacement_range : <a href="uCEFTypes.html#PCefRange">PCefRange</a>; relative_cursor_pos : integer) of object;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemcode"><code><strong><a href="uCEFBufferPanel.html#TOnIMESetCompositionEvent-TObject-ustring-TCefCompositionUnderlineDynArray-TCefRange-TCefRange-">TOnIMESetCompositionEvent</a></strong> = procedure(Sender: TObject; const aText : <a href="uCEFTypes.html#ustring">ustring</a>; const underlines : <a href="uCEFTypes.html#TCefCompositionUnderlineDynArray">TCefCompositionUnderlineDynArray</a>; const replacement_range, selection_range : <a href="uCEFTypes.TCefRange.html">TCefRange</a>) of object;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code><strong><a href="uCEFBufferPanel.html#TOnHandledMessageEvent-TObject-TMessage-boolean-">TOnHandledMessageEvent</a></strong> = procedure(Sender: TObject; var aMessage: TMessage; var aHandled : boolean) of object;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2 class="description">Description</h2>
|
||||
<h3 class="detail">Functions and Procedures</h3>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="Register"></span><code>procedure <strong>Register</strong>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<p class="nodescription">This item has no description.</p></td></tr>
|
||||
</table>
|
||||
<h3 class="detail">Types</h3>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="TOnIMECommitTextEvent-TObject-ustring-PCefRange-integer-"></span><code><strong>TOnIMECommitTextEvent</strong> = procedure(Sender: TObject; const aText : <a href="uCEFTypes.html#ustring">ustring</a>; const replacement_range : <a href="uCEFTypes.html#PCefRange">PCefRange</a>; relative_cursor_pos : integer) 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="TOnIMESetCompositionEvent-TObject-ustring-TCefCompositionUnderlineDynArray-TCefRange-TCefRange-"></span><code><strong>TOnIMESetCompositionEvent</strong> = procedure(Sender: TObject; const aText : <a href="uCEFTypes.html#ustring">ustring</a>; const underlines : <a href="uCEFTypes.html#TCefCompositionUnderlineDynArray">TCefCompositionUnderlineDynArray</a>; const replacement_range, selection_range : <a href="uCEFTypes.TCefRange.html">TCefRange</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="TOnHandledMessageEvent-TObject-TMessage-boolean-"></span><code><strong>TOnHandledMessageEvent</strong> = procedure(Sender: TObject; var aMessage: TMessage; var aHandled : boolean) of object;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<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>
|
137
docs/html/uCEFButton.TCefButtonRef.html
Normal file
137
docs/html/uCEFButton.TCefButtonRef.html
Normal file
@ -0,0 +1,137 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFButton: Class TCefButtonRef</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="TCefButtonRef"></span><h1 class="cio">Class TCefButtonRef</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="uCEFButton.html">uCEFButton</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCefButtonRef = class(<a class="normal" href="uCEFView.TCefViewRef.html">TCefViewRef</a>, <a class="normal" href="uCEFInterfaces.ICefButton.html">ICefButton</a>)</code></p>
|
||||
<h2 class="description">Description</h2>
|
||||
<p>
|
||||
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. </p>
|
||||
<p>
|
||||
|
||||
|
||||
<p><see href="<a href="https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/views/cef_button_capi.h">https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/views/cef_button_capi.h</a>">CEF source file: /include/capi/views/cef_button_capi.h (cef_button_t))</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="ancestor"><a class="normal" href="uCEFView.TCefViewRef.html">TCefViewRef</a></li>
|
||||
<li class="thisitem">TCefButtonRef</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>function <strong><a href="uCEFButton.TCefButtonRef.html#AsLabelButton">AsLabelButton</a></strong>: <a href="uCEFInterfaces.ICefLabelButton.html">ICefLabelButton</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="uCEFButton.TCefButtonRef.html#SetState-TCefButtonState-">SetState</a></strong>(state_: <a href="uCEFTypes.html#TCefButtonState">TCefButtonState</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="uCEFButton.TCefButtonRef.html#GetState">GetState</a></strong>: <a href="uCEFTypes.html#TCefButtonState">TCefButtonState</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="uCEFButton.TCefButtonRef.html#SetInkDropEnabled-boolean-">SetInkDropEnabled</a></strong>(enabled_: 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="uCEFButton.TCefButtonRef.html#SetTooltipText-ustring-">SetTooltipText</a></strong>(const tooltip_text: <a href="uCEFTypes.html#ustring">ustring</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="uCEFButton.TCefButtonRef.html#SetAccessibleName-ustring-">SetAccessibleName</a></strong>(const name: <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>
|
||||
<td class="itemcode"><code>class function <strong><a href="uCEFButton.TCefButtonRef.html#UnWrap-Pointer-">UnWrap</a></strong>(data: Pointer): <a href="uCEFInterfaces.ICefButton.html">ICefButton</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="AsLabelButton"></span><code>function <strong>AsLabelButton</strong>: <a href="uCEFInterfaces.ICefLabelButton.html">ICefLabelButton</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns this Button as a LabelButton or NULL if this is not a LabelButton. </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="SetState-TCefButtonState-"></span><code>procedure <strong>SetState</strong>(state_: <a href="uCEFTypes.html#TCefButtonState">TCefButtonState</a>);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Sets the current display state of the Button. </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="GetState"></span><code>function <strong>GetState</strong>: <a href="uCEFTypes.html#TCefButtonState">TCefButtonState</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the current display state of the Button. </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="SetInkDropEnabled-boolean-"></span><code>procedure <strong>SetInkDropEnabled</strong>(enabled_: boolean);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Sets the Button will use an ink drop effect for displaying state changes. </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="SetTooltipText-ustring-"></span><code>procedure <strong>SetTooltipText</strong>(const tooltip_text: <a href="uCEFTypes.html#ustring">ustring</a>);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Sets the tooltip text that will be displayed when the user hovers the mouse cursor over the Button. </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="SetAccessibleName-ustring-"></span><code>procedure <strong>SetAccessibleName</strong>(const name: <a href="uCEFTypes.html#ustring">ustring</a>);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Sets the accessible name that will be exposed to assistive technology (AT). </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.ICefButton.html">ICefButton</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns a ICefButton instance using a PCefButton data pointer. </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/uCEFButton.html
Normal file
29
docs/html/uCEFButton.html
Normal file
@ -0,0 +1,29 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFButton</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 uCEFButton</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="uCEFButton.TCefButtonRef.html"><code>TCefButtonRef</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>
|
||||
</table>
|
||||
<hr><span class="appinfo"><em>Generated by <a href="https://pasdoc.github.io/">PasDoc 0.16.0-snapshot</a>. </em>
|
||||
</span>
|
||||
</body></html>
|
300
docs/html/uCEFButtonComponent.TCEFButtonComponent.html
Normal file
300
docs/html/uCEFButtonComponent.TCEFButtonComponent.html
Normal file
@ -0,0 +1,300 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFButtonComponent: Class TCEFButtonComponent</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="TCEFButtonComponent"></span><h1 class="cio">Class TCEFButtonComponent</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"><a class="section" href="#PasDoc-Fields">Fields</a></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="uCEFButtonComponent.html">uCEFButtonComponent</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCEFButtonComponent = class(<a class="normal" href="uCEFViewComponent.TCEFViewComponent.html">TCEFViewComponent</a>, <a class="normal" href="uCEFInterfaces.ICefButtonDelegateEvents.html">ICefButtonDelegateEvents</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">TObject</li>
|
||||
<li class="ancestor">TPersistent</li>
|
||||
<li class="ancestor">TComponent</li>
|
||||
<li class="ancestor"><a class="normal" href="uCEFViewComponent.TCEFViewComponent.html">TCEFViewComponent</a></li>
|
||||
<li class="thisitem">TCEFButtonComponent</li></ul><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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFButtonComponent.TCEFButtonComponent.html#FButton">FButton</a></strong>: <a href="uCEFInterfaces.ICefButton.html">ICefButton</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="uCEFButtonComponent.TCEFButtonComponent.html#FOnButtonPressed">FOnButtonPressed</a></strong>: TOnButtonPressedEvent;</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><strong><a href="uCEFButtonComponent.TCEFButtonComponent.html#FOnButtonStateChanged">FOnButtonStateChanged</a></strong>: TOnButtonStateChangedEvent;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<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="uCEFButtonComponent.TCEFButtonComponent.html#DestroyView">DestroyView</a></strong>; 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="uCEFButtonComponent.TCEFButtonComponent.html#Initialize">Initialize</a></strong>; 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>function <strong><a href="uCEFButtonComponent.TCEFButtonComponent.html#GetInitialized">GetInitialized</a></strong>: boolean; 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>function <strong><a href="uCEFButtonComponent.TCEFButtonComponent.html#GetAsView">GetAsView</a></strong>: <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>function <strong><a href="uCEFButtonComponent.TCEFButtonComponent.html#GetState">GetState</a></strong>: <a href="uCEFTypes.html#TCefButtonState">TCefButtonState</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="uCEFButtonComponent.TCEFButtonComponent.html#GetAsButton">GetAsButton</a></strong>: <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>function <strong><a href="uCEFButtonComponent.TCEFButtonComponent.html#GetAsLabelButton">GetAsLabelButton</a></strong>: <a href="uCEFInterfaces.ICefLabelButton.html">ICefLabelButton</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="uCEFButtonComponent.TCEFButtonComponent.html#SetState-TCefButtonState-">SetState</a></strong>(state_: <a href="uCEFTypes.html#TCefButtonState">TCefButtonState</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="uCEFButtonComponent.TCEFButtonComponent.html#doOnButtonPressed-ICefButton-">doOnButtonPressed</a></strong>(const button: <a href="uCEFInterfaces.ICefButton.html">ICefButton</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="uCEFButtonComponent.TCEFButtonComponent.html#doOnButtonStateChanged-ICefButton-">doOnButtonStateChanged</a></strong>(const button: <a href="uCEFInterfaces.ICefButton.html">ICefButton</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="uCEFButtonComponent.TCEFButtonComponent.html#SetInkDropEnabled-boolean-">SetInkDropEnabled</a></strong>(enabled_: 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="uCEFButtonComponent.TCEFButtonComponent.html#SetTooltipText-ustring-">SetTooltipText</a></strong>(const tooltip_text: <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>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFButtonComponent.TCEFButtonComponent.html#SetAccessibleName-ustring-">SetAccessibleName</a></strong>(const name_: <a href="uCEFTypes.html#ustring">ustring</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="uCEFButtonComponent.TCEFButtonComponent.html#AsLabelButton">AsLabelButton</a></strong> : <a href="uCEFInterfaces.ICefLabelButton.html">ICefLabelButton</a> read <a href="uCEFButtonComponent.TCEFButtonComponent.html#GetAsLabelButton">GetAsLabelButton</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="uCEFButtonComponent.TCEFButtonComponent.html#State">State</a></strong> : <a href="uCEFTypes.html#TCefButtonState">TCefButtonState</a> read <a href="uCEFButtonComponent.TCEFButtonComponent.html#GetState">GetState</a> write <a href="uCEFButtonComponent.TCEFButtonComponent.html#SetState-TCefButtonState-">SetState</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="uCEFButtonComponent.TCEFButtonComponent.html#OnButtonPressed">OnButtonPressed</a></strong> : TOnButtonPressedEvent read <a href="uCEFButtonComponent.TCEFButtonComponent.html#FOnButtonPressed">FOnButtonPressed</a> write <a href="uCEFButtonComponent.TCEFButtonComponent.html#FOnButtonPressed">FOnButtonPressed</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="uCEFButtonComponent.TCEFButtonComponent.html#OnButtonStateChanged">OnButtonStateChanged</a></strong> : TOnButtonStateChangedEvent read <a href="uCEFButtonComponent.TCEFButtonComponent.html#FOnButtonStateChanged">FOnButtonStateChanged</a> write <a href="uCEFButtonComponent.TCEFButtonComponent.html#FOnButtonStateChanged">FOnButtonStateChanged</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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="FButton"></span><code><strong>FButton</strong>: <a href="uCEFInterfaces.ICefButton.html">ICefButton</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="FOnButtonPressed"></span><code><strong>FOnButtonPressed</strong>: TOnButtonPressedEvent;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
ICefButtonDelegateEvents</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="FOnButtonStateChanged"></span><code><strong>FOnButtonStateChanged</strong>: TOnButtonStateChangedEvent;</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">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="DestroyView"></span><code>procedure <strong>DestroyView</strong>; override;</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="Initialize"></span><code>procedure <strong>Initialize</strong>; override;</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="GetInitialized"></span><code>function <strong>GetInitialized</strong>: boolean; override;</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="GetAsView"></span><code>function <strong>GetAsView</strong>: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; override;</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="GetState"></span><code>function <strong>GetState</strong>: <a href="uCEFTypes.html#TCefButtonState">TCefButtonState</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="GetAsButton"></span><code>function <strong>GetAsButton</strong>: <a href="uCEFInterfaces.ICefButton.html">ICefButton</a>; override;</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="GetAsLabelButton"></span><code>function <strong>GetAsLabelButton</strong>: <a href="uCEFInterfaces.ICefLabelButton.html">ICefLabelButton</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="SetState-TCefButtonState-"></span><code>procedure <strong>SetState</strong>(state_: <a href="uCEFTypes.html#TCefButtonState">TCefButtonState</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="doOnButtonPressed-ICefButton-"></span><code>procedure <strong>doOnButtonPressed</strong>(const button: <a href="uCEFInterfaces.ICefButton.html">ICefButton</a>);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
ICefButtonDelegateEvents</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="doOnButtonStateChanged-ICefButton-"></span><code>procedure <strong>doOnButtonStateChanged</strong>(const button: <a href="uCEFInterfaces.ICefButton.html">ICefButton</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="SetInkDropEnabled-boolean-"></span><code>procedure <strong>SetInkDropEnabled</strong>(enabled_: boolean);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Sets the Button will use an ink drop effect for displaying state changes. </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="SetTooltipText-ustring-"></span><code>procedure <strong>SetTooltipText</strong>(const tooltip_text: <a href="uCEFTypes.html#ustring">ustring</a>);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Sets the tooltip text that will be displayed when the user hovers the mouse cursor over the Button. </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="SetAccessibleName-ustring-"></span><code>procedure <strong>SetAccessibleName</strong>(const name_: <a href="uCEFTypes.html#ustring">ustring</a>);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Sets the accessible name that will be exposed to assistive technology (AT). </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="AsLabelButton"></span><code>property <strong>AsLabelButton</strong> : <a href="uCEFInterfaces.ICefLabelButton.html">ICefLabelButton</a> read <a href="uCEFButtonComponent.TCEFButtonComponent.html#GetAsLabelButton">GetAsLabelButton</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns this Button as a LabelButton or NULL if this is not a LabelButton. </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="State"></span><code>property <strong>State</strong> : <a href="uCEFTypes.html#TCefButtonState">TCefButtonState</a> read <a href="uCEFButtonComponent.TCEFButtonComponent.html#GetState">GetState</a> write <a href="uCEFButtonComponent.TCEFButtonComponent.html#SetState-TCefButtonState-">SetState</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns the current display state of the Button. </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="OnButtonPressed"></span><code>property <strong>OnButtonPressed</strong> : TOnButtonPressedEvent read <a href="uCEFButtonComponent.TCEFButtonComponent.html#FOnButtonPressed">FOnButtonPressed</a> write <a href="uCEFButtonComponent.TCEFButtonComponent.html#FOnButtonPressed">FOnButtonPressed</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Called when |button| is pressed. </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="OnButtonStateChanged"></span><code>property <strong>OnButtonStateChanged</strong> : TOnButtonStateChangedEvent read <a href="uCEFButtonComponent.TCEFButtonComponent.html#FOnButtonStateChanged">FOnButtonStateChanged</a> write <a href="uCEFButtonComponent.TCEFButtonComponent.html#FOnButtonStateChanged">FOnButtonStateChanged</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Called when the state of |button| changes. </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/uCEFButtonComponent.html
Normal file
29
docs/html/uCEFButtonComponent.html
Normal file
@ -0,0 +1,29 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFButtonComponent</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 uCEFButtonComponent</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="uCEFButtonComponent.TCEFButtonComponent.html"><code>TCEFButtonComponent</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>
|
93
docs/html/uCEFButtonDelegate.TCefButtonDelegateOwn.html
Normal file
93
docs/html/uCEFButtonDelegate.TCefButtonDelegateOwn.html
Normal file
@ -0,0 +1,93 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFButtonDelegate: Class TCefButtonDelegateOwn</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="TCefButtonDelegateOwn"></span><h1 class="cio">Class TCefButtonDelegateOwn</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="uCEFButtonDelegate.html">uCEFButtonDelegate</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCefButtonDelegateOwn = class(<a class="normal" href="uCEFViewDelegate.TCefViewDelegateOwn.html">TCefViewDelegateOwn</a>, <a class="normal" href="uCEFInterfaces.ICefButtonDelegate.html">ICefButtonDelegate</a>)</code></p>
|
||||
<h2 class="description">Description</h2>
|
||||
<p>
|
||||
Implement this interface to handle Button events. The functions of this interface will be called on the browser process UI thread unless otherwise indicated. </p>
|
||||
<p>
|
||||
|
||||
|
||||
<p><see href="<a href="https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/views/cef_button_delegate_capi.h">https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/views/cef_button_delegate_capi.h</a>">CEF source file: /include/capi/views/cef_button_delegate_capi.h (cef_button_delegate_t))</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.TCefBaseRefCountedOwn.html">TCefBaseRefCountedOwn</a></li>
|
||||
<li class="ancestor"><a class="normal" href="uCEFViewDelegate.TCefViewDelegateOwn.html">TCefViewDelegateOwn</a></li>
|
||||
<li class="thisitem">TCefButtonDelegateOwn</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="uCEFButtonDelegate.TCefButtonDelegateOwn.html#OnButtonPressed-ICefButton-">OnButtonPressed</a></strong>(const button: <a href="uCEFInterfaces.ICefButton.html">ICefButton</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="uCEFButtonDelegate.TCefButtonDelegateOwn.html#OnButtonStateChanged-ICefButton-">OnButtonStateChanged</a></strong>(const button: <a href="uCEFInterfaces.ICefButton.html">ICefButton</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="uCEFButtonDelegate.TCefButtonDelegateOwn.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="uCEFButtonDelegate.TCefButtonDelegateOwn.html#Create">Create</a></strong>; override;</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="OnButtonPressed-ICefButton-"></span><code>procedure <strong>OnButtonPressed</strong>(const button: <a href="uCEFInterfaces.ICefButton.html">ICefButton</a>); virtual;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Called when |button| is pressed. </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="OnButtonStateChanged-ICefButton-"></span><code>procedure <strong>OnButtonStateChanged</strong>(const button: <a href="uCEFInterfaces.ICefButton.html">ICefButton</a>); virtual;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Called when the state of |button| changes. </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">
|
||||
<p>
|
||||
Links the methods in the internal CEF record data pointer with the methods in this class. </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"></span><code>constructor <strong>Create</strong>; override;</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>
|
75
docs/html/uCEFButtonDelegate.TCefButtonDelegateRef.html
Normal file
75
docs/html/uCEFButtonDelegate.TCefButtonDelegateRef.html
Normal file
@ -0,0 +1,75 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFButtonDelegate: Class TCefButtonDelegateRef</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="TCefButtonDelegateRef"></span><h1 class="cio">Class TCefButtonDelegateRef</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="uCEFButtonDelegate.html">uCEFButtonDelegate</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCefButtonDelegateRef = class(<a class="normal" href="uCEFViewDelegate.TCefViewDelegateRef.html">TCefViewDelegateRef</a>, <a class="normal" href="uCEFInterfaces.ICefButtonDelegate.html">ICefButtonDelegate</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="ancestor"><a class="normal" href="uCEFViewDelegate.TCefViewDelegateRef.html">TCefViewDelegateRef</a></li>
|
||||
<li class="thisitem">TCefButtonDelegateRef</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="uCEFButtonDelegate.TCefButtonDelegateRef.html#OnButtonPressed-ICefButton-">OnButtonPressed</a></strong>(const button: <a href="uCEFInterfaces.ICefButton.html">ICefButton</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="uCEFButtonDelegate.TCefButtonDelegateRef.html#OnButtonStateChanged-ICefButton-">OnButtonStateChanged</a></strong>(const button: <a href="uCEFInterfaces.ICefButton.html">ICefButton</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="uCEFButtonDelegate.TCefButtonDelegateRef.html#UnWrap-Pointer-">UnWrap</a></strong>(data: Pointer): <a href="uCEFInterfaces.ICefButtonDelegate.html">ICefButtonDelegate</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="OnButtonPressed-ICefButton-"></span><code>procedure <strong>OnButtonPressed</strong>(const button: <a href="uCEFInterfaces.ICefButton.html">ICefButton</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.ICefButtonDelegate.html#OnButtonPressed-ICefButton-">ICefButtonDelegate.OnButtonPressed</a>.</p><p>
|
||||
Called when |button| is pressed. </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="OnButtonStateChanged-ICefButton-"></span><code>procedure <strong>OnButtonStateChanged</strong>(const button: <a href="uCEFInterfaces.ICefButton.html">ICefButton</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.ICefButtonDelegate.html#OnButtonStateChanged-ICefButton-">ICefButtonDelegate.OnButtonStateChanged</a>.</p><p>
|
||||
Called when the state of |button| changes. </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.ICefButtonDelegate.html">ICefButtonDelegate</a>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Returns a ICefButtonDelegate instance using a PCefButtonDelegate data pointer. </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>
|
234
docs/html/uCEFButtonDelegate.TCustomButtonDelegate.html
Normal file
234
docs/html/uCEFButtonDelegate.TCustomButtonDelegate.html
Normal file
@ -0,0 +1,234 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFButtonDelegate: Class TCustomButtonDelegate</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="TCustomButtonDelegate"></span><h1 class="cio">Class TCustomButtonDelegate</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"><a class="section" href="#PasDoc-Fields">Fields</a></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="uCEFButtonDelegate.html">uCEFButtonDelegate</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCustomButtonDelegate = class(<a class="normal" href="uCEFButtonDelegate.TCefButtonDelegateOwn.html">TCefButtonDelegateOwn</a>)</code></p>
|
||||
<h2 class="description">Description</h2>
|
||||
<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>
|
||||
<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.TCefBaseRefCountedOwn.html">TCefBaseRefCountedOwn</a></li>
|
||||
<li class="ancestor"><a class="normal" href="uCEFViewDelegate.TCefViewDelegateOwn.html">TCefViewDelegateOwn</a></li>
|
||||
<li class="ancestor"><a class="normal" href="uCEFButtonDelegate.TCefButtonDelegateOwn.html">TCefButtonDelegateOwn</a></li>
|
||||
<li class="thisitem">TCustomButtonDelegate</li></ul><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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFButtonDelegate.TCustomButtonDelegate.html#FEvents">FEvents</a></strong>: Pointer;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<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="uCEFButtonDelegate.TCustomButtonDelegate.html#OnGetPreferredSize-ICefView-TCefSize-">OnGetPreferredSize</a></strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; var aResult : <a href="uCEFTypes.TCefSize.html">TCefSize</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#OnGetMinimumSize-ICefView-TCefSize-">OnGetMinimumSize</a></strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; var aResult : <a href="uCEFTypes.TCefSize.html">TCefSize</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#OnGetMaximumSize-ICefView-TCefSize-">OnGetMaximumSize</a></strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; var aResult : <a href="uCEFTypes.TCefSize.html">TCefSize</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#OnGetHeightForWidth-ICefView-Integer-Integer-">OnGetHeightForWidth</a></strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; width: Integer; var aResult: Integer); 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#OnParentViewChanged-ICefView-boolean-ICefView-">OnParentViewChanged</a></strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; added: boolean; const parent: <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#OnChildViewChanged-ICefView-boolean-ICefView-">OnChildViewChanged</a></strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; added: boolean; const child: <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="uCEFButtonDelegate.TCustomButtonDelegate.html#OnWindowChanged-ICefView-boolean-">OnWindowChanged</a></strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; added: boolean); 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#OnLayoutChanged-ICefView-TCefRect-">OnLayoutChanged</a></strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; new_bounds: <a href="uCEFTypes.TCefRect.html">TCefRect</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#OnFocus-ICefView-">OnFocus</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#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="uCEFButtonDelegate.TCustomButtonDelegate.html#OnButtonPressed-ICefButton-">OnButtonPressed</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="uCEFButtonDelegate.TCustomButtonDelegate.html#OnButtonStateChanged-ICefButton-">OnButtonStateChanged</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="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>
|
||||
</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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="FEvents"></span><code><strong>FEvents</strong>: Pointer;</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">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="OnGetPreferredSize-ICefView-TCefSize-"></span><code>procedure <strong>OnGetPreferredSize</strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; var aResult : <a href="uCEFTypes.TCefSize.html">TCefSize</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
ICefViewDelegate</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="OnGetMinimumSize-ICefView-TCefSize-"></span><code>procedure <strong>OnGetMinimumSize</strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; var aResult : <a href="uCEFTypes.TCefSize.html">TCefSize</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#OnGetMinimumSize-ICefView-TCefSize-">TCefViewDelegateOwn.OnGetMinimumSize</a>.</p><p>
|
||||
Return the minimum size for |view|. </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="OnGetMaximumSize-ICefView-TCefSize-"></span><code>procedure <strong>OnGetMaximumSize</strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; var aResult : <a href="uCEFTypes.TCefSize.html">TCefSize</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#OnGetMaximumSize-ICefView-TCefSize-">TCefViewDelegateOwn.OnGetMaximumSize</a>.</p><p>
|
||||
Return the maximum size for |view|. </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="OnGetHeightForWidth-ICefView-Integer-Integer-"></span><code>procedure <strong>OnGetHeightForWidth</strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; width: Integer; var aResult: Integer); 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#OnGetHeightForWidth-ICefView-Integer-Integer-">TCefViewDelegateOwn.OnGetHeightForWidth</a>.</p><p>
|
||||
Return the height necessary to display |view| with the provided |width|. If not specified the result of get_preferred_size().height will be used by default. Override if |view|'s preferred height depends upon the width (for example, with Labels). </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="OnParentViewChanged-ICefView-boolean-ICefView-"></span><code>procedure <strong>OnParentViewChanged</strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; added: boolean; const parent: <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#OnParentViewChanged-ICefView-boolean-ICefView-">TCefViewDelegateOwn.OnParentViewChanged</a>.</p><p>
|
||||
Called when the parent of |view| has changed. If |view| is being added to |parent| then |added| will be true (1). If |view| is being removed from |parent| then |added| will be false (0). If |view| is being reparented the remove notification will be sent before the add notification. Do not modify the view hierarchy in this callback. </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="OnChildViewChanged-ICefView-boolean-ICefView-"></span><code>procedure <strong>OnChildViewChanged</strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; added: boolean; const child: <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#OnChildViewChanged-ICefView-boolean-ICefView-">TCefViewDelegateOwn.OnChildViewChanged</a>.</p><p>
|
||||
Called when a child of |view| has changed. If |child| is being added to |view| then |added| will be true (1). If |child| is being removed from |view| then |added| will be false (0). If |child| is being reparented the remove notification will be sent to the old parent before the add notification is sent to the new parent. Do not modify the view hierarchy in this callback. </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="OnWindowChanged-ICefView-boolean-"></span><code>procedure <strong>OnWindowChanged</strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; added: 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="uCEFViewDelegate.TCefViewDelegateOwn.html#OnWindowChanged-ICefView-boolean-">TCefViewDelegateOwn.OnWindowChanged</a>.</p><p>
|
||||
Called when |view| is added or removed from the ICefWindow. </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="OnLayoutChanged-ICefView-TCefRect-"></span><code>procedure <strong>OnLayoutChanged</strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>; new_bounds: <a href="uCEFTypes.TCefRect.html">TCefRect</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#OnLayoutChanged-ICefView-TCefRect-">TCefViewDelegateOwn.OnLayoutChanged</a>.</p><p>
|
||||
Called when the layout of |view| has changed. </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="OnFocus-ICefView-"></span><code>procedure <strong>OnFocus</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#OnFocus-ICefView-">TCefViewDelegateOwn.OnFocus</a>.</p><p>
|
||||
Called when |view| gains focus. </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="OnBlur-ICefView-"></span><code>procedure <strong>OnBlur</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#OnBlur-ICefView-">TCefViewDelegateOwn.OnBlur</a>.</p><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="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">
|
||||
<p>
|
||||
ICefButtonDelegate</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="OnButtonStateChanged-ICefButton-"></span><code>procedure <strong>OnButtonStateChanged</strong>(const button: <a href="uCEFInterfaces.ICefButton.html">ICefButton</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="uCEFButtonDelegate.TCefButtonDelegateOwn.html#OnButtonStateChanged-ICefButton-">TCefButtonDelegateOwn.OnButtonStateChanged</a>.</p><p>
|
||||
Called when the state of |button| changes. </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-ICefButtonDelegateEvents-"></span><code>constructor <strong>Create</strong>(const events: <a href="uCEFInterfaces.ICefButtonDelegateEvents.html">ICefButtonDelegateEvents</a>); reintroduce;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Creates an instance of this class liked to an interface that's implemented by a control receiving the events. </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>
|
37
docs/html/uCEFButtonDelegate.html
Normal file
37
docs/html/uCEFButtonDelegate.html
Normal file
@ -0,0 +1,37 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFButtonDelegate</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 uCEFButtonDelegate</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="uCEFButtonDelegate.TCefButtonDelegateRef.html"><code>TCefButtonDelegateRef</code></a></td>
|
||||
<td class="itemdesc"> </td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="itemname">Class <a class="bold" href="uCEFButtonDelegate.TCefButtonDelegateOwn.html"><code>TCefButtonDelegateOwn</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="list">
|
||||
<td class="itemname">Class <a class="bold" href="uCEFButtonDelegate.TCustomButtonDelegate.html"><code>TCustomButtonDelegate</code></a></td>
|
||||
<td class="itemdesc"> This class handles all the ICefButtonDelegate methods which call the ICefButtonDelegateEvents methods. ICefButtonDelegateEvents will be implemented by the control receiving the ICefButtonDelegate events. </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
docs/html/uCEFCallback.TCefCallbackRef.html
Normal file
72
docs/html/uCEFCallback.TCefCallbackRef.html
Normal file
@ -0,0 +1,72 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFCallback: Class TCefCallbackRef</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="TCefCallbackRef"></span><h1 class="cio">Class TCefCallbackRef</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="uCEFCallback.html">uCEFCallback</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TCefCallbackRef = class(<a class="normal" href="uCEFBaseRefCounted.TCefBaseRefCountedRef.html">TCefBaseRefCountedRef</a>, <a class="normal" href="uCEFInterfaces.ICefCallback.html">ICefCallback</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">TCefCallbackRef</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="uCEFCallback.TCefCallbackRef.html#Cont">Cont</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="uCEFCallback.TCefCallbackRef.html#Cancel">Cancel</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="uCEFCallback.TCefCallbackRef.html#UnWrap-Pointer-">UnWrap</a></strong>(data: Pointer): <a href="uCEFInterfaces.ICefCallback.html">ICefCallback</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="Cont"></span><code>procedure <strong>Cont</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.ICefCallback.html#Cont">ICefCallback.Cont</a>.</p><p>
|
||||
Continue processing. </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="Cancel"></span><code>procedure <strong>Cancel</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.ICefCallback.html#Cancel">ICefCallback.Cancel</a>.</p><p>
|
||||
Cancel processing. </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.ICefCallback.html">ICefCallback</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/uCEFCallback.html
Normal file
29
docs/html/uCEFCallback.html
Normal file
@ -0,0 +1,29 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFCallback</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 uCEFCallback</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="uCEFCallback.TCefCallbackRef.html"><code>TCefCallbackRef</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>
|
240
docs/html/uCEFChromium.TChromium.html
Normal file
240
docs/html/uCEFChromium.TChromium.html
Normal file
@ -0,0 +1,240 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFChromium: Class TChromium</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="TChromium"></span><h1 class="cio">Class TChromium</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="uCEFChromium.html">uCEFChromium</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TChromium = class(<a class="normal" href="uCEFChromiumCore.TChromiumCore.html">TChromiumCore</a>)</code></p>
|
||||
<h2 class="description">Description</h2>
|
||||
<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>
|
||||
<span id="PasDoc-Hierarchy"></span><h2 class="hierarchy">Hierarchy</h2>
|
||||
<ul class="hierarchy"><li class="ancestor">TObject</li>
|
||||
<li class="ancestor">TPersistent</li>
|
||||
<li class="ancestor">TComponent</li>
|
||||
<li class="ancestor"><a class="normal" href="uCEFChromiumCore.TChromiumCore.html">TChromiumCore</a></li>
|
||||
<li class="thisitem">TChromium</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>function <strong><a href="uCEFChromium.TChromium.html#GetParentFormHandle">GetParentFormHandle</a></strong>: <a href="uCEFTypes.html#TCefWindowHandle">TCefWindowHandle</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>function <strong><a href="uCEFChromium.TChromium.html#GetParentForm">GetParentForm</a></strong>: TCustomForm;</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="uCEFChromium.TChromium.html#InitializeDevToolsWindowInfo-TWinControl-">InitializeDevToolsWindowInfo</a></strong>(aDevTools : TWinControl); 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>procedure <strong><a href="uCEFChromium.TChromium.html#InitializeDragAndDrop-TWinControl-">InitializeDragAndDrop</a></strong>(const aDropTargetCtrl : TWinControl);</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="uCEFChromium.TChromium.html#ShowDevTools-TPoint-TWinControl-">ShowDevTools</a></strong>(inspectElementAt: TPoint; const aDevTools : TWinControl = nil);</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="uCEFChromium.TChromium.html#CloseDevTools-TWinControl-">CloseDevTools</a></strong>(const aDevTools : TWinControl = nil);</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="uCEFChromium.TChromium.html#MoveFormTo-Integer-Integer-">MoveFormTo</a></strong>(const x, y: 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="uCEFChromium.TChromium.html#MoveFormBy-Integer-Integer-">MoveFormBy</a></strong>(const x, y: Integer);</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="uCEFChromium.TChromium.html#ResizeFormWidthTo-Integer-">ResizeFormWidthTo</a></strong>(const x : 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="uCEFChromium.TChromium.html#ResizeFormHeightTo-Integer-">ResizeFormHeightTo</a></strong>(const y : Integer);</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="uCEFChromium.TChromium.html#SetFormLeftTo-Integer-">SetFormLeftTo</a></strong>(const x : 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="uCEFChromium.TChromium.html#SetFormTopTo-Integer-">SetFormTopTo</a></strong>(const y : Integer);</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="uCEFChromium.TChromium.html#CreateBrowser-TWinControl-ustring-ICefRequestContext-ICefDictionaryValue-">CreateBrowser</a></strong>(const aBrowserParent : TWinControl = nil; const aWindowName : <a href="uCEFTypes.html#ustring">ustring</a> = ''; const aContext : <a href="uCEFInterfaces.ICefRequestContext.html">ICefRequestContext</a> = nil; const aExtraInfo : <a href="uCEFInterfaces.ICefDictionaryValue.html">ICefDictionaryValue</a> = nil) : boolean; overload; 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>function <strong><a href="uCEFChromium.TChromium.html#SaveAsBitmapStream-TStream-">SaveAsBitmapStream</a></strong>(const aStream : TStream) : 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="uCEFChromium.TChromium.html#TakeSnapshot-TBitmap-">TakeSnapshot</a></strong>(var aBitmap : TBitmap) : boolean;</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="GetParentFormHandle"></span><code>function <strong>GetParentFormHandle</strong>: <a href="uCEFTypes.html#TCefWindowHandle">TCefWindowHandle</a>; override;</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="GetParentForm"></span><code>function <strong>GetParentForm</strong>: TCustomForm;</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="InitializeDevToolsWindowInfo-TWinControl-"></span><code>procedure <strong>InitializeDevToolsWindowInfo</strong>(aDevTools : TWinControl); 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="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><span id="InitializeDragAndDrop-TWinControl-"></span><code>procedure <strong>InitializeDragAndDrop</strong>(const aDropTargetCtrl : TWinControl);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Used with browsers in OSR mode to initialize drag and drop in Windows. </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="ShowDevTools-TPoint-TWinControl-"></span><code>procedure <strong>ShowDevTools</strong>(inspectElementAt: TPoint; const aDevTools : TWinControl = nil);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Open developer tools (DevTools) in its own browser. If inspectElementAt has a valid point with coordinates different than low(integer) then the element at the specified location will be inspected. If the DevTools browser is already open then it will be focused. </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="CloseDevTools-TWinControl-"></span><code>procedure <strong>CloseDevTools</strong>(const aDevTools : TWinControl = nil);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Close the developer tools. </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="MoveFormTo-Integer-Integer-"></span><code>procedure <strong>MoveFormTo</strong>(const x, y: Integer);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Move the parent form to the x and y coordinates. </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="MoveFormBy-Integer-Integer-"></span><code>procedure <strong>MoveFormBy</strong>(const x, y: Integer);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Move the parent form adding x and y to the coordinates. </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="ResizeFormWidthTo-Integer-"></span><code>procedure <strong>ResizeFormWidthTo</strong>(const x : Integer);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Add x to the parent form width. </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="ResizeFormHeightTo-Integer-"></span><code>procedure <strong>ResizeFormHeightTo</strong>(const y : Integer);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Add y to the parent form height. </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="SetFormLeftTo-Integer-"></span><code>procedure <strong>SetFormLeftTo</strong>(const x : Integer);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Set the parent form left property to x. </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="SetFormTopTo-Integer-"></span><code>procedure <strong>SetFormTopTo</strong>(const y : Integer);</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Set the parent form top property to y. </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="CreateBrowser-TWinControl-ustring-ICefRequestContext-ICefDictionaryValue-"></span><code>function <strong>CreateBrowser</strong>(const aBrowserParent : TWinControl = nil; const aWindowName : <a href="uCEFTypes.html#ustring">ustring</a> = ''; const aContext : <a href="uCEFInterfaces.ICefRequestContext.html">ICefRequestContext</a> = nil; const aExtraInfo : <a href="uCEFInterfaces.ICefDictionaryValue.html">ICefDictionaryValue</a> = nil) : boolean; overload; virtual;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Used to create the browser after the global request context has been initialized. You need to set all properties and events before calling this function because it will only create the internal handlers needed for those events and the property values will be used in the browser initialization. The browser will be fully initialized when the TChromiumCore.OnAfterCreated event is triggered. </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="SaveAsBitmapStream-TStream-"></span><code>function <strong>SaveAsBitmapStream</strong>(const aStream : TStream) : boolean;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Copy the DC to a bitmap stream. Only works on Windows with browsers without GPU acceleration. It's recommended to use the "Page.captureScreenshot" DevTools method instead. )</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="TakeSnapshot-TBitmap-"></span><code>function <strong>TakeSnapshot</strong>(var aBitmap : TBitmap) : boolean;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
Copy the DC to a TBitmap. Only works on Windows with browsers without GPU acceleration. It's recommended to use the "Page.captureScreenshot" DevTools method instead. </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>
|
44
docs/html/uCEFChromium.html
Normal file
44
docs/html/uCEFChromium.html
Normal file
@ -0,0 +1,44 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFChromium</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 uCEFChromium</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"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></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="uCEFChromium.TChromium.html"><code>TChromium</code></a></td>
|
||||
<td class="itemdesc"> 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. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3>
|
||||
<table class="summary wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFChromium.html#Register">Register</a></strong>;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2 class="description">Description</h2>
|
||||
<h3 class="detail">Functions and Procedures</h3>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="itemcode"><span id="Register"></span><code>procedure <strong>Register</strong>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="1">
|
||||
<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>
|
159
docs/html/uCEFChromiumCore.TBrowserInfo.html
Normal file
159
docs/html/uCEFChromiumCore.TBrowserInfo.html
Normal file
@ -0,0 +1,159 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFChromiumCore: Class TBrowserInfo</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="TBrowserInfo"></span><h1 class="cio">Class TBrowserInfo</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"><a class="section" href="#PasDoc-Fields">Fields</a></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="uCEFChromiumCore.html">uCEFChromiumCore</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TBrowserInfo = class(TObject)</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">TObject</li>
|
||||
<li class="thisitem">TBrowserInfo</li></ul><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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code><strong><a href="uCEFChromiumCore.TBrowserInfo.html#FBrowser">FBrowser</a></strong>: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</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="uCEFChromiumCore.TBrowserInfo.html#FIsClosing">FIsClosing</a></strong>: 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><strong><a href="uCEFChromiumCore.TBrowserInfo.html#FID">FID</a></strong>: integer;</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<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>function <strong><a href="uCEFChromiumCore.TBrowserInfo.html#GetIsValid">GetIsValid</a></strong>: 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>constructor <strong><a href="uCEFChromiumCore.TBrowserInfo.html#Create-ICefBrowser-">Create</a></strong>(const aBrowser : <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>); reintroduce;</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>destructor <strong><a href="uCEFChromiumCore.TBrowserInfo.html#Destroy">Destroy</a></strong>; override;</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="uCEFChromiumCore.TBrowserInfo.html#Browser">Browser</a></strong> : <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a> read <a href="uCEFChromiumCore.TBrowserInfo.html#FBrowser">FBrowser</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="uCEFChromiumCore.TBrowserInfo.html#ID">ID</a></strong> : integer read <a href="uCEFChromiumCore.TBrowserInfo.html#FID">FID</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="uCEFChromiumCore.TBrowserInfo.html#IsClosing">IsClosing</a></strong> : boolean read <a href="uCEFChromiumCore.TBrowserInfo.html#FIsClosing">FIsClosing</a> write <a href="uCEFChromiumCore.TBrowserInfo.html#FIsClosing">FIsClosing</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="uCEFChromiumCore.TBrowserInfo.html#IsValid">IsValid</a></strong> : boolean read <a href="uCEFChromiumCore.TBrowserInfo.html#GetIsValid">GetIsValid</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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="FBrowser"></span><code><strong>FBrowser</strong>: <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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="FIsClosing"></span><code><strong>FIsClosing</strong>: 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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="FID"></span><code><strong>FID</strong>: integer;</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">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="GetIsValid"></span><code>function <strong>GetIsValid</strong>: 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="Create-ICefBrowser-"></span><code>constructor <strong>Create</strong>(const aBrowser : <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a>); reintroduce;</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="Destroy"></span><code>destructor <strong>Destroy</strong>; override;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</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="Browser"></span><code>property <strong>Browser</strong> : <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a> read <a href="uCEFChromiumCore.TBrowserInfo.html#FBrowser">FBrowser</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="ID"></span><code>property <strong>ID</strong> : integer read <a href="uCEFChromiumCore.TBrowserInfo.html#FID">FID</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="IsClosing"></span><code>property <strong>IsClosing</strong> : boolean read <a href="uCEFChromiumCore.TBrowserInfo.html#FIsClosing">FIsClosing</a> write <a href="uCEFChromiumCore.TBrowserInfo.html#FIsClosing">FIsClosing</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="IsValid"></span><code>property <strong>IsValid</strong> : boolean read <a href="uCEFChromiumCore.TBrowserInfo.html#GetIsValid">GetIsValid</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>
|
240
docs/html/uCEFChromiumCore.TBrowserInfoList.html
Normal file
240
docs/html/uCEFChromiumCore.TBrowserInfoList.html
Normal file
@ -0,0 +1,240 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>cef4delphi: uCEFChromiumCore: Class TBrowserInfoList</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="TBrowserInfoList"></span><h1 class="cio">Class TBrowserInfoList</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"><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="uCEFChromiumCore.html">uCEFChromiumCore</a></p>
|
||||
<h2 class="declaration">Declaration</h2>
|
||||
<p class="declaration">
|
||||
<code>type TBrowserInfoList = class(TList)</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">TObject</li>
|
||||
<li class="ancestor">TList</li>
|
||||
<li class="thisitem">TBrowserInfoList</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="uCEFChromiumCore.TBrowserInfoList.html#SetBrowserIsClosing-integer-boolean-">SetBrowserIsClosing</a></strong>(aID : integer; aValue : 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="uCEFChromiumCore.TBrowserInfoList.html#GetBrowserIsClosing-integer-">GetBrowserIsClosing</a></strong>(aID : integer) : 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="uCEFChromiumCore.TBrowserInfoList.html#GetBrowserIsValid-integer-">GetBrowserIsValid</a></strong>(aID : integer) : 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="uCEFChromiumCore.TBrowserInfoList.html#GetBrowser-integer-">GetBrowser</a></strong>(aID : integer) : <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>function <strong><a href="uCEFChromiumCore.TBrowserInfoList.html#GetFirstBrowser">GetFirstBrowser</a></strong>: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</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="uCEFChromiumCore.TBrowserInfoList.html#GetFirstID">GetFirstID</a></strong>: integer;</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>destructor <strong><a href="uCEFChromiumCore.TBrowserInfoList.html#Destroy">Destroy</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>function <strong><a href="uCEFChromiumCore.TBrowserInfoList.html#AddBrowser-ICefBrowser-">AddBrowser</a></strong>(const aBrowser : <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</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="uCEFChromiumCore.TBrowserInfoList.html#RemoveBrowser-ICefBrowser-">RemoveBrowser</a></strong>(const aBrowser : <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</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>function <strong><a href="uCEFChromiumCore.TBrowserInfoList.html#SearchBrowser-integer-">SearchBrowser</a></strong>(aID : integer) : integer;</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="uCEFChromiumCore.TBrowserInfoList.html#FreeAndClearAllItems">FreeAndClearAllItems</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="uCEFChromiumCore.TBrowserInfoList.html#CloseAllBrowsers">CloseAllBrowsers</a></strong>;</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="uCEFChromiumCore.TBrowserInfoList.html#BrowserIsClosing">BrowserIsClosing</a></strong>[aID: integer]: boolean read <a href="uCEFChromiumCore.TBrowserInfoList.html#GetBrowserIsClosing-integer-">GetBrowserIsClosing</a> write <a href="uCEFChromiumCore.TBrowserInfoList.html#SetBrowserIsClosing-integer-boolean-">SetBrowserIsClosing</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="uCEFChromiumCore.TBrowserInfoList.html#BrowserIsValid">BrowserIsValid</a></strong>[aID: integer]: boolean read <a href="uCEFChromiumCore.TBrowserInfoList.html#GetBrowserIsValid-integer-">GetBrowserIsValid</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="uCEFChromiumCore.TBrowserInfoList.html#Browser">Browser</a></strong>[aID: integer]: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a> read <a href="uCEFChromiumCore.TBrowserInfoList.html#GetBrowser-integer-">GetBrowser</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="uCEFChromiumCore.TBrowserInfoList.html#FirstBrowser">FirstBrowser</a></strong> : <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a> read <a href="uCEFChromiumCore.TBrowserInfoList.html#GetFirstBrowser">GetFirstBrowser</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="uCEFChromiumCore.TBrowserInfoList.html#FirstID">FirstID</a></strong> : integer read <a href="uCEFChromiumCore.TBrowserInfoList.html#GetFirstID">GetFirstID</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="SetBrowserIsClosing-integer-boolean-"></span><code>procedure <strong>SetBrowserIsClosing</strong>(aID : integer; aValue : 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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="GetBrowserIsClosing-integer-"></span><code>function <strong>GetBrowserIsClosing</strong>(aID : integer) : 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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="GetBrowserIsValid-integer-"></span><code>function <strong>GetBrowserIsValid</strong>(aID : integer) : 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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="GetBrowser-integer-"></span><code>function <strong>GetBrowser</strong>(aID : integer) : <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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="GetFirstBrowser"></span><code>function <strong>GetFirstBrowser</strong>: <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="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="GetFirstID"></span><code>function <strong>GetFirstID</strong>: 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="Destroy"></span><code>destructor <strong>Destroy</strong>; override;</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="AddBrowser-ICefBrowser-"></span><code>function <strong>AddBrowser</strong>(const aBrowser : <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</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="RemoveBrowser-ICefBrowser-"></span><code>function <strong>RemoveBrowser</strong>(const aBrowser : <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</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="SearchBrowser-integer-"></span><code>function <strong>SearchBrowser</strong>(aID : integer) : 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="FreeAndClearAllItems"></span><code>procedure <strong>FreeAndClearAllItems</strong>;</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="CloseAllBrowsers"></span><code>procedure <strong>CloseAllBrowsers</strong>;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="nodescription">This item has no description.</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="BrowserIsClosing"></span><code>property <strong>BrowserIsClosing</strong>[aID: integer]: boolean read <a href="uCEFChromiumCore.TBrowserInfoList.html#GetBrowserIsClosing-integer-">GetBrowserIsClosing</a> write <a href="uCEFChromiumCore.TBrowserInfoList.html#SetBrowserIsClosing-integer-boolean-">SetBrowserIsClosing</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="BrowserIsValid"></span><code>property <strong>BrowserIsValid</strong>[aID: integer]: boolean read <a href="uCEFChromiumCore.TBrowserInfoList.html#GetBrowserIsValid-integer-">GetBrowserIsValid</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="Browser"></span><code>property <strong>Browser</strong>[aID: integer]: <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a> read <a href="uCEFChromiumCore.TBrowserInfoList.html#GetBrowser-integer-">GetBrowser</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="FirstBrowser"></span><code>property <strong>FirstBrowser</strong> : <a href="uCEFInterfaces.ICefBrowser.html">ICefBrowser</a> read <a href="uCEFChromiumCore.TBrowserInfoList.html#GetFirstBrowser">GetFirstBrowser</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="FirstID"></span><code>property <strong>FirstID</strong> : integer read <a href="uCEFChromiumCore.TBrowserInfoList.html#GetFirstID">GetFirstID</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>
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user