mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2024-11-15 15:55:56 +01:00
6c5d5d6036
- New MDIExternalPumpBrowser demo. - New JSWindowBindingSubProcess demo. - Added more comments and checks in some initialization functions of TCEFApplication.
157 lines
5.4 KiB
ObjectPascal
157 lines
5.4 KiB
ObjectPascal
// ************************************************************************
|
|
// ***************************** CEF4Delphi *******************************
|
|
// ************************************************************************
|
|
//
|
|
// CEF4Delphi is based on DCEF3 which uses CEF3 to embed a chromium-based
|
|
// browser in Delphi applications.
|
|
//
|
|
// The original license of DCEF3 still applies to CEF4Delphi.
|
|
//
|
|
// For more information about CEF4Delphi visit :
|
|
// https://www.briskbard.com/index.php?lang=en&pageid=cef
|
|
//
|
|
// Copyright © 2018 Salvador Díaz Fau. All rights reserved.
|
|
//
|
|
// ************************************************************************
|
|
// ************ vvvv Original license and comments below vvvv *************
|
|
// ************************************************************************
|
|
(*
|
|
* Delphi Chromium Embedded 3
|
|
*
|
|
* Usage allowed under the restrictions of the Lesser GNU General Public License
|
|
* or alternatively the restrictions of the Mozilla Public License 1.1
|
|
*
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
|
|
* the specific language governing rights and limitations under the License.
|
|
*
|
|
* Unit owner : Henri Gourvest <hgourvest@gmail.com>
|
|
* Web site : http://www.progdigy.com
|
|
* Repository : http://code.google.com/p/delphichromiumembedded/
|
|
* Group : http://groups.google.com/group/delphichromiumembedded
|
|
*
|
|
* Embarcadero Technologies, Inc is not permitted to use or redistribute
|
|
* this source code without explicit permission.
|
|
*
|
|
*)
|
|
|
|
unit uCEFKeyboardHandler;
|
|
|
|
{$IFNDEF CPUX64}
|
|
{$ALIGN ON}
|
|
{$MINENUMSIZE 4}
|
|
{$ENDIF}
|
|
|
|
{$I cef.inc}
|
|
|
|
interface
|
|
|
|
uses
|
|
uCEFBaseRefCounted, uCEFInterfaces, uCEFTypes;
|
|
|
|
type
|
|
TCefKeyboardHandlerOwn = class(TCefBaseRefCountedOwn, ICefKeyboardHandler)
|
|
protected
|
|
function OnPreKeyEvent(const browser: ICefBrowser; const event: PCefKeyEvent; osEvent: TCefEventHandle; out isKeyboardShortcut: Boolean): Boolean; virtual;
|
|
function OnKeyEvent(const browser: ICefBrowser; const event: PCefKeyEvent; osEvent: TCefEventHandle): Boolean; virtual;
|
|
|
|
public
|
|
constructor Create; virtual;
|
|
end;
|
|
|
|
TCustomKeyboardHandler = class(TCefKeyboardHandlerOwn)
|
|
protected
|
|
FEvent: IChromiumEvents;
|
|
|
|
function OnPreKeyEvent(const browser: ICefBrowser; const event: PCefKeyEvent; osEvent: TCefEventHandle; out isKeyboardShortcut: Boolean): Boolean; override;
|
|
function OnKeyEvent(const browser: ICefBrowser; const event: PCefKeyEvent; osEvent: TCefEventHandle): Boolean; override;
|
|
|
|
public
|
|
constructor Create(const events: IChromiumEvents); reintroduce; virtual;
|
|
destructor Destroy; override;
|
|
end;
|
|
|
|
implementation
|
|
|
|
uses
|
|
uCEFMiscFunctions, uCEFLibFunctions, uCEFBrowser;
|
|
|
|
function cef_keyboard_handler_on_pre_key_event(self: PCefKeyboardHandler;
|
|
browser: PCefBrowser; const event: PCefKeyEvent;
|
|
os_event: TCefEventHandle; is_keyboard_shortcut: PInteger): Integer; stdcall;
|
|
var
|
|
ks: Boolean;
|
|
begin
|
|
ks := is_keyboard_shortcut^ <> 0;
|
|
with TCefKeyboardHandlerOwn(CefGetObject(self)) do
|
|
Result := Ord(OnPreKeyEvent(TCefBrowserRef.UnWrap(browser), event, os_event, ks));
|
|
is_keyboard_shortcut^ := Ord(ks);
|
|
end;
|
|
|
|
function cef_keyboard_handler_on_key_event(self: PCefKeyboardHandler;
|
|
browser: PCefBrowser; const event: PCefKeyEvent; os_event: TCefEventHandle): Integer; stdcall;
|
|
begin
|
|
with TCefKeyboardHandlerOwn(CefGetObject(self)) do
|
|
Result := Ord(OnKeyEvent(TCefBrowserRef.UnWrap(browser), event, os_event));
|
|
end;
|
|
|
|
constructor TCefKeyboardHandlerOwn.Create;
|
|
begin
|
|
inherited CreateData(SizeOf(TCefKeyboardHandler));
|
|
|
|
with PCefKeyboardHandler(FData)^ do
|
|
begin
|
|
on_pre_key_event := cef_keyboard_handler_on_pre_key_event;
|
|
on_key_event := cef_keyboard_handler_on_key_event;
|
|
end;
|
|
end;
|
|
|
|
function TCefKeyboardHandlerOwn.OnPreKeyEvent(const browser: ICefBrowser; const event: PCefKeyEvent; osEvent: TCefEventHandle; out isKeyboardShortcut: Boolean): Boolean;
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function TCefKeyboardHandlerOwn.OnKeyEvent(const browser: ICefBrowser; const event: PCefKeyEvent; osEvent: TCefEventHandle): Boolean;
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
// TCustomKeyboardHandler
|
|
|
|
constructor TCustomKeyboardHandler.Create(const events: IChromiumEvents);
|
|
begin
|
|
inherited Create;
|
|
|
|
FEvent := events;
|
|
end;
|
|
|
|
destructor TCustomKeyboardHandler.Destroy;
|
|
begin
|
|
FEvent := nil;
|
|
|
|
inherited Destroy;
|
|
end;
|
|
|
|
function TCustomKeyboardHandler.OnKeyEvent(const browser : ICefBrowser;
|
|
const event : PCefKeyEvent;
|
|
osEvent : TCefEventHandle): Boolean;
|
|
begin
|
|
if (FEvent <> nil) then
|
|
Result := FEvent.doOnKeyEvent(browser, event, osEvent)
|
|
else
|
|
Result := inherited OnKeyEvent(browser, event, osEvent);
|
|
end;
|
|
|
|
function TCustomKeyboardHandler.OnPreKeyEvent(const browser : ICefBrowser;
|
|
const event : PCefKeyEvent;
|
|
osEvent : TCefEventHandle;
|
|
out isKeyboardShortcut : Boolean): Boolean;
|
|
begin
|
|
if (FEvent <> nil) then
|
|
Result := FEvent.doOnPreKeyEvent(browser, event, osEvent, isKeyboardShortcut)
|
|
else
|
|
Result := inherited OnPreKeyEvent(browser, event, osEvent, isKeyboardShortcut);
|
|
end;
|
|
|
|
end.
|