mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-12-04 06:27:52 +01:00
89 lines
5.1 KiB
PHP
89 lines
5.1 KiB
PHP
{%MainUnit qtint.pas}
|
|
|
|
{******************************************************************************
|
|
All QT Winapi related stuff goes here.
|
|
This are the overrides of the QT Interface for the methods defined in the
|
|
lcl/include/winapih.inc
|
|
|
|
!! Keep this alphabetical !!
|
|
|
|
******************************************************************************
|
|
Interface
|
|
******************************************************************************
|
|
|
|
*****************************************************************************
|
|
* *
|
|
* This file is part of the Lazarus Component Library (LCL) *
|
|
* *
|
|
* See the file COPYING.modifiedLGPL, 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, no wizard declaration before this line
|
|
|
|
function BeginPaint(Handle: hWnd; Var PS : TPaintStruct) : hdc; override;
|
|
|
|
Function CombineRgn(Dest, Src1, Src2: HRGN; fnCombineMode: Longint): Longint; override;
|
|
function CreateBitmapFromRawImage(const RawImage: TRawImage; var Bitmap, MaskBitmap: HBitmap; AlwaysCreateMask: boolean): boolean; override;
|
|
function CreateBrushIndirect(const LogBrush: TLogBrush): HBRUSH; override;
|
|
function CreateCompatibleDC(DC: HDC): HDC; override;
|
|
function CreateFontIndirect(const LogFont: TLogFont): HFONT; override;
|
|
function CreateFontIndirectEx(const LogFont: TLogFont; const LongFontName: string): HFONT; override;
|
|
function CreateRectRgn(X1, Y1, X2, Y2: Integer): HRGN; override;
|
|
|
|
function DeleteObject(GDIObject: HGDIOBJ): Boolean; override;
|
|
function DrawText(DC: HDC; Str: PChar; Count: Integer; var Rect: TRect; Flags: Cardinal): Integer; override;
|
|
|
|
function Ellipse(DC: HDC; x1, y1, x2, y2: Integer): Boolean; override;
|
|
function EndPaint(Handle: hwnd; var PS: TPaintStruct): Integer; override;
|
|
function ExtTextOut(DC: HDC; X, Y: Integer; Options: Longint; Rect: PRect; Str: PChar; Count: Longint; Dx: PInteger): Boolean; override;
|
|
|
|
function GetBitmapRawImageDescription(Bitmap: HBITMAP; Desc: PRawImageDescription): Boolean; override;
|
|
function GetClientBounds(handle : HWND; var ARect : TRect) : Boolean; override;
|
|
function GetClientRect(handle : HWND; var ARect : TRect) : Boolean; override;
|
|
Function GetClipRGN(DC: hDC; RGN: hRGN): Longint; override;
|
|
function GetCursorPos(var lpPoint: TPoint ): Boolean; override;
|
|
function GetDeviceRawImageDescription(DC: HDC; Desc: PRawImageDescription): boolean; override;
|
|
function GetDC(hWnd: HWND): HDC; override;
|
|
function GetObject(GDIObj: HGDIOBJ; BufSize: Integer; Buf: Pointer): Integer; override;
|
|
function GetRawImageFromDevice(SrcDC: HDC; const SrcRect: TRect; var NewRawImage: TRawImage): boolean; override;
|
|
function GetRawImageFromBitmap(SrcBitmap, SrcMaskBitmap: HBITMAP; const SrcRect: TRect; var NewRawImage: TRawImage): boolean; Override;
|
|
function GetSysColor(nIndex: Integer): DWORD; override;
|
|
function GetSystemMetrics(nIndex: Integer): Integer; override;
|
|
function GetTextColor(DC: HDC) : TColorRef; Override;
|
|
function GetTextExtentPoint(DC: HDC; Str: PChar; Count: Integer; var Size: TSize): Boolean; override;
|
|
function GetTextMetrics(DC: HDC; var TM: TTextMetric): Boolean; override;
|
|
function GetWindowRect(Handle: hwnd; var ARect: TRect): Integer; override;
|
|
function GetWindowRelativePosition(Handle: hwnd; var Left, Top: Integer): boolean; override;
|
|
function GetWindowSize(Handle: hwnd; var Width, Height: Integer): boolean; override;
|
|
|
|
function InvalidateRect(aHandle : HWND; Rect : pRect; bErase : Boolean) : Boolean; override;
|
|
|
|
function LineTo(DC: HDC; X, Y: Integer): Boolean; override;
|
|
|
|
function MoveToEx(DC: HDC; X, Y: Integer; OldPoint: PPoint): Boolean; override;
|
|
|
|
function Rectangle(DC: HDC; X1, Y1, X2, Y2: Integer): Boolean; override;
|
|
function ReleaseDC(hWnd: HWND; DC: HDC): Integer; override;
|
|
|
|
function SelectObject(DC: HDC; GDIObj: HGDIOBJ): HGDIOBJ; override;
|
|
function SetCursorPos(X, Y: Integer): Boolean; override;
|
|
function SetWindowOrgEx(DC : HDC; NewX, NewY : Integer; OldPoint: PPoint) : Boolean; override;
|
|
function ShowWindow(hWnd: HWND; nCmdShow: Integer): Boolean; override;
|
|
function StretchBlt(DestDC: HDC; X, Y, Width, Height: Integer;
|
|
SrcDC: HDC; XSrc, YSrc, SrcWidth, SrcHeight: Integer; ROp: Cardinal): Boolean; override;
|
|
function StretchMaskBlt(DestDC: HDC; X, Y, Width, Height: Integer;
|
|
SrcDC: HDC; XSrc, YSrc, SrcWidth, SrcHeight: Integer; Mask: HBITMAP;
|
|
XMask, YMask: Integer; Rop: DWORD): Boolean; override;
|
|
|
|
function TextOut(DC: HDC; X,Y : Integer; Str : Pchar; Count: Integer) : Boolean; override;
|
|
|
|
//##apiwiz##eps## // Do not remove, no wizard declaration after this line
|
|
|