mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-07-31 23:16:20 +02:00
58 lines
2.3 KiB
PHP
58 lines
2.3 KiB
PHP
{%MainUnit fpguiint.pp}
|
|
|
|
{******************************************************************************
|
|
All FPGUI interface communication implementations.
|
|
Initial Revision : Sun Nov 23 23:53:53 2003
|
|
|
|
|
|
!! Keep alphabetical !!
|
|
|
|
Support routines go to gtkproc.pp
|
|
|
|
******************************************************************************
|
|
Implementation
|
|
******************************************************************************
|
|
|
|
*****************************************************************************
|
|
* *
|
|
* This file is part of the Lazarus Component Library (LCL) *
|
|
* *
|
|
* See the file COPYING.modifiedLGPL.txt, included in this distribution, *
|
|
* for details about the copyright. *
|
|
* *
|
|
* This program 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. *
|
|
* *
|
|
*****************************************************************************
|
|
}
|
|
|
|
//##apiwiz##sps## // Do not remove
|
|
|
|
{------------------------------------------------------------------------------
|
|
function FontCanUTF8(Font: HFont): boolean;
|
|
|
|
True if font recognizes Unicode UTF8 encoding.
|
|
|
|
FPGUI supports only Unicode
|
|
------------------------------------------------------------------------------}
|
|
function TFpGuiWidgetSet.FontCanUTF8(Font: HFont): boolean;
|
|
begin
|
|
Result := True;
|
|
end;
|
|
|
|
{------------------------------------------------------------------------------
|
|
Function: RawImage_QueryDescription
|
|
Params: AFlags:
|
|
ADesc:
|
|
Returns:
|
|
|
|
------------------------------------------------------------------------------}
|
|
//function TFpguiWidgetSet.RawImage_QueryDescription(AFlags: TRawImageQueryFlags; var ADesc: TRawImageDescription): Boolean;
|
|
//begin
|
|
// // override only when queried formats are different from screen description
|
|
//end;
|
|
|
|
//##apiwiz##eps## // Do not remove, no wizard declaration after this line
|
|
|