Click here to Skip to main content
15,881,089 members
Articles / Programming Languages / C++
Article

Transparent desktop icons

Rate me:
Please Sign up or sign in to vote.
4.67/5 (20 votes)
29 Dec 20043 min read 146.1K   33   26
A brief discussion on what is involved in making the text background of the desktop icons transparent.

Introduction

Several years ago, I downloaded a program called TransparentW that would make the text background of the desktop icons transparent. It was cool and made the desktop a whole lot prettier. What struck my fancy was the author's (Jay Guerette) comment about similar utilities asking for money considering how much time and code was involved.

I've used this utility on nearly all of the machines I've worked on and have never given it a second thought. Until today, that is. Curiosity got the best of me and I wanted to know just how much, or how little in this case, code was involved in accomplishing this task. Here are the relevant pieces of code. The first thing to do is find the listview window that owns the desktop icons.

Finding the right window

There are two ways of finding the correct window. One is a bit cleaner than the other, but I'll show both just for comparison purposes.

My first thought was to use GetDesktopWindow() to find the listview window, but the handle returned was not what I expected. I could, however, use it to enumerate all child windows of the desktop, stopping when the listview window was found.

BOOL CALLBACK EnumProc( HWND hWnd, LPARAM )
{
    TCHAR   szClass[128];

    GetClassName(hWnd, szClass, sizeof(szClass));
    if (lstrcmp(szClass, "SysListView32") == 0)
        return FALSE;

    return TRUE;
}
...
hWnd = GetDesktopWindow();
if (NULL != hWnd)
    EnumChildWindows(hWnd, EnumProc, 0);

It looks good, but the problem is that the desktop owns several listview windows.

BOOL CALLBACK EnumProc( HWND hWnd, LPARAM )
{
    TCHAR   szClass[128];

    GetClassName(hWnd, szClass, sizeof(szClass));
    if (lstrcmp(szClass, "SysListView32") == 0)
    {
        GetClassName(GetParent(hWnd), szClass, sizeof(szClass));
        if (lstrcmp(szClass, "SHELLDLL_DefView") == 0)
        {
            GetClassName(GetParent(GetParent(hWnd)), szClass, 
                   sizeof(szClass));
            if (lstrcmp(szClass, "Progman") == 0)
            {
                // we now have the window that is a child of
                // "SHELLDLL_DefView" and a grandchild of "Progman"
                return FALSE;
            }
        }
    }

    return TRUE;
}

Notice how the calls to GetParent() could get out of hand, or extra variables would be needed. The window handle can be saved in a global variable, or in the LPARAM parameter. The latter is done via:

*((HWND *) lParam) = hWnd;

assuming that EnumChildWindows() was called with a HWND* variable as the third parameter.

A slightly more elegant solution is to make a few calls to FindWindowEx(). This looks like:

hWnd = FindWindow("Progman", NULL);
// start with FindWindow() to get the initial hWnd

if (NULL != hWnd)
    hWnd = FindWindowEx(hWnd, NULL, "SHELLDLL_DefView", NULL);
if (NULL != hWnd)
    hWnd = FindWindowEx(hWnd, NULL, "SysListView32", NULL);

If you've never used Spy++ that ships with Visual Studio, this is a very good project to cut your teeth on. When you start the utility, open the Find Window dialog and select the Desktop, with the little crosshair. Notice that the window has no caption and the class is SysListView32. Click the OK button. In the ensuing Window Properties dialog, click the Windows tab. The listview control has a parent (click the handle) belonging to the SHELLDLL_DefView class. This window, in turn, has a parent (click the handle) belonging to the Progman class and has a Program Manager caption.

Making the change

Once the correct window handle of the listview control has been obtained, the background color can be changed. A check is done on the current background color to prevent an unnecessary change.

// if the window was found, ...
if (NULL != hWnd)
{
    COLORREF colorBackground = 
        ListView_GetTextBkColor(hWnd); // LVM_GETTEXTBKCOLOR
    if (0xffffffff != colorBackground)
    {
        ListView_SetTextBkColor(hWnd, 0xffffffff); // LVM_SETTEXTBKCOLOR

        // add the 'desktop' to the update region
        InvalidateRect(hWnd, NULL, TRUE);

        // paint the update regions
        UpdateWindow(hWnd);
    }
}

Now since the desktop window can be refreshed at any time (e.g., games), the background color will then be reverted back to its non-transparent state. One solution is to couple this code with a timer of some sort and re-check the background color periodically.

Notes

While this method works fine (for most folks), it is still considered a "hack", and thus a more preferred method was born. See here for details. I don't agree with their "These programs not only consume valuable memory and processing time..." statement, however. Their solution actually modifies an OS file. That's all well and good, but they claim it is against company policy to disclose which file(s) are altered. I was able to get the name of the file, however.

Enjoy!

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer (Senior) Pinnacle Business Systems
United States United States

The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.

HTTP 404 - File not found
Internet Information Services

Comments and Discussions

 
QuestionThanks for the info! - just what I needed Pin
Fred Koschara11-Jun-06 2:49
professionalFred Koschara11-Jun-06 2:49 
GeneralFinding Name of Icons Pin
BBJ_NYC12-Aug-05 15:47
BBJ_NYC12-Aug-05 15:47 
GeneralRe: Finding Name of Icons Pin
David Crow13-Aug-05 16:14
David Crow13-Aug-05 16:14 
GeneralRe: Finding Name of Icons Pin
BBJ_NYC1-Sep-05 5:15
BBJ_NYC1-Sep-05 5:15 
GeneralRe: Finding Name of Icons Pin
David Crow2-Sep-05 4:29
David Crow2-Sep-05 4:29 
GeneralRe: Finding Name of Icons Pin
Rocky-DTT15-May-06 18:21
Rocky-DTT15-May-06 18:21 
GeneralWorks Great! Pin
#realJSOP4-May-05 4:02
mve#realJSOP4-May-05 4:02 
QuestionSource code ? Sample ? Pin
Razr33331-Dec-04 18:56
Razr33331-Dec-04 18:56 
AnswerRe: Source code ? Sample ? Pin
Sebastian Pipping13-Aug-06 5:08
Sebastian Pipping13-Aug-06 5:08 
Generalcode doesn't work in VC++ 6.0 Pin
Douglas R. Keesler28-Dec-04 15:10
Douglas R. Keesler28-Dec-04 15:10 
GeneralPS. Pin
Douglas R. Keesler28-Dec-04 15:27
Douglas R. Keesler28-Dec-04 15:27 
GeneralRe: PS. Pin
David Crow28-Dec-04 16:31
David Crow28-Dec-04 16:31 
GeneralRe: PS. Pin
Douglas R. Keesler29-Dec-04 12:42
Douglas R. Keesler29-Dec-04 12:42 
GeneralRe: PS. Pin
David Crow30-Dec-04 2:32
David Crow30-Dec-04 2:32 
GeneralRe: PS. Pin
Douglas R. Keesler30-Dec-04 3:55
Douglas R. Keesler30-Dec-04 3:55 
GeneralRe: PS. Pin
David Crow30-Dec-04 4:58
David Crow30-Dec-04 4:58 
GeneralRe: PS. Pin
Douglas R. Keesler30-Dec-04 4:17
Douglas R. Keesler30-Dec-04 4:17 
GeneralRe: PS. Pin
David Crow30-Dec-04 4:36
David Crow30-Dec-04 4:36 
GeneralRe: PS. Pin
tom_dx30-Dec-04 4:40
tom_dx30-Dec-04 4:40 
GeneralRe: code doesn't work in VC++ 6.0 Pin
David Crow28-Dec-04 16:25
David Crow28-Dec-04 16:25 
Generaltranicon.exe, terminate and stay resident Pin
Makristi22-Mar-04 3:40
Makristi22-Mar-04 3:40 
GeneralIntensive ways to deal with desktop icons Pin
chrisy26-Nov-03 0:43
chrisy26-Nov-03 0:43 
GeneralTry to implement another thing Pin
sotnikov18-Nov-03 21:03
sotnikov18-Nov-03 21:03 
What about to make desktop icons semi-transparent? Roll eyes | :rolleyes:
GeneralAn idea... Pin
Ravi Bhavnani18-Nov-03 12:37
professionalRavi Bhavnani18-Nov-03 12:37 
GeneralRe: An idea... Pin
J. Dunlap18-Nov-03 13:43
J. Dunlap18-Nov-03 13:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.