LazMapViewer: Fix compilation in non-Windows OS. Clean-up

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@9708 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz 2025-03-27 11:11:33 +00:00
parent 3c65849b4b
commit c5dd3f0862
2 changed files with 2 additions and 24 deletions

View File

@ -54,7 +54,6 @@ type
procedure AddAlphaToColors; procedure AddAlphaToColors;
protected protected
procedure DrawBitmapOT(X, Y: Integer; ABitmap: TCustomBitmap; AOpaqueColor, ATransparentColor: TColor); procedure DrawBitmapOT(X, Y: Integer; ABitmap: TCustomBitmap; AOpaqueColor, ATransparentColor: TColor);
// procedure DrawTextImage(X, Y: Integer; AMaskImage: TFPCustomImage);
function GetBrushColor: TColor; override; function GetBrushColor: TColor; override;
function GetBrushStyle: TBrushStyle; override; function GetBrushStyle: TBrushStyle; override;
function GetFontColor: TColor; override; function GetFontColor: TColor; override;
@ -413,29 +412,6 @@ begin
img.Free; img.Free;
end; end;
end; end;
(*
{ The provided image serves as an alpha mask: black is transparent, white is
opaque.}
procedure TMvIntfGraphicsDrawingEngine.DrawTextImage(X, Y: Integer;
AMaskImage: TFPCustomImage);
var
ix, iy: Integer;
maskclr: TFPColor;
bufClr: TFPColor;
fontClr: TFPColor;
begin
fontClr := TColorToFPColor(FontColor);
for iy := 0 to AMaskImage.Height-1 do
for ix := 0 to AMaskImage.Width-1 do
begin
bufClr := FBuffer.Colors[X + ix, Y + iy];
maskClr.Red := fontClr.Red;
maskClr.Green := fontClr.Green;
maskClr.Blue := fontClr.Blue;
maskClr.Alpha := AMaskImage.Colors[ix, iy].Red; // since the text is white, Red is sufficient
FBuffer.Colors[X + iX, Y + iy] := AlphaBlend(bufClr, maskClr);
end;
end; *)
procedure TMvIntfGraphicsDrawingEngine.DrawCacheItem(X, Y: Integer; procedure TMvIntfGraphicsDrawingEngine.DrawCacheItem(X, Y: Integer;
AImg: TPictureCacheItem; ADrawMode: TItemDrawMode; AOpacity: Single); AImg: TPictureCacheItem; ADrawMode: TItemDrawMode; AOpacity: Single);

View File

@ -1019,6 +1019,8 @@ uses
mvJobQueue, mvJobQueue,
{$IFDEF MSWINDOWS} {$IFDEF MSWINDOWS}
mvDLEWin, mvDLEWin,
{$ELSE}
mvDLEFPC,
{$ENDIF} {$ENDIF}
mvDE_IntfGraphics; mvDE_IntfGraphics;