mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-07-23 18:45:59 +02:00
79 lines
3.9 KiB
PHP
79 lines
3.9 KiB
PHP
{%MainUnit qtkint.pp}
|
|
{ $Id$ }
|
|
|
|
{******************************************************************************
|
|
All QT interface communication implementations.
|
|
Initial Revision : Sat Jan 17 19:00:00 2004
|
|
|
|
|
|
!! Keep alphabetical !!
|
|
|
|
Support routines go to qtproc.pp
|
|
|
|
******************************************************************************
|
|
Interface
|
|
******************************************************************************
|
|
|
|
*****************************************************************************
|
|
* *
|
|
* 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 AddEventHandler(AHandle: THandle; AFlags: dword;
|
|
AEventHandler: TWaitHandleEvent; AData: PtrInt): PEventHandler; override;
|
|
function AddPipeEventHandler(AHandle: THandle;
|
|
AEventHandler: TPipeEvent; AData: PtrInt): PPipeEventHandler; override;
|
|
function AddProcessEventHandler(AHandle: THandle;
|
|
AEventHandler: TChildExitEvent; AData: PtrInt): PProcessEventHandler; override;
|
|
|
|
function CreateStandardCursor(ACursor: SmallInt): HCURSOR; override;
|
|
procedure DrawArrow(Arrow: TComponent; Canvas: TPersistent); override;
|
|
procedure DrawDefaultDockImage(AOldRect, ANewRect: TRect; AOperation: TDockImageOperation); override;
|
|
procedure DrawGrid(DC: HDC; const R: TRect; DX, DY: Integer); override;
|
|
|
|
function FontCanUTF8(Font: HFont): boolean; override;
|
|
function FontIsMonoSpace(Font: HFont): boolean; override;
|
|
|
|
function GetDesignerDC(WindowHandle: HWND): HDC; override;
|
|
|
|
function IntfSendsUTF8KeyPress: boolean; override;
|
|
function IsDesignerDC(WindowHandle: HWND; DC: HDC): Boolean; override;
|
|
|
|
function PromptUser(const DialogCaption : string;
|
|
const DialogMessage : string;
|
|
DialogType : LongInt;
|
|
Buttons : PLongInt;
|
|
ButtonCount : LongInt;
|
|
DefaultIndex : LongInt;
|
|
EscapeResult : LongInt) : LongInt; override;
|
|
|
|
|
|
function RawImage_CreateBitmaps(const ARawImage: TRawImage; out ABitmap, AMask: HBitmap; ASkipMask: Boolean = False): Boolean; override;
|
|
|
|
function RawImage_DescriptionFromBitmap(ABitmap: HBITMAP; out ADesc: TRawImageDescription): Boolean; override;
|
|
function RawImage_DescriptionFromDevice(ADC: HDC; out ADesc: TRawImageDescription): Boolean; override;
|
|
|
|
function RawImage_FromBitmap(out ARawImage: TRawImage; ABitmap, AMask: HBITMAP; ARect: PRect = nil): Boolean; override;
|
|
function RawImage_FromDevice(out ARawImage: TRawImage; ADC: HDC; const ARect: TRect): Boolean; override;
|
|
function RawImage_QueryDescription(AFlags: TRawImageQueryFlags; var ADesc: TRawImageDescription): Boolean; override;
|
|
function ReleaseDesignerDC(Window: HWND; DC: HDC): Integer; override;
|
|
|
|
procedure RemoveEventHandler(var AHandler: PEventHandler); override;
|
|
procedure RemovePipeEventHandler(var AHandler: PPipeEventHandler); override;
|
|
procedure RemoveProcessEventHandler(var AHandler: PProcessEventHandler); override;
|
|
|
|
function TextUTF8Out(DC: HDC; X, Y: Integer; Str: PChar; Count: Longint): Boolean; override;
|
|
|
|
//##apiwiz##eps## // Do not remove, no wizard declaration after this line
|