CEF4Delphi/source/uCEFPostDataElement.pas
Salvador Díaz Fau 769aa4f384 Fixed IME support in OSR mode
- Added lots of conditional compiler directives to build CEF4DElphi in Linux using Lazarus/FPC
- Updated copyright year
2019-01-08 19:15:25 +01:00

369 lines
11 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 © 2019 Salvador Diaz 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 uCEFPostDataElement;
{$IFDEF FPC}
{$MODE OBJFPC}{$H+}
{$ENDIF}
{$IFNDEF CPUX64}{$ALIGN ON}{$ENDIF}
{$MINENUMSIZE 4}
{$I cef.inc}
interface
uses
uCEFBaseRefCounted, uCEFInterfaces, uCEFTypes;
type
TCefPostDataElementRef = class(TCefBaseRefCountedRef, ICefPostDataElement)
protected
function IsReadOnly: Boolean;
procedure SetToEmpty;
procedure SetToFile(const fileName: ustring);
procedure SetToBytes(size: NativeUInt; const bytes: Pointer);
function GetType: TCefPostDataElementType;
function GetFile: ustring;
function GetBytesCount: NativeUInt;
function GetBytes(size: NativeUInt; bytes: Pointer): NativeUInt;
public
class function UnWrap(data: Pointer): ICefPostDataElement;
class function New: ICefPostDataElement;
end;
TCefPostDataElementOwn = class(TCefBaseRefCountedOwn, ICefPostDataElement)
protected
FDataType : TCefPostDataElementType;
FValueByte : Pointer;
FValueStr : TCefString;
FSize : NativeUInt;
FReadOnly : Boolean;
procedure Clear;
function IsReadOnly: Boolean; virtual;
procedure SetToEmpty; virtual;
procedure SetToFile(const fileName: ustring); virtual;
procedure SetToBytes(size: NativeUInt; const bytes: Pointer); virtual;
function GetType: TCefPostDataElementType; virtual;
function GetFile: ustring; virtual;
function GetBytesCount: NativeUInt; virtual;
function GetBytes(size: NativeUInt; bytes: Pointer): NativeUInt; virtual;
public
constructor Create(readonly: Boolean); virtual;
end;
implementation
uses
uCEFMiscFunctions, uCEFLibFunctions;
// **************************************************
// ************* TCefPostDataElementRef *************
// **************************************************
function TCefPostDataElementRef.IsReadOnly: Boolean;
begin
Result := PCefPostDataElement(FData)^.is_read_only(PCefPostDataElement(FData)) <> 0;
end;
function TCefPostDataElementRef.GetBytes(size: NativeUInt; bytes: Pointer): NativeUInt;
begin
Result := PCefPostDataElement(FData)^.get_bytes(PCefPostDataElement(FData), size, bytes);
end;
function TCefPostDataElementRef.GetBytesCount: NativeUInt;
begin
Result := PCefPostDataElement(FData)^.get_bytes_count(PCefPostDataElement(FData));
end;
function TCefPostDataElementRef.GetFile: ustring;
begin
Result := CefStringFreeAndGet(PCefPostDataElement(FData)^.get_file(PCefPostDataElement(FData)));
end;
function TCefPostDataElementRef.GetType: TCefPostDataElementType;
begin
Result := PCefPostDataElement(FData)^.get_type(PCefPostDataElement(FData));
end;
class function TCefPostDataElementRef.New: ICefPostDataElement;
begin
Result := UnWrap(cef_post_data_element_create());
end;
procedure TCefPostDataElementRef.SetToBytes(size: NativeUInt; const bytes: Pointer);
begin
PCefPostDataElement(FData)^.set_to_bytes(PCefPostDataElement(FData), size, bytes);
end;
procedure TCefPostDataElementRef.SetToEmpty;
begin
PCefPostDataElement(FData)^.set_to_empty(PCefPostDataElement(FData));
end;
procedure TCefPostDataElementRef.SetToFile(const fileName: ustring);
var
TempFileName : TCefString;
begin
TempFileName := CefString(fileName);
PCefPostDataElement(FData)^.set_to_file(PCefPostDataElement(FData), @TempFileName);
end;
class function TCefPostDataElementRef.UnWrap(data: Pointer): ICefPostDataElement;
begin
if (data <> nil) then
Result := Create(data) as ICefPostDataElement
else
Result := nil;
end;
// **************************************************
// ************* TCefPostDataElementOwn *************
// **************************************************
function cef_post_data_element_is_read_only(self: PCefPostDataElement): Integer; stdcall;
var
TempObject : TObject;
begin
Result := Ord(False);
TempObject := CefGetObject(self);
if (TempObject <> nil) and (TempObject is TCefPostDataElementOwn) then
Result := Ord(TCefPostDataElementOwn(TempObject).IsReadOnly);
end;
procedure cef_post_data_element_set_to_empty(self: PCefPostDataElement); stdcall;
var
TempObject : TObject;
begin
TempObject := CefGetObject(self);
if (TempObject <> nil) and (TempObject is TCefPostDataElementOwn) then
TCefPostDataElementOwn(TempObject).SetToEmpty;
end;
procedure cef_post_data_element_set_to_file( self : PCefPostDataElement;
const fileName : PCefString); stdcall;
var
TempObject : TObject;
begin
TempObject := CefGetObject(self);
if (TempObject <> nil) and (TempObject is TCefPostDataElementOwn) then
TCefPostDataElementOwn(TempObject).SetToFile(CefString(fileName));
end;
procedure cef_post_data_element_set_to_bytes( self : PCefPostDataElement;
size : NativeUInt;
const bytes : Pointer); stdcall;
var
TempObject : TObject;
begin
TempObject := CefGetObject(self);
if (TempObject <> nil) and (TempObject is TCefPostDataElementOwn) then
TCefPostDataElementOwn(TempObject).SetToBytes(size, bytes);
end;
function cef_post_data_element_get_type(self: PCefPostDataElement): TCefPostDataElementType; stdcall;
var
TempObject : TObject;
begin
Result := PDE_TYPE_EMPTY;
TempObject := CefGetObject(self);
if (TempObject <> nil) and (TempObject is TCefPostDataElementOwn) then
Result := TCefPostDataElementOwn(TempObject).GetType;
end;
function cef_post_data_element_get_file(self: PCefPostDataElement): PCefStringUserFree; stdcall;
var
TempObject : TObject;
begin
Result := nil;
TempObject := CefGetObject(self);
if (TempObject <> nil) and (TempObject is TCefPostDataElementOwn) then
Result := CefUserFreeString(TCefPostDataElementOwn(TempObject).GetFile);
end;
function cef_post_data_element_get_bytes_count(self: PCefPostDataElement): NativeUInt; stdcall;
var
TempObject : TObject;
begin
Result := 0;
TempObject := CefGetObject(self);
if (TempObject <> nil) and (TempObject is TCefPostDataElementOwn) then
Result := TCefPostDataElementOwn(TempObject).GetBytesCount;
end;
function cef_post_data_element_get_bytes(self: PCefPostDataElement; size: NativeUInt; bytes: Pointer): NativeUInt; stdcall;
var
TempObject : TObject;
begin
Result := 0;
TempObject := CefGetObject(self);
if (TempObject <> nil) and (TempObject is TCefPostDataElementOwn) then
Result := TCefPostDataElementOwn(TempObject).GetBytes(size, bytes)
end;
procedure TCefPostDataElementOwn.Clear;
begin
case FDataType of
PDE_TYPE_FILE : CefStringFree(@FValueStr);
PDE_TYPE_BYTES :
if (FValueByte <> nil) then
begin
FreeMem(FValueByte);
FValueByte := nil;
end;
end;
FDataType := PDE_TYPE_EMPTY;
FSize := 0;
end;
constructor TCefPostDataElementOwn.Create(readonly: Boolean);
begin
inherited CreateData(SizeOf(TCefPostDataElement));
FReadOnly := readonly;
FDataType := PDE_TYPE_EMPTY;
FValueByte := nil;
FillChar(FValueStr, SizeOf(FValueStr), 0);
FSize := 0;
with PCefPostDataElement(FData)^ do
begin
is_read_only := {$IFDEF FPC}@{$ENDIF}cef_post_data_element_is_read_only;
set_to_empty := {$IFDEF FPC}@{$ENDIF}cef_post_data_element_set_to_empty;
set_to_file := {$IFDEF FPC}@{$ENDIF}cef_post_data_element_set_to_file;
set_to_bytes := {$IFDEF FPC}@{$ENDIF}cef_post_data_element_set_to_bytes;
get_type := {$IFDEF FPC}@{$ENDIF}cef_post_data_element_get_type;
get_file := {$IFDEF FPC}@{$ENDIF}cef_post_data_element_get_file;
get_bytes_count := {$IFDEF FPC}@{$ENDIF}cef_post_data_element_get_bytes_count;
get_bytes := {$IFDEF FPC}@{$ENDIF}cef_post_data_element_get_bytes;
end;
end;
function TCefPostDataElementOwn.GetBytes(size: NativeUInt; bytes: Pointer): NativeUInt;
begin
if (FDataType = PDE_TYPE_BYTES) and (FValueByte <> nil) then
begin
if (size > FSize) then
Result := FSize
else
Result := size;
Move(FValueByte^, bytes^, Result);
end
else
Result := 0;
end;
function TCefPostDataElementOwn.GetBytesCount: NativeUInt;
begin
if (FDataType = PDE_TYPE_BYTES) then
Result := FSize
else
Result := 0;
end;
function TCefPostDataElementOwn.GetFile: ustring;
begin
if (FDataType = PDE_TYPE_FILE) then
Result := CefString(@FValueStr)
else
Result := '';
end;
function TCefPostDataElementOwn.GetType: TCefPostDataElementType;
begin
Result := FDataType;
end;
function TCefPostDataElementOwn.IsReadOnly: Boolean;
begin
Result := FReadOnly;
end;
procedure TCefPostDataElementOwn.SetToBytes(size: NativeUInt; const bytes: Pointer);
begin
Clear;
if (size > 0) and (bytes <> nil) then
begin
GetMem(FValueByte, size);
Move(bytes^, FValueByte, size);
FSize := size;
end
else
begin
FValueByte := nil;
FSize := 0;
end;
FDataType := PDE_TYPE_BYTES;
end;
procedure TCefPostDataElementOwn.SetToEmpty;
begin
Clear;
end;
procedure TCefPostDataElementOwn.SetToFile(const fileName: ustring);
begin
Clear;
FSize := 0;
FValueStr := CefStringAlloc(fileName);
FDataType := PDE_TYPE_FILE;
end;
end.