Introduction
Have you ever wondered how to draw/overlay small icons over existing icons? Or how to have some files displayed with an altered icon to denote a specific state? Or even wondered how shortcuts are displayed with small arrows over your application's icon? I had these questions in mind, but after some research, I found that this can be easily achieved via "Shell Icon Overlay Identifier"
In short, icon overlays are usually small icons placed over an existing icon of a shell object in Windows's Explorer or Desktop. A widely known example is the shortcut arrow icon that is overlaid over existing objects' icons. A shell object can be a physical file, a namespace, a shortcut, ....
In this article, you will learn how to implement a shell icon overlay identifier in a very easy way. No prior knowledge about shell extensions or shell programming is required. However, to get basic knowledge about shell programming, please check this article's references.
It is preferable that you have Visual Studio .NET and the Platform SDK, because
the steps described in this article are for VS.NET, they might work for you
if you use VS 6.0.
For your convenience, there is a comprehensive Q&A section at the end of the article.
Step 1 - Creating a simple COM object
After you start Visual Studio .NET:
- Choose File menu / New Project.
- Choose Visual C++ Project / ATL Project.
- Name the project "OverlayIcon", and press OK.
Now, in the ATL project wizard:
- Choose "Application Settings" tab.
- Uncheck "Attributed".
- Make sure you selected server type as "Dynamic Link Library".
- If you want to have MFC support, check its option (in this article. we won't be needing MFC).
- Now press "Finish".
Now, in VC's ClassView or using the "Project" menu:
- Right click on the "OverlayIcon" tree root (in class view).
- Then choose Add / New Class.
- You can achieve (1) and (2) via "Project menu / Add New Class".
- Expand the "Visual C++" tree to see the "ATL" node.
- Click on "ATL", and choose from the view on the right "ATL Simple Object", and press Open.
Now, in the "ATL Simple Object Wizard" window:
- In the "C++ / Short Name" text box, type "MyOverlayIcon".
- You will notice that all the other text boxes have been also filled.
- Now, press "Finish".
At this stage, you should see in the ClassView a new class named CMyOverlayIcon
.
Before moving to step two, which is about implementing an IShellIconOverlayIdentifier
interface, you need to add a new icon to your resources. This icon should be transparent all over except a small area of it which will be overlaid on top of existing objects' icons. The provided icon has a small "a" on its lower right corner.
Step 2 - Implementing a Shell Icon Overlay Identifier interface
Now, open MyOverlayIcon.h, and adjust / add entries as indicated, in bold, below:
#pragma once
#include "resource.h" // main symbols
#include "OverlayIcon.h"
#include <shlobj.h>
#include <comdef.h>
class ATL_NO_VTABLE CMyOverlayIcon :
public CComObjectRootEx<CComSingleThreadModel>,
public CComCoClass<CMyOverlayIcon, &CLSID_MyOverlayIcon>,
public IShellIconOverlayIdentifier,
public IDispatchImpl<IMyOverlayIcon,
&IID_IMyOverlayIcon, &LIBID_OverlayIconLib,
1, 0>
{
public:
CMyOverlayIcon()
{
}
STDMETHOD(GetOverlayInfo)(LPWSTR pwszIconFile,
int cchMax,int *pIndex,DWORD* pdwFlags);
STDMETHOD(GetPriority)(int* pPriority);
STDMETHOD(IsMemberOf)(LPCWSTR pwszPath,DWORD dwAttrib);
DECLARE_REGISTRY_RESOURCEID(IDR_MYOVERLAYICON)
BEGIN_COM_MAP(CMyOverlayIcon)
COM_INTERFACE_ENTRY(IMyOverlayIcon)
COM_INTERFACE_ENTRY(IDispatch)
COM_INTERFACE_ENTRY(IShellIconOverlayIdentifier)
END_COM_MAP()
DECLARE_PROTECT_FINAL_CONSTRUCT()
HRESULT FinalConstruct()
{
return S_OK;
}
void FinalRelease()
{
}
public:
};
OBJECT_ENTRY_AUTO(__uuidof(MyOverlayIcon), CMyOverlayIcon)
The three methods to implement are:
Method |
Description |
GetOverlayInfo |
Provides the location of the icon overlay's bitmap.
This method is first called during initialization, it returns the fully qualified path of the file containing the icon overlay image, and its zero-based index within the file. The icon can be contained in any of the standard file types, including .exe, .dll, and .ico.
|
GetPriority |
Specifies the priority of an icon overlay.
This method is called only during initialization. It assigns a priority value (ranging from 0=Highest to 100=Lowest priority) to the handler's icon overlay.
Priority helps resolve the conflict when multiple handlers are installed.
|
IsMemberOf |
Specifies whether an icon overlay should be added to a Shell object's icon.
You may return S_OK to allow adding the overlay icon or S_FALSE to keep object's icon intact.
|
In this example, our IsMemberOf()
simply checks if the file contains
the string "CodeProject", if so then our icon overlay is applied.
You can change this criteria to match your needs.
Now, open MyOverlayIcon.cpp to implement the IShellIconOverlayIdentifier
methods.
#include "stdafx.h"
#include "MyOverlayIcon.h"
STDMETHODIMP CCOverlayProvider::GetOverlayInfo(
LPWSTR pwszIconFile,
int cchMax,
int* pIndex,
DWORD* pdwFlags)
{
GetModuleFileNameW(_AtlBaseModule.GetModuleInstance(), pwszIconFile, cchMax);
*pIndex=0;
*pdwFlags = ISIOI_ICONFILE | ISIOI_ICONINDEX;
return S_OK;
}
STDMETHODIMP CCOverlayProvider::GetPriority(int* pPriority)
{
*pPriority=0;
return S_OK;
}
STDMETHODIMP CCOverlayProvider::IsMemberOf(LPCWSTR pwszPath, DWORD dwAttrib)
{
wchar_t *s = _wcsdup(pwszPath);
HRESULT r = S_FALSE;
_wcslwr(s);
if (wcsstr(s, L"codeproject") != 0)
r = S_OK;
free(s);
return r;
}
Step 3 - Registering the Interface
In addition to normal COM registration, you must register this icon overlay handler under:
HKEY_LOCAL_MACHINE\Software\Microsoft\Windows
\CurrentVersion\Explorer\ShellIconOverlayIdentifiers
There, you create a new subkey (named for example MyOverlayIcon) and set its default value to the string form of the object's class identifier (CLSID) globally unique identifier (GUID).
Another way of performing this is to use the project's appropriate *.RGS file which will handle the registration / unregistration automatically.
In order to achieve this, please open MyOverlayIcon.rgs and add the following lines in bold:
HKCR
{
OverlayIcon.MyOverlayIcon.1 = s 'MyOverlayIcon Class'
{
CLSID = s '{81539FE6-33C7-4CE7-90C7-1C7B8F2F2D40}'
}
OverlayIcon.MyOverlayIcon = s 'MyOverlayIcon Class'
{
CLSID = s '{81539FE6-33C7-4CE7-90C7-1C7B8F2F2D40}'
CurVer = s 'OverlayIcon.MyOverlayIcon.1'
}
NoRemove CLSID
{
ForceRemove {81539FE6-33C7-4CE7-90C7-1C7B8F2F2D40} = s 'MyOverlayIcon Class'
{
ProgID = s 'OverlayIcon.MyOverlayIcon.1'
VersionIndependentProgID = s 'OverlayIcon.MyOverlayIcon'
ForceRemove 'Programmable'
InprocServer32 = s '%MODULE%'
{
val ThreadingModel = s 'Apartment'
}
val AppID = s '%APPID%'
'TypeLib' = s '{ADF1FA2A-6EAA-4A97-A55F-3C8B92843EF5}'
}
}
}
HKLM
{
NoRemove SOFTWARE
{
NoRemove Microsoft
{
NoRemove Windows
{
NoRemove CurrentVersion
{
NoRemove Explorer
{
NoRemove ShellIconOverlayIdentifiers
{
ForceRemove MyOverlayIcon = s '{81539FE6-33C7-4CE7-90C7-1C7B8F2F2D40}'
{
}
}
}
}
}
}
}
}
Notice that we added a complete block that starts from HKLM (HKEY_LOCAL_MACHINE) and ends by adding a new subkey called "MyOverlayIcon" with a default value of the GUID of our object. If you create a new project, you will certainly have a new GUID, use that GUID instead of the one provided in the article.
Save the RGS file, compile the project (which, also, will automatically perform registration), and see how the icons are now modified!
Q & A
Question |
Answer |
I have copied the DLL over a new computer, how can I activate it? |
You simply need to register the DLL.
However, make sure you distribute the needed dependencies with your DLL.
|
I am having error as: "Cannot open DllXYZ.dll for writing", what is wrong? |
Since this DLL is loaded by Explorer.exe or other applications that use the SHELL, you need to close all those applications that already created an instance of your DLL.
Check this article which clarifies how to deal with such issues.
|
Ok, I want to remove the icon overlay, how can I do that? |
You simply unregister your DLL. For example, try using regsvr32.exe /u myDll.dll. |
I am unable to compile the code due to this warning: "error C2787: 'IShellIconOverlayIdentifier' : no GUID has been associated with this object". |
To solve this problem, you need to make use of Platform's SDK headers. Do this by:
- Tools menu / Options.
- Choose "Projects" node.
- Click on "VC++ Directories".
- Select from the "Show directories for" combo box, the "Include files".
- Click on the list item that has "PlatformSDK\include", and move it up in the list so it has higher include precedence.
- Click "OK", and try to compile now.
|
How can I have different overlay icons for different criteria? |
AFAIK, you will need to create another COM object implementing IShellIconOverlayIdentifier . However, this new object can reside in the same project.
Perhaps this article can be of use to you.
|
Reference
In addition to the reference below, I would like to say thanks to my friend and colleague at work for his help (you know who you are).
History
- 06/20/2004 - Initial version.
- 07/01/2004 - Article title and screenshots updated.