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

IP电话/视频会议

开发平台:

Visual C++

  1. //NetTalk
  2. /*------------------------------------------------------------------------------*
  3.  =============================
  4.    模块名称: GraphDlg.h
  5.  =============================
  6.  
  7.  [版权]
  8.  
  9.    2000-2002  115软件工厂  版权所有
  10.                                               
  11. *------------------------------------------------------------------------------*/
  12. #ifndef _GRAPHDLG_H_
  13. #define _GRAPHDLG_H_
  14. #include "CoolBtn.h" // Added by ClassView
  15. class CGraphDlg:public CDialogX
  16. {
  17. public:
  18. virtual  ~CGraphDlg();
  19. CGraphDlg();
  20. protected:
  21. BOOL m_bHilight;
  22. HRGN m_hTRgn;
  23. HBRUSH m_hbBkE;
  24. HBRUSH m_hbBkS;
  25. CCoolBtn m_btnClose;
  26. void DrawTitleBar(HDC hdc);
  27. virtual BOOL OnCommand( WPARAM wParam, LPARAM lParam );
  28. virtual BOOL OnInitDialog();
  29. virtual void OnDestroy( );
  30. virtual void OnTimer(UINT nIDEvent);
  31. virtual void OnMouseMove(UINT nFlags, POINT &point);
  32. virtual void OnLButtonDown(UINT nFlags, POINT &point);
  33. virtual void OnEraseBkgnd(HDC hdc);
  34. virtual LRESULT WndProc(UINT uMsg,WPARAM wParam,LPARAM lParam);
  35. };
  36. #endif