WM_PRINTCLIENT:
begin
GetClientRect(WinHandle, Rect);
DC := HDC(wp);
SrcDC := SKAERO_GetProperty(WinHandle, FORM_PaintDC);
SKAERO_MoveBackground(WinHandle, Rect.Left, Rect.Top, True);
BitBlt(
DC, 0, 0, Rect.Right, Rect.Bottom, SrcDC, 0, 0, SRCCOPY);
if not DrawSideBar
then
begin
GetClipBox(
DC, Rect);
Rect.Top := 198;
Rect.Left := 12;
GDIP_DrawTextToDC(
DC, '
Over The Task Bar', Rect, SKAERO_ACTIVECAPTION,
'
Nasalization Free', 14, FontStyleBoldItalic, 1.1,
ZD_TextVertUp, MainApp.FPrivateFont);
DrawSideBar := True;
end;
ReleaseDC(Winhandle,
DC);
ReleaseDC(Winhandle, SrcDC);
end;