1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582
|
{ $Id$ }
{
/***************************************************************************
WIN32INT.pp - Win32Interface Object
-------------------
***************************************************************************/
*****************************************************************************
This file is part of the Lazarus Component Library (LCL)
See the file COPYING.modifiedLGPL.txt, included in this distribution,
for details about the license.
*****************************************************************************
}
unit Win32Int;
{$mode objfpc}{$H+}{$T-}{$message warning Fix implicit pointer conversions}
{$ModeSwitch advancedrecords}
{$I win32defines.inc}
interface
{
When editing this unit list, be sure to keep Windows listed first to ensure
successful compilation.
}
uses
Windows, // keep as first
Classes, SysUtils, RtlConsts, ActiveX, MultiMon, CommCtrl, UxTheme, ctypes, DwmApi,
character,
// LCL
LCLPlatformDef, InterfaceBase, LCLIntf, LclProc, LCLType, LMessages,
Controls, Buttons, Forms, Dialogs, StdCtrls,
Graphics, Menus, ComCtrls, Themes, Win32Def, Spin,
// LazUtils
GraphType, GraphMath, LazLoggerBase, LazUTF8, Translations;
{, Win32Debug}
const
// standard windows cursors
// they are already defined in the rtl, however the
// const = const defines after this fail with an illegal expression
IDC_ARROW = System.MakeIntResource(32512);
IDC_IBEAM = System.MakeIntResource(32513);
IDC_WAIT = System.MakeIntResource(32514);
IDC_CROSS = System.MakeIntResource(32515);
IDC_UPARROW = System.MakeIntResource(32516);
IDC_SIZE = System.MakeIntResource(32640);
IDC_ICON = System.MakeIntResource(32641);
IDC_SIZENWSE = System.MakeIntResource(32642);
IDC_SIZENESW = System.MakeIntResource(32643);
IDC_SIZEWE = System.MakeIntResource(32644);
IDC_SIZENS = System.MakeIntResource(32645);
IDC_SIZEALL = System.MakeIntResource(32646);
IDC_NO = System.MakeIntResource(32648);
IDC_HAND = System.MakeIntResource(32649);
IDC_APPSTARTING = System.MakeIntResource(32650);
IDC_HELP = System.MakeIntResource(32651);
{
These are add-ons, don't exist in windows itself!
IDC_NODROP = MakeIntResource(32767);
IDC_DRAG = MakeIntResource(32766);
IDC_HSPLIT = MakeIntResource(32765);
IDC_VSPLIT = MakeIntResource(32764);
IDC_MULTIDRAG = MakeIntResource(32763);
IDC_SQLWAIT = MakeIntResource(32762);
IDC_HANDPT = MakeIntResource(32761);
}
IDC_NODROP = IDC_NO;
IDC_DRAG = IDC_ARROW;
IDC_HSPLIT = IDC_SIZEWE;
IDC_VSPLIT = IDC_SIZENS;
IDC_MULTIDRAG = IDC_ARROW;
IDC_SQLWAIT = IDC_WAIT;
IDC_HANDPT = IDC_HAND;
LclCursorToWin32CursorMap: array[crLow..crHigh] of PChar = (
// uni-direction cursors are mapped to bidirection win32 cursors
IDC_SIZENWSE, IDC_SIZENS, IDC_SIZENESW, IDC_SIZEWE, IDC_SIZEWE,
IDC_SIZENESW, IDC_SIZENS, IDC_SIZENWSE, IDC_SIZEALL, IDC_HANDPT, IDC_HELP,
IDC_APPSTARTING, IDC_NO, IDC_SQLWAIT, IDC_MULTIDRAG, IDC_VSPLIT,
IDC_HSPLIT, IDC_NODROP, IDC_DRAG, IDC_WAIT, IDC_UPARROW, IDC_SIZEWE,
IDC_SIZENWSE, IDC_SIZENS, IDC_SIZENESW, IDC_SIZE, IDC_IBEAM, IDC_CROSS,
IDC_ARROW, IDC_ARROW, IDC_ARROW);
//flag used to avoid propagating LM_CHANGE for TCustomCheckBox
SKIP_LMCHANGE = 1000;
type
DPI_AWARENESS_CONTEXT = HANDLE;
const
// GetThreadDpiAwarenessContext results
DPI_AWARENESS_CONTEXT_UNAWARE = DPI_AWARENESS_CONTEXT(-1);
DPI_AWARENESS_CONTEXT_SYSTEM_AWARE = DPI_AWARENESS_CONTEXT(-2);
DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE = DPI_AWARENESS_CONTEXT(-3);
DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE_V2 = DPI_AWARENESS_CONTEXT(-4);
DPI_AWARENESS_CONTEXT_UNAWARE_GDISCALED = DPI_AWARENESS_CONTEXT(-5);
type
PPPipeEventInfo = ^PPipeEventInfo;
PPipeEventInfo = ^TPipeEventInfo;
TPipeEventInfo = record
Handle: THandle;
UserData: PtrInt;
OnEvent: TPipeEvent;
Prev: PPipeEventInfo;
Next: PPipeEventInfo;
end;
TWaitHandler = record
ListIndex: pdword;
UserData: PtrInt;
OnEvent: TWaitHandleEvent;
end;
TSocketEvent = function(ASocket: THandle; Flags: dword): Integer of object;
{ Win32 interface-object class }
{ TWin32WidgetSet }
TWin32WidgetSet = class(TWidgetSet)
private
// The parent of all windows, represents the button of the taskbar
// This window is also the owner of the clipboard.
// Assoc. windowproc also acts as handler for popup menus
FAppHandle,
FDockWndHandle: HWND;
FAppMinimizing: Boolean;
FCommonControlsVersion: DWord;
FMetrics: TNonClientMetrics;
FMetricsFailed: Boolean;
FDefaultFont: HFONT;
FMDIClientHandle: HWND;
FWaitHandleCount: dword;
FWaitHandles: array of HANDLE;
FWaitHandlers: array of TWaitHandler;
FWaitPipeHandlers: PPipeEventInfo;
FPendingWaitHandlerIndex: Integer;
InitCommonControlsEx: function(ICC: PInitCommonControlsEx): LongBool; stdcall;
FOnAsyncSocketMsg: TSocketEvent;
FDotsPatternBitmap: HBitmap;
function GetDotsPatternBitmap: HBitmap;
{ event handler helper functions }
procedure HandleProcessEvent(AData: PtrInt; AFlags: dword);
procedure CheckPipeEvents;
function WinRegister: Boolean;
procedure CreateAppHandle;
function GetMDIClientHandle: HWND;
protected
function CreateThemeServices: TThemeServices; override;
function GetAppHandle: THandle; override;
procedure SetAppHandle(const AValue: THandle); override;
property AppMinimizing: Boolean read FAppMinimizing; // true if application is minimizing itself
public
{ Creates a callback of Lazarus message Msg for Sender }
procedure SetCallback(Msg: LongInt; Sender: TObject); virtual;
{ Removes all callbacks for Sender }
procedure RemoveCallbacks(Sender: TObject); virtual;
{ Constructor of the class }
constructor Create; override;
{ Destructor of the class }
destructor Destroy; override;
procedure DCSetAntialiasing(CanvasHandle: HDC; AEnabled: Boolean); override;
function LCLPlatform: TLCLPlatform; override;
function GetLCLCapability(ACapability: TLCLCapability): PtrUInt; override;
{ Initialize the API }
procedure AppInit(var ScreenInfo: TScreenInfo); override;
procedure AppMinimize; override;
procedure AppRestore; override;
procedure AppBringToFront; override;
procedure AppProcessMessages; override;
procedure AppWaitMessage; override;
procedure AppTerminate; override;
procedure AppSetIcon(const Small, Big: HICON); override;
procedure AppSetTitle(const ATitle: string); override;
procedure AppSetVisible(const AVisible: Boolean); override;
function AppRemoveStayOnTopFlags(const ASystemTopAlso: Boolean = False): Boolean; override;
function AppRestoreStayOnTopFlags(const ASystemTopAlso: Boolean = False): Boolean; override;
procedure AppSetMainFormOnTaskBar(const DoSet: Boolean); override;
procedure AppSetupMainForm(AMainForm: TObject); override;
function InitStockFont(AFont: TObject; AStockFont: TStockFont): Boolean; override;
procedure DCSetPixel(CanvasHandle: HDC; X, Y: integer; AColor: TGraphicsColor); override;
function DCGetPixel(CanvasHandle: HDC; X, Y: integer): TGraphicsColor; override;
procedure DCRedraw(CanvasHandle: HDC); override;
procedure SetDesigning(AComponent: TComponent); override;
// create and destroy
function CreateTimer(Interval: integer; TimerFunc: TWSTimerProc) : THandle; override;
function DestroyTimer(TimerHandle: THandle) : boolean; override;
// thread synchronize support
procedure HandleWakeMainThread(Sender: TObject);
property DefaultFont: HFONT read FDefaultFont;
// MDI client handle (if any)
property MDIClientHandle: HWND read GetMDIClientHandle;
procedure UpdateMDIClientBounds;
{$I win32winapih.inc}
{$I win32lclintfh.inc}
//property MessageFont: HFONT read FMessageFont;
property CommonControlsVersion: DWord read FCommonControlsVersion;
property OnAsyncSocketMsg: TSocketEvent read FOnAsyncSocketMsg write FOnAsyncSocketMsg;
property DotsPatternBitmap: HBitmap read GetDotsPatternBitmap;
property Metrics: TNonClientMetrics read FMetrics;
property MetricsFailed: Boolean read FMetricsFailed;
end;
{$I win32listslh.inc}
var
Win32WidgetSet: TWin32WidgetSet absolute WidgetSet;
const
BOOL_RESULT: array[Boolean] of String = ('False', 'True');
ClsName: array[0..6] of char = 'Window'#0;
ClsHintName: array[0..10] of char = 'HintWindow'#0;
EditClsName: array[0..4] of char = 'Edit'#0;
ButtonClsName: array[0..6] of char = 'Button'#0;
ComboboxClsName: array[0..8] of char = 'ComboBox'#0;
ListboxClsName: array[0..8] of char = 'LISTBOX'#0;
TabControlClsName: array[0..15] of char = 'SysTabControl32'#0;
ListViewClsName: array[0..13] of char = 'SysListView32'#0;
LCLComboboxClsName: array[0..27] of char = 'LCLComboBox'#0;
LCLListboxClsName: array[0..26] of char = 'LCLListBox'#0;
LCLCheckListboxClsName: array[0..31] of char = 'LCLCheckListBox'#0;
ClsNameW: array[0..6] of WideChar = ('W', 'i', 'n', 'd', 'o', 'w', #0);
ClsHintNameW: array[0..10] of WideChar = ('H', 'i', 'n', 't', 'W', 'i', 'n', 'd', 'o', 'w', #0);
{$ifdef DEBUG_DOUBLEBUFFER}
var
CopyBitmapToClipboard: boolean = true;
{$endif}
{ export for widgetset implementation }
function WindowProc(Window: HWnd; Msg: UInt; WParam: Windows.WParam;
LParam: Windows.LParam): LResult; stdcall;
function CallDefaultWindowProc(Window: HWnd; Msg: UInt; WParam: Windows.WParam;
LParam: Windows.LParam): LResult;
{$ifdef RedirectDestroyMessages}
function DestroyWindowProc(Window: HWnd; Msg: UInt; WParam: Windows.WParam;
LParam: Windows.LParam): LResult; stdcall;
{$endif}
// Multi Dpi support (not yet in FCL); ToDo: move to FCL
function GetThreadDpiAwarenessContext: DPI_AWARENESS_CONTEXT;
function AreDpiAwarenessContextsEqual(dpiContextA, dpiContextB: DPI_AWARENESS_CONTEXT): BOOL;
function GetSystemMetricsForDpi(nIndex: Integer; dpi: UINT): Integer;
function GetDpiForWindow(hwnd: HWND): UINT;
function AdjustWindowRectExForDpi(const lpRect: LPRECT; dwStyle: DWORD; bMenu: BOOL; dwExStyle: DWORD; dpi: UINT): BOOL;
function GetDpiForMonitor(hmonitor: HMONITOR; dpiType: TMonitorDpiType; out dpiX: UINT; out dpiY: UINT): HRESULT;
function LoadIconWithScaleDown(hinst:HINST; pszName:LPCWStr;cx:cint;cy:cint;var phico: HICON ):HRESULT;
function OpenThemeDataForDpi(hwnd: HWND; pszClassList: LPCWSTR; dpi: UINT): HTHEME;
procedure AdjustFormClientToWindowSize(const AHandle: HANDLE; var ioSize: TSize); overload;
procedure AdjustFormClientToWindowSize(aHasMenu: Boolean; dwStyle, dwExStyle: DWORD; dpi: UINT; var ioSize: TSize); overload;
implementation
uses
WsControls,
Win32Proc,
Win32WSFactory,
Win32WSControls,
Win32WSButtons,
Win32WSMenus,
Win32WSStdCtrls,
Win32WSDialogs,
Win32Themes,
////////////////////////////////////////////////////
Win32Extra, LCLMessageGlue;
type
PProcessEvent = ^TProcessEvent;
TProcessEvent = record
Handle: THandle;
Handler: PEventHandler;
UserData: PtrInt;
OnEvent: TChildExitEvent;
end;
var
LastMouse: TLastMouseInfo;
LastMouseTracking: TControl = nil;
ComboBoxHandleSizeWindow: HWND = 0;
IgnoreNextCharWindow: HWND = 0; // ignore next WM_(SYS)CHAR message
IgnoreKeyUp: Boolean = True; // ignore KeyUp after application start; issue #30836
// set to true, if we are redirecting a WM_MOUSEWHEEL message, to prevent recursion
InMouseWheelRedirection: boolean = false;
OnClipBoardRequest: TClipboardRequestEvent;
MMenuItemInfoSize: DWORD; // size depends on windows version;
{$if defined(MSG_DEBUG) or defined(DBG_SendPaintMessage)}
MessageStackDepth: string = '';
{$endif}
// Multi Dpi support (not yet in FCL); ToDo: move to FCL
type
TGetDpiForMonitor = function(hmonitor: HMONITOR; dpiType: TMonitorDpiType; out dpiX: UINT; out dpiY: UINT): HRESULT; stdcall;
TGetDpiForWindow = function(hwnd: HWND): UINT; stdcall;
TAdjustWindowRectExForDpi = function(const lpRect: LPRECT; dwStyle: DWORD; bMenu: BOOL; dwExStyle: DWORD; dpi: UINT): BOOL; stdcall;
TGetSystemMetricsForDpi = function (nIndex: Integer; dpi: UINT): Integer; stdcall;
TLoadIconWithScaleDown = function ( hinst:HINST; pszName:LPCWStr;cx:cint;cy:cint;var phico: HICON ):HRESULT; stdcall;
TOpenThemeDataForDpi = function (hwnd: HWND; pszClassList: LPCWSTR; dpi: UINT): HTHEME; stdcall;
TGetThreadDpiAwarenessContext = function (): DPI_AWARENESS_CONTEXT; stdcall;
TAreDpiAwarenessContextsEqual = function (dpiContextA, dpiContextB: DPI_AWARENESS_CONTEXT): BOOL; stdcall;
var
g_GetDpiForMonitor: TGetDpiForMonitor = nil;
g_GetDpiForWindow: TGetDpiForWindow = nil;
g_AdjustWindowRectExForDpi: TAdjustWindowRectExForDpi = nil;
g_GetSystemMetricsForDpi: TGetSystemMetricsForDpi = nil;
g_LoadIconWithScaleDown: TLoadIconWithScaleDown = nil;
g_OpenThemeDataForDpi: TOpenThemeDataForDpi = nil;
g_GetThreadDpiAwarenessContext: TGetThreadDpiAwarenessContext = nil;
g_AreDpiAwarenessContextsEqual: TAreDpiAwarenessContextsEqual = nil;
g_HighDPIAPIDone: Boolean = False;
procedure InitHighDPIAPI;
var
lib: Windows.HMODULE;
begin
if g_HighDPIAPIDone then
Exit;
lib := LoadLibrary('Shcore.dll');
if lib<>0 then
Pointer(g_GetDpiForMonitor) := GetProcAddress(lib, 'GetDpiForMonitor');
lib := LoadLibrary(user32);
if lib<>0 then
begin
Pointer(g_AdjustWindowRectExForDpi) := GetProcAddress(lib, 'AdjustWindowRectExForDpi');
Pointer(g_GetDpiForWindow) := GetProcAddress(lib, 'GetDpiForWindow');
Pointer(g_GetSystemMetricsForDpi) := GetProcAddress(lib, 'GetSystemMetricsForDpi');
Pointer(g_GetThreadDpiAwarenessContext) := GetProcAddress(lib, 'GetThreadDpiAwarenessContext');
Pointer(g_AreDpiAwarenessContextsEqual) := GetProcAddress(lib, 'AreDpiAwarenessContextsEqual');
end;
lib := LoadLibrary(comctl32);
if lib<>0 then
Pointer(g_LoadIconWithScaleDown) := GetProcAddress(lib, 'LoadIconWithScaleDown');
lib := LoadLibrary('uxtheme.dll');
if lib<>0 then
Pointer(g_OpenThemeDataForDpi) := GetProcAddress(lib, 'OpenThemeDataForDpi');
g_HighDPIAPIDone := True;
end;
function GetThreadDpiAwarenessContext: DPI_AWARENESS_CONTEXT;
begin
InitHighDPIAPI;
if Assigned(g_GetThreadDpiAwarenessContext) then
Result := g_GetThreadDpiAwarenessContext()
else
Result := DPI_AWARENESS_CONTEXT_UNAWARE;
end;
function AreDpiAwarenessContextsEqual(dpiContextA, dpiContextB: DPI_AWARENESS_CONTEXT): BOOL;
begin
InitHighDPIAPI;
if Assigned(g_AreDpiAwarenessContextsEqual) then
Result := g_AreDpiAwarenessContextsEqual(dpiContextA, dpiContextB)
else
Result := dpiContextA=dpiContextB;
end;
function GetSystemMetricsForDpi(nIndex: Integer; dpi: UINT): Integer;
begin
InitHighDPIAPI;
if Assigned(g_GetSystemMetricsForDpi) then
Result := g_GetSystemMetricsForDpi(nIndex, dpi)
else
Result := Windows.GetSystemMetrics(nIndex);
end;
function GetDpiForWindow(hwnd: HWND): UINT;
begin
InitHighDPIAPI;
if Assigned(g_GetDpiForWindow) then
Result := g_GetDpiForWindow(hwnd)
else
Result := ScreenInfo.PixelsPerInchX;
end;
function AdjustWindowRectExForDpi(const lpRect: LPRECT; dwStyle: DWORD; bMenu: BOOL; dwExStyle: DWORD; dpi: UINT): BOOL;
begin
InitHighDPIAPI;
if Assigned(g_AdjustWindowRectExForDpi) then
Result := g_AdjustWindowRectExForDpi(lpRect, dwStyle, bMenu, dwExStyle, dpi)
else
Result := Windows.AdjustWindowRectEx(lpRect, dwStyle, bMenu, dwExStyle);
end;
function GetDpiForMonitor(hmonitor: HMONITOR; dpiType: TMonitorDpiType;
out dpiX: UINT; out dpiY: UINT): HRESULT;
begin
InitHighDPIAPI;
if Assigned(g_GetDpiForMonitor) then
Result := g_GetDpiForMonitor(hmonitor, dpiType, dpiX, dpiY)
else
begin
dpiX := 0;
dpiY := 0;
Result := S_FALSE;
end;
end;
function LoadIconWithScaleDown(hinst:HINST; pszName:LPCWStr;cx:cint;cy:cint;var phico: HICON ):HRESULT;
begin
InitHighDPIAPI;
if Assigned(g_LoadIconWithScaleDown) then
Result := g_LoadIconWithScaleDown(hinst, pszName, cx, cy, phico)
else
Result := S_FALSE;
end;
function OpenThemeDataForDpi(hwnd: HWND; pszClassList: LPCWSTR; dpi: UINT): HTHEME;
begin
InitHighDPIAPI;
if Assigned(g_OpenThemeDataForDpi) then
Result := g_OpenThemeDataForDpi(hwnd, pszClassList, dpi)
else
Result := OpenThemeData(hwnd, pszClassList);
end;
procedure AdjustFormClientToWindowSize(const AHandle: HANDLE; var ioSize: TSize);
{$IFNDEF LCLRealFormBounds}
var
xClientRect, xWindowRect, xSR: TRect;
xNonClientDPI: UINT;
xInfo: tagWINDOWINFO;
xTopLeft: TPoint;
xHasMenu: Boolean;
xReplaceTop: LongInt;
{$ENDIF}
begin
{$IFNDEF LCLRealFormBounds}
// convert form client size to window size
// the difference between Windows.GetClientRect(AHandle, xClientRect) and Windows.GetWindowRect(AHandle, xWindowRect)
// must not be used because it fails when the form has visible scrollbars (and can be scrolled)
if AreDpiAwarenessContextsEqual(GetThreadDpiAwarenessContext, DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE_V2) then
xNonClientDPI := GetDpiForWindow(AHandle)
else
xNonClientDPI := ScreenInfo.PixelsPerInchX;
xInfo := Default(tagWINDOWINFO);
xInfo.cbSize := SizeOf(xInfo);
if GetWindowInfo(AHandle, @xInfo) then
begin
xHasMenu := GetMenu(AHandle)<>0;
xTopLeft := Point(0, 0);
xClientRect := Default(TRect);
xWindowRect := Default(TRect);
// AdjustWindowRectExForDpi calculates only 1 menu line but on Win32 the menu can have multiple lines
// therefore get the top coordinate from ClientToScreen difference if possible (that is correct also when scrollbars are shown)
if xHasMenu
and Windows.GetClientRect(AHandle, xClientRect) and not xClientRect.IsEmpty // just to check that there is some client rect and ClientToScreen will return some sane results
and Windows.GetWindowRect(AHandle, xWindowRect) and not xWindowRect.IsEmpty
and Windows.ClientToScreen(AHandle, xTopLeft) then
begin
xReplaceTop := xTopLeft.Y-xWindowRect.Top;
xHasMenu := False;
end else
xReplaceTop := 0;
xSR := Rect(0, 0, 0, 0);
AdjustWindowRectExForDpi(@xSR, xInfo.dwStyle, xHasMenu, xInfo.dwExStyle, xNonClientDPI);
if xReplaceTop>0 then
xSR.Top := -xReplaceTop;
Inc(ioSize.cx, xSR.Width);
Inc(ioSize.cy, xSR.Height);
end;
{$ENDIF}
end;
procedure AdjustFormClientToWindowSize(aHasMenu: Boolean; dwStyle, dwExStyle: DWORD; dpi: UINT; var ioSize: TSize);
var
SizeRect: TRect;
begin
{$IFNDEF LCLRealFormBounds}
// no known handle -> default (1 menu line)
SizeRect := Rect(0, 0, ioSize.Width, ioSize.Height);
AdjustWindowRectExForDpi(@SizeRect, dwStyle, aHasMenu, dwExStyle, dpi);
ioSize.Width := SizeRect.Width;
ioSize.Height := SizeRect.Height;
{$ENDIF}
end;
{$I win32listsl.inc}
{$I win32callback.inc}
{$I win32object.inc}
{$I win32winapi.inc}
{$I win32lclintf.inc}
var
S : String;
L, L1 : integer;
initialization
SystemCharSetIsUTF8:=true;
MMenuItemInfoSize := sizeof(MENUITEMINFO);
// Vista with classic theme is buggy with Windows.SetPixel()
// http://bugs.freepascal.org/view.php?id=15822
if WindowsVersion=wvVista then
IntSetPixel:=@VistaSetPixel
else
IntSetPixel:=@Windows.SetPixel;
if WindowsVersion>=wvXP then
IntSendMessage:=@Windows.SendMessageW
else
IntSendMessage:=@Windows.SendMessage;
// Register a windows sub-classes failed in a DLL library
// https://bugs.freepascal.org/view.php?id=37982
if IsLibrary then begin
S := System.HexStr(Pointer(System.Hinstance));
L:=Length(pChar(LCLListboxClsName));
L1 := Length( S );
Move( S[1], LCLListboxClsName[L],L1);
LCLListboxClsName[L+L1] := #0;
L:=Length(pChar(LCLComboboxClsName));
Move( S[1], LCLComboboxClsName[L], L1);
LCLComboboxClsName[L+L1] := #0;
L:=Length(pChar(LCLCheckListboxClsName));
Move( S[1], LCLCheckListboxClsName[L], L1);
LCLCheckListboxClsName[L+L1] := #0;
end;
InitDwmLibrary;
finalization
if CurDoubleBuffer.Bitmap <> 0 then
begin
Windows.DeleteObject(CurDoubleBuffer.Bitmap);
CurDoubleBuffer.Bitmap := 0;
end;
// Register a windows sub-classes failed in a DLL library
// https://bugs.freepascal.org/view.php?id=37982
if IsLibrary then begin
Windows.UnregisterClassW(PWideChar( WideString(LCLListboxClsName) ), System.HInstance);
Windows.UnregisterClassW(PWideChar( WideString(LCLComboboxClsName) ), System.HInstance);
Windows.UnregisterClassW(PWideChar( WideString(LCLCheckListboxClsName) ), System.HInstance);
end;
FreeDwmLibrary;
end.
|