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

ICQ/即时通讯

开发平台:

Visual C++

  1. // ChatRight.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "MSN.h"
  5. #include "ChatRight.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CChatRight dialog
  13. CChatRight::CChatRight(CWnd* pParent /*=NULL*/)
  14. : CDialog(CChatRight::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CChatRight)
  17. // NOTE: the ClassWizard will add member initialization here
  18. //}}AFX_DATA_INIT
  19. }
  20. void CChatRight::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CDialog::DoDataExchange(pDX);
  23. //{{AFX_DATA_MAP(CChatRight)
  24. DDX_Control(pDX, IDC_STATICM, m_faceMe);
  25. DDX_Control(pDX, IDC_STATIC_F, m_faceFriend);
  26. //}}AFX_DATA_MAP
  27. }
  28. BEGIN_MESSAGE_MAP(CChatRight, CDialog)
  29. //{{AFX_MSG_MAP(CChatRight)
  30. ON_WM_SIZE()
  31. ON_WM_ERASEBKGND()
  32. ON_WM_NCCREATE()
  33. //}}AFX_MSG_MAP
  34. END_MESSAGE_MAP()
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CChatRight message handlers
  37. void CChatRight::OnSize(UINT nType, int cx, int cy) 
  38. {
  39. CDialog::OnSize(nType, cx, cy);
  40. if (m_faceMe.m_hWnd==NULL)
  41. return;
  42. m_faceMe.MoveWindow((cx-120)/2,cy-120-5,120,120);
  43. m_faceFriend.MoveWindow((cx-120)/2, 0,120,120);
  44. }
  45. BOOL CChatRight::OnEraseBkgnd(CDC* pDC) 
  46. {
  47. // TODO: Add your message handler code here and/or call default
  48. //return TRUE;
  49. return CDialog::OnEraseBkgnd(pDC);
  50. }
  51. BOOL CChatRight::OnNcCreate(LPCREATESTRUCT lpCreateStruct) 
  52. {
  53. if (!CDialog::OnNcCreate(lpCreateStruct))
  54. return FALSE;
  55. SetWindowSkinResID(m_hWnd, 1000);
  56. return TRUE;
  57. }