Click here to Skip to main content
15,896,063 members
Articles / Desktop Programming / WTL

WTL Tray Icon Template

Rate me:
Please Sign up or sign in to vote.
4.98/5 (26 votes)
4 Nov 20022 min read 173.4K   6.7K   82  
A small template allowing you to easily add system tray icon support to your WTL application
// WTLTrayIconWindowView.h : interface of the CWTLTrayIconWindowView class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_WTLTRAYICONWINDOWVIEW_H__A8F3290A_A78D_4AD2_B081_9B2796426789__INCLUDED_)
#define AFX_WTLTRAYICONWINDOWVIEW_H__A8F3290A_A78D_4AD2_B081_9B2796426789__INCLUDED_

#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000

class CWTLTrayIconWindowView : public CWindowImpl<CWTLTrayIconWindowView>
{
public:
	DECLARE_WND_CLASS(NULL)

	BOOL PreTranslateMessage(MSG* pMsg)
	{
		pMsg;
		return FALSE;
	}

	BEGIN_MSG_MAP(CWTLTrayIconWindowView)
		MESSAGE_HANDLER(WM_PAINT, OnPaint)
	END_MSG_MAP()

// Handler prototypes (uncomment arguments if needed):
//	LRESULT MessageHandler(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/)
//	LRESULT CommandHandler(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/)
//	LRESULT NotifyHandler(int /*idCtrl*/, LPNMHDR /*pnmh*/, BOOL& /*bHandled*/)

	LRESULT OnPaint(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/)
	{
		CPaintDC dc(m_hWnd);

		//TODO: Add your drawing code here

		return 0;
	}
};


/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_WTLTRAYICONWINDOWVIEW_H__A8F3290A_A78D_4AD2_B081_9B2796426789__INCLUDED_)

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

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