vc 托盘封装


#ifndef _INCLUDED_TRAYICON_H_
#define _INCLUDED_TRAYICON_H_
class CTrayIcon : public CObject
{
// Construction/destruction
public:
    CTrayIcon();
    CTrayIcon(CWnd* pWnd, UINT uCallbackMessage, LPCTSTR szTip, HICON icon, UINT uID);
    virtual ~CTrayIcon(); 
public:
    BOOL Enabled() { return m_bEnabled; }
    BOOL Visible() { return !m_bHidden; } 
    int Create(CWnd* pWnd, UINT uCallbackMessage, LPCTSTR szTip, HICON icon, UINT uID);
    BOOL    SetTooltipText(LPCTSTR pszTooltipText);
    BOOL    SetTooltipText(UINT nID);
    CString GetTooltipText() const; 
    BOOL  SetIcon(HICON hIcon);
    BOOL  SetIcon(LPCTSTR lpIconName);
    BOOL  SetIcon(UINT nIDResource);
    BOOL  SetStandardIcon(LPCTSTR lpIconName);
    BOOL  SetStandardIcon(UINT nIDResource);
    HICON GetIcon() const;
    void  HideIcon();
    void  ShowIcon();
    void  RemoveIcon();
    void  MoveToRight(); 
    BOOL  SetNotificationWnd(CWnd* pNotifyWnd);
    CWnd* GetNotificationWnd() const;
    virtual LRESULT OnTrayNotification(WPARAM uID, LPARAM lEvent);
protected:
    BOOL            m_bEnabled;    // does O/S support tray icon?
    BOOL            m_bHidden;    // Has the icon been hidden?
    NOTIFYICONDATA    m_tnd; 
    DECLARE_DYNAMIC(CTrayIcon)
}; 
#endif

   
 #include "stdafx.h"  
 #include "TrayIcon.h"     
 #ifdef _DEBUG  
 #define new DEBUG_NEW  
 #undef THIS_FILE  
 static char THIS_FILE[] = __FILE__;  
 #endif  
   
 IMPLEMENT_DYNAMIC(CTrayIcon, CObject)  
  CTrayIcon::CTrayIcon()  
 {  
     memset(&m_tnd, 0, sizeof(m_tnd));  
     m_bEnabled = FALSE;  
     m_bHidden  = FALSE;  
 }  
   
 CTrayIcon::CTrayIcon(CWnd* pWnd, UINT uCallbackMessage, LPCTSTR szToolTip,   
                      HICON icon, UINT uID)  
 {  
     Create(pWnd, uCallbackMessage, szToolTip, icon, uID);  
     m_bHidden = FALSE;  
 }  
   
 BOOL CTrayIcon::Create(CWnd* pWnd, UINT uCallbackMessage, LPCTSTR szToolTip,   
                        HICON icon, UINT uID)  
 {  
     // this is only for Windows 95 (or higher)  
     VERIFY(m_bEnabled = ( GetVersion() & 0xff ) >= 4);  
     if (!m_bEnabled) return FALSE;  
   
     //Make sure Notification window is valid  
     VERIFY(m_bEnabled = (pWnd && ::IsWindow(pWnd->GetSafeHwnd())));  
     if (!m_bEnabled) return FALSE;  
       
     //Make sure we avoid conflict with other messages  
     ASSERT(uCallbackMessage >= WM_USER);  
   
     //Tray only supports tooltip text up to 64 characters  
     ASSERT(_tcslen(szToolTip) <= 64);  
   
     // load up the NOTIFYICONDATA structure  
     m_tnd.cbSize = sizeof(NOTIFYICONDATA);  
     m_tnd.hWnd   = pWnd->GetSafeHwnd();  
     m_tnd.uID    = uID;  
     m_tnd.hIcon  = icon;  
     m_tnd.uFlags = NIF_MESSAGE | NIF_ICON | NIF_TIP;  
     m_tnd.uCallbackMessage = uCallbackMessage;  
     strcpy (m_tnd.szTip, szToolTip);  
   
     // Set the tray icon  
     VERIFY(m_bEnabled = Shell_NotifyIcon(NIM_ADD, &m_tnd));  
     return m_bEnabled;  
 }  
   
 CTrayIcon::~CTrayIcon()  
 {  
     RemoveIcon();  
 }  
 /  
 // CTrayIcon icon manipulation  
   
 void CTrayIcon::MoveToRight()  
 {  
     HideIcon();  
     ShowIcon();  
 }  
   
 void CTrayIcon::RemoveIcon()  
 {  
     if (!m_bEnabled) return;  
   
     m_tnd.uFlags = 0;  
     Shell_NotifyIcon(NIM_DELETE, &m_tnd);  
     m_bEnabled = FALSE;  
 }  
   
 void CTrayIcon::HideIcon()  
 {  
     if (m_bEnabled && !m_bHidden) {  
         m_tnd.uFlags = NIF_ICON;  
         Shell_NotifyIcon (NIM_DELETE, &m_tnd);  
         m_bHidden = TRUE;  
     }  
 }  
   
 void CTrayIcon::ShowIcon()  
 {  
     if (m_bEnabled && m_bHidden) {  
         m_tnd.uFlags = NIF_MESSAGE | NIF_ICON | NIF_TIP;  
         Shell_NotifyIcon(NIM_ADD, &m_tnd);  
         m_bHidden = FALSE;  
     }  
 }  
   
 BOOL CTrayIcon::SetIcon(HICON hIcon)  
 {  
     if (!m_bEnabled) return FALSE;  
   
     m_tnd.uFlags = NIF_ICON;  
     m_tnd.hIcon = hIcon;  
   
     return Shell_NotifyIcon(NIM_MODIFY, &m_tnd);  
 }  
   
 BOOL CTrayIcon::SetIcon(LPCTSTR lpszIconName)  
 {  
     HICON hIcon = AfxGetApp()->LoadIcon(lpszIconName);  
   
     return SetIcon(hIcon);  
 }  
   
 BOOL CTrayIcon::SetIcon(UINT nIDResource)  
 {  
     HICON hIcon = AfxGetApp()->LoadIcon(nIDResource);  
   
     return SetIcon(hIcon);  
 }  
   
 BOOL CTrayIcon::SetStandardIcon(LPCTSTR lpIconName)  
 {  
     HICON hIcon = LoadIcon(NULL, lpIconName);  
   
     return SetIcon(hIcon);  
 }  
   
 BOOL CTrayIcon::SetStandardIcon(UINT nIDResource)  
 {  
     HICON hIcon = LoadIcon(NULL, MAKEINTRESOURCE(nIDResource));  
   
     return SetIcon(hIcon);  
 }  
    
 HICON CTrayIcon::GetIcon() const  
 {  
     HICON hIcon = NULL;  
     if (m_bEnabled)  
         hIcon = m_tnd.hIcon;  
   
     return hIcon;  
 }  
   
 /  
 // CTrayIcon tooltip text manipulation  
   
 BOOL CTrayIcon::SetTooltipText(LPCTSTR pszTip)  
 {  
     if (!m_bEnabled) return FALSE;  
   
     m_tnd.uFlags = NIF_TIP;  
     _tcscpy(m_tnd.szTip, pszTip);  
   
     return Shell_NotifyIcon(NIM_MODIFY, &m_tnd);  
 }  
   
 BOOL CTrayIcon::SetTooltipText(UINT nID)  
 {  
     CString strText;  
     VERIFY(strText.LoadString(nID));  
   
     return SetTooltipText(strText);  
 }  
   
 CString CTrayIcon::GetTooltipText() const  
 {  
     CString strText;  
     if (m_bEnabled)  
         strText = m_tnd.szTip;  
   
     return strText;  
 }  
   
 /  
 // CTrayIcon notification window stuff  
   
 BOOL CTrayIcon::SetNotificationWnd(CWnd* pWnd)  
 {  
     if (!m_bEnabled) return FALSE;  
   
     //Make sure Notification window is valid  
     ASSERT(pWnd && ::IsWindow(pWnd->GetSafeHwnd()));  
   
     m_tnd.hWnd = pWnd->GetSafeHwnd();  
     m_tnd.uFlags = 0;  
   
     return Shell_NotifyIcon(NIM_MODIFY, &m_tnd);  
 }  
   
 CWnd* CTrayIcon::GetNotificationWnd() const  
 {  
     return CWnd::FromHandle(m_tnd.hWnd);  
 }  
   
 /  
 // CTrayIcon implentation of OnTrayNotification  
   
 LRESULT CTrayIcon::OnTrayNotification(UINT wParam, LONG lParam)   
 {  
     //Return quickly if its not for this tray icon  
     if (wParam != m_tnd.uID)  
         return 0L;  
   
     CMenu menu, *pSubMenu;  
   
     // Clicking with right button brings up a context menu  
     if (LOWORD(lParam) == WM_RBUTTONUP)  
     {     
         if (!menu.LoadMenu(m_tnd.uID)) return 0;  
         if (!(pSubMenu = menu.GetSubMenu(0))) return 0;  
   
         // Make first menu item the default (bold font)  
         ::SetMenuDefaultItem(pSubMenu->m_hMenu, 0, TRUE);  
   
         //Display and track the popup menu  
         CPoint pos;  
         GetCursorPos(&pos);  
         ::SetForegroundWindow(m_tnd.hWnd);    
         ::TrackPopupMenu(pSubMenu->m_hMenu, 0, pos.x, pos.y, 0, m_tnd.hWnd, NULL);  
   
         //pSubMenu->TrackPopupMenu(TPM_LEFTALIGN | TPM_RIGHTBUTTON, pos.x, pos.y, this, NULL);  
         menu.DestroyMenu();  
     }   
     else if (LOWORD(lParam) == WM_LBUTTONDBLCLK)   
     {  
         if (!menu.LoadMenu(m_tnd.uID)) return 0;  
         if (!(pSubMenu = menu.GetSubMenu(0))) return 0;  
   
         // double click received, the default action is to execute first menu item  
         ::SetForegroundWindow(m_tnd.hWnd);  
         ::SendMessage(m_tnd.hWnd, WM_COMMAND, pSubMenu->GetMenuItemID(0), 0);  
         menu.DestroyMenu();  
     }  
   
     return 1;  
 }


制作系统托盘程序 VC 点击数:695 发布日期:2006-9-24 12:32:00 【收藏】 【评论】 【打印】 【编程爱好者论坛】 【关闭】 其实,在任务条上添加托盘比较容易实现,调用VC中的函数就可以解决,只是注意协调。接下来,我将给大家提供一个,可以很容易的达到我们的目的,希望它能给大家一点帮助,如果你发现BUG也欢迎你和我联系。运行程序,左键双击或者右键单击任务条上的托盘,我们可以看到效果。   1. 有关CsystemTray的说明:(文章的最后有本的具体实现代码)   CSystemTray是CObject的扩展,实现以下功能:    1、在任务条显示托盘图标。    2、设置提示Tip    3、设置图标的形状   主要函数说明: Create(CWnd* pWnd, UINT uCallbackMessage, LPCTSTR szTip, HICON icon, UINT uID);   功能:    生成一个图标。   参数说明:    pWnd:程序的主窗口,    uCallbackMessage:对应的消息映射,    szTip:鼠标停留时的提示文字,    icon:显示的图标,    uID:与之对应的菜单ID   · BOOL CSystemTray::SetIcon(HICON hIcon)     BOOL CSystemTray::SetIcon(LPCTSTR lpszIconName)     BOOL CSystemTray::SetIcon(UINT nIDResource)     BOOL CSystemTray::SetStandardIcon(LPCTSTR lpIconName)     BOOL CSystemTray::SetStandardIcon(UINT nIDResource)    功能:更改托盘上的图标。   void CSystemTray::ShowIcon()    功能:显示图标。   · BOOL CSystemTray::SetTooltipText(LPCTSTR pszTip)     BOOL CSystemTray::SetTooltipText(UINT nID)    功能:提示显示文字。   2. 使用本的步骤如下:   第一步:在VC编程环境下,建立一个工程,基于对话框或者是单文档(或者是多文档)你随便,所有的选项都取默认值即可。   第二步:在mainfrm.h中定义变量CSystemTray m_TrayIcon;并添加函数声明:    afx_msg LRESULT OnTrayNotification(WPARAM wParam, LPARAM lParam);    afx_msg void OnSysCommand(UINT nID, LPARAM lParam);   第三步:在StaAFX.h中定义消息:    #define WM_ICON_NOTIFY WM_USER + 1   第四步:自定义菜单IDR_POPUPMENU,其中最少包括一项:ID:ID_VIEW_MAIN_WINDOW,Caption为"显示主窗口",并为该项在CmainFrame中添加消息映射函数,COMMAND和UPDATE_COMMAND_UI。   第五步:在Mainframe.cpp中添加以下内容: 1. BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd) ON_COMMAND(ID_VIEW_MAIN_WINDOW, OnViewMainWindow) ON_UPDATE_COMMAND_UI(ID_VIEW_MAIN_WINDOW, OnUpdateViewMainWindow) ON_MESSAGE(WM_ICON_NOTIFY, OnTrayNotification) ON_WM_SYSCOMMAND() //}}AFX_MSG_MAP END_MESSAGE_MAP() 2. void CMainFrame::OnViewMainWindow() { if(IsWindowVisible()) { ShowWindow(SW_SHOWMINIMIZED); ShowWindow(SW_HIDE); m_TrayIcon.SetIcon(IDI_ICON1); } else { ShowWindow(SW_SHOW); ShowWindow(SW_RESTORE); m_TrayIcon.SetIcon(IDI_ICON2); } } void CMainFrame::OnUpdateViewMainWindow(CCmdUI* pCmdUI) { pCmdUI->SetCheck(IsWindowVisible()); } 3. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct) { if (CFrameWnd::OnCreate(lpCreateStruct) == -1) return -1; //创建托盘图标 if (!m_TrayIcon.Create(this, WM_ICON_NOTIFY,"大屏实时显示程序", NULL, IDR_POPUPMENU)) return -1; m_TrayIcon.SetIcon(IDI_ICON1); SetMenu(NULL); return 0; } 4. LRESULT CMainFrame::OnTrayNotification(WPARAM wParam, LPARAM lParam) { if (wParam != IDR_POPUPMENU) return 0L; CMenu menu, *pSubMenu; if (LOWORD(lParam) == WM_RBUTTONUP) { CPoint pos; GetCursorPos(&pos;); if (!menu.LoadMenu(IDR_POPUPMENU)) return 0; if (!(pSubMenu=menu.GetSubMenu(0))) return 0; ::SetMenuDefaultItem(pSubMenu->m_hMenu, 3, TRUE); SetForegroundWindow(); pSubMenu->TrackPopupMenu(TPM_RIGHTALIGN | TPM_BOTTOMALIGN | TPM_RIGHTBUTTON, pos.x, pos.y, this); menu.DestroyMenu(); } else if (LOWORD(lParam) == WM_LBUTTONDBLCLK) { if (!menu.LoadMenu(IDR_POPUPMENU)) return 0; if (!(pSubMenu = menu.GetSubMenu(0))) return 0; SetForegroundWindow(); //激活第2个菜单项 SendMessage(WM_COMMAND, pSubMenu->GetMenuItemID(1), 0); menu.DestroyMenu(); } return 0; } void CMainFrame::OnSysCommand(UINT nID, LPARAM lParam) { if(nID==SC_MINIMIZE) { ShowWindow(SW_SHOWMINIMIZED); ShowWindow(SW_HIDE); } else CFrameWnd::OnSysCommand(nID, lParam); } 3. 附录:的实现代码 CsystemTray的头文件 #ifndef _INCLUDED_SYSTEMTRAY_H_ #define _INCLUDED_SYSTEMTRAY_H_ ///////////////////////////////////////////////////////////////////////////// // CSystemTray window class CSystemTray : public CObject { // Construction/destruction public: CSystemTray(); CSystemTray(CWnd* pWnd, UINT uCallbackMessage, LPCTSTR szTip, HICON icon, UINT uID); virtual ~CSystemTray(); // Operations public: CFrameWnd * m_pFrame; BOOL Enabled() { return m_bEnabled; } BOOL Visible() { return !m_bHidden; } //Create the tray icon Create(CWnd* pWnd, UINT uCallbackMessage, LPCTSTR szTip, HICON icon, UINT uID); //Change or retrieve the Tooltip text BOOL SetTooltipText(LPCTSTR pszTooltipText); BOOL SetTooltipText(UINT nID); CString GetTooltipText() const; //Change or retrieve the icon displayed BOOL SetIcon(HICON hIcon); BOOL SetIcon(LPCTSTR lpIconName); BOOL SetIcon(UINT nIDResource); BOOL SetStandardIcon(LPCTSTR lpIconName); BOOL SetStandardIcon(UINT nIDResource); HICON GetIcon() const; void HideIcon(); void ShowIcon(); void RemoveIcon(); void MoveToRight(); //Change or retrieve the window to send notification messages to BOOL SetNotificationWnd(CWnd* pNotifyWnd); CWnd* GetNotificationWnd() const; //Default handler for tray notification message // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CSystemTray) //}}AFX_VIRTUAL // Implementation protected: BOOL m_bEnabled; // does O/S support tray icon? BOOL m_bHidden; // Has the icon been hidden? NOTIFYICONDATA m_tnd; DECLARE_DYNAMIC(CSystemTray) }; #endif /////////////////////////////////////////////////// CsystemTray的实现文件 #include "stdafx.h" #include "SystemTray.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif IMPLEMENT_DYNAMIC(CSystemTray, CObject) ///////////////////////////////////////////////// // CSystemTray construction/creation/destruction CSystemTray::CSystemTray() { memset(&m_tnd, 0, sizeof(m_tnd)); m_bEnabled = FALSE; m_bHidden = FALSE; } CSystemTray::CSystemTray(CWnd* pWnd, UINT uCallbackMessage, LPCTSTR szToolTip, HICON icon, UINT uID) { Create(pWnd, uCallbackMessage, szToolTip, icon, uID); m_bHidden = FALSE; } BOOL CSystemTray::Create(CWnd* pWnd, UINT uCallbackMessage, LPCTSTR szToolTip, HICON icon, UINT uID) { // this is only for Windows 95 (or higher) VERIFY(m_bEnabled = ( GetVersion() & 0xff ) >= 4); if (!m_bEnabled) return FALSE; //Make sure Notification window is valid VERIFY(m_bEnabled = (pWnd && ::IsWindow(pWnd->GetSafeHwnd()))); if (!m_bEnabled) return FALSE; //Make sure we avoid conflict with other messages ASSERT(uCallbackMessage >= WM_USER); //Tray only supports tooltip text up to 64 characters ASSERT(_tcslen(szToolTip) GetSafeHwnd(); m_tnd.uID = uID; m_tnd.hIcon = icon; m_tnd.uFlags = NIF_MESSAGE | NIF_ICON | NIF_TIP; m_tnd.uCallbackMessage = uCallbackMessage; strcpy (m_tnd.szTip, szToolTip); // Set the tray icon m_pFrame = (CFrameWnd*)pWnd; VERIFY(m_bEnabled = Shell_NotifyIcon(NIM_ADD, &m_tnd)); return m_bEnabled; } CSystemTray::~CSystemTray() { RemoveIcon(); } ///////////////////////////////////////////// // CSystemTray icon manipulation void CSystemTray::MoveToRight() { HideIcon(); ShowIcon(); } void CSystemTray::RemoveIcon() { if (!m_bEnabled) return; m_tnd.uFlags = 0; Shell_NotifyIcon(NIM_DELETE, &m_tnd); m_bEnabled = FALSE; } void CSystemTray::HideIcon() { if (m_bEnabled && !m_bHidden) { m_tnd.uFlags = NIF_ICON; Shell_NotifyIcon (NIM_DELETE, &m_tnd); m_bHidden = TRUE; } } void CSystemTray::ShowIcon() { if (m_bEnabled && m_bHidden) { m_tnd.uFlags = NIF_MESSAGE | NIF_ICON | NIF_TIP; Shell_NotifyIcon(NIM_ADD, &m_tnd); m_bHidden = FALSE; } } BOOL CSystemTray::SetIcon(HICON hIcon) { if (!m_bEnabled) return FALSE; m_tnd.uFlags = NIF_ICON; m_tnd.hIcon = hIcon; return Shell_NotifyIcon(NIM_MODIFY, &m_tnd); } BOOL CSystemTray::SetIcon(LPCTSTR lpszIconName) { HICON hIcon = AfxGetApp()->LoadIcon(lpszIconName); return SetIcon(hIcon); } BOOL CSystemTray::SetIcon(UINT nIDResource) { HICON hIcon = AfxGetApp()->LoadIcon(nIDResource); return SetIcon(hIcon); } BOOL CSystemTray::SetStandardIcon(LPCTSTR lpIconName) { HICON hIcon = LoadIcon(NULL, lpIconName); return SetIcon(hIcon); } BOOL CSystemTray::SetStandardIcon(UINT nIDResource) { HICON hIcon = ::LoadIcon(AfxGetInstanceHandle(), MAKEINTRESOURCE(nIDResource)); return SetIcon(hIcon); } HICON CSystemTray::GetIcon() const { HICON hIcon = NULL; if (m_bEnabled) hIcon = m_tnd.hIcon; return hIcon; } ////////////////////////////////////////////////// // CSystemTray tooltip text manipulation BOOL CSystemTray::SetTooltipText(LPCTSTR pszTip) { if (!m_bEnabled) return FALSE; m_tnd.uFlags = NIF_TIP; _tcscpy(m_tnd.szTip, pszTip); return Shell_NotifyIcon(NIM_MODIFY, &m_tnd); } BOOL CSystemTray::SetTooltipText(UINT nID) { CString strText; VERIFY(strText.LoadString(nID)); return SetTooltipText(strText); } CString CSystemTray::GetTooltipText() const { CString strText; if (m_bEnabled) strText = m_tnd.szTip; return strText; } //////////////////////////////////////////////// // CSystemTray notification window stuff BOOL CSystemTray::SetNotificationWnd(CWnd* pWnd) { if (!m_bEnabled) return FALSE; //Make sure Notification window is valid ASSERT(pWnd && ::IsWindow(pWnd->GetSafeHwnd())); m_tnd.hWnd = pWnd->GetSafeHwnd(); m_tnd.uFlags = 0; return Shell_NotifyIcon(NIM_MODIFY, &m_tnd); } CWnd* CSystemTray::GetNotificationWnd() const { return CWnd::FromHandle(m_tnd.hWnd); } 引用地址:http://blog.programfan.com/trackback.asp?id=18739
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值