MessageDlg.h
上传用户:tuheem
上传日期:2007-05-01
资源大小:21889k
文件大小:2k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. #if !defined(AFX_MESSAGEDLG_H__1EA476E6_5482_4D70_8783_90FF68A5A0B3__INCLUDED_)
  2. #define AFX_MESSAGEDLG_H__1EA476E6_5482_4D70_8783_90FF68A5A0B3__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // MessageDlg.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CMessageDlg dialog
  10. class CMessageDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14. void SetSession ( IRTCSession *pSession );
  15. void SetParentClient ( IRTCClient *pClient );
  16. IRTCClient * m_pParentClient;
  17. HRESULT DeliverUserStatus(IRTCParticipant * pParticipant, RTC_MESSAGING_USER_STATUS enStatus);
  18. HRESULT DeliverMessage(IRTCParticipant * pParticipant, BSTR bstrContentType, BSTR bstrMessage);
  19. CMessageDlg(CWnd* pParent = NULL);   // standard constructor
  20. // Dialog Data
  21. //{{AFX_DATA(CMessageDlg)
  22. enum { IDD = IDD_MESSAGEDLG };
  23. CListBox m_cMessage;
  24. CEdit m_cText;
  25. //}}AFX_DATA
  26. // Overrides
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(CMessageDlg)
  29. protected:
  30. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  31. //}}AFX_VIRTUAL
  32. // Implementation
  33. protected:
  34. // Generated message map functions
  35. //{{AFX_MSG(CMessageDlg)
  36. afx_msg void OnSendtext();
  37. afx_msg void OnClear();
  38. virtual BOOL OnInitDialog();
  39. virtual void OnOK();
  40. virtual void OnCancel();
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. private:
  44. void DoDisplayMessage();
  45. IRTCSession * m_pParentSession;
  46. };
  47. //{{AFX_INSERT_LOCATION}}
  48. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  49. #endif // !defined(AFX_MESSAGEDLG_H__1EA476E6_5482_4D70_8783_90FF68A5A0B3__INCLUDED_)