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

对话框与窗口

开发平台:

Visual C++

  1. // DialogPanesDlg.cpp : implementation file
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. #include "stdafx.h"
  21. #include "DialogPanes.h"
  22. #include "DialogPanesDlg.h"
  23. #ifdef _DEBUG
  24. #define new DEBUG_NEW
  25. #undef THIS_FILE
  26. static char THIS_FILE[] = __FILE__;
  27. #endif
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CDialogPanesDlg dialog
  30. CDialogPanesDlg::CDialogPanesDlg(CWnd* pParent /*=NULL*/)
  31. : CDialog(CDialogPanesDlg::IDD, pParent)
  32. {
  33. //{{AFX_DATA_INIT(CDialogPanesDlg)
  34. // NOTE: the ClassWizard will add member initialization here
  35. //}}AFX_DATA_INIT
  36. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  37. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  38. // get path of executable
  39. TCHAR szBuff[_MAX_PATH];
  40. VERIFY(::GetModuleFileName(AfxGetInstanceHandle(), szBuff, _MAX_PATH));
  41. LPTSTR lpszExt = _tcsrchr(szBuff, '.');
  42. lstrcpy(lpszExt, _T(".xml"));
  43. m_strIniFileName = szBuff;
  44. }
  45. void CDialogPanesDlg::DoDataExchange(CDataExchange* pDX)
  46. {
  47. CDialog::DoDataExchange(pDX);
  48. //{{AFX_DATA_MAP(CDialogPanesDlg)
  49. DDX_Control(pDX, IDC_LIST_VIEW, m_wndView);
  50. //}}AFX_DATA_MAP
  51. }
  52. BEGIN_MESSAGE_MAP(CDialogPanesDlg, CDialog)
  53. //{{AFX_MSG_MAP(CDialogPanesDlg)
  54. ON_WM_SYSCOMMAND()
  55. ON_WM_PAINT()
  56. ON_WM_QUERYDRAGICON()
  57. ON_WM_SIZE()
  58. ON_WM_CLOSE()
  59. ON_NOTIFY(NM_CLICK, IDC_LIST_VIEW, OnClickListView)
  60. //}}AFX_MSG_MAP
  61. ON_MESSAGE(XTPWM_DOCKINGPANE_NOTIFY, OnDockingPaneNotify)
  62. ON_MESSAGE(WM_KICKIDLE, OnKickIdle)
  63. ON_UPDATE_COMMAND_UI(ID_INDICATOR_CAPS, OnUpdateKeyIndicator)
  64. ON_UPDATE_COMMAND_UI(ID_INDICATOR_NUM, OnUpdateKeyIndicator)
  65. ON_UPDATE_COMMAND_UI(ID_INDICATOR_SCRL, OnUpdateKeyIndicator)
  66. END_MESSAGE_MAP()
  67. /////////////////////////////////////////////////////////////////////////////
  68. // CDialogPanesDlg message handlers
  69. static UINT indicators[] =
  70. {
  71. ID_SEPARATOR,           // status line indicator
  72. ID_INDICATOR_CAPS,
  73. ID_INDICATOR_NUM,
  74. ID_INDICATOR_SCRL,
  75. };
  76. BOOL CDialogPanesDlg::OnInitDialog()
  77. {
  78. CDialog::OnInitDialog();
  79. // Add "About..." menu item to system menu.
  80. // IDM_ABOUTBOX must be in the system command range.
  81. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  82. ASSERT(IDM_ABOUTBOX < 0xF000);
  83. CMenu* pSysMenu = GetSystemMenu(FALSE);
  84. if (pSysMenu != NULL)
  85. {
  86. CString strAboutMenu;
  87. strAboutMenu.LoadString(IDS_ABOUTBOX);
  88. if (!strAboutMenu.IsEmpty())
  89. {
  90. pSysMenu->AppendMenu(MF_SEPARATOR);
  91. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  92. }
  93. }
  94. // Set the icon for this dialog.  The framework does this automatically
  95. //  when the application's main window is not a dialog
  96. SetIcon(m_hIcon, TRUE); // Set big icon
  97. SetIcon(m_hIcon, FALSE); // Set small icon
  98. if (!m_wndStatusBar.Create(this) ||
  99. !m_wndStatusBar.SetIndicators(indicators,
  100.   sizeof(indicators)/sizeof(UINT)))
  101. {
  102. TRACE0("Failed to create status barn");
  103. return -1;      // fail to create
  104. }
  105. m_wndView.InsertColumn(0, _T("Themes"), LVCFMT_LEFT, 200);
  106. m_wndView.InsertItem(0, _T("xtpPaneThemeDefault"));
  107. m_wndView.InsertItem(1, _T("xtpPaneThemeOffice"));
  108. m_wndView.InsertItem(2, _T("xtpPaneThemeOffice2003"));
  109. m_wndView.InsertItem(3, _T("xtpPaneThemeNativeWinXP"));
  110. m_wndView.InsertItem(4, _T("xtpPaneThemeGrippered"));
  111. m_wndView.InsertItem(5, _T("xtpPaneThemeVisio"));
  112. m_wndView.InsertItem(6, _T("xtpPaneThemeWhidbey"));
  113. m_wndView.InsertItem(7, _T("xtpPaneThemeShortcutBar2003"));
  114. m_wndView.InsertItem(8, _T("xtpPaneThemeExplorer"));
  115. m_wndView.InsertItem(9, _T("xtpPaneThemeVisualStudio2005"));
  116. m_wndView.ModifyStyle(0, WS_CLIPCHILDREN | WS_CLIPSIBLINGS);
  117. VERIFY(m_paneManager.InstallDockingPanes(this));
  118. m_paneManager.SetTheme(xtpPaneThemeOffice2003);
  119. m_paneManager.UseSplitterTracker(FALSE);
  120. m_paneManager.SetShowContentsWhileDragging(TRUE);
  121. m_paneManager.SetAlphaDockingContext(TRUE);
  122. // Create docking panes.
  123. CXTPDockingPane* pwndPane1 = m_paneManager.CreatePane(
  124. IDR_PANE1, CRect(0, 0,200, 120), xtpPaneDockBottom);
  125. m_paneManager.CreatePane(
  126. IDR_PANE2, CRect(0, 0,200, 120), xtpPaneDockLeft, pwndPane1);
  127. m_paneManager.CreatePane(
  128. IDR_PANE3, CRect(0, 0,200, 120), xtpPaneDockLeft);
  129. LOGFONT lfIcon;
  130. VERIFY( ::SystemParametersInfo( SPI_GETICONTITLELOGFONT, sizeof( lfIcon ), &lfIcon, 0 ) );
  131. m_fntEdit.CreateFontIndirect(&lfIcon);
  132. CXTPDockingPaneLayout layout(&m_paneManager);
  133. if (layout.Load(_T("NormalLayout"))) 
  134. {
  135. m_paneManager.SetLayout(&layout);
  136. }
  137. return TRUE;  // return TRUE  unless you set the focus to a control
  138. }
  139. void CDialogPanesDlg::OnSysCommand(UINT nID, LPARAM lParam)
  140. {
  141. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  142. {
  143. CAboutDlg dlgAbout;
  144. dlgAbout.DoModal();
  145. }
  146. else
  147. {
  148. CDialog::OnSysCommand(nID, lParam);
  149. }
  150. }
  151. // If you add a minimize button to your dialog, you will need the code below
  152. //  to draw the icon.  For MFC applications using the document/view model,
  153. //  this is automatically done for you by the framework.
  154. void CDialogPanesDlg::OnPaint() 
  155. {
  156. if (IsIconic())
  157. {
  158. CPaintDC dc(this); // device context for painting
  159. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  160. // Center icon in client rectangle
  161. int cxIcon = GetSystemMetrics(SM_CXICON);
  162. int cyIcon = GetSystemMetrics(SM_CYICON);
  163. CRect rect;
  164. GetClientRect(&rect);
  165. int x = (rect.Width() - cxIcon + 1) / 2;
  166. int y = (rect.Height() - cyIcon + 1) / 2;
  167. // Draw the icon
  168. dc.DrawIcon(x, y, m_hIcon);
  169. }
  170. else
  171. {
  172. CDialog::OnPaint();
  173. }
  174. }
  175. // The system calls this to obtain the cursor to display while the user drags
  176. //  the minimized window.
  177. HCURSOR CDialogPanesDlg::OnQueryDragIcon()
  178. {
  179. return (HCURSOR) m_hIcon;
  180. }
  181. void CDialogPanesDlg::OnSize(UINT nType, int cx, int cy) 
  182. {
  183. CDialog::OnSize(nType, cx, cy);
  184. CRect rcClient(0, 0, cx, cy);
  185. RepositionBars(0, 0xffff, AFX_IDW_PANE_FIRST, 0, 0, &rcClient);
  186. RepositionBars(0, 0xffff, AFX_IDW_PANE_FIRST, reposQuery, &rcClient, &rcClient);
  187. if (m_wndView.GetSafeHwnd())
  188. {
  189. m_wndView.MoveWindow(rcClient);
  190. }
  191. }
  192. LRESULT CDialogPanesDlg::OnDockingPaneNotify(WPARAM wParam, LPARAM lParam)
  193. {
  194. if (wParam == XTP_DPN_SHOWWINDOW)
  195. {
  196. // get a pointer to the docking pane being shown.
  197. CXTPDockingPane* pPane = (CXTPDockingPane*)lParam;
  198. if (!pPane->IsValid())
  199. {
  200. int nIndex = pPane->GetID() - IDR_PANE1;
  201. ASSERT(nIndex >=0 &&  nIndex < sizeof(m_wndEdit) / sizeof(m_wndEdit[0]));
  202. CEdit& wndEdit = m_wndEdit[nIndex];
  203. // create and attach the edit control for this pane.
  204. if (!::IsWindow(wndEdit.m_hWnd))
  205. {
  206. if (!wndEdit.CreateEx(WS_EX_STATICEDGE, _T("EDIT"), _T(""),
  207. WS_CHILD|ES_AUTOVSCROLL|ES_MULTILINE|ES_WANTRETURN, CRect(0, 0,200, 120), this, pPane->GetID()))
  208. {
  209. TRACE0( "Error creating pane edit control.n" );
  210. }
  211. wndEdit.SetFont(&m_fntEdit);
  212. }
  213. pPane->Attach(&wndEdit);
  214. }
  215. return TRUE; // handled
  216. }
  217. return FALSE;
  218. }
  219. LRESULT CDialogPanesDlg::OnKickIdle(WPARAM, LPARAM)
  220. {
  221. m_paneManager.UpdatePanes();
  222. m_wndStatusBar.SendMessage(WM_IDLEUPDATECMDUI, TRUE);
  223. return 0;
  224. }
  225. void CDialogPanesDlg::OnClose() 
  226. {
  227. CXTPDockingPaneLayout layout(&m_paneManager);
  228. m_paneManager.GetLayout(&layout);
  229. layout.Save(_T("NormalLayout"));
  230. CDialog::OnClose();
  231. }
  232. void CDialogPanesDlg::OnUpdateKeyIndicator(CCmdUI* pCmdUI)
  233. {
  234. UINT nVK;
  235. UINT flag = 0x0001;
  236. switch (pCmdUI->m_nID)
  237. {
  238. case ID_INDICATOR_CAPS:
  239. nVK = VK_CAPITAL;
  240. break;
  241. case ID_INDICATOR_NUM:
  242. nVK = VK_NUMLOCK;
  243. break;
  244. case ID_INDICATOR_SCRL:
  245. nVK = VK_SCROLL;
  246. break;
  247. default:
  248. TRACE1("Warning: OnUpdateKeyIndicator - unknown indicator 0x%04X.n",
  249. pCmdUI->m_nID);
  250. pCmdUI->ContinueRouting();
  251. return; // not for us
  252. }
  253. pCmdUI->Enable(::GetKeyState(nVK) & flag);
  254. // enable static text based on toggled key state
  255. ASSERT(pCmdUI->m_bEnableChanged);
  256. }
  257. void CDialogPanesDlg::OnClickListView(NMHDR* pNMHDR, LRESULT* pResult) 
  258. {
  259. LPNMLISTVIEW lpnmlv = (LPNMLISTVIEW)pNMHDR;
  260. m_paneManager.SetTheme((XTPDockingPanePaintTheme)lpnmlv->iItem);
  261. *pResult = 0;
  262. }