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

System Tray Icons - Minimize Your Application to the SysTray

Rate me:
Please Sign up or sign in to vote.
4.79/5 (79 votes)
6 Nov 2000CPOL 542K   16.5K   150   140
Minimize your application to system tray instead of the taskbar

Sample Image - TrayIcons.jpg

Introduction

This article illustrates the use of Shell_NotifyIcon to create and manage System Tray icons. The article explains the basics of this operation and assists you in creating your own 'Minimize To Tray' applications. The source code provided with this article is designed to work with dialog-based applications, but it can easily be modified to work with a CFrameWnd or CWnd based application.

Creating and Using Tray Icons

To create a Tray Icon, you need to call the following shell function: -

BOOL Shell_NotifyIcon( DWORD dwMessage, PNOTIFYICONDATA pnid );

The dwMessage parameter specifies the action to be taken - NIM_ADD, NIM_DELETE, NIM_MODIFY adds, deletes and modifies tray icons respectively.

The pnid parameter is used to customize, create, delete and obtain data from the Tray Icon. (See the MSDN Library for more details about this structure.)

Creating The Application

1. Create a new VC++ dialog based project. For this example, I will call this project MyTray which will contain the CMyTrayApp and CMyTrayDlg classes.

2. Download and extract the DialogTray source code to the root of the project folder

3. From the Project->Add To Project menu, select Files and then select TrayDialog.h and TrayDialog.cpp. This will add a new class to your project named CTrayDialog.

4. Replace the CMyTrayDlg base class with CTrayDialog.

class CMyTrayDlg : public CDialog

becomes

#include "TrayDialog.h"

class CMyTrayDlg : public CTrayDialog

5. Replace the other occurrences of CDialog in the MyTrayDlg.cpp file as follows :-

CMyTrayDlg::CMyTrayDlg(CWnd* pParent /*=NULL*/)
  : CDialog(CMyTrayDlg::IDD, pParent)

becomes

CMyTrayDlg::CMyTrayDlg(CWnd* pParent /*=NULL*/)	
    : CTrayDialog(CMyTrayDlg::IDD, pParent)

6. Create a menu resource and name it IDR_MENU1

7. In the InitDialog member function, enter the following:

TraySetIcon(IDR_MAINFRAME);
TraySetToolTip("ToolTip for tray icon");
TraySetMenu(IDR_MENU1);

8. Modify the IDD_MYTRAY _DIALOG resource to have a minimize box.

9. Build and run the application

NB : To add tray menu item handlers use the class wizard.

Displaying the tray icon all the time

Simply add a TrayShow() statement to InitDialog() in CMyTrayDlg.cpp, and call TraySetMinimizeToTray(FALSE) to disable minimizing to the tray.

The events that occur in the tray are captured through the following functions:

virtual void OnTrayLButtonDown(CPoint pt);
virtual void OnTrayLButtonDblClk(CPoint pt);

virtual void OnTrayRButtonDown(CPoint pt);
virtual void OnTrayRButtonDblClk(CPoint pt);

virtual void OnTrayMouseMove(CPoint pt);

Feel free to add more events or to improve on these ones.

License

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


Written By
Software Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralTerminating from TaskManager Pin
Alan Buchanan23-Feb-05 0:02
Alan Buchanan23-Feb-05 0:02 
GeneralRe: Terminating from TaskManager Pin
Anonymous23-Feb-05 14:36
Anonymous23-Feb-05 14:36 
GeneralRe: Terminating from TaskManager Pin
Anonymous18-Apr-05 20:45
Anonymous18-Apr-05 20:45 
GeneralRe: Terminating from TaskManager Pin
TaLF25-Jun-05 13:17
TaLF25-Jun-05 13:17 
GeneralRe: Solution - Terminating from TaskManager Pin
IVarshilov24-May-09 22:53
IVarshilov24-May-09 22:53 
GeneralStart Dialog Minimized to SysTray Pin
codehar13-Feb-05 19:04
codehar13-Feb-05 19:04 
GeneralRe: Start Dialog Minimized to SysTray Pin
mysticwolf9-Mar-05 6:18
mysticwolf9-Mar-05 6:18 
GeneralRe: Start Dialog Minimized to SysTray Pin
bubis14-Sep-05 2:57
bubis14-Sep-05 2:57 
Hmm, the dialog still appears for a short amount of time.
AnswerRe: Start Dialog Minimized to SysTray Pin
CodeWatcher27-Oct-05 13:28
CodeWatcher27-Oct-05 13:28 
GeneralRe: Start Dialog Minimized to SysTray Pin
binyo6618-May-09 16:55
binyo6618-May-09 16:55 
GeneralGreat Code - Read if using Checkboxes on Popup Menus Pin
slinsell21-Jan-05 22:49
slinsell21-Jan-05 22:49 
GeneralRe: Great Code - Read if using Checkboxes on Popup Menus Pin
blongtq15-Jun-05 22:25
blongtq15-Jun-05 22:25 
GeneralNice work Pin
567890123426-Dec-04 1:47
567890123426-Dec-04 1:47 
GeneralOne more problem Pin
Mich261-Dec-04 19:46
Mich261-Dec-04 19:46 
GeneralRe: One more problem Pin
_bko22-May-05 22:23
_bko22-May-05 22:23 
General"but it can easily be modified to work with a CFrameWnd or CWnd based application" Pin
anderslundsgard21-Nov-04 7:14
anderslundsgard21-Nov-04 7:14 
GeneralOpening another application Pin
Ritcho26-Sep-04 3:53
Ritcho26-Sep-04 3:53 
GeneralRe: Opening another application Pin
AnonExerc29-Oct-04 0:23
AnonExerc29-Oct-04 0:23 
GeneralRe: Opening another application Pin
EpicBoy28-Jan-05 0:40
EpicBoy28-Jan-05 0:40 
GeneralRe: Opening another application Pin
EpicBoy28-Jan-05 0:47
EpicBoy28-Jan-05 0:47 
QuestionWhat's the problem???? Pin
casper23418-May-04 2:41
casper23418-May-04 2:41 
AnswerRe: What's the problem???? Pin
Hesterumpe20-May-04 0:25
Hesterumpe20-May-04 0:25 
GeneralPLEASE HELP!!!! Pin
waszka2-May-04 5:41
waszka2-May-04 5:41 
GeneralRe: PLEASE HELP!!!! Pin
Van Thoai Nguyen29-Jun-04 8:17
Van Thoai Nguyen29-Jun-04 8:17 
GeneralRe: PLEASE HELP!!!! Pin
Van Thoai Nguyen29-Jun-04 16:29
Van Thoai Nguyen29-Jun-04 16:29 

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.