UserChat.h
上传用户:seeker_wen
上传日期:2016-05-23
资源大小:2084k
文件大小:2k
源码类别:

ICQ/即时通讯

开发平台:

Visual C++

  1. #if !defined(AFX_USERCHAT_H__2F1CCBC2_8284_473B_B8D1_9EB2F16C1371__INCLUDED_)
  2. #define AFX_USERCHAT_H__2F1CCBC2_8284_473B_B8D1_9EB2F16C1371__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // UserChat.h : header file
  7. //
  8. #include "chatleft.h"
  9. #include "chatright.h"
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CUserChat dialog
  12. class CUserChat : public CDialog
  13. {
  14. // Construction
  15. public:
  16. CUserChat(CWnd* pParent = NULL);   // standard constructor
  17. // Dialog Data
  18. //{{AFX_DATA(CUserChat)
  19. enum { IDD = IDD_CHAT };
  20. CButton m_SwitchButton;
  21. CButton m_BtnSender;
  22. //}}AFX_DATA
  23. // Overrides
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CUserChat)
  26. protected:
  27. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  28. //}}AFX_VIRTUAL
  29. BOOL isOpen;
  30. // Implementation
  31. protected:
  32. CChatRight m_right;
  33. CChatLeft m_left;
  34. // Generated message map functions
  35. //{{AFX_MSG(CUserChat)
  36. virtual BOOL OnInitDialog();
  37. afx_msg void OnSize(UINT nType, int cx, int cy);
  38. afx_msg BOOL OnNcCreate(LPCREATESTRUCT lpCreateStruct);
  39. afx_msg void OnButtonSwitch();
  40. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  41. afx_msg void OnGetMinMaxInfo(MINMAXINFO FAR* lpMMI);
  42. //}}AFX_MSG
  43. DECLARE_MESSAGE_MAP()
  44. public:
  45. BOOL CreateDlg(LPCTSTR lpszTemplateName, CWnd* pParentWnd)
  46. {
  47. return CWnd::CreateDlg(lpszTemplateName, pParentWnd);
  48. }
  49. };
  50. //{{AFX_INSERT_LOCATION}}
  51. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  52. #endif // !defined(AFX_USERCHAT_H__2F1CCBC2_8284_473B_B8D1_9EB2F16C1371__INCLUDED_)