mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2024-11-15 07:45:56 +01:00
Fixed build issue in XE2
This commit is contained in:
parent
78f7858115
commit
ad5a33911a
@ -32,10 +32,10 @@ procedure GdkEventKeyToCEFKeyEvent(GdkEvent: PGdkEventKey; var aCEFKeyEvent : TC
|
||||
function KeyboardCodeFromXKeysym(keysym : uint32) : integer;
|
||||
{$IF DEFINED(LINUXFMX) or DEFINED(LCLGTK2) or (DEFINED(LCLGTK3) and (LCL_FULLVERSION<3000000))}
|
||||
function GetCefStateModifiers(state : uint32) : integer;
|
||||
{$ENDIF}
|
||||
{$IFEND}
|
||||
{$IF DEFINED(LCLGTK3) and (LCL_FULLVERSION>3000000)}
|
||||
function GetCefStateModifiers(state : TGdkModifierType) : integer;
|
||||
{$ENDIF}
|
||||
{$IFEND}
|
||||
function GdkEventToWindowsKeyCode(Event: PGdkEventKey) : integer;
|
||||
function GetWindowsKeyCodeWithoutLocation(key_code : integer) : integer;
|
||||
function GetControlCharacter(windows_key_code : integer; shift : boolean) : integer;
|
||||
@ -485,7 +485,7 @@ begin
|
||||
if ((state and GDK_BUTTON3_MASK) <> 0) then
|
||||
Result := Result or EVENTFLAG_RIGHT_MOUSE_BUTTON;
|
||||
end;
|
||||
{$ENDIF}
|
||||
{$IFEND}
|
||||
{$IF DEFINED(LCLGTK3) and (LCL_FULLVERSION>3000000)}
|
||||
function GetCefStateModifiers(state : TGdkModifierType) : integer;
|
||||
begin
|
||||
@ -512,7 +512,7 @@ begin
|
||||
if (GDK_BUTTON3_MASK in state) then
|
||||
Result := Result or EVENTFLAG_RIGHT_MOUSE_BUTTON;
|
||||
end;
|
||||
{$ENDIF}
|
||||
{$IFEND}
|
||||
|
||||
function GdkEventToWindowsKeyCode(event: PGdkEventKey) : integer;
|
||||
var
|
||||
|
@ -2,7 +2,7 @@
|
||||
"UpdateLazPackages" : [
|
||||
{
|
||||
"ForceNotify" : true,
|
||||
"InternalVersion" : 634,
|
||||
"InternalVersion" : 635,
|
||||
"Name" : "cef4delphi_lazarus.lpk",
|
||||
"Version" : "127.1.5"
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user