diff --git a/components/anchordocking/anchordocking.pas b/components/anchordocking/anchordocking.pas index cca1fa12a3..1edb69e8c2 100644 --- a/components/anchordocking/anchordocking.pas +++ b/components/anchordocking/anchordocking.pas @@ -6998,7 +6998,9 @@ end; procedure TAnchorDockCloseButton.CalculatePreferredSize(var PreferredWidth, PreferredHeight: integer; WithThemeSpace: Boolean); begin - with ThemeServices.GetDetailSize(ThemeServices.GetElementDetails({$IFDEF LCLWIN32}twCloseButtonNormal{$ELSE}twSmallCloseButtonNormal{$ENDIF})) do + with ThemeServices.GetDetailSizeForPPI(ThemeServices.GetElementDetails( + {$IFDEF LCLWIN32}twCloseButtonNormal{$ELSE}twSmallCloseButtonNormal{$ENDIF}), + Font.PixelsPerInch) do begin PreferredWidth:=cx; PreferredHeight:=cy; @@ -7040,7 +7042,9 @@ end; procedure TAnchorDockMinimizeButton.CalculatePreferredSize(var PreferredWidth, PreferredHeight: integer; WithThemeSpace: Boolean); begin - with ThemeServices.GetDetailSize(ThemeServices.GetElementDetails({$IFDEF LCLGtk2}twMDIRestoreButtonNormal{$ELSE}twMinButtonNormal{$ENDIF})) do + with ThemeServices.GetDetailSizeForPPI(ThemeServices.GetElementDetails( + {$IFDEF LCLGtk2}twMDIRestoreButtonNormal{$ELSE}twMinButtonNormal{$ENDIF}), + Font.PixelsPerInch) do begin PreferredWidth:=cx; PreferredHeight:=cy; diff --git a/components/datetimectrls/datetimepicker.pas b/components/datetimectrls/datetimepicker.pas index a64a2a933a..d12deb5395 100644 --- a/components/datetimectrls/datetimepicker.pas +++ b/components/datetimectrls/datetimepicker.pas @@ -2036,15 +2036,14 @@ begin inherited FontChanged(Sender); end; -function TCustomDateTimePicker.GetCheckBoxRect( - IgnoreRightToLeft: Boolean): TRect; +function TCustomDateTimePicker.GetCheckBoxRect(IgnoreRightToLeft: Boolean): TRect; var Details: TThemedElementDetails; CSize: TSize; begin Details := ThemeServices.GetElementDetails(tbCheckBoxCheckedNormal); - CSize := ThemeServices.GetDetailSize(Details); + CSize := ThemeServices.GetDetailSizeForPPI(Details, Font.PixelsPerInch); CSize.cx := ScaleScreenToFont(CSize.cx); CSize.cy := ScaleScreenToFont(CSize.cy); @@ -3869,7 +3868,7 @@ procedure TDTSpeedButton.Paint; else ArrowState := ttbSplitButtonDropDownDisabled; Details := ThemeServices.GetElementDetails(ArrowState); - ASize := ThemeServices.GetDetailSize(Details); + ASize := ThemeServices.GetDetailSizeForPPI(Details, Font.PixelsPerInch); ARect := Rect(0, 0, Width, Height); InflateRect(ARect, -(ARect.Right - ARect.Left - ASize.cx) div 2, 0); ThemeServices.DrawElement(Canvas.Handle, Details, ARect); diff --git a/components/ideintf/objectinspector.pp b/components/ideintf/objectinspector.pp index 6077f41b2e..3037379163 100644 --- a/components/ideintf/objectinspector.pp +++ b/components/ideintf/objectinspector.pp @@ -1025,7 +1025,7 @@ begin FSplitterX:=100; FPreferredSplitterX:=FSplitterX; Details := ThemeServices.GetElementDetails(ttGlyphOpened); - FIndent := ThemeServices.GetDetailSize(Details).cx; + FIndent := ThemeServices.GetDetailSizeForPPI(Details, Font.PixelsPerInch).cx; FBackgroundColor:=DefBackgroundColor; FReferencesColor:=DefReferencesColor; @@ -2401,7 +2401,7 @@ begin // WasValueClick param is only for Boolean checkboxes, toggled if user // clicks the square. It has no effect for Boolean ComboBox editor. Details := ThemeServices.GetElementDetails(tbCheckBoxCheckedNormal); - Sz := ThemeServices.GetDetailSize(Details); + Sz := ThemeServices.GetDetailSizeForPPI(Details, Font.PixelsPerInch); SetItemIndexAndFocus(Index, (X>SplitterX) and (X<=SplitterX+Sz.cx)); SetCaptureControl(Self); Column := oipgcValue; @@ -2976,7 +2976,7 @@ var Details := ThemeServices.GetElementDetails(ttGlyphClosed); if CanExpandRow(CurRow) then begin - sz := ThemeServices.GetDetailSize(Details); + sz := ThemeServices.GetDetailSizeForPPI(Details, Font.PixelsPerInch); IconY:=((NameRect.Bottom - NameRect.Top - sz.cy) div 2) + NameRect.Top; ThemeServices.DrawElement(Canvas.Handle, Details, Rect(IconX, IconY, IconX + sz.cx, IconY + sz.cy), nil) diff --git a/components/ideintf/propedits.pp b/components/ideintf/propedits.pp index 8a3c54255b..e01463dfac 100644 --- a/components/ideintf/propedits.pp +++ b/components/ideintf/propedits.pp @@ -30,7 +30,7 @@ uses StdCtrls, Buttons, Menus, ExtCtrls, ComCtrls, Dialogs, EditBtn, Grids, ValEdit, FileCtrl, PropertyStorage, Themes, // LazControls - {$IFnDEF UseOINormalCheckBox} CheckBoxThemed, {$ENDIF} + CheckBoxThemed, // LazUtils FileUtil, StringHashList, LazMethodList, LazLoggerBase, LazUtilities, LazStringUtils, GraphType, UITypes, FPCAdds, // for StrToQWord in older fpc versions @@ -302,7 +302,9 @@ type FPropList: PInstPropList; protected // Draw Checkbox for Boolean and Set element editors. + {$IFDEF UseOINormalCheckBox} function DrawCheckbox(ACanvas: TCanvas; const ARect: TRect; IsTrue: Boolean): TRect; + {$ENDIF} function DrawCheckValue(ACanvas: TCanvas; const ARect: TRect; {%H-}AState: TPropEditDrawState; {%H-}IsTrue: Boolean): TRect; procedure DrawValue(const AValue: string; ACanvas:TCanvas; const ARect:TRect; @@ -2775,6 +2777,7 @@ begin Result := (FPropList^[0].Instance <> nil) and IsStoredProp(FPropList^[0].Instance, FPropList^[0].PropInfo); end; +{$IFDEF UseOINormalCheckBox} function TPropertyEditor.DrawCheckbox(ACanvas: TCanvas; const ARect: TRect; IsTrue: Boolean): TRect; // Draws a Checkbox using theme services for editing booleans. @@ -2796,7 +2799,7 @@ begin else Check := tbCheckBoxUncheckedNormal; Details := ThemeServices.GetElementDetails(Check); - Sz := ThemeServices.GetDetailSize(Details); + Sz := TCustomCheckBoxThemed.GetCheckBoxSize(ScreenInfo.PixelsPerInchX); TopMargin := (ARect.Bottom - ARect.Top - Sz.cy) div 2; BRect := ARect; // Left varies by widgetset and theme etc. Real Checkbox itself has a left margin. @@ -2809,6 +2812,7 @@ begin // Text will be written after the box. Inc(Result.Left, Sz.cx + 4); end; +{$ENDIF} function TPropertyEditor.DrawCheckValue(ACanvas: TCanvas; const ARect: TRect; AState: TPropEditDrawState; IsTrue: Boolean): TRect; diff --git a/components/lazcontrols/checkboxthemed.pas b/components/lazcontrols/checkboxthemed.pas index 39a998fed1..dd70c95118 100644 --- a/components/lazcontrols/checkboxthemed.pas +++ b/components/lazcontrols/checkboxthemed.pas @@ -53,8 +53,6 @@ type procedure SetState(AValue: TCheckBoxState); private class var FThemeCheckBoxSize: TSize; - protected - class function GetCheckBoxSize(const PixelsPerInch: Integer): TSize; protected CheckBoxPressed: Boolean; KnobPosUnchecked, KnobPosChecked, KnobPosGrayed: Integer; @@ -83,6 +81,7 @@ type cFocusBorder: SmallInt = 2; cIndent: SmallInt = 5; public + class function GetCheckBoxSize(const PixelsPerInch: Integer): TSize; class procedure PaintSelf(ACanvas: TCanvas; ACaption: string; ARect: TRect; AState: TCheckBoxState; ARightToLeft, AHovered, APressed, AFocused: Boolean; AAlignment: TLeftRight; AEnabled: Boolean = True); @@ -236,9 +235,11 @@ begin end; class procedure TCustomCheckBoxThemed.InitCheckBoxSize; +var + Detail: TThemedElementDetails; begin - with ThemeServices do - FThemeCheckBoxSize := GetDetailSize(GetElementDetails(tbCheckBoxCheckedNormal)); + Detail := ThemeServices.GetElementDetails(tbCheckBoxCheckedNormal); + FThemeCheckBoxSize := ThemeServices.GetDetailSizeForPPI(Detail, Screen.PixelsPerInch); end; function TCustomCheckBoxThemed.DialogChar(var Message: TLMKey): Boolean; @@ -285,8 +286,7 @@ begin Result := TCheckBoxThemedActionLink; end; -class function TCustomCheckBoxThemed.GetCheckBoxSize( - const PixelsPerInch: Integer): TSize; +class function TCustomCheckBoxThemed.GetCheckBoxSize(const PixelsPerInch: Integer): TSize; begin if FThemeCheckBoxSize.cx<=0 then InitCheckBoxSize; diff --git a/components/lazcontrols/smallorderedseteditor.pas b/components/lazcontrols/smallorderedseteditor.pas index 84dafc1c6c..2445729d64 100644 --- a/components/lazcontrols/smallorderedseteditor.pas +++ b/components/lazcontrols/smallorderedseteditor.pas @@ -126,7 +126,7 @@ begin Details := ThemeServices.GetElementDetails(tbCheckBoxCheckedNormal) else Details := ThemeServices.GetElementDetails(tbCheckBoxUncheckedNormal); - R.Right:=R.Left+ThemeServices.GetDetailSize(Details).cx; + R.Right:=R.Left+ThemeServices.GetDetailSizeForPPI(Details, PixelsPerInch).cx; ThemeServices.DrawElement(ItemsTreeView.Canvas.Handle, Details, R, nil); end; end; @@ -248,8 +248,8 @@ begin if Visible and (ImageList1.Count=0) then begin CheckedDetails := ThemeServices.GetElementDetails(tbCheckBoxCheckedNormal); UnCheckedDetails := ThemeServices.GetElementDetails(tbCheckBoxCheckedNormal); - CheckedSize:=ThemeServices.GetDetailSize(CheckedDetails); - UnCheckedSize:=ThemeServices.GetDetailSize(UnCheckedDetails); + CheckedSize:=ThemeServices.GetDetailSizeForPPI(CheckedDetails, PixelsPerInch); + UnCheckedSize:=ThemeServices.GetDetailSizeForPPI(UnCheckedDetails, PixelsPerInch); ImageList1.Width:=Max(CheckedSize.cx,UnCheckedSize.cx); ImageList1.Height:=Max(CheckedSize.cy,UnCheckedSize.cy); Bmp:=TBitmap.Create; diff --git a/components/lazreport/source/addons/DialogControls/lrdialogcontrols.pas b/components/lazreport/source/addons/DialogControls/lrdialogcontrols.pas index 45574b7634..9853ca844c 100644 --- a/components/lazreport/source/addons/DialogControls/lrdialogcontrols.pas +++ b/components/lazreport/source/addons/DialogControls/lrdialogcontrols.pas @@ -519,7 +519,7 @@ begin Details := ThemeServices.GetElementDetails(tbRadioButtonUncheckedNormal); details_chek:=ThemeServices.GetElementDetails(tbRadioButtonCheckedNormal); - CSize := ThemeServices.GetDetailSize(Details); + CSize := ThemeServices.GetDetailSizeForPPI(Details, Font.PixelsPerInch); while (AY < DRect.Bottom) and (i0 then // theme services support sorted arrows @@ -4839,7 +4839,7 @@ begin end else begin Details := ThemeServices.GetElementDetails(arrtb[AState]); - CSize := ThemeServices.GetDetailSize(Details); + CSize := ThemeServices.GetDetailSizeForPPI(Details, Font.PixelsPerInch); CSize.cx := MulDiv(CSize.cx, Font.PixelsPerInch, Screen.PixelsPerInch); CSize.cy := MulDiv(CSize.cy, Font.PixelsPerInch, Screen.PixelsPerInch); end; diff --git a/lcl/include/comboex.inc b/lcl/include/comboex.inc index 5cb78d92e9..0c6f2e4fb5 100644 --- a/lcl/include/comboex.inc +++ b/lcl/include/comboex.inc @@ -646,7 +646,7 @@ begin { do not call inherited ! } [aEnabled, aState, not aDropped and FCheckHighlight]); if FNeedMeasure then begin - FCheckSize:=ThemeServices.GetDetailSize(aDetail); + FCheckSize:=ThemeServices.GetDetailSizeForPPI(aDetail, Font.PixelsPerInch); FTextHeight:=Canvas.TextHeight('ŠjÁÇ'); if not aDropped then begin diff --git a/lcl/include/customsplitter.inc b/lcl/include/customsplitter.inc index a023044e97..be8aec4c54 100644 --- a/lcl/include/customsplitter.inc +++ b/lcl/include/customsplitter.inc @@ -881,7 +881,7 @@ procedure TCustomSplitter.Paint; BF_ADJUST or BF_RECT, @ARect); GripperRect := ARect; - GripperSize := ThemeServices.GetDetailSize(GripperDetails); + GripperSize := ThemeServices.GetDetailSizeForPPI(GripperDetails, Font.PixelsPerInch); if (GripperSize.cx <> -1) or (GripperSize.cy <> -1) then begin if ResizeAnchor in [akLeft,akRight] then diff --git a/lcl/include/toolbar.inc b/lcl/include/toolbar.inc index 9aa28a88b1..c31cf6e635 100644 --- a/lcl/include/toolbar.inc +++ b/lcl/include/toolbar.inc @@ -90,9 +90,9 @@ begin FFlat := True; Height := 32; Details := ThemeServices.GetElementDetails(ttbSplitButtonDropDownNormal); - FThemeDropDownWidth := ThemeServices.GetDetailSize(Details).cx; + FThemeDropDownWidth := ThemeServices.GetDetailSizeForPPI(Details, Font.PixelsPerInch).cx; Details := ThemeServices.GetElementDetails(ttbDropDownButtonNormal); - FThemeButtonDropWidth := ThemeServices.GetDetailSize(Details).cx; + FThemeButtonDropWidth := ThemeServices.GetDetailSizeForPPI(Details, Font.PixelsPerInch).cx; FButtonHeight := -1; FButtonWidth := -1; FDropDownWidth := -1; diff --git a/lcl/include/treeview.inc b/lcl/include/treeview.inc index 234848eafd..545ea61bb1 100644 --- a/lcl/include/treeview.inc +++ b/lcl/include/treeview.inc @@ -3475,7 +3475,7 @@ begin FExpandSignSize := -1; FExpandSignWidth := 2; Details := ThemeServices.GetElementDetails(ttGlyphOpened); - FThemeExpandSignSize := ThemeServices.GetDetailSize(Details).cx; + FThemeExpandSignSize := ThemeServices.GetDetailSizeForPPI(Details, Font.PixelsPerInch).cx; FTreeNodes := CreateNodes; BorderStyle := bsSingle; BorderWidth := 0; diff --git a/lcl/themes.pas b/lcl/themes.pas index 2d0f3a69c4..d93d57ec3c 100644 --- a/lcl/themes.pas +++ b/lcl/themes.pas @@ -477,7 +477,7 @@ type function GetElementDetails(Detail: TThemedTreeview): TThemedElementDetails; overload; function GetElementDetails(Detail: TThemedWindow): TThemedElementDetails; overload; - function GetDetailSize(Details: TThemedElementDetails): TSize; virtual; + function GetDetailSize(Details: TThemedElementDetails): TSize; virtual; deprecated 'use GetDetailSizeForPPI'; function GetDetailSizeForWindow(Details: TThemedElementDetails; const AWindow: HWND): TSize; virtual; function GetDetailSizeForPPI(Details: TThemedElementDetails; PPI: Integer): TSize; virtual; function GetDetailRegion(DC: HDC; Details: TThemedElementDetails; const R: TRect): HRGN; virtual; diff --git a/packager/interpkgconflictfiles.pas b/packager/interpkgconflictfiles.pas index 7b1ff020db..84d73775e3 100644 --- a/packager/interpkgconflictfiles.pas +++ b/packager/interpkgconflictfiles.pas @@ -241,7 +241,7 @@ begin else Detail := tbCheckBoxUncheckedNormal; Details := ThemeServices.GetElementDetails(Detail); - aSize := ThemeServices.GetDetailSize(Details); + aSize := ThemeServices.GetDetailSizeForPPI(Details, PixelsPerInch); NodeRect:=Node.DisplayRect(false); r:=Bounds(Node.DisplayIconLeft+(ImageList1.Width-aSize.cx) div 2, NodeRect.Top+(NodeRect.Bottom-NodeRect.Top-aSize.cy) div 2, @@ -392,7 +392,7 @@ begin ButtonPanel1.OKButton.OnClick:=@OkButtonClick; Details := ThemeServices.GetElementDetails(tbCheckBoxCheckedNormal); - aSize := ThemeServices.GetDetailSize(Details); + aSize := ThemeServices.GetDetailSizeForPPI(Details, PixelsPerInch); ImageList1.Width:=Max(16,aSize.cx); ImageList1.Height:=Max(16,aSize.cy); // add empty images