xDialogDlg.cpp
上传用户:louyoung
上传日期:2007-01-02
资源大小:123k
文件大小:7k
源码类别:

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // xDialogDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "xDialog.h"
  5. #include "xDialogDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CAboutDlg dialog used for App About
  13. class CAboutDlg : public CDialog
  14. {
  15. public:
  16. CAboutDlg();
  17. // Dialog Data
  18. //{{AFX_DATA(CAboutDlg)
  19. enum { IDD = IDD_ABOUTBOX };
  20. //}}AFX_DATA
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CAboutDlg)
  23. protected:
  24. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. protected:
  28. //{{AFX_MSG(CAboutDlg)
  29. //}}AFX_MSG
  30. DECLARE_MESSAGE_MAP()
  31. };
  32. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  33. {
  34. //{{AFX_DATA_INIT(CAboutDlg)
  35. //}}AFX_DATA_INIT
  36. }
  37. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  38. {
  39. CDialog::DoDataExchange(pDX);
  40. //{{AFX_DATA_MAP(CAboutDlg)
  41. //}}AFX_DATA_MAP
  42. }
  43. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  44. //{{AFX_MSG_MAP(CAboutDlg)
  45. // No message handlers
  46. //}}AFX_MSG_MAP
  47. END_MESSAGE_MAP()
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CXDialogDlg dialog
  50. CXDialogDlg::CXDialogDlg(CWnd* pParent /*=NULL*/)
  51. : CDialog(CXDialogDlg::IDD, pParent)
  52. {
  53. //{{AFX_DATA_INIT(CXDialogDlg)
  54. // NOTE: the ClassWizard will add member initialization here
  55. //}}AFX_DATA_INIT
  56. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  57. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  58. }
  59. void CXDialogDlg::DoDataExchange(CDataExchange* pDX)
  60. {
  61. CDialog::DoDataExchange(pDX);
  62. //{{AFX_DATA_MAP(CXDialogDlg)
  63. DDX_Control(pDX, IDC_LIST_TEAMS, m_treeTeams);
  64. DDX_Control(pDX, IDC_TREE_EXPLORER, m_treeExplorer);
  65. DDX_Control(pDX, IDC_LIST_EVENTS, m_lbEvents);
  66. DDX_Control(pDX, IDC_TREE_WINDOWS, m_treeWindows);
  67. DDX_Control(pDX, IDC_XFLOORWNDCTRL, m_fw);
  68. //}}AFX_DATA_MAP
  69. }
  70. BEGIN_MESSAGE_MAP(CXDialogDlg, CDialog)
  71. //{{AFX_MSG_MAP(CXDialogDlg)
  72. ON_WM_SYSCOMMAND()
  73. ON_WM_PAINT()
  74. ON_WM_QUERYDRAGICON()
  75. ON_NOTIFY(TVN_ITEMEXPANDING, IDC_TREE_EXPLORER, OnItemexpandingTreeExplorer)
  76. ON_NOTIFY(NM_RCLICK, IDC_TREE_EXPLORER, OnRclickTreeExplorer)
  77. //}}AFX_MSG_MAP
  78. END_MESSAGE_MAP()
  79. /////////////////////////////////////////////////////////////////////////////
  80. // CXDialogDlg message handlers
  81. BOOL CXDialogDlg::OnInitDialog()
  82. {
  83. CDialog::OnInitDialog();
  84. // Add "About..." menu item to system menu.
  85. // IDM_ABOUTBOX must be in the system command range.
  86. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  87. ASSERT(IDM_ABOUTBOX < 0xF000);
  88. CMenu* pSysMenu = GetSystemMenu(FALSE);
  89. if (pSysMenu != NULL)
  90. {
  91. CString strAboutMenu;
  92. strAboutMenu.LoadString(IDS_ABOUTBOX);
  93. if (!strAboutMenu.IsEmpty())
  94. {
  95. pSysMenu->AppendMenu(MF_SEPARATOR);
  96. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  97. }
  98. }
  99. // Set the icon for this dialog.  The framework does this automatically
  100. //  when the application's main window is not a dialog
  101. SetIcon(m_hIcon, TRUE); // Set big icon
  102. SetIcon(m_hIcon, FALSE); // Set small icon
  103. m_treeExplorer.PopulateTree();
  104. m_treeExplorer.EnableImages();
  105. m_treeWindows.Enum();
  106. InitTeams();
  107. // Atach window to XFloorWnd;
  108. LPARAM lParam = NULL;
  109. int i = 0;
  110. while ((lParam = m_fw.GetUserData(i)) > 0)
  111. m_fw.AttachWindow(i++, (long)GetDlgItem(lParam));
  112. m_fw.Init();
  113. m_fw.ActivatePage(0);
  114. return TRUE;  // return TRUE  unless you set the focus to a control
  115. }
  116. void CXDialogDlg::OnSysCommand(UINT nID, LPARAM lParam)
  117. {
  118. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  119. {
  120. CAboutDlg dlgAbout;
  121. dlgAbout.DoModal();
  122. }
  123. else
  124. {
  125. CDialog::OnSysCommand(nID, lParam);
  126. }
  127. }
  128. // If you add a minimize button to your dialog, you will need the code below
  129. //  to draw the icon.  For MFC applications using the document/view model,
  130. //  this is automatically done for you by the framework.
  131. void CXDialogDlg::OnPaint() 
  132. {
  133. if (IsIconic())
  134. {
  135. CPaintDC dc(this); // device context for painting
  136. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  137. // Center icon in client rectangle
  138. int cxIcon = GetSystemMetrics(SM_CXICON);
  139. int cyIcon = GetSystemMetrics(SM_CYICON);
  140. CRect rect;
  141. GetClientRect(&rect);
  142. int x = (rect.Width() - cxIcon + 1) / 2;
  143. int y = (rect.Height() - cyIcon + 1) / 2;
  144. // Draw the icon
  145. dc.DrawIcon(x, y, m_hIcon);
  146. }
  147. else
  148. {
  149. CDialog::OnPaint();
  150. }
  151. }
  152. // The system calls this to obtain the cursor to display while the user drags
  153. //  the minimized window.
  154. HCURSOR CXDialogDlg::OnQueryDragIcon()
  155. {
  156. return (HCURSOR) m_hIcon;
  157. }
  158. BEGIN_EVENTSINK_MAP(CXDialogDlg, CDialog)
  159.     //{{AFX_EVENTSINK_MAP(CXDialogDlg)
  160. ON_EVENT(CXDialogDlg, IDC_XFLOORWNDCTRL, 1 /* ActivatePage */, OnActivatePageXfloorwndctrl, VTS_I2)
  161. ON_EVENT(CXDialogDlg, IDC_XFLOORWNDCTRL, -600 /* Click */, OnClickXfloorwndctrl, VTS_NONE)
  162. //}}AFX_EVENTSINK_MAP
  163. END_EVENTSINK_MAP()
  164. void CXDialogDlg::OnActivatePageXfloorwndctrl(short nIndex) 
  165. {
  166. CString item;
  167.  item.Format(_T("ActivatePage: %i, [%s]"), nIndex, m_fw.GetPageName(nIndex));
  168. m_lbEvents.InsertString(0, item);
  169. }
  170. void CXDialogDlg::OnClickXfloorwndctrl() 
  171. {
  172. CString item;
  173.  item.Format(_T("Click"));
  174. m_lbEvents.InsertString(0, item);
  175. }
  176. void CXDialogDlg::OnItemexpandingTreeExplorer(NMHDR* pNMHDR, LRESULT* pResult) 
  177. {
  178. NM_TREEVIEW* pNMTreeView = (NM_TREEVIEW*)pNMHDR;
  179. m_treeExplorer.FolderExpanding(pNMHDR, pResult);
  180. *pResult = 0;
  181. }
  182. void CXDialogDlg::OnRclickTreeExplorer(NMHDR* pNMHDR, LRESULT* pResult) 
  183. {
  184. m_treeExplorer.FolderPopup(pNMHDR, pResult);
  185. *pResult = 0;
  186. }
  187. void CXDialogDlg::InitTeams()
  188. {
  189. m_treeTeams.InsertColumn(0, _T("Team"), LVCFMT_LEFT,192);
  190. m_treeTeams.InsertColumn(1, _T("Favorites"),LVCFMT_CENTER,48);
  191. m_treeTeams.AttachBitmap(1, IDB_CHECK);
  192. CString teams, favourite;
  193. if (teams.LoadString(IDS_TEAMS))
  194. {
  195. for (char g = 'A'; g <= 'H'; g++)
  196. m_treeTeams.InsertItem(m_treeTeams.GetItemCount(), _T("Group ") + CString(g));
  197. CString team, name, group;
  198. int i = 0;
  199. for (UINT iBitmap = IDB_BITMAP1; iBitmap <= IDB_BITMAP32; iBitmap++)
  200. {
  201. AfxExtractSubString(team, teams, iBitmap - IDB_BITMAP1);
  202. AfxExtractSubString(name, team, 0, TCHAR(';'));
  203. AfxExtractSubString(group, team, 1, TCHAR(';'));
  204. AfxExtractSubString(favourite, team, 2, TCHAR(';'));
  205. int nItem = m_treeTeams.InsertItem(m_treeTeams.GetItemCount(),_T("0:") + name);
  206. m_treeTeams.SetItemParent(nItem, group[0]-'A');
  207. m_treeTeams.SetItemText(nItem, 1, favourite);
  208. m_treeTeams.SetItemData(nItem, nItem + 1);
  209. m_treeTeams.AttachBitmapCell(nItem, 0, iBitmap, 25, 19);
  210. if (!favourite.IsEmpty())
  211. m_treeTeams.SetBoldRow(nItem + 1);
  212. }
  213. m_treeTeams.ExpandHeader();
  214. }
  215. }