NewMsgBox.h
上传用户:oldpeter23
上传日期:2013-01-09
资源大小:1111k
文件大小:1k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. //NetTalk
  2. /*------------------------------------------------------------------------------*
  3.  =============================
  4.    模块名称: NewMsgBox.h
  5.  =============================
  6.  
  7.  [版权]
  8.  
  9.    2000-2002  115软件工厂  版权所有
  10.                                               
  11. *------------------------------------------------------------------------------*/
  12. #ifndef _NEWMSGBOX_H_
  13. #define _NEWMSGBOX_H_
  14. #include "GraphDlg.h"
  15. #include "resource.h"
  16. class CMsgBox:public CGraphDlg
  17. {
  18. public:
  19. int MsgBox(HWND hWnd,char* pszTxt,char* pszCap,UINT utype,UINT uIcon);
  20. static int MessageBox(HWND hWnd,char* pszTxt,char* pszCap,UINT utype,UINT uIcon);
  21. static int MessageBox(HWND hWnd,const int iTxtId, const int iCapId, UINT utype,UINT uIcon);
  22. int MsgBox(HWND hWnd, int iTxtId, int iCapId, UINT utype,UINT uIcon);
  23. virtual  ~CMsgBox();
  24. CMsgBox();
  25. protected:
  26. UINT m_uIcon;
  27. UINT m_uType;
  28. char m_szCap[128];
  29. char m_szTxt[256];
  30. virtual void OnEraseBkgnd(HDC hdc);
  31. virtual BOOL OnCommand(WPARAM wParam,LPARAM lParam);
  32. virtual BOOL OnInitDialog();
  33. virtual LRESULT WndProc(UINT uMsg, WPARAM wParam, LPARAM lParam);
  34. };
  35. #endif