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

对话框与窗口

开发平台:

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 "VirtualList.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_DYNCREATE(CMainFrame, CFrameWnd)
  31. BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
  32. //{{AFX_MSG_MAP(CMainFrame)
  33. // NOTE - the ClassWizard will add and remove mapping macros here.
  34. //    DO NOT EDIT what you see in these blocks of generated code !
  35. ON_WM_CREATE()
  36. //}}AFX_MSG_MAP
  37. END_MESSAGE_MAP()
  38. static UINT indicators[] =
  39. {
  40. ID_SEPARATOR,           // status line indicator
  41. ID_INDICATOR_CAPS,
  42. ID_INDICATOR_NUM,
  43. ID_INDICATOR_SCRL,
  44. };
  45. /////////////////////////////////////////////////////////////////////////////
  46. // CMainFrame construction/destruction
  47. CMainFrame::CMainFrame()
  48. {
  49. // TODO: add member initialization code here
  50. }
  51. CMainFrame::~CMainFrame()
  52. {
  53. }
  54. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  55. {
  56. if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  57. return -1;
  58. if (!m_wndStatusBar.Create(this) ||
  59. !m_wndStatusBar.SetIndicators(indicators,
  60.   sizeof(indicators)/sizeof(UINT)))
  61. {
  62. TRACE0("Failed to create status barn");
  63. return -1;      // fail to create
  64. }
  65. if (!InitCommandBars())
  66. return -1;
  67. CXTPPaintManager::SetTheme(xtpThemeOffice2003);
  68. CXTPCommandBars* pCommandBars = GetCommandBars();
  69. pCommandBars->SetMenu(_T("Menu Bar"), IDR_MAINFRAME);
  70. CXTPToolBar* pStandardBar = (CXTPToolBar*)pCommandBars->Add(_T("Standard"), xtpBarTop);
  71. if (!pStandardBar ||
  72. !pStandardBar->LoadToolBar(IDR_MAINFRAME))
  73. {
  74. TRACE0("Failed to create toolbarn");
  75. return -1;
  76. }
  77. // Load the previous state for command bars.
  78. LoadCommandBars(_T("CommandBars"));
  79. return 0;
  80. }
  81. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  82. {
  83. if( !CFrameWnd::PreCreateWindow(cs) )
  84. return FALSE;
  85. cs.lpszClass = _T("XTPMainFrame");
  86. CXTPDrawHelpers::RegisterWndClass(AfxGetInstanceHandle(), cs.lpszClass, 
  87. CS_DBLCLKS, AfxGetApp()->LoadIcon(IDR_MAINFRAME));
  88. return TRUE;
  89. }
  90. /////////////////////////////////////////////////////////////////////////////
  91. // CMainFrame diagnostics
  92. #ifdef _DEBUG
  93. void CMainFrame::AssertValid() const
  94. {
  95. CFrameWnd::AssertValid();
  96. }
  97. void CMainFrame::Dump(CDumpContext& dc) const
  98. {
  99. CFrameWnd::Dump(dc);
  100. }
  101. #endif //_DEBUG
  102. /////////////////////////////////////////////////////////////////////////////
  103. // CMainFrame message handlers