Click here to Skip to main content
15,867,453 members
Articles / Desktop Programming / MFC

Taskbar Notification Dialog

Rate me:
Please Sign up or sign in to vote.
4.94/5 (67 votes)
11 Jul 20023 min read 676.6K   18.7K   329   185
A MSN IM-style popup notification dialog

Image 1

Introduction

A few weeks ago, I saw an MSN messenger popup class on CodeProject written by Prateek Kaul. Since I needed a taskbar popup with skin support, I decided to write my own new class.

This is my first submission to Codeproject, since I think my code begins to be mature enough to be posted.

Compatibility

This class needs MFC to be either statically or dynamically linked in your project; it has been written, compiled and tested under Visual Studio .NET (but should work with VC6).

How to Use the Class

The class is very easy to use: Just add TaskbarNotifier.h and TaskbarNotifier.cpp into your project, then include TaskbarNotifier.h into your application, add a CTaskbarNotifier member variable in the header file of your Dialog or Window class.

In the OnInitDialog or OnCreate member functions, add the following lines:

C++
m_wndTaskbarNotifier.Create(this);
m_wndTaskbarNotifier.SetSkin(IDB_MY_BITMAP_RESOURCE);
m_wndTaskbarNotifier.SetTextFont("Arial",90,TN_TEXT_NORMAL,TN_TEXT_UNDERLINE);
m_wndTaskbarNotifier.SetTextColor(RGB(0,0,0),RGB(0,0,200));
m_wndTaskbarNotifier.SetTextRect(CRect(10,40,m_wndTaskbarNotifier1.m_nSkinWidth-10,
                                 m_wndTaskbarNotifier1.m_nSkinHeight-25));

Then when you want to show the popup animation, just call anywhere m_wndTaskNotifier.Show("Text to display"); this will show the animation of the window appearing and then disappearing. You can call again the Show() method whenever you want. If the popup was still here, the text is just replaced, if it was disappearing, it maximizes again.

Be sure not to allocate the CTaskbarNotifier each time you want to show a message, because the skinning function takes a little CPU time to generate the region used to make a non rectangular window.

Class Documentation

C++
int Create(CWnd *pWndParent);

Creates the popup window which remains hidden until Show() is called.

C++
BOOL SetSkin(UINT nBitmapID,short red=-1,short green=-1,short blue=-1);
BOOL SetSkin(LPCTSTR szFileName,short red=-1,short green=-1,short blue=-1);

Those two functions assign a skin to the popup, they take as parameter either a Bitmap resource ID or the path of a bitmap file.

The optional parameters are the RGB values for the transparency color for the bitmap. Use these parameters only if you want a non rectangular window; if these parameters are left blank, no Region is created.

C++
void SetTextFont(LPCTSTR szFont,int nSize,int nNormalStyle,int nSelectedStyle);

This function permits to specify the Font used for displaying the text (two styles are possible, one for the normal state and one when the mouse is over the window)

nNormalStyle or nSelectedStyle can be one or a combination of these parameters:

  • TN_TEXT_NORMAL
  • TN_TEXT_BOLD
  • TN_TEXT_ITALIC
  • TN_TEXT_UNDERLINE
C++
void SetTextColor(COLORREF crNormalTextColor,COLORREF crSelectedTextColor);

This function sets the color of the text when in normal or selected state.

C++
void SetTextRect(RECT rcText);

This function allows to define a rectangle within the bitmap which will be the clipping zone for displaying the text.

C++
void Show(LPCTSTR szCaption,DWORD dwTimeToShow=800,DWORD dwTimeToStay=3000,
           DWORD dwTimeToHide=500,int nIncrement=1);

Displays the popup window animation:

  • szCaption: Text to display
  • dwTimeToShow: Duration in milliseconds for the popup to be fully visible
  • dwTimeToStay: Duration in milliseconds for the popup to be stay visible
  • dwTimeToHide: Time in millisecond for the popup to completely disappear
  • nIncrement: Pixel increment for moving the window during the animation (the higher, the faster)

Show can be called even if the popup is already visible, being hiding or showing.

C++
void Hide();

Manually hides the popup.

Additional Notes

When the user clicks on the popup, a message is being sent to its parent window (WM_TASKBARNOTIFIERCLICKED defined in TaskbarNotifier.h), you can intercept it by adding in your Message Map macro:

C++
ON_MESSAGE(WM_TASKBARNOTIFIERCLICKED,OnTaskbarNotifierClicked)

The fact I'm not releasing the HRGN handle is because when you call SetWindowRgn() function, the GDI takes care of the object deletion.

Conclusion

Thanks to Prateek Kaul whose code inspired me to write this class and to Vander Nunes for his article about skinning a window.

I hope this class will be useful to you, if you find any memory or GDI leaks, please let me know. If you have suggestions to enhance the functionalities of this class, please post a comment.

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
United States United States
I live in Santa Clara CA and work as a software engineer for SAP Business Objects.

My areas of expertise are user interface developments in Eclipse RCP / SWT / Draw 2D and C#

Comments and Discussions

 
GeneralRe: Does Not Display Before Calling DoModal Pin
John O'Byrne13-Aug-02 4:53
John O'Byrne13-Aug-02 4:53 
GeneralRe: Does Not Display Before Calling DoModal Pin
Jeff Elmore13-Aug-02 5:15
Jeff Elmore13-Aug-02 5:15 
GeneralRe: Does Not Display Before Calling DoModal Pin
John O'Byrne13-Aug-02 5:36
John O'Byrne13-Aug-02 5:36 
General11 August: New big Update Pin
John O'Byrne11-Aug-02 9:00
John O'Byrne11-Aug-02 9:00 
GeneralRe: 11 August: New big Update Pin
ChrisRibe17-Nov-06 9:32
ChrisRibe17-Nov-06 9:32 
GeneralRe: 11 August: New big Update Pin
Daniel Lohmann11-Aug-02 12:46
Daniel Lohmann11-Aug-02 12:46 
GeneralRe: 11 August: New big Update Pin
John O'Byrne11-Aug-02 22:35
John O'Byrne11-Aug-02 22:35 
GeneralRe: 11 August: New big Update Pin
John O'Byrne11-Aug-02 22:33
John O'Byrne11-Aug-02 22:33 
GeneralTransparency, doesn't work Pin
User 66587-Aug-02 12:26
User 66587-Aug-02 12:26 
GeneralRe: Transparency, doesn't work Pin
John O'Byrne7-Aug-02 19:23
John O'Byrne7-Aug-02 19:23 
GeneralRe: Transparency, doesn't work Pin
User 66588-Aug-02 4:57
User 66588-Aug-02 4:57 
GeneralReally cool - and even more suggestions and corrections :-) Pin
Daniel Lohmann15-Jul-02 6:51
Daniel Lohmann15-Jul-02 6:51 
GeneralRe: Really cool - and even more suggestions and corrections :-) Pin
John O'Byrne15-Jul-02 7:28
John O'Byrne15-Jul-02 7:28 
GeneralRe: Really cool - and even more suggestions and corrections :-) Pin
John O'Byrne15-Jul-02 12:01
John O'Byrne15-Jul-02 12:01 
GeneralRe: Really cool - and even more suggestions and corrections :-) Pin
Daniel Lohmann15-Jul-02 14:16
Daniel Lohmann15-Jul-02 14:16 
GeneralRe: Really cool - and even more suggestions and corrections :-) Pin
John O'Byrne15-Jul-02 20:44
John O'Byrne15-Jul-02 20:44 
GeneralRe: Really cool - and even more suggestions and corrections :-) Pin
Daniel Lohmann16-Jul-02 1:16
Daniel Lohmann16-Jul-02 1:16 
GeneralRe: Really cool - and even more suggestions and corrections :-) Pin
John O'Byrne16-Jul-02 13:23
John O'Byrne16-Jul-02 13:23 
GeneralRe: Really cool - and even more suggestions and corrections :-) Pin
RobR25-Jul-02 22:26
RobR25-Jul-02 22:26 
GeneralRe: Really cool - and even more suggestions and corrections :-) Pin
John O'Byrne26-Jul-02 0:17
John O'Byrne26-Jul-02 0:17 
GeneralDamn good work! - some questions Pin
User 665814-Jul-02 5:46
User 665814-Jul-02 5:46 
GeneralRe: Damn good work! - some questions Pin
John O'Byrne14-Jul-02 7:51
John O'Byrne14-Jul-02 7:51 
GeneralRe: Damn good work! - some questions Pin
User 665814-Jul-02 9:53
User 665814-Jul-02 9:53 
GeneralRe: Damn good work! - some questions Pin
John O'Byrne14-Jul-02 10:17
John O'Byrne14-Jul-02 10:17 
GeneralRe: Damn good work! - some questions Pin
User 665814-Jul-02 11:41
User 665814-Jul-02 11:41 

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.