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

对话框与窗口

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  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 "DynamicPopups.h"
  22. #include "ControlUndo.h"
  23. #include "ControlFavorites.h"
  24. #include "MainFrm.h"
  25. #ifdef _DEBUG
  26. #define new DEBUG_NEW
  27. #undef THIS_FILE
  28. static char THIS_FILE[] = __FILE__;
  29. #endif
  30. /////////////////////////////////////////////////////////////////////////////
  31. // CMainFrame
  32. IMPLEMENT_DYNAMIC(CMainFrame, CMDIFrameWnd)
  33. BEGIN_MESSAGE_MAP(CMainFrame, CMDIFrameWnd)
  34. //{{AFX_MSG_MAP(CMainFrame)
  35. // NOTE - the ClassWizard will add and remove mapping macros here.
  36. //    DO NOT EDIT what you see in these blocks of generated code !
  37. ON_WM_CREATE()
  38. //}}AFX_MSG_MAP
  39. ON_COMMAND(XTP_ID_CUSTOMIZE, OnCustomize)
  40. ON_XTP_CREATECONTROL()
  41. ON_XTP_EXECUTE(ID_FAVORITE_LINK, OnFavorite)
  42. END_MESSAGE_MAP()
  43. static UINT indicators[] =
  44. {
  45. ID_SEPARATOR,           // status line indicator
  46. ID_INDICATOR_CAPS,
  47. ID_INDICATOR_NUM,
  48. ID_INDICATOR_SCRL,
  49. };
  50. static UINT favoritesicons[] =
  51. {
  52. ID_FAVORITE_FOLDER,
  53. ID_FAVORITE_LINK
  54. };
  55. /////////////////////////////////////////////////////////////////////////////
  56. // CMainFrame construction/destruction
  57. CMainFrame::CMainFrame()
  58. {
  59. // TODO: add member initialization code here
  60. }
  61. CMainFrame::~CMainFrame()
  62. {
  63. }
  64. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  65. {
  66. if (CMDIFrameWnd::OnCreate(lpCreateStruct) == -1)
  67. return -1;
  68. if (!m_wndStatusBar.Create(this) ||
  69. !m_wndStatusBar.SetIndicators(indicators,
  70.   sizeof(indicators)/sizeof(UINT)))
  71. {
  72. TRACE0("Failed to create status barn");
  73. return -1;      // fail to create
  74. }
  75. if (!InitCommandBars())
  76. return -1;
  77. CXTPPaintManager::SetTheme(xtpThemeOfficeXP);
  78. CXTPCommandBars* pCommandBars = GetCommandBars();
  79. pCommandBars->SetMenu(_T("Menu Bar"), IDR_MAINFRAME);
  80. CXTPToolBar* pCommandBar = (CXTPToolBar*)pCommandBars->Add(_T("Standard"), xtpBarTop);
  81. if (!pCommandBar ||
  82. !pCommandBar->LoadToolBar(IDR_MAINFRAME))
  83. {
  84. TRACE0("Failed to create toolbarn");
  85. return -1;
  86. }
  87. CXTPToolBar* pExtendedBar = (CXTPToolBar*)pCommandBars->Add(_T("Extended"), xtpBarTop);
  88. if (!pExtendedBar ||
  89. !pExtendedBar->LoadToolBar(IDR_TOOLBAR_EXT))
  90. {
  91. TRACE0("Failed to create toolbarn");
  92. return -1;
  93. }
  94. XTPImageManager()->SetMaskColor(RGB(0, 255, 0));
  95. XTPImageManager()->SetIcons(IDB_FAVORITES, favoritesicons,
  96. sizeof(favoritesicons)/sizeof(UINT), CSize(16, 16));
  97. return 0;
  98. }
  99. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  100. {
  101. if( !CMDIFrameWnd::PreCreateWindow(cs) )
  102. return FALSE;
  103. cs.lpszClass = _T("XTPMainFrame");
  104. CXTPDrawHelpers::RegisterWndClass(AfxGetInstanceHandle(), cs.lpszClass, 
  105. CS_DBLCLKS, AfxGetApp()->LoadIcon(IDR_MAINFRAME));
  106. return TRUE;
  107. }
  108. /////////////////////////////////////////////////////////////////////////////
  109. // CMainFrame diagnostics
  110. #ifdef _DEBUG
  111. void CMainFrame::AssertValid() const
  112. {
  113. CMDIFrameWnd::AssertValid();
  114. }
  115. void CMainFrame::Dump(CDumpContext& dc) const
  116. {
  117. CMDIFrameWnd::Dump(dc);
  118. }
  119. #endif //_DEBUG
  120. /////////////////////////////////////////////////////////////////////////////
  121. // CMainFrame message handlers
  122. BOOL CMainFrame::GetFavoriteFolder(CString& strFav)
  123. {
  124. LPITEMIDLIST pidlFavorites = NULL;
  125. IMalloc * pMalloc = NULL;
  126. BOOL bResult = FALSE;
  127. TCHAR   szPath[MAX_PATH];
  128. HRESULT hr = SHGetMalloc(&pMalloc);
  129. if (SUCCEEDED(hr))
  130. {
  131. HRESULT hr = SHGetSpecialFolderLocation(NULL, CSIDL_FAVORITES, &pidlFavorites);
  132. if (hr == NOERROR )
  133. {
  134. if (SHGetPathFromIDList( pidlFavorites,szPath))
  135. {
  136. strFav = szPath;
  137. bResult = TRUE;
  138. }
  139. }
  140. pMalloc->Free(pidlFavorites);
  141. pMalloc->Release();
  142. }
  143. if (!bResult)
  144. {
  145. HKEY hKey;
  146. TCHAR sz[MAX_PATH];
  147. // find out from the registry where the favorites are located.
  148. if(RegOpenKey(HKEY_CURRENT_USER, _T("Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders"), &hKey) == ERROR_SUCCESS)
  149. {
  150. DWORD dwSize = MAX_PATH;
  151. RegQueryValueEx(hKey, _T("Favorites"), NULL, NULL, (LPBYTE)sz, &dwSize);
  152. ExpandEnvironmentStrings(sz, szPath, MAX_PATH);
  153. RegCloseKey(hKey);
  154. strFav = szPath;
  155. bResult = dwSize != 0;
  156. }
  157. }
  158. if (!bResult)
  159. {
  160. GetWindowsDirectory (szPath, MAX_PATH);
  161. strFav = szPath;
  162. strFav += "\Favorites";
  163. }
  164. return TRUE;
  165. }
  166. int CMainFrame::OnCreateControl(LPCREATECONTROLSTRUCT lpCreateControl)
  167. {
  168. if (lpCreateControl->nID == ID_BUTTON_POPUP)
  169. {
  170. lpCreateControl->controlType = xtpControlSplitButtonPopup;
  171. return TRUE;
  172. }
  173. if (lpCreateControl->nID == ID_BUTTON_UNDO)
  174. {
  175. lpCreateControl->pControl = new CControlUndo();
  176. return TRUE;
  177. }
  178. if (lpCreateControl->nID == ID_FAVORITES)
  179. {
  180. CString strFav;
  181. GetFavoriteFolder(strFav);
  182. lpCreateControl->pControl = new CControlFavorites(strFav);
  183. return TRUE;
  184. }
  185. if (lpCreateControl->nID == ID_MYCOMPUTER)
  186. {
  187. SHFILEINFO sfi;
  188. HIMAGELIST himlSmall = (HIMAGELIST)::SHGetFileInfo( _T("C:\"), 0, &sfi,
  189. sizeof(SHFILEINFO), SHGFI_SYSICONINDEX | SHGFI_SMALLICON );
  190. XTPImageManager()->SetImageList(himlSmall, ID_SHELLIMAGELIST_BASE, FALSE);
  191. lpCreateControl->pControl = new CControlShell();
  192. return TRUE;
  193. }
  194. if (lpCreateControl->nID == ID_COMBO_UNDO)
  195. {
  196. lpCreateControl->pControl = new CControlComboBoxUndo();
  197. return TRUE;
  198. }
  199. return FALSE;
  200. }
  201. void CMainFrame::OnCustomize()
  202. {
  203. CXTPCustomizeSheet cs(GetCommandBars());
  204. CXTPCustomizeOptionsPage pageOptions(&cs);
  205. cs.AddPage(&pageOptions);
  206. CXTPCustomizeCommandsPage* pCommands = cs.GetCommandsPage();
  207. pCommands->AddCategories(IDR_DYNAMITYPE);
  208. pCommands->InsertAllCommandsCategory();
  209. pCommands->InsertBuiltInMenus(IDR_DYNAMITYPE);
  210. pCommands->InsertNewMenuCategory();
  211. cs.DoModal();
  212. }
  213. void CMainFrame::OnFavorite(NMHDR* pNMHDR, LRESULT* pResult)
  214. {
  215. NMXTPCONTROL* tagNMCONTROL = (NMXTPCONTROL*)pNMHDR;
  216. AfxMessageBox(tagNMCONTROL->pControl->GetParameter());
  217. *pResult = 1;
  218. }