Click here to Skip to main content
15,881,173 members
Articles / Desktop Programming / MFC
Article

System Tray Icons - Adding to your dialog application

Rate me:
Please Sign up or sign in to vote.
4.58/5 (49 votes)
15 Apr 20021 min read 236K   2.7K   55   53
Easy to implement system tray icon!

Sample Image - systray.jpg

Introduction

I write applications for my site Settlers.net and also to make things easier for myself at home. In one of my apps, I have wanted to include a system tray icon. Only problem being, the sys tray icon samples people wrote were confusing and didn't do what I want. I'm young and not exactly pro at programming yet. This tray icon code is different simply because upon starting the program, the icon is placed into the system tray. When you click hide, the whole program is minimized to tray.

Right, now down the code.

Let's do this!

Okay, on the main dialog you must make a button for the hiding command. Name this button IDC_HIDEAPP.

Add files traynot.cpp and traynot.h to your project.

Paste this into yourDlg.cpp:

void CYourDlg::OnHide()
{
  // Load icon onto taskbar tray
  m_pTray = new CTrayNot (this,WM_TRAY_NOTIFY,
  NULL,theApp.m_pIconList);
  m_pTray->SetState(IDR_MAINFRAME);
  m_bHidden = TRUE;
}

void CYourDlg::OnUnHide()
{
  ShowWindow (SW_RESTORE) ;
  m_bHidden = FALSE ;
  /////////////////////////////////////
  // Remove icon from taskbar tray
  if (m_pTray)
  {
     delete m_pTray ;
     m_pTray = NULL ;
  }
}

LONG CYourDlg::OnTrayNotify ( WPARAM wParam, LPARAM lParam )
{
  switch (lParam)
  {
    case WM_RBUTTONDOWN:
    {
       CMenu menu ;
       // Load and Verify Menu
       VERIFY(menu.LoadMenu(IDR_TRAY));
       CMenu* pPopup = menu.GetSubMenu (0) ;
       ASSERT(pPopup != NULL);

       // Get the cursor position
       POINT pt ;
       GetCursorPos (&pt) ;

       // Fix Microsofts' BUG!!!!
       SetForegroundWindow();

       ///////////////////////////////////
       // Display The Menu
       pPopup->TrackPopupMenu(TPM_LEFTALIGN |
       TPM_RIGHTBUTTON,pt.x, pt.y, AfxGetMainWnd());
       break ;
    }
    case WM_LBUTTONDBLCLK:
       //////////////////////////////////
       // Unhide our Window
       if (m_bHidden)
          ShowWindow (SW_RESTORE);
       //OnUnHide() ;
       break ;
  }
  return (0) ;
}

void CYourDlg::OnDestroy() 
{
  CDialog::OnDestroy();

  // Remove Icon from Tray
  if (m_pTray)
  {
    delete m_pTray ;
    m_pTray = NULL ;
  } 
}

void CYourDlg::OnTrayRestore() 
{
  // UnHide Application
  if (m_bHidden)
    ShowWindow (SW_RESTORE) ;
  m_bHidden = FALSE ;
}

void CYourDlg::OnHideapp() 
{
  //This will be the onclick for the hide button
  //in order to call that the app is minimised.
  theApp.HideApplication();
}

Add these to yourDlgs message map:

ON_MESSAGE(WM_TRAY_NOTIFY, OnTrayNotify)
ON_COMMAND(ID_TRAY_RESTORE, OnTrayRestore)
ON_BN_CLICKED(IDC_HIDEAPP, OnHideapp)

Add #include "TrayNot.h" to yourDlg.h. Add:

CTrayNot* m_pTray;
BOOL m_bHidden;

to your public call in yourDlg.h before yourDlgs standard constructor.

Add the following to your dialog's afx message maps.

afx_msg LONG OnTrayNotify ( WPARAM wParam, LPARAM lParam ) ;
afx_msg void OnTrayRestore();
afx_msg void OnHideapp();
afx_msg void OnHide();
afx_msg void OnUnHide();
afx_msg void OnDestroy();

In yourapp.cpp (Not yourdlg.cpp) add this just after #endif:

// Load Icons for Tray 
m_pIconList[0] = LoadIcon (MAKEINTRESOURCE(IDR_MAINFRAME));
m_pIconList[1] = LoadIcon (MAKEINTRESOURCE(IDR_MAINFRAME));
m_pIconList[2] = LoadIcon (MAKEINTRESOURCE(IDR_MAINFRAME));

In the yourapp.h (not yourdlg.h) add this to the public callback:

HICON m_pIconList[3];

After the last } down the bottom of this file, add this:

extern CYourApp theApp;

Open stdafx.h and add #define WM_TRAY_NOTIFY WM_APP+1000 after AfxCmn.h's include.

Now just add a menu using the resource add and name it IDR_TRAY. Add a restore command (ID_TRAY_RESTORE) and then you're done....

You may find that when you quit, the icon doesn't disappear. Use the destroy function and add delete m_pTray ; to it... Or you could just download my demo project and rip all the code from that?

Anyways, I hope this helped some of you. Vote for this, so I get a T-Shirt haha!

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
Web Developer
Australia Australia
Name: Ash Rowe
From: Canberra, Australia
Qualifications: Diploma in Game Programming
Age: 19 (Getting old and feeling it)

Tutorials I have written in the past, I have done so in a fashion that would enable even the newest of programmers to get a grasp on what is actually happening with the code I submit. I am looking at writing even more in the near future to further assist others as well as gain a better understanding myself of the code I end up with.

Comments and Discussions

 
Generalstart minimized Pin
iffi99228-May-03 23:44
iffi99228-May-03 23:44 
GeneralRe: start minimized Pin
Ashman29-May-03 15:28
Ashman29-May-03 15:28 
GeneralRe: start minimized Pin
Member 25243835-Jun-08 4:59
Member 25243835-Jun-08 4:59 
GeneralFix: Remove icon on leaving application Pin
ScorpioMidget19-May-03 3:18
ScorpioMidget19-May-03 3:18 
Generalapp lost Pin
hiho21-Mar-03 18:20
hiho21-Mar-03 18:20 
GeneralRe: app lost Pin
Ashman29-May-03 15:34
Ashman29-May-03 15:34 
AnswerRe: app lost Pin
shazzababs9-Aug-07 0:14
shazzababs9-Aug-07 0:14 
GeneralRe: app lost Pin
stormydaniels3-Nov-08 22:31
stormydaniels3-Nov-08 22:31 
The problem was solved when I added OnHide() here :

void CYourDlg::OnHideapp()
{
//This will be the onclick for the hide button
//in order to call that the app is minimised.

theApp.HideApplication();
OnHide(); //Icon will appear if you add this.
}

Thanks to the author for the code, saved hours for me. Smile | :)
GeneralGreat trick that fixes lingering icon on tray Pin
hoc9610-Dec-02 17:18
hoc9610-Dec-02 17:18 
GeneralWell done! Pin
Anonymous26-Aug-02 4:49
Anonymous26-Aug-02 4:49 
GeneralSDI Pin
15-Apr-02 23:57
suss15-Apr-02 23:57 
GeneralJust what I was looking for! :) Pin
Selevercin12-Apr-02 15:23
Selevercin12-Apr-02 15:23 
GeneralIt does not work properly Pin
Paresh Goyal3-Feb-02 19:07
Paresh Goyal3-Feb-02 19:07 
GeneralRe: It does not work properly Pin
27-Feb-02 22:01
suss27-Feb-02 22:01 
GeneralRe: It does not work properly Pin
MS28-Feb-02 4:40
MS28-Feb-02 4:40 
GeneralHi Ashman Pin
Thomas Freudenberg3-Dec-01 16:06
Thomas Freudenberg3-Dec-01 16:06 
GeneralRe: Hi Ashman Pin
Ashman3-Dec-01 19:49
Ashman3-Dec-01 19:49 
GeneralRe: Hi Ashman Pin
Swinefeaster10-Dec-01 14:42
Swinefeaster10-Dec-01 14:42 
GeneralRe: Hi Ashman Pin
Perc!11-Dec-01 16:59
Perc!11-Dec-01 16:59 
GeneralRe: Hi Ashman Pin
Jean-Marc Molina4-Mar-02 23:48
Jean-Marc Molina4-Mar-02 23:48 
GeneralRe: Hi Ashman Pin
13-Mar-02 8:52
suss13-Mar-02 8:52 
GeneralRe: Hi Ashman Pin
Thomas Freudenberg14-Mar-02 3:22
Thomas Freudenberg14-Mar-02 3:22 
GeneralRe: Hi Ashman Pin
xufeisjtu8-Dec-02 4:54
xufeisjtu8-Dec-02 4:54 
GeneralRe: Hi Ashman Pin
MS22-Mar-02 3:51
MS22-Mar-02 3:51 
GeneralRe: Hi Ashman Pin
8-Jul-02 7:35
suss8-Jul-02 7:35 

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.