MainFrm.cpp
上传用户:xiaoke98
上传日期:2014-06-29
资源大小:5718k
文件大小:3k
源码类别:

家庭/个人应用

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "HomeFinanceManager.h"
  5. #include "MainFrm.h"
  6. #include "NavigateView.h"
  7. #include "HomeFinanceManagerView.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CMainFrame
  15. IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)
  16. BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
  17. //{{AFX_MSG_MAP(CMainFrame)
  18. // NOTE - the ClassWizard will add and remove mapping macros here.
  19. //    DO NOT EDIT what you see in these blocks of generated code !
  20. ON_WM_CREATE()
  21. //}}AFX_MSG_MAP
  22. END_MESSAGE_MAP()
  23. static UINT indicators[] =
  24. {
  25. ID_SEPARATOR,           // status line indicator
  26. ID_INDICATOR_CAPS,
  27. ID_INDICATOR_NUM,
  28. ID_INDICATOR_SCRL,
  29. };
  30. /////////////////////////////////////////////////////////////////////////////
  31. // CMainFrame construction/destruction
  32. CMainFrame::CMainFrame()
  33. {
  34. // TODO: add member initialization code here
  35. }
  36. CMainFrame::~CMainFrame()
  37. {
  38. }
  39. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  40. {
  41. if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  42. return -1;
  43. SetMenu(NULL);
  44. return 0;
  45. }
  46. //------------------------------------------------------------------------------------
  47. //创建划分窗口
  48. BOOL CMainFrame::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext)
  49. {
  50. if (!m_wndSplitter.CreateStatic(this, 1, 2))
  51. return FALSE;
  52. if (!m_wndSplitter.CreateView(0, 0, RUNTIME_CLASS(CNavigateView), CSize(240, 100), pContext) ||
  53. !m_wndSplitter.CreateView(0, 1, RUNTIME_CLASS(CHomeFinanceManagerView), CSize(100, 100), pContext))
  54. {
  55. m_wndSplitter.DestroyWindow();
  56. return FALSE;
  57. }
  58. return TRUE;
  59. }
  60. //------------------------------------------------------------------------------------
  61. //绘制窗口标题
  62. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  63. {
  64. m_strTitle = "家庭财务管理系统";
  65. cs.style &= ~(LONG)FWS_ADDTOTITLE;
  66. cs.style &= ~WS_MAXIMIZEBOX;
  67. cs.cx = 1020;
  68. cs.cy = 800;
  69. if( !CFrameWnd::PreCreateWindow(cs) )
  70. return FALSE;
  71. // TODO: Modify the Window class or styles here by modifying
  72. //  the CREATESTRUCT cs
  73. return TRUE;
  74. }
  75. /////////////////////////////////////////////////////////////////////////////
  76. // CMainFrame diagnostics
  77. #ifdef _DEBUG
  78. void CMainFrame::AssertValid() const
  79. {
  80. CFrameWnd::AssertValid();
  81. }
  82. void CMainFrame::Dump(CDumpContext& dc) const
  83. {
  84. CFrameWnd::Dump(dc);
  85. }
  86. #endif //_DEBUG
  87. /////////////////////////////////////////////////////////////////////////////
  88. // CMainFrame message handlers
  89. void CMainFrame::OnClose( )
  90. {
  91. CFrameWnd::OnClose();
  92. }