MainFrm.cpp
上传用户:shcaka8
上传日期:2013-04-06
资源大小:103k
文件大小:3k
源码类别:

家庭/个人应用

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "MyAssistant.h"
  5. #include "MainFrm.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CMainFrame
  13. IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)
  14. BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
  15. //{{AFX_MSG_MAP(CMainFrame)
  16. ON_WM_CREATE()
  17. ON_BN_CLICKED(IDC_DSP_MONEY, OnDspMoney)
  18. ON_BN_CLICKED(IDC_DSP_ADDRLIST, OnDspAddrList)
  19. //}}AFX_MSG_MAP
  20. END_MESSAGE_MAP()
  21. static UINT indicators[] =
  22. {
  23. ID_SEPARATOR,           // status line indicator
  24. ID_INDICATOR_CAPS,
  25. ID_INDICATOR_NUM,
  26. ID_INDICATOR_SCRL,
  27. };
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CMainFrame construction/destruction
  30. CMainFrame::CMainFrame()
  31. {
  32. // TODO: add member initialization code here
  33. }
  34. CMainFrame::~CMainFrame()
  35. {
  36. }
  37. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  38. {
  39. if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  40. return -1;
  41. if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP
  42. | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
  43. !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  44. {
  45. TRACE0("Failed to create toolbarn");
  46. return -1;      // fail to create
  47. }
  48. if (!m_wndStatusBar.Create(this) ||
  49. !m_wndStatusBar.SetIndicators(indicators,
  50.   sizeof(indicators)/sizeof(UINT)))
  51. {
  52. TRACE0("Failed to create status barn");
  53. return -1;      // fail to create
  54. }
  55. m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  56. EnableDocking(CBRS_ALIGN_ANY);
  57. DockControlBar(&m_wndToolBar);
  58. if (!m_wndOptionBar.Create(this,IDD_DIALOGBAR,CBRS_TOP,AFX_IDW_DIALOGBAR))
  59. {
  60. return -1;
  61. }
  62. m_wndOptionBar.EnableDocking(CBRS_ALIGN_ANY);
  63. m_btnMoney.SubclassDlgItem(IDC_DSP_MONEY,&m_wndOptionBar);
  64. m_btnMemoire.SubclassDlgItem(IDC_DSP_MEMOIRE,&m_wndOptionBar);
  65. m_btnAddrList.SubclassDlgItem(IDC_DSP_ADDRLIST,&m_wndOptionBar);
  66. m_btnPostalCode.SubclassDlgItem(IDC_DSP_POSTALCODE,&m_wndOptionBar);
  67. MoveWindow(0,0,800,600);
  68. ShowWindow(SW_SHOWMAXIMIZED);
  69. return 0;
  70. }
  71. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  72. {
  73. if( !CFrameWnd::PreCreateWindow(cs) )
  74. return FALSE;
  75. // TODO: Modify the Window class or styles here by modifying
  76. //  the CREATESTRUCT cs
  77. return TRUE;
  78. }
  79. /////////////////////////////////////////////////////////////////////////////
  80. // CMainFrame diagnostics
  81. #ifdef _DEBUG
  82. void CMainFrame::AssertValid() const
  83. {
  84. CFrameWnd::AssertValid();
  85. }
  86. void CMainFrame::Dump(CDumpContext& dc) const
  87. {
  88. CFrameWnd::Dump(dc);
  89. }
  90. #endif //_DEBUG
  91. /////////////////////////////////////////////////////////////////////////////
  92. // CMainFrame message handlers
  93. void CMainFrame::OnDspMoney() 
  94. {
  95. m_btnMoney.m_IsPushed = !m_btnMoney.m_IsPushed;
  96. }
  97. void CMainFrame::OnDspAddrList() 
  98. {
  99. m_btnAddrList.m_IsPushed = !m_btnAddrList.m_IsPushed;
  100. }