From 34844aa9340f1dbe874a52ba1d01823bdc87c189 Mon Sep 17 00:00:00 2001 From: zeljan1 Date: Thu, 9 Jan 2025 09:21:59 +0100 Subject: [PATCH] LCL: SetDeviceScaleRatio renamed to SetCanvasScaleFactor. --- components/turbopower_ipro/iphtml.pas | 2 +- components/virtualtreeview/laz.virtualtrees.pas | 8 ++++---- designer/designer.pp | 2 +- lcl/include/intfbaselcl.inc | 2 +- lcl/include/lclintf.inc | 4 ++-- lcl/include/lclintfh.inc | 2 +- lcl/interfaces/cocoa/cocoalclintf.inc | 2 +- lcl/interfaces/cocoa/cocoalclintfh.inc | 2 +- lcl/interfaces/gtk3/gtk3lclintf.inc | 2 +- lcl/interfaces/gtk3/gtk3lclintfh.inc | 2 +- lcl/interfaces/gtk3/gtk3objects.pas | 6 +++--- lcl/interfaces/qt5/qtlclintf.inc | 2 +- lcl/interfaces/qt5/qtlclintfh.inc | 2 +- lcl/interfaces/qt6/qtlclintf.inc | 2 +- lcl/interfaces/qt6/qtlclintfh.inc | 2 +- 15 files changed, 21 insertions(+), 21 deletions(-) diff --git a/components/turbopower_ipro/iphtml.pas b/components/turbopower_ipro/iphtml.pas index e585526d75..20a34ae5a6 100644 --- a/components/turbopower_ipro/iphtml.pas +++ b/components/turbopower_ipro/iphtml.pas @@ -3429,7 +3429,7 @@ begin AScale := Application.MainForm.GetCanvasScaleFactor; PaintBufferBitmap.Width := Round(FClientRect.Right * AScale); PaintBufferBitmap.Height := Round(FClientRect.Bottom * AScale); - LCLIntf.SetDeviceScaleRatio(PaintBufferBitmap.Canvas.Handle, AScale); + LCLIntf.SetCanvasScaleFactor(PaintBufferBitmap.Canvas.Handle, AScale); PaintBuffer := PaintBufferBitmap.Canvas; end; FTarget := PaintBuffer; diff --git a/components/virtualtreeview/laz.virtualtrees.pas b/components/virtualtreeview/laz.virtualtrees.pas index 32ded1693f..ab1d780d45 100644 --- a/components/virtualtreeview/laz.virtualtrees.pas +++ b/components/virtualtreeview/laz.virtualtrees.pas @@ -9262,7 +9262,7 @@ begin begin FHeaderBitmap.Clear; FHeaderBitmap.SetSize(Round(Max(Right, R.Right - R.Left) * sc), Round(Bottom * sc)); - LCLIntf.SetDeviceScaleRatio(FHeaderBitmap.Canvas.Handle, sc); + LCLIntf.SetCanvasScaleFactor(FHeaderBitmap.Canvas.Handle, sc); end; VisibleFixedWidth := GetVisibleFixedWidth; @@ -30713,7 +30713,7 @@ begin NodeBitmap.Width := Round(PaintWidth * ScaleFactor); NodeBitmap.Height := 1; - LCLIntf.SetDeviceScaleRatio(NodeBitmap.Canvas.Handle, ScaleFactor); + LCLIntf.SetCanvasScaleFactor(NodeBitmap.Canvas.Handle, ScaleFactor); // Make sure the buffer bitmap and target bitmap use the same transformation mode. {$ifndef Gtk} @@ -30834,7 +30834,7 @@ begin // Avoid that the VCL copies the bitmap while changing its height. if Height > 0 then SetSize(1,1); // can't go to 0, must keep canvas SetSize(Round(PaintWidth * ScaleFactor), Round(PaintInfo.Node.NodeHeight * ScaleFactor)); - LCLIntf.SetDeviceScaleRatio(NodeBitmap.Canvas.Handle, ScaleFactor); + LCLIntf.SetCanvasScaleFactor(NodeBitmap.Canvas.Handle, ScaleFactor); {$ifdef UseSetCanvasOrigin} SetCanvasOrigin(Canvas, Window.Left, 0); {$else} @@ -31200,7 +31200,7 @@ begin NodeBitmap.PixelFormat := pf32Bit; NodeBitmap.Width := Round((TargetRect.Right - TargetRect.Left) * ScaleFactor); NodeBitmap.Height := Round((TargetRect.Bottom - TargetRect.Top) * ScaleFactor); - LCLIntf.SetDeviceScaleRatio(NodeBitmap.Canvas.Handle, ScaleFactor); + LCLIntf.SetCanvasScaleFactor(NodeBitmap.Canvas.Handle, ScaleFactor); end; {$ifdef DEBUG_VTV}Logger.Send([lcPaintDetails],'NodeBitmap.Handle after changing height to background',NodeBitmap.Handle);{$endif} diff --git a/designer/designer.pp b/designer/designer.pp index 5dcc2cbb96..a9c76ef211 100644 --- a/designer/designer.pp +++ b/designer/designer.pp @@ -3635,7 +3635,7 @@ begin try TextSize := Icon.Canvas.TextExtent(AComponent.Name); Icon.SetSize(Round(TextSize.cx * ScaleFactor), Round(TextSize.cy * ScaleFactor)); - LCLIntf.SetDeviceScaleRatio(Icon.Canvas.Handle, ScaleFactor); + LCLIntf.SetCanvasScaleFactor(Icon.Canvas.Handle, ScaleFactor); Icon.Canvas.Font.Assign(FDDC.Canvas.Font); Icon.Canvas.Font.PixelsPerInch := FDDC.Canvas.Font.PixelsPerInch; TextRect := Rect(0, 0, TextSize.cx, TextSize.cy); diff --git a/lcl/include/intfbaselcl.inc b/lcl/include/intfbaselcl.inc index becf6106e8..51c9a1031f 100644 --- a/lcl/include/intfbaselcl.inc +++ b/lcl/include/intfbaselcl.inc @@ -644,7 +644,7 @@ end; //Currently cocoa, qt5, qt6 and gtk3 are known to support this. Without proper scale ratio //setup, bitmap text rendering is blurred.See iphtml.pas, procedure TIpHtml.Render() how //we use it.Param DC is device context with selected bitmap/image into. -procedure TWidgetSet.SetDeviceScaleRatio(DC: HDC; const AScaleRatio: double); +procedure TWidgetSet.SetCanvasScaleFactor(DC: HDC; const AScaleRatio: double); begin end; diff --git a/lcl/include/lclintf.inc b/lcl/include/lclintf.inc index 2895b15b1e..082feb24ad 100644 --- a/lcl/include/lclintf.inc +++ b/lcl/include/lclintf.inc @@ -423,9 +423,9 @@ procedure SendCachedLCLMessages; begin end; -procedure SetDeviceScaleRatio(DC: HDC; const AScaleRatio: double); +procedure SetCanvasScaleFactor(DC: HDC; const AScaleRatio: double); begin - WidgetSet.SetDeviceScaleRatio(DC, AScaleRatio); + WidgetSet.SetCanvasScaleFactor(DC, AScaleRatio); end; function SetCaretRespondToFocus(Handle: hWnd; ShowHideOnFocus: boolean):Boolean; diff --git a/lcl/include/lclintfh.inc b/lcl/include/lclintfh.inc index 5377cc6c4b..af20d93101 100644 --- a/lcl/include/lclintfh.inc +++ b/lcl/include/lclintfh.inc @@ -109,7 +109,7 @@ procedure RemovePipeEventHandler(var AHandler: PPipeEventHandler); {$IFDEF IF_BA function RequestInput(const InputCaption, InputPrompt : String; MaskInput : Boolean; var Value : String) : Boolean; {$IFDEF IF_BASE_MEMBER}virtual;{$ENDIF} procedure SendCachedLCLMessages; {$IFDEF IF_BASE_MEMBER}virtual;{$ENDIF} -procedure SetDeviceScaleRatio(DC: HDC; const AScaleRatio: double); {$IFDEF IF_BASE_MEMBER}virtual;{$ENDIF} +procedure SetCanvasScaleFactor(DC: HDC; const AScaleRatio: double); {$IFDEF IF_BASE_MEMBER}virtual;{$ENDIF} function SetCaretRespondToFocus(handle: HWND; ShowHideOnFocus: boolean): Boolean; {$IFDEF IF_BASE_MEMBER}virtual;{$ENDIF} function SetComboMinDropDownSize(Handle: HWND; MinItemsWidth, MinItemsHeight, MinItemCount: integer): boolean; {$IFDEF IF_BASE_MEMBER}virtual;{$ENDIF} procedure SetEventHandlerFlags(AHandler: PEventHandler; NewFlags: dword); {$IFDEF IF_BASE_MEMBER}virtual;{$ENDIF} diff --git a/lcl/interfaces/cocoa/cocoalclintf.inc b/lcl/interfaces/cocoa/cocoalclintf.inc index 4ee1e6a399..ad061ba3be 100644 --- a/lcl/interfaces/cocoa/cocoalclintf.inc +++ b/lcl/interfaces/cocoa/cocoalclintf.inc @@ -740,7 +740,7 @@ begin Result := True; end; -procedure TCocoaWidgetSet.SetDeviceScaleRatio(DC: HDC; const AScaleRatio: double); +procedure TCocoaWidgetSet.SetCanvasScaleFactor(DC: HDC; const AScaleRatio: double); var ctx: TCocoaContext; begin diff --git a/lcl/interfaces/cocoa/cocoalclintfh.inc b/lcl/interfaces/cocoa/cocoalclintfh.inc index 35e7da8044..7e5c5a3ce6 100644 --- a/lcl/interfaces/cocoa/cocoalclintfh.inc +++ b/lcl/interfaces/cocoa/cocoalclintfh.inc @@ -50,5 +50,5 @@ function RawImage_FromDevice(out ARawImage: TRawImage; ADC: HDC; const ARect: TR {function ReleaseDesignerDC(Window: HWND; DC: HDC): Integer; override;} -procedure SetDeviceScaleRatio(DC: HDC; const AScaleRatio: double); override; +procedure SetCanvasScaleFactor(DC: HDC; const AScaleRatio: double); override; diff --git a/lcl/interfaces/gtk3/gtk3lclintf.inc b/lcl/interfaces/gtk3/gtk3lclintf.inc index 6284f47e16..2c8088376e 100644 --- a/lcl/interfaces/gtk3/gtk3lclintf.inc +++ b/lcl/interfaces/gtk3/gtk3lclintf.inc @@ -1186,7 +1186,7 @@ begin end; end; -procedure TGtk3WidgetSet.SetDeviceScaleRatio(DC: HDC; const AScaleRatio: double); +procedure TGtk3WidgetSet.SetCanvasScaleFactor(DC: HDC; const AScaleRatio: double); var Gtk3DC: TGtk3DeviceContext absolute DC; begin diff --git a/lcl/interfaces/gtk3/gtk3lclintfh.inc b/lcl/interfaces/gtk3/gtk3lclintfh.inc index 815053423c..eb2fb24eda 100644 --- a/lcl/interfaces/gtk3/gtk3lclintfh.inc +++ b/lcl/interfaces/gtk3/gtk3lclintfh.inc @@ -61,7 +61,7 @@ procedure RemoveEventHandler(var AHandler: PEventHandler); override; procedure RemoveProcessEventHandler(var AHandler: PProcessEventHandler); override; function SetComboMinDropDownSize(Handle: HWND; MinItemsWidth, MinItemsHeight, MinItemCount: integer): boolean; override; -procedure SetDeviceScaleRatio(DC: HDC; const AScaleRatio: double); override; +procedure SetCanvasScaleFactor(DC: HDC; const AScaleRatio: double); override; procedure SetEventHandlerFlags(AHandler: PEventHandler; NewFlags: dword); override; procedure SetRubberBandRect(const ARubberBand: HWND; const ARect: TRect); override; diff --git a/lcl/interfaces/gtk3/gtk3objects.pas b/lcl/interfaces/gtk3/gtk3objects.pas index 8919653706..6caff04bea 100644 --- a/lcl/interfaces/gtk3/gtk3objects.pas +++ b/lcl/interfaces/gtk3/gtk3objects.pas @@ -228,7 +228,7 @@ type procedure ApplyFont; procedure ApplyPen; procedure FillAndStroke; - procedure setDeviceScaleRatio(const AValue: double); + procedure SetCanvasScaleFactor(const AValue: double); public CairoSurface: Pcairo_surface_t; pcr: Pcairo_t; @@ -288,7 +288,7 @@ type property CurrentPen: TGtk3Pen read FCurrentPen write FCurrentPen; property CurrentRegion: TGtk3Region read FCurrentRegion; property CurrentTextColor: TColorRef read FCurrentTextColor write FCurrentTextColor; - property DeviceScaleRatio: double read FDeviceScaleRatio write setDeviceScaleRatio; + property DeviceScaleRatio: double read FDeviceScaleRatio write SetCanvasScaleFactor; property Offset: TPoint read GetOffset write SetOffset; property OwnsSurface: Boolean read FOwnsSurface; property vBrush: TGtk3Brush read FBrush write setBrush; @@ -2417,7 +2417,7 @@ begin cairo_set_antialias(pcr, caa[aamode]); end; -procedure TGtk3DeviceContext.setDeviceScaleRatio(const AValue: double); +procedure TGtk3DeviceContext.SetCanvasScaleFactor(const AValue: double); var matrix: Tcairo_matrix_t; begin diff --git a/lcl/interfaces/qt5/qtlclintf.inc b/lcl/interfaces/qt5/qtlclintf.inc index 98512fb820..c65e44cb1b 100644 --- a/lcl/interfaces/qt5/qtlclintf.inc +++ b/lcl/interfaces/qt5/qtlclintf.inc @@ -868,7 +868,7 @@ begin // todo end; -procedure TQtWidgetSet.SetDeviceScaleRatio(DC: HDC; const AScaleRatio: double); +procedure TQtWidgetSet.SetCanvasScaleFactor(DC: HDC; const AScaleRatio: double); var QtDc: TQtDeviceContext absolute DC; begin diff --git a/lcl/interfaces/qt5/qtlclintfh.inc b/lcl/interfaces/qt5/qtlclintfh.inc index af5eae1c92..72a34bb13a 100644 --- a/lcl/interfaces/qt5/qtlclintfh.inc +++ b/lcl/interfaces/qt5/qtlclintfh.inc @@ -73,7 +73,7 @@ procedure RemovePipeEventHandler(var AHandler: PPipeEventHandler); override; procedure RemoveProcessEventHandler(var AHandler: PProcessEventHandler); override; procedure SetEventHandlerFlags(AHandler: PEventHandler; NewFlags: dword); override; -procedure SetDeviceScaleRatio(DC: HDC; const AScaleRatio: double); override; +procedure SetCanvasScaleFactor(DC: HDC; const AScaleRatio: double); override; function SetComboMinDropDownSize(Handle: HWND; MinItemsWidth, MinItemsHeight, MinItemCount: integer): boolean; override; procedure SetRubberBandRect(const ARubberBand: HWND; const ARect: TRect); override; diff --git a/lcl/interfaces/qt6/qtlclintf.inc b/lcl/interfaces/qt6/qtlclintf.inc index 1e494fe413..1c1da39a35 100644 --- a/lcl/interfaces/qt6/qtlclintf.inc +++ b/lcl/interfaces/qt6/qtlclintf.inc @@ -887,7 +887,7 @@ begin // todo end; -procedure TQtWidgetSet.SetDeviceScaleRatio(DC: HDC; const AScaleRatio: double); +procedure TQtWidgetSet.SetCanvasScaleFactor(DC: HDC; const AScaleRatio: double); var QtDc: TQtDeviceContext absolute DC; begin diff --git a/lcl/interfaces/qt6/qtlclintfh.inc b/lcl/interfaces/qt6/qtlclintfh.inc index af5eae1c92..72a34bb13a 100644 --- a/lcl/interfaces/qt6/qtlclintfh.inc +++ b/lcl/interfaces/qt6/qtlclintfh.inc @@ -73,7 +73,7 @@ procedure RemovePipeEventHandler(var AHandler: PPipeEventHandler); override; procedure RemoveProcessEventHandler(var AHandler: PProcessEventHandler); override; procedure SetEventHandlerFlags(AHandler: PEventHandler; NewFlags: dword); override; -procedure SetDeviceScaleRatio(DC: HDC; const AScaleRatio: double); override; +procedure SetCanvasScaleFactor(DC: HDC; const AScaleRatio: double); override; function SetComboMinDropDownSize(Handle: HWND; MinItemsWidth, MinItemsHeight, MinItemCount: integer): boolean; override; procedure SetRubberBandRect(const ARubberBand: HWND; const ARect: TRect); override;