Click here to Skip to main content
Licence CPOL
First Posted 13 May 2007
Views 22,195
Downloads 1,690
Bookmarked 24 times

Example of a SysTray App in Win32

By | 13 May 2007 | Article
How to create a systray application in Win32.

Introduction

Have you ever wondered how to create a cool application that runs in the background like a screen capture?

About the demo

Screenshot - systray_demo.jpg

The demo is a basic systray application with a popup menu and disable/enable option. It is the basic skeleton for anyone who wants to create a systray application.

How to create a systray (taskbar) application

Include the ShellAPI library

#include <shellapi.h>

Init the NOTIFYICONDATA struct

nidApp.cbSize = sizeof(NOTIFYICONDATA); 
nidApp.hWnd = (HWND) hWnd;
nidApp.uID = IDI_SYSTRAYDEMO; 
nidApp.uFlags = NIF_ICON | NIF_MESSAGE | NIF_TIP; 
nidApp.hIcon = hMainIcon; 
nidApp.uCallbackMessage = WM_USER_SHELLICON; 
LoadString(hInstance, IDS_APPTOOLTIP,nidApp.szTip,MAX_LOADSTRING);

Show the systary icon

Shell_NotifyIcon(NIM_ADD, &nidApp);

Response to the message

Now our application gets a callback message when the mouse is moving over the systray icon. In our window callback function:

switch (message)
{
    case WM_USER_SHELLICON: 
        // systray msg callback 
        switch(LOWORD(lParam)) 
        {
            case WM_RBUTTONDOWN:

Now we are monitoring the right button click.

Create a dynamic popup menu

UINT uFlag = MF_BYPOSITION|MF_STRING;
GetCursorPos(&lpClickPoint);
hPopMenu = CreatePopupMenu();
InsertMenu(hPopMenu,0xFFFFFFFF,MF_BYPOSITION|MF_STRING,IDM_ABOUT,_T("About"));
if ( bDisable == TRUE )
{
    uFlag |= MF_GRAYED;
}
InsertMenu(hPopMenu,0xFFFFFFFF,uFlag,IDM_TEST2,_T("Test 2"));
InsertMenu(hPopMenu,0xFFFFFFFF,uFlag,IDM_TEST1,_T("Test 1"));
InsertMenu(hPopMenu,0xFFFFFFFF,MF_SEPARATOR,IDM_SEP,_T("SEP"));
if ( bDisable == TRUE )
{
    InsertMenu(hPopMenu,0xFFFFFFFF, 
               MF_BYPOSITION|MF_STRING,IDM_ENABLE,_T("Enable"));
}
else 
{
    InsertMenu(hPopMenu,0xFFFFFFFF,MF_BYPOSITION|MF_STRING,IDM_DISABLE,_T("Disable"));    
}
InsertMenu(hPopMenu,0xFFFFFFFF,MF_SEPARATOR,IDM_SEP,_T("SEP"));    
InsertMenu(hPopMenu,0xFFFFFFFF,MF_BYPOSITION|MF_STRING,IDM_EXIT,_T("Exit"));     
SetForegroundWindow(hWnd);
TrackPopupMenu(hPopMenu,TPM_LEFTALIGN|TPM_LEFTBUTTON|TPM_BOTTOMALIGN,
               lpClickPoint.x, lpClickPoint.y,0,hWnd,NULL);

When the application is closed

We need to delete the systray.

Shell_NotifyIcon(NIM_DELETE,&nidApp);

A word from the author

More information can be found from the MSDN site: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/shell/reference/functions/shell_notifyicon.asp.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Mark Zitnik

Web Developer

Israel Israel

Member

I have been developing since the age 12
 
Started on commador 64 and moved to C/Assembler
 
In the last 7 years i have been developing performance monitoring software.
 
Programming languages: C/C++/Java
 



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Generalit doesn't work on windows 7 Pinmembergndnet6:27 17 Sep '10  
GeneralProblem with menu PinmemberSir Kot11:30 12 Jul '07  
GeneralRe: Problem with menu PinmemberSir Kot11:50 12 Jul '07  
GeneralRe: Problem with menu PinmvpDavidCrow6:05 10 Oct '07  
GeneralTHANK YOU THANK YOU THANK YOU !!!!!!!! [modified] PinmemberDanacom14:49 15 May '07  
GeneralRe: THANK YOU THANK YOU THANK YOU !!!!!!!! [modified] PinmemberMember 820973715:39 21 Sep '11  

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

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120528.1 | Last Updated 14 May 2007
Article Copyright 2007 by Mark Zitnik
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid