was ist neu ¦  programmier tips ¦  indy artikel ¦  intraweb artikel ¦  informationen ¦  links ¦  interviews
 sonstiges ¦  tutorials ¦  Add&Win Gewinnspiel

Tips (1541)

Dateien (137)
Datenbanken (90)
Drucken (35)
Grafik (114)
IDE (21)
Indy (5)
Internet / LAN (130)
IntraWeb (0)
Mathematik (76)
Multimedia (45)
Oberfläche (107)
Objekte/
ActiveX (51)

OpenTools API (3)
Sonstiges (126)
Strings (83)
System (266)
VCL (242)

Tips sortiert nach
Komponente


Tip suchen

Tip hinzufügen

Add&Win Gewinnspiel

Werbung

18 Visitors Online


 
...eine 'disabled ImageList' zur Laufzeit erstellen?
Autor: FINANCES Ltd
Homepage: http://www.finances-ltd.narod.ru
[ Tip ausdrucken ]  

Tip Bewertung (7):  
     


function DisabledImages(AImageList: TCustomImageList): TImageList;
const
  
MaskColor = 5757;
var
  
ImgList: TImageList;
  ABitmap: TBitmap;
  i: Integer;

  function ConvertColor(AColor: TColor): TColor;
  var
    
PixelColor, NewColor: Integer;
  begin
    
PixelColor := ColorToRGB(AColor);
    NewColor   := Round((((PixelColor shr 16) + ((PixelColor shr 8) and $00FF) +
      (PixelColor and $0000FF)) div 3)) div 2 + 96;
    Result     := RGB(NewColor, NewColor, NewColor);
  end;

  procedure ConvertColors(ABitmap: TBitmap);
  var
    
x, y: Integer;
  begin
    for 
x := 0 to ABitmap.Width - 1 do
      for 
y := 0 to ABitmap.Height - 1 do
      begin
        
ABitmap.Canvas.Pixels[x, y] :=
          ConvertColor(ABitmap.Canvas.Pixels[x, y]);
      end;
  end;

begin
  
ABitmap := TBitmap.Create;

  try
    
ImgList := TImageList.Create(nil);
    ImgList.Width := AImageList.Width;
    ImgList.Height := AImageList.Height;
    ImgList.Clear;
    for i := 0 to AImageList.Count - 1 do
    begin
      
ABitmap.Canvas.Brush.Color := MaskColor;
      ABitmap.Canvas.FillRect(rect(0, 0, AImageList.Width, AImageList.Height));
      AImageList.GetBitmap(i, ABitmap);
      ConvertColors(ABitmap);
      ImgList.AddMasked(ABitmap, ConvertColor(MaskColor));
    end;
    Result := ImgList;
  finally
    
ABitmap.Free;
  end;
end;



// Example:
procedure TForm1.FormCreate(Sender: TObject);
begin
  
ToolBar1.DisabledImages := DisabledImages(ImageList1);
end;

 

Bewerten Sie diesen Tipp:

dürftig
ausgezeichnet


Copyright © by SwissDelphiCenter.ch
All trademarks are the sole property of their respective owners