Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to load a small system icon?

I need to display 16x16 pixel icons for error/warning/information. Unfortunately both LoadIcon(0, IDI_*) and LoadImage(0, OIC_*, IMAGE_ICON, 16, 16, LR_SHARED) always give me the 32x32 version of the icon.

I read about ShGetStockIconInfo but that is only available from Vista onwards and I still need to support XP.

Any ideas?

I'm using Delphi 2010 with a TImage component if that matters.

like image 938
Oliver Giesen Avatar asked Nov 26 '10 14:11

Oliver Giesen


People also ask

What is a system icon?

• System Icons: System Icons are displayed along left edge of screen. These icons are created automatically by windows during its installation. Example of some system icons are My Computer, Recycle Bin, My Documents, Internet Explorer etc.


1 Answers

The problem is that when you do it this way you get a cached version of the icon, the first one that the system loaded. That will be the large sized icon, typically 32x32. It matters not what size you specify.

What you can do is find the ID of the desired resource in user32.dll and use something like this:

LoadImage(GetModuleHandle('user32'), MAKEINTRESOURCE(103), IMAGE_ICON,
    16, 16, LR_DEFAULTCOLOR);

You would be better to call GetSystemMetrics(SM_CXSMICON) to get hold of the icon size rather than to hard code 16, but you probably already know that.

I'm not sure where you get the resource IDs from for the resources in user32, or even if they is any guarantee that they will stay constant across different Windows versions. My guess is that they will because too many programs would break, but that's just pure guesswork.

like image 133
David Heffernan Avatar answered Sep 19 '22 17:09

David Heffernan