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

对话框与窗口

开发平台:

Visual C++

  1. // ReportItemControlsDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "ReportItemControls.h"
  5. #include "ReportItemControlsDlg.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. #define MAX_COLUMN 3
  13. #define MAX_ROW 20
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CReportItemControlsDlg dialog
  16. CReportItemControlsDlg::CReportItemControlsDlg(CWnd* pParent /*=NULL*/)
  17. : CXTResizeDialog(CReportItemControlsDlg::IDD, pParent)
  18. {
  19. //{{AFX_DATA_INIT(CReportItemControlsDlg)
  20. // NOTE: the ClassWizard will add member initialization here
  21. //}}AFX_DATA_INIT
  22. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  23. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  24. }
  25. void CReportItemControlsDlg::DoDataExchange(CDataExchange* pDX)
  26. {
  27. CXTResizeDialog::DoDataExchange(pDX);
  28. //{{AFX_DATA_MAP(CReportItemControlsDlg)
  29. //}}AFX_DATA_MAP
  30. }
  31. BEGIN_MESSAGE_MAP(CReportItemControlsDlg, CXTResizeDialog)
  32. //{{AFX_MSG_MAP(CReportItemControlsDlg)
  33. ON_WM_SYSCOMMAND()
  34. ON_WM_PAINT()
  35. ON_WM_QUERYDRAGICON()
  36. ON_WM_DESTROY()
  37. //}}AFX_MSG_MAP
  38. ON_NOTIFY(XTP_NM_REPORT_ITEMBUTTONCLICK, IDC_REPORTCTRL, OnItemButtonClick)
  39. END_MESSAGE_MAP()
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CReportItemControlsDlg message handlers
  42. BOOL CReportItemControlsDlg::OnInitDialog()
  43. {
  44. CXTResizeDialog::OnInitDialog();
  45. // Add "About..." menu item to system menu.
  46. // IDM_ABOUTBOX must be in the system command range.
  47. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  48. ASSERT(IDM_ABOUTBOX < 0xF000);
  49. CMenu* pSysMenu = GetSystemMenu(FALSE);
  50. if (pSysMenu != NULL)
  51. {
  52. CString strAboutMenu;
  53. strAboutMenu.LoadString(IDS_ABOUTBOX);
  54. if (!strAboutMenu.IsEmpty())
  55. {
  56. pSysMenu->AppendMenu(MF_SEPARATOR);
  57. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  58. }
  59. }
  60. // Set the icon for this dialog.  The framework does this automatically
  61. //  when the application's main window is not a dialog
  62. SetIcon(m_hIcon, TRUE); // Set big icon
  63. SetIcon(m_hIcon, FALSE); // Set small icon
  64. // subclass the report control.
  65. m_wndReportCtrl.SubclassDlgItem(IDC_REPORTCTRL, this);
  66. // create the image list used by the report control.
  67. if (!m_ilIcons.Create(16,16, ILC_COLOR24 | ILC_MASK, 0, 1))
  68. return -1;
  69. // load the image bitmap and set the image list for the 
  70. // report control.
  71. CBitmap bitmap;
  72. VERIFY(bitmap.LoadBitmap(IDB_BMREPORT));
  73. m_ilIcons.Add(&bitmap, RGB(255, 0, 255));
  74. m_wndReportCtrl.SetImageList(&m_ilIcons);
  75. int i, j;
  76. //  add sample columns
  77. for (i = 0; i < MAX_COLUMN; i++)
  78. {
  79. CString strName;
  80. strName.Format(_T("Column %d"), i + 1);
  81. m_wndReportCtrl.AddColumn(new CXTPReportColumn(i, strName, 280));
  82. }
  83. // add records
  84. for (i = 0; i < MAX_ROW; i++)
  85. {
  86. CString strItem[MAX_COLUMN];
  87. for (j = 0; j < MAX_COLUMN; j++)
  88. {
  89. strItem[j].Format(_T("Row - %d, Col - %d"), i + 1, j + 1);
  90. }
  91. CXTPReportRecord* pRecord = m_wndReportCtrl.AddRecord(new CMessageRecord(strItem[0], strItem[1], strItem[2]));
  92. if(!pRecord)
  93. continue;
  94. for (j = 0; j < MAX_COLUMN; j++)
  95. {
  96. CXTPReportRecordItem* pItem = pRecord->GetItem(j);
  97. if(!pItem)
  98. continue;
  99. CXTPReportRecordItemControl* pButton = pItem->GetItemControls()->AddControl(xtpItemControlTypeButton);
  100. if(!pButton)
  101. continue;
  102. pButton->SetAlignment(xtpItemControlLeft);
  103. pButton->SetIconIndex(PBS_NORMAL, 0);
  104. pButton->SetIconIndex(PBS_PRESSED, 1);
  105. pButton->SetSize(CSize(22, 0));
  106. pButton = pItem->GetItemControls()->AddControl(xtpItemControlTypeButton);
  107. if(!pButton)
  108. continue;
  109. pButton->SetAlignment(xtpItemControlRight);
  110. pButton->SetIconIndex(PBS_NORMAL, 4);
  111. pButton->SetIconIndex(PBS_PRESSED, 5);
  112. pButton->SetSize(CSize(22, 0));
  113. pButton = pItem->GetItemControls()->AddControl(xtpItemControlTypeButton);
  114. if(!pButton)
  115. continue;
  116. pButton->SetAlignment(xtpItemControlRight);
  117. pButton->SetIconIndex(0, 3);
  118. pButton->SetSize(CSize(22, 0));
  119. }
  120. }
  121. // define style attributes for the report control.
  122. m_wndReportCtrl.FocusSubItems(TRUE);
  123. m_wndReportCtrl.AllowEdit(TRUE);
  124. // after columns and data have been added call Populate to 
  125. // populate all of the date for the control.
  126. m_wndReportCtrl.Populate();
  127. // Set control resizing.
  128. SetResize(IDC_REPORTCTRL, SZ_TOP_LEFT, SZ_BOTTOM_RIGHT);
  129. SetResize(IDOK, SZ_BOTTOM_RIGHT, SZ_BOTTOM_RIGHT);
  130. // Load window placement
  131. LoadPlacement(_T("CReportItemControlsDlg"));
  132. return TRUE;  // return TRUE  unless you set the focus to a control
  133. }
  134. void CReportItemControlsDlg::OnSysCommand(UINT nID, LPARAM lParam)
  135. {
  136. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  137. {
  138. CAboutDlg dlgAbout;
  139. dlgAbout.DoModal();
  140. }
  141. else
  142. {
  143. CXTResizeDialog::OnSysCommand(nID, lParam);
  144. }
  145. }
  146. // If you add a minimize button to your dialog, you will need the code below
  147. //  to draw the icon.  For MFC applications using the document/view model,
  148. //  this is automatically done for you by the framework.
  149. void CReportItemControlsDlg::OnPaint() 
  150. {
  151. if (IsIconic())
  152. {
  153. CPaintDC dc(this); // device context for painting
  154. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  155. // Center icon in client rectangle
  156. int cxIcon = GetSystemMetrics(SM_CXICON);
  157. int cyIcon = GetSystemMetrics(SM_CYICON);
  158. CRect rect;
  159. GetClientRect(&rect);
  160. int x = (rect.Width() - cxIcon + 1) / 2;
  161. int y = (rect.Height() - cyIcon + 1) / 2;
  162. // Draw the icon
  163. dc.DrawIcon(x, y, m_hIcon);
  164. }
  165. else
  166. {
  167. CXTResizeDialog::OnPaint();
  168. }
  169. }
  170. // The system calls this to obtain the cursor to display while the user drags
  171. //  the minimized window.
  172. HCURSOR CReportItemControlsDlg::OnQueryDragIcon()
  173. {
  174. return (HCURSOR) m_hIcon;
  175. }
  176. void CReportItemControlsDlg::OnDestroy() 
  177. {
  178. CXTResizeDialog::OnDestroy();
  179. // Save window placement
  180. SavePlacement(_T("CReportItemControlsDlg"));
  181. }
  182. BOOL CReportItemControlsDlg::PreTranslateMessage(MSG* pMsg) 
  183. {
  184. if(pMsg->message == WM_KEYDOWN && (pMsg->wParam == VK_ESCAPE || pMsg->wParam == VK_RETURN || pMsg->wParam == VK_TAB))
  185. return FALSE;
  186. return CXTResizeDialog::PreTranslateMessage(pMsg);
  187. }
  188. void CReportItemControlsDlg::OnItemButtonClick(NMHDR * pNotifyStruct, LRESULT*)
  189. {
  190. XTP_NM_REPORTITEMCONTROL* pItemNotify = (XTP_NM_REPORTITEMCONTROL*) pNotifyStruct;
  191. if(!(pItemNotify->pRow && pItemNotify->pItem && pItemNotify->pItemControl))
  192. return;
  193. switch(pItemNotify->pItemControl->GetIndex())
  194. {
  195.     // button "Alignment"
  196. case 0 :
  197. {
  198. int nIcon = pItemNotify->pItemControl->GetIconIndex(PBS_NORMAL);
  199. if(++nIcon > 2)
  200. nIcon = 0;
  201. pItemNotify->pItemControl->SetIconIndex(PBS_NORMAL, nIcon);
  202. if(++nIcon > 2)
  203. nIcon = 0;
  204. pItemNotify->pItemControl->SetIconIndex(PBS_PRESSED, nIcon);
  205. switch(pItemNotify->pItemControl->GetIconIndex(PBS_NORMAL))
  206. {
  207. case 0 :
  208. pItemNotify->pItem->SetAlignment(xtpColumnTextLeft);
  209. break;
  210. case 1 :
  211. pItemNotify->pItem->SetAlignment(xtpColumnTextCenter);
  212. break;
  213. case 2 :
  214. pItemNotify->pItem->SetAlignment(xtpColumnTextRight);
  215. break;
  216. }
  217. break;
  218. }
  219.     // button "Color"
  220. case 1 :
  221. {
  222. int nIcon = pItemNotify->pItemControl->GetIconIndex(PBS_NORMAL);
  223. if(++nIcon > 6)
  224. nIcon = 4;
  225. pItemNotify->pItemControl->SetIconIndex(PBS_NORMAL, nIcon);
  226. if(++nIcon > 6)
  227. nIcon = 4;
  228. pItemNotify->pItemControl->SetIconIndex(PBS_PRESSED, nIcon);
  229. switch(pItemNotify->pItemControl->GetIconIndex(PBS_NORMAL))
  230. {
  231. case 4 :
  232. pItemNotify->pItem->SetTextColor(RGB(0, 0, 0));
  233. break;
  234. case 5 :
  235. pItemNotify->pItem->SetTextColor(RGB(0, 0, 255));
  236. break;
  237. case 6 :
  238. pItemNotify->pItem->SetTextColor(RGB(255, 0, 0));
  239. break;
  240. }
  241. break;
  242. }
  243.     // button "Bold"
  244. case 2 :
  245. {
  246. pItemNotify->pItem->SetBold(!pItemNotify->pItem->IsBold());
  247. break;
  248. }
  249. }
  250. }