LazMapViewer: Save DrawingEngine state in stack.

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@9713 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz 2025-03-31 11:46:38 +00:00
parent 310132d9f5
commit 7f043291a1
2 changed files with 38 additions and 15 deletions

View File

@ -694,7 +694,9 @@ procedure TMvIntfGraphicsDrawingEngine.SetBrushColor(AValue: TColor);
begin
if FCanvas <> nil then
begin
FCanvas.Brush.FPColor := TColorToFPColor(AValue);
FCanvas.Brush.FPColor := TColorToFPColor(ColorToRGB(AValue));
if AValue = clNone then
FCanvas.Brush.Style := bsClear;
AddAlphaToColors;
end;
end;
@ -826,8 +828,8 @@ begin
bmp.Canvas.Brush.Color := maskClr;
bmp.Canvas.FillRect(0, 0, bmp.Width, bmp.Height);
// Draw background of opaque text
if GetBrushStyle <> bsClear then
// Draw background of text
if (GetBrushStyle <> bsClear) and (Opacity > 0) then
begin
savedBrush := GetBrush;
savedPen := GetPen;

View File

@ -44,14 +44,18 @@ type
Color: TColor;
end;
TMvState = record
Brush: TMvBrush;
Font: TMvFont;
Pen: TMvPen;
Opacity: single;
end;
{ TMvCustomDrawingEngine }
TMvCustomDrawingEngine = class(TComponent)
private
FSavedBrush: TMvBrush;
FSavedFont: TMvFont;
FSavedOpacity: Single;
FSavedPen: TMvPen;
FStateStack: array of TMvState;
protected
function GetBrushColor: TColor; virtual; abstract;
function GetBrushStyle: TBrushStyle; virtual; abstract;
@ -771,19 +775,36 @@ begin
end;
procedure TMvCustomDrawingEngine.RestoreState;
var
n: integer;
begin
SetPen(FSavedPen);
SetBrush(FSavedBrush);
SetFont(FSavedFont);
SetOpacity(FSavedOpacity);
n := Length(FStateStack);
if n > 0 then
begin
with FStateStack[n-1] do
begin
SetPen(Pen);
SetBrush(Brush);
SetFont(Font);
SetOpacity(Opacity);
end;
SetLength(FStateStack, n-1);
end;
end;
procedure TMvCustomDrawingEngine.StoreState;
var
n: Integer;
begin
FSavedPen := GetPen;
FSavedBrush := GetBrush;
FSavedFont := GetFont;
FSavedOpacity := GetOpacity;
n := Length(FStateStack);
SetLength(FStateStack, n+1);
with FStateStack[n] do
begin
Pen := GetPen;
Brush := GetBrush;
Font := GetFont;
Opacity := GetOpacity;
end;
end;
procedure TMvCustomDrawingEngine.SetBrush(ABrush: TMvBrush);