Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 lines
1.8 KiB

  1. // InboxDetailsPg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #define __FILE_ID__ 50
  5. #ifdef _DEBUG
  6. #define new DEBUG_NEW
  7. #undef THIS_FILE
  8. static char THIS_FILE[] = __FILE__;
  9. #endif
  10. //
  11. // this array maps CViewRow items to
  12. // dialog control IDs
  13. //
  14. static TMsgPageInfo s_PageInfo[] =
  15. {
  16. MSG_VIEW_ITEM_CSID, IDC_CSID_VALUE,
  17. MSG_VIEW_ITEM_TSID, IDC_TSID_VALUE,
  18. MSG_VIEW_ITEM_DEVICE, IDC_DEVICE_VALUE,
  19. MSG_VIEW_ITEM_ID, IDC_JOB_ID_VALUE,
  20. MSG_VIEW_ITEM_CALLER_ID, IDC_CALLER_ID_VALUE,
  21. MSG_VIEW_ITEM_ROUTING_INFO, IDC_ROUTING_INFO_VALUE,
  22. MSG_VIEW_ITEM_SERVER, IDC_SERVER_VALUE
  23. };
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CInboxDetailsPg property page
  26. IMPLEMENT_DYNCREATE(CInboxDetailsPg, CMsgPropertyPg)
  27. CInboxDetailsPg::CInboxDetailsPg(
  28. CFaxMsg* pMsg // pointer to CArchiveMsg
  29. ):
  30. CMsgPropertyPg(CInboxDetailsPg::IDD, pMsg)
  31. {
  32. }
  33. CInboxDetailsPg::~CInboxDetailsPg()
  34. {
  35. }
  36. void CInboxDetailsPg::DoDataExchange(CDataExchange* pDX)
  37. {
  38. CMsgPropertyPg::DoDataExchange(pDX);
  39. //{{AFX_DATA_MAP(CInboxDetailsPg)
  40. // NOTE: the ClassWizard will add DDX and DDV calls here
  41. //}}AFX_DATA_MAP
  42. }
  43. BEGIN_MESSAGE_MAP(CInboxDetailsPg, CMsgPropertyPg)
  44. //{{AFX_MESSAGE_MAP(CInboxDetailsPg)
  45. //}}AFX_MESSAGE_MAP
  46. END_MESSAGE_MAP()
  47. /////////////////////////////////////////////////////////////////////////////
  48. // CInboxDetailsPg message handlers
  49. BOOL
  50. CInboxDetailsPg::OnInitDialog()
  51. {
  52. DBG_ENTER(TEXT("CInboxDetailsPg::OnInitDialog"));
  53. CMsgPropertyPg::OnInitDialog();
  54. Refresh(s_PageInfo, sizeof(s_PageInfo)/sizeof(s_PageInfo[0]));
  55. return TRUE;
  56. }