Click here to Skip to main content
15,886,724 members
Articles / Desktop Programming / WTL
Article

WTL Tray Icon Template

Rate me:
Please Sign up or sign in to vote.
4.98/5 (26 votes)
4 Nov 20022 min read 171.1K   6.6K   82   29
A small template allowing you to easily add system tray icon support to your WTL application

Introduction

This is a small template that you can use to add system tray icon support to your WTL based application. A big nod in the direction of Chris Maunder is due, as back in my MFC days I used his excellent CSystemTray class, which was the inspiration for this WTL version (though his adds much more functionality).

This template can be used to add "default" tray icon behaviour to your application. A menu is displayed when you right-click the icon, and double-clicking the icon will execute the default menu item. Note that the first menu item will be used as the default, though you can change this by calling SetDefaultItem.

Using CTrayIconImpl

To use the CTrayIconImpl template, do the following:

Firts, include the header file:

#include "trayiconimpl"

Next. derive your main window class (usually CMainFrame for SDI/MDI apps, or CMainDlg for dialog-based apps) from CTrayIconImpl:

class CMainDlg :
    ...
    CTrayIconImpl<CMainDlg>

Next (and this is important) add a CHAIN_MSG_MAP entry to your windows message map (to ensure that the WM_TRAYICON message is processed correctly):

BEGIN_MSG_MAP(CMainDlg)
    ...
    CHAIN_MSG_MAP(CTrayIconImpl<CMainDlg>)
END_MSG_MAP()

To install an icon in the system tray, call InstallIcon from OnCreate (SDI/MDI apps) or OnInitDialog (dialog apps). Note that you supply three parameters to this call - the tooltip text, the icon handle and the resource ID of the popup menu to display when the tray icon is right-clicked.

// Load a small icon
HICON hIconSmall = (HICON)::LoadImage(_Module.GetResourceInstance(), 
                                      MAKEINTRESOURCE(IDR_MAINFRAME),
                                      IMAGE_ICON, 
                                      ::GetSystemMetrics(SM_CXSMICON), 
                                      ::GetSystemMetrics(SM_CYSMICON), 
                                      LR_DEFAULTCOLOR);
...
// Install tray icon
InstallIcon(_T("Tooltip text"), hIconSmall, IDR_POPUP);

Finally, add the necessary COMMAND_ID_HANDLERs for your popup menu commands. That's it!

Notes

Change the default menu item by calling SetDefaultItem:

// Double-clicking the tray icon will display the "About" box
SetDefaultItem(ID_APP_ABOUT);

Change the tooltip text by calling SetTooltipText.

SetTooltipText(_T("Yeeha!"));

Override the void PrepareMenu(HMENU hMenu) function in order to initialize the popup menu before it is displayed. For example, you may want to disable items, check items, etc. (see the WTLTrayIconWindow example for a demonstration).

void PrepareMenu(HMENU hMenu)
{
    CMenuHandle menu(hMenu);
    menu.EnableMenuItem(ID_TEST_DISABLED, MF_GRAYED);
    menu.CheckMenuItem(ID_TEST_CHECKED, MF_CHECKED);
}

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



Comments and Discussions

 
GeneralOops. Multiple About boxes Pin
DrGary23-Nov-02 14:53
DrGary23-Nov-02 14:53 
GeneralRe: Oops. Multiple About boxes Pin
Rob Caldecott27-Nov-02 12:06
Rob Caldecott27-Nov-02 12:06 
Generalwell done! Pin
ChauJohnthan10-Nov-02 18:11
ChauJohnthan10-Nov-02 18:11 
GeneralRe: well done! Pin
Duncan Colvin24-Feb-06 7:56
Duncan Colvin24-Feb-06 7:56 
GeneralNicely Executed Pin
Ed Gadziemski6-Nov-02 2:45
professionalEd Gadziemski6-Nov-02 2:45 
GeneralRe: Nicely Executed Pin
Rob Caldecott6-Nov-02 2:54
Rob Caldecott6-Nov-02 2:54 
GeneralRe: Nicely Executed Pin
Barry Lapthorn13-Nov-02 6:22
protectorBarry Lapthorn13-Nov-02 6:22 
GeneralRe: Nicely Executed Pin
Rob Caldecott13-Nov-02 6:32
Rob Caldecott13-Nov-02 6:32 
I prefer it to MFC for many reasons. It creates much smaller EXEs with fewer dependencies, and will run on any platform (try running an MFC7 app on Win95 - you need some additional DLLs ... OLEACC.DLL I believe).

I also love template programming - using templates to extend existing classes (like this example) seems like the way forward. Coupling WTL with ATL, allowing easy COM support, is also great.

WTL itself is light ... MFC is monolithic. I have used MFC since 1994ish, and it has allowed me to write some great apps, but I think it's time has passed. My aim is to be able to do anything in WTL that I could in MFC, and so far so good.

I have written a form-editor type app with WTL that is a port of existing MFC code, yet is a THIRD of the size! I'll mail you a screen shot if you like...

All new projects I embark on will be in WTL - I have no need for MFC anymore. Part of this has also been the need to keep learning new skills, so adopting a new framework has also given me a warm fuzzy feeling inside... Wink | ;)


When I am king, you will be first against the wall.

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.