whats new ¦  programming tips ¦  indy articles ¦  intraweb articles ¦  informations ¦  links ¦  interviews
 misc ¦  tutorials ¦  Add&Win Game

Tips (1541)

Database (90)
Files (137)
Forms (107)
Graphic (114)
IDE (21)
Indy (5)
Internet / LAN (130)
IntraWeb (0)
Math (76)
Misc (126)
Multimedia (45)
Objects/
ActiveX (51)

OpenTools API (3)
Printing (35)
Strings (83)
System (266)
VCL (242)

Top15

Tips sort by
component


Search Tip

Add new Tip

Add&Win Game

Advertising

31 Visitors Online


 
...create 'disabled ImageList' at run time?
Autor: FINANCES Ltd
Homepage: http://www.finances-ltd.narod.ru
[ Print tip ]  

Tip Rating (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;

 

Rate this tip:

poor
very good


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