ReportDialogDlg.cpp
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:9k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // ReportDialogDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "ReportDialog.h"
  5. #include "ReportDialogDlg.h"
  6. #include "MessageRecord.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CReportDialogDlg dialog
  14. CReportDialogDlg::CReportDialogDlg(CWnd* pParent /*=NULL*/)
  15. : CXTResizeDialog(CReportDialogDlg::IDD, pParent)
  16. {
  17. //{{AFX_DATA_INIT(CReportDialogDlg)
  18. // NOTE: the ClassWizard will add member initialization here
  19. //}}AFX_DATA_INIT
  20. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  21. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  22. }
  23. void CReportDialogDlg::DoDataExchange(CDataExchange* pDX)
  24. {
  25. CXTResizeDialog::DoDataExchange(pDX);
  26. //{{AFX_DATA_MAP(CReportDialogDlg)
  27. DDX_Control(pDX, IDC_REPORTCTRL, m_wndReportCtrl);
  28. //}}AFX_DATA_MAP
  29. }
  30. BEGIN_MESSAGE_MAP(CReportDialogDlg, CXTResizeDialog)
  31. //{{AFX_MSG_MAP(CReportDialogDlg)
  32. ON_WM_SYSCOMMAND()
  33. ON_WM_PAINT()
  34. ON_WM_QUERYDRAGICON()
  35. ON_WM_DESTROY()
  36. //}}AFX_MSG_MAP
  37. END_MESSAGE_MAP()
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CReportDialogDlg message handlers
  40. enum
  41. {
  42. COLUMN_IMPORTANCE,
  43. COLUMN_ICON,
  44. COLUMN_ATTACHMENT,
  45. COLUMN_FROM,
  46. COLUMN_SUBJECT,
  47. COLUMN_SENT,
  48. COLUMN_SIZE,
  49. COLUMN_CHECK,
  50. COLUMN_PRICE,
  51. COLUMN_CREATED,
  52. COLUMN_RECEIVED,
  53. COLUMN_CONVERSATION,
  54. COLUMN_CONTACTS,
  55. COLUMN_MESSAGE,
  56. COLUMN_CC,
  57. COLUMN_CATEGORIES,
  58. COLUMN_AUTOFORWARD,
  59. COLUMN_DO_NOT_AUTOARCH,
  60. COLUMN_DUE_BY,
  61. };
  62. const int COLUMN_MAIL_ICON   =  0;
  63. const int COLUMN_CHECK_ICON  =  2;
  64. BOOL CReportDialogDlg::OnInitDialog()
  65. {
  66. CXTResizeDialog::OnInitDialog();
  67. // Add "About..." menu item to system menu.
  68. // IDM_ABOUTBOX must be in the system command range.
  69. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  70. ASSERT(IDM_ABOUTBOX < 0xF000);
  71. CMenu* pSysMenu = GetSystemMenu(FALSE);
  72. if (pSysMenu != NULL)
  73. {
  74. CString strAboutMenu;
  75. strAboutMenu.LoadString(IDS_ABOUTBOX);
  76. if (!strAboutMenu.IsEmpty())
  77. {
  78. pSysMenu->AppendMenu(MF_SEPARATOR);
  79. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  80. }
  81. }
  82. // Set the icon for this dialog.  The framework does this automatically
  83. //  when the application's main window is not a dialog
  84. SetIcon(m_hIcon, TRUE); // Set big icon
  85. SetIcon(m_hIcon, FALSE); // Set small icon
  86. //
  87. // create the image list used by the report control.
  88. //
  89. if (!m_ilIcons.Create(16,16, ILC_COLOR24|ILC_MASK, 0, 1))
  90. return -1;
  91. //
  92. // load the image bitmap and set the image list for the 
  93. // report control.
  94. //
  95. CBitmap bitmap;
  96. VERIFY(bitmap.LoadBitmap(IDB_BMREPORT));
  97. m_ilIcons.Add(&bitmap, RGB(255, 0, 255));
  98. m_wndReportCtrl.SetImageList(&m_ilIcons);
  99. //
  100. //  Add sample columns
  101. //
  102. m_wndReportCtrl.AddColumn(new CXTPReportColumn(COLUMN_ICON, _T(""), 18, FALSE, COLUMN_MAIL_ICON));
  103. m_wndReportCtrl.AddColumn(new CXTPReportColumn(COLUMN_CHECK, _T(""), 18, FALSE, COLUMN_CHECK_ICON));
  104. m_wndReportCtrl.AddColumn(new CXTPReportColumn(COLUMN_SUBJECT, _T("Subject"), 280));
  105. m_wndReportCtrl.AddColumn(new CXTPReportColumn(COLUMN_FROM, _T("From"), 180));
  106. m_wndReportCtrl.AddColumn(new CXTPReportColumn(COLUMN_SENT, _T("Sent"), 150));
  107. m_wndReportCtrl.AddColumn(new CXTPReportColumn(COLUMN_SIZE, _T("Size"), 50));
  108. m_wndReportCtrl.AddColumn(new CXTPReportColumn(COLUMN_PRICE, _T("Price"), 80));
  109. //
  110. //  Add sample records in tree
  111. //
  112. COleDateTime odtSent(COleDateTime::GetCurrentTime());
  113. COleDateTime odtCreated(COleDateTime::GetCurrentTime());
  114. COleDateTime odtReceived(COleDateTime::GetCurrentTime());
  115. CString strMessage(" ");
  116. CString strEmpty(" ");
  117. m_wndReportCtrl.AddRecord(new CMessageRecord(msgImportanceNormal, FALSE, FALSE, _T("postmaster@mail.codejock.com"), _T("Undeliverable Mail"), odtSent, 7, TRUE, 5,
  118. odtCreated, odtReceived, strEmpty, strEmpty, strMessage,
  119. strEmpty, strEmpty, strEmpty,
  120. strEmpty, strEmpty,
  121. strMessage));   odtSent -= 0.8;
  122. m_wndReportCtrl.AddRecord(new CMessageRecord(msgImportanceLow, FALSE, FALSE, _T("Clark Kent"), _T("RE: Hi Louis"), odtSent, 14, FALSE, 4.3,
  123. odtCreated, odtReceived, strEmpty, strEmpty, strMessage,
  124. strEmpty, strEmpty, strEmpty,
  125. strEmpty, strEmpty,
  126. strMessage)); odtSent -= 0.8;
  127. CMessageRecord *pParentRec1 = new CMessageRecord(msgImportanceNormal, TRUE, TRUE, _T("Bruce Wayne"), _T("RE:"), odtSent, 24, FALSE, 56,
  128. odtCreated, odtReceived, strEmpty, strEmpty, strMessage,
  129. strEmpty, strEmpty, strEmpty,
  130. strEmpty, strEmpty,
  131. strMessage); odtSent -= 0.8;
  132. m_wndReportCtrl.AddRecord(pParentRec1);
  133. m_wndReportCtrl.AddRecord(new CMessageRecord(msgImportanceNormal, FALSE, TRUE, _T("postmaster@mail.codejock.com"), _T("Undeliverable Mail"), odtSent, 7, TRUE, 10,
  134. odtCreated, odtReceived, strEmpty, strEmpty, strMessage,
  135. strEmpty, strEmpty, strEmpty,
  136. strEmpty, strEmpty,
  137. strMessage)); odtSent -= 80;
  138. m_wndReportCtrl.AddRecord(new CMessageRecord(msgImportanceNormal, FALSE, FALSE, _T("postmaster@mail.codejock.com"), _T("Undeliverable Mail"), odtSent, 7, TRUE, 5,
  139. odtCreated, odtReceived, strEmpty, strEmpty, strMessage,
  140. strEmpty, strEmpty, strEmpty,
  141. strEmpty, strEmpty,
  142. strMessage));   odtSent -= 0.8;
  143. m_wndReportCtrl.AddRecord(new CMessageRecord(msgImportanceLow, FALSE, FALSE, _T("Clark Kent"), _T("RE: Hi Louis"), odtSent, 14, FALSE, 4.3,
  144. odtCreated, odtReceived, strEmpty, strEmpty, strMessage,
  145. strEmpty, strEmpty, strEmpty,
  146. strEmpty, strEmpty,
  147. strMessage)); odtSent -= 0.8;
  148. pParentRec1 = new CMessageRecord(msgImportanceNormal, TRUE, TRUE, _T("Bruce Wayne"), _T("RE:"), odtSent, 24, FALSE, 56,
  149. odtCreated, odtReceived, strEmpty, strEmpty, strMessage,
  150. strEmpty, strEmpty, strEmpty,
  151. strEmpty, strEmpty,
  152. strMessage); odtSent -= 0.8;
  153. m_wndReportCtrl.AddRecord(pParentRec1);
  154. m_wndReportCtrl.AddRecord(new CMessageRecord(msgImportanceNormal, FALSE, TRUE, _T("postmaster@mail.codejock.com"), _T("Undeliverable Mail"), odtSent, 7, TRUE, 10,
  155. odtCreated, odtReceived, strEmpty, strEmpty, strMessage,
  156. strEmpty, strEmpty, strEmpty,
  157. strEmpty, strEmpty,
  158. strMessage)); odtSent -= 80;
  159. m_wndReportCtrl.AddRecord(new CMessageRecord(msgImportanceNormal, FALSE, FALSE, _T("postmaster@mail.codejock.com"), _T("Undeliverable Mail"), odtSent, 7, TRUE, 5,
  160. odtCreated, odtReceived, strEmpty, strEmpty, strMessage,
  161. strEmpty, strEmpty, strEmpty,
  162. strEmpty, strEmpty,
  163. strMessage));   odtSent -= 0.8;
  164. m_wndReportCtrl.AddRecord(new CMessageRecord(msgImportanceLow, FALSE, FALSE, _T("Clark Kent"), _T("RE: Hi Louis"), odtSent, 14, FALSE, 4.3,
  165. odtCreated, odtReceived, strEmpty, strEmpty, strMessage,
  166. strEmpty, strEmpty, strEmpty,
  167. strEmpty, strEmpty,
  168. strMessage)); odtSent -= 0.8;
  169. pParentRec1 = new CMessageRecord(msgImportanceNormal, TRUE, TRUE, _T("Bruce Wayne"), _T("RE:"), odtSent, 24, FALSE, 56,
  170. odtCreated, odtReceived, strEmpty, strEmpty, strMessage,
  171. strEmpty, strEmpty, strEmpty,
  172. strEmpty, strEmpty,
  173. strMessage); odtSent -= 0.8;
  174. m_wndReportCtrl.AddRecord(pParentRec1);
  175. m_wndReportCtrl.AddRecord(new CMessageRecord(msgImportanceNormal, FALSE, TRUE, _T("postmaster@mail.codejock.com"), _T("Undeliverable Mail"), odtSent, 7, TRUE, 10,
  176. odtCreated, odtReceived, strEmpty, strEmpty, strMessage,
  177. strEmpty, strEmpty, strEmpty,
  178. strEmpty, strEmpty,
  179. strMessage)); odtSent -= 80;
  180. //
  181. // define style attributes for the report control.
  182. //
  183. m_wndReportCtrl.GetColumns()->Find(COLUMN_SUBJECT)->SetTreeColumn(TRUE);
  184. //
  185. // after columns and data have been added call Populate to 
  186. // populate all of the date for the control.
  187. //
  188. m_wndReportCtrl.Populate();
  189. m_wndReportCtrl.EnableDragDrop(_T("ReportDialog"), xtpReportAllowDrag | xtpReportAllowDrop);
  190. // Set control resizing.
  191. SetResize(IDC_REPORTCTRL, SZ_TOP_LEFT, SZ_BOTTOM_RIGHT);
  192. SetResize(IDCANCEL, SZ_BOTTOM_RIGHT, SZ_BOTTOM_RIGHT);
  193. SetResize(IDOK, SZ_BOTTOM_RIGHT, SZ_BOTTOM_RIGHT);
  194. // Load window placement
  195. LoadPlacement(_T("CReportDialogDlg"));
  196. return TRUE;  // return TRUE  unless you set the focus to a control
  197. }
  198. void CReportDialogDlg::OnSysCommand(UINT nID, LPARAM lParam)
  199. {
  200. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  201. {
  202. CAboutDlg dlgAbout;
  203. dlgAbout.DoModal();
  204. }
  205. else
  206. {
  207. CXTResizeDialog::OnSysCommand(nID, lParam);
  208. }
  209. }
  210. // If you add a minimize button to your dialog, you will need the code below
  211. //  to draw the icon.  For MFC applications using the document/view model,
  212. //  this is automatically done for you by the framework.
  213. void CReportDialogDlg::OnPaint() 
  214. {
  215. if (IsIconic())
  216. {
  217. CPaintDC dc(this); // device context for painting
  218. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  219. // Center icon in client rectangle
  220. int cxIcon = GetSystemMetrics(SM_CXICON);
  221. int cyIcon = GetSystemMetrics(SM_CYICON);
  222. CRect rect;
  223. GetClientRect(&rect);
  224. int x = (rect.Width() - cxIcon + 1) / 2;
  225. int y = (rect.Height() - cyIcon + 1) / 2;
  226. // Draw the icon
  227. dc.DrawIcon(x, y, m_hIcon);
  228. }
  229. else
  230. {
  231. CXTResizeDialog::OnPaint();
  232. }
  233. }
  234. // The system calls this to obtain the cursor to display while the user drags
  235. //  the minimized window.
  236. HCURSOR CReportDialogDlg::OnQueryDragIcon()
  237. {
  238. return (HCURSOR) m_hIcon;
  239. }
  240. void CReportDialogDlg::OnDestroy() 
  241. {
  242. CXTResizeDialog::OnDestroy();
  243. // Save window placement
  244. SavePlacement(_T("CReportDialogDlg"));
  245. }