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

对话框与窗口

开发平台:

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 "HelpContext.h"
  22. #include "MainFrm.h"
  23. #ifdef _DEBUG
  24. #define new DEBUG_NEW
  25. #undef THIS_FILE
  26. static char THIS_FILE[] = __FILE__;
  27. #endif
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CMainFrame
  30. IMPLEMENT_DYNAMIC(CMainFrame, CMDIFrameWnd)
  31. BEGIN_MESSAGE_MAP(CMainFrame, CMDIFrameWnd)
  32. //{{AFX_MSG_MAP(CMainFrame)
  33. ON_WM_CREATE()
  34. ON_WM_CLOSE()
  35. //}}AFX_MSG_MAP
  36. ON_COMMAND(XTP_ID_CUSTOMIZE, OnCustomize)
  37. // Global help commands
  38. ON_COMMAND(ID_HELP_FINDER, CMDIFrameWnd::OnHelpFinder)
  39. ON_COMMAND(ID_HELP, CMDIFrameWnd::OnHelp)
  40. ON_COMMAND(ID_CONTEXT_HELP, CMDIFrameWnd::OnContextHelp)
  41. ON_COMMAND(ID_DEFAULT_HELP, CMDIFrameWnd::OnHelpFinder)
  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. /////////////////////////////////////////////////////////////////////////////
  51. // CMainFrame construction/destruction
  52. CMainFrame::CMainFrame()
  53. {
  54. }
  55. CMainFrame::~CMainFrame()
  56. {
  57. }
  58. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  59. {
  60. if (CMDIFrameWnd::OnCreate(lpCreateStruct) == -1)
  61. return -1;
  62. if (!m_wndStatusBar.Create(this) ||
  63. !m_wndStatusBar.SetIndicators(indicators,
  64. sizeof(indicators)/sizeof(UINT)))
  65. {
  66. TRACE0("Failed to create status barn");
  67. return -1;      // fail to create
  68. }
  69. // Initialize the command bars
  70. if (!InitCommandBars())
  71. return -1;
  72. // Get a pointer to the command bars object.
  73. CXTPCommandBars* pCommandBars = GetCommandBars();
  74. if(pCommandBars == NULL)
  75. {
  76. TRACE0("Failed to create command bars object.n");
  77. return -1;      // fail to create
  78. }
  79. // Add the menu bar
  80. CXTPCommandBar* pMenuBar = pCommandBars->SetMenu(
  81. _T("Menu Bar"), IDR_MAINFRAME);
  82. if(pMenuBar == NULL)
  83. {
  84. TRACE0("Failed to create menu bar.n");
  85. return -1;      // fail to create
  86. }
  87. pMenuBar->SetFlags(xtpFlagAddMDISysPopup);
  88. // Create ToolBar
  89. CXTPToolBar* pToolBar = (CXTPToolBar*)
  90. pCommandBars->Add(_T("Standard"), xtpBarTop);
  91. if (!pToolBar || !pToolBar->LoadToolBar(IDR_MAINFRAME))
  92. {
  93. TRACE0("Failed to create toolbarn");
  94. return -1;
  95. }
  96. if (pCommandBars->GetImageManager()->IsAlphaIconsSupported())
  97. {
  98. pCommandBars->GetImageManager()->SetIcons(IDR_MAINFRAME, IDR_TOOLBAR_SMALL_ALPHA);
  99. pCommandBars->GetImageManager()->SetIcons(IDR_MAINFRAME, IDR_TOOLBAR_LARGE_ALPHA);
  100. CXTPNativeXPTheme* pTheme = new CXTPNativeXPTheme;
  101. pTheme->m_bSelectImageInPopupBar = TRUE;
  102. pTheme->m_bThickCheckMark = TRUE;
  103. pTheme->GetIconsInfo()->bUseFadedIcons = FALSE;
  104. XTPPaintManager()->SetCustomTheme(pTheme);
  105. pCommandBars->GetCommandBarsOptions()->szLargeIcons = CSize(24, 24);
  106. pCommandBars->GetCommandBarsOptions()->bLargeIcons = TRUE;
  107. }
  108. else
  109. {
  110. CXTPPaintManager::SetCustomTheme(new COrangeTheme);
  111. }
  112. pCommandBars->GetCommandBarsOptions()->bShowTextBelowIcons = TRUE;
  113. pCommandBars->GetCommandBarsOptions()->ShowKeyboardCues(xtpKeyboardCuesShowWindowsDefault);
  114. pCommandBars->GetContextMenus()->Add(IDR_CONTEXT_MENU);
  115. // Load the previous state for command bars.
  116. LoadCommandBars(_T("CommandBars2"));
  117. return 0;
  118. }
  119. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  120. {
  121. if( !CMDIFrameWnd::PreCreateWindow(cs) )
  122. return FALSE;
  123. cs.lpszClass = _T("XTPMainFrame");
  124. CXTPDrawHelpers::RegisterWndClass(AfxGetInstanceHandle(), cs.lpszClass, 
  125. CS_DBLCLKS, AfxGetApp()->LoadIcon(IDR_MAINFRAME));
  126. return TRUE;
  127. }
  128. /////////////////////////////////////////////////////////////////////////////
  129. // CMainFrame diagnostics
  130. #ifdef _DEBUG
  131. void CMainFrame::AssertValid() const
  132. {
  133. CMDIFrameWnd::AssertValid();
  134. }
  135. void CMainFrame::Dump(CDumpContext& dc) const
  136. {
  137. CMDIFrameWnd::Dump(dc);
  138. }
  139. #endif //_DEBUG
  140. /////////////////////////////////////////////////////////////////////////////
  141. // CMainFrame message handlers
  142. void CMainFrame::OnClose()
  143. {
  144. // Save the current state for command bars.
  145. SaveCommandBars(_T("CommandBars2"));
  146. // TODO: Add your message handler code here and/or call default
  147. CMDIFrameWnd::OnClose();
  148. }
  149. void CMainFrame::OnCustomize()
  150. {
  151. // get a pointer to the command bars object.
  152. CXTPCommandBars* pCommandBars = GetCommandBars();
  153. if (pCommandBars == NULL)
  154. return;
  155. // instanciate the customize dialog
  156. CXTPCustomizeSheet dlg(pCommandBars);
  157. // add menus page to the customize dialog.
  158. CXTPCustomizeMenusPage pageMenus(&dlg);
  159. dlg.AddPage(&pageMenus);
  160. // add the options page to the customize dialog.
  161. CXTPCustomizeOptionsPage pageOptions(&dlg);
  162. dlg.AddPage(&pageOptions);
  163. // add the commands page to the customize dialog.
  164. CXTPCustomizeCommandsPage* pPageCommands = dlg.GetCommandsPage();
  165. pPageCommands->AddCategories(IDR_HELPCOTYPE);
  166. // initialize the commands page page.
  167. pPageCommands->InsertAllCommandsCategory();
  168. pPageCommands->InsertBuiltInMenus(IDR_HELPCOTYPE);
  169. pPageCommands->InsertNewMenuCategory();
  170. // display the customize dialog.
  171. dlg.DoModal();
  172. }