TipDialog.h
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:2k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. #if !defined(AFX_TIPDIALOG_H__9C82E5BC_7B88_415D_A045_39A25FCFE919__INCLUDED_)
  2. #define AFX_TIPDIALOG_H__9C82E5BC_7B88_415D_A045_39A25FCFE919__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // TipDialog.h : header file
  7. //
  8. #include "resource.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CTipDialog dialog
  11. class CTipDialog : public CDialog
  12. {
  13. public:
  14. static bool     canShow;
  15. static void     ShowTip( const char * tip , int delay = 3 );
  16. static bool     IsWindow( void ){ return ::IsWindow( CTipDialog::tipWnd->GetSafeHwnd( ) ); }
  17. protected:
  18. CTipDialog( CWnd * pParent = NULL );
  19. virtual void OnOK( void ){ }
  20. virtual void OnCancel( void ){ }
  21. //{{AFX_DATA(CTipDialog)
  22. enum { IDD = IDD_TIP_DIALOG };
  23. //}}AFX_DATA
  24. //{{AFX_VIRTUAL(CTipDialog)
  25. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  26. virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
  27. virtual void PostNcDestroy();
  28. //}}AFX_VIRTUAL
  29. //{{AFX_MSG(CTipDialog)
  30. afx_msg void OnPaint();
  31. afx_msg void OnTimer(UINT nIDEvent);
  32. virtual BOOL OnInitDialog();
  33. //}}AFX_MSG
  34. DECLARE_MESSAGE_MAP()
  35. private:
  36. static  CTipDialog * tipWnd;
  37. static  CBitmap    bmp;
  38. CString  text;
  39. CPoint   tagetPoint;
  40. CPoint   movePoint;
  41. bool     up;
  42. int      delay;
  43. };
  44. //{{AFX_INSERT_LOCATION}}
  45. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  46. #endif // !defined(AFX_TIPDIALOG_H__9C82E5BC_7B88_415D_A045_39A25FCFE919__INCLUDED_)