MainFrm.cpp
上传用户:trilite
上传日期:2007-04-24
资源大小:261k
文件大小:3k
源码类别:

酒店行业

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "ParkSys.h"
  5. #include "MainFrm.h"
  6. #include "PPageComm.h"
  7. #include "PPageCapacity.h"
  8. #include "SysSetDlg.h"
  9. #ifdef _DEBUG
  10. #define new DEBUG_NEW
  11. #undef THIS_FILE
  12. static char THIS_FILE[] = __FILE__;
  13. #endif
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CMainFrame
  16. IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)
  17. BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
  18. //{{AFX_MSG_MAP(CMainFrame)
  19. ON_WM_CREATE()
  20. ON_COMMAND(ID_SYSSET, OnSysset)
  21. ON_COMMAND(ID_EXIT, OnExit)
  22. ON_WM_CLOSE()
  23. //}}AFX_MSG_MAP
  24. END_MESSAGE_MAP()
  25. static UINT indicators[] =
  26. {
  27. ID_SEPARATOR,           // status line indicator
  28. ID_INDICATOR_CAPS,
  29. ID_INDICATOR_NUM,
  30. ID_INDICATOR_SCRL,
  31. };
  32. class CParkSysView;
  33. /////////////////////////////////////////////////////////////////////////////
  34. // CMainFrame construction/destruction
  35. CMainFrame::CMainFrame()
  36. {
  37. // TODO: add member initialization code here
  38. }
  39. CMainFrame::~CMainFrame()
  40. {
  41. }
  42. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  43. {
  44. if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  45. return -1;
  46. if (!m_wndToolBar.Create(this) ||
  47. !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  48. {
  49. TRACE0("Failed to create toolbarn");
  50. return -1;      // fail to create
  51. }
  52. if (!m_wndStatusBar.Create(this) ||
  53. !m_wndStatusBar.SetIndicators(indicators,
  54.   sizeof(indicators)/sizeof(UINT)))
  55. {
  56. TRACE0("Failed to create status barn");
  57. return -1;      // fail to create
  58. }
  59. // TODO: Remove this if you don't want tool tips or a resizeable toolbar
  60. m_wndToolBar.SetBarStyle(m_wndToolBar.GetBarStyle() |
  61. CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC);
  62. // TODO: Delete these three lines if you don't want the toolbar to
  63. //  be dockable
  64. m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  65. EnableDocking(CBRS_ALIGN_ANY);
  66. DockControlBar(&m_wndToolBar);
  67. m_wndToolBar.SetFlatLookStyle();
  68. return 0;
  69. }
  70. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  71. {
  72. // TODO: Modify the Window class or styles here by modifying
  73. //  the CREATESTRUCT cs
  74. cs.style = WS_OVERLAPPEDWINDOW | FWS_ADDTOTITLE;
  75. return CFrameWnd::PreCreateWindow(cs);
  76. }
  77. /////////////////////////////////////////////////////////////////////////////
  78. // CMainFrame diagnostics
  79. #ifdef _DEBUG
  80. void CMainFrame::AssertValid() const
  81. {
  82. CFrameWnd::AssertValid();
  83. }
  84. void CMainFrame::Dump(CDumpContext& dc) const
  85. {
  86. CFrameWnd::Dump(dc);
  87. }
  88. #endif //_DEBUG
  89. /////////////////////////////////////////////////////////////////////////////
  90. // CMainFrame message handlers
  91. void CMainFrame::OnSysset() 
  92. {
  93. CSysSetDlg dlg(_T("系统参数设置"));
  94. dlg.Init();
  95. int nResponse = dlg.DoModal();
  96. if (nResponse == IDOK)
  97. {
  98. int reval = MessageBox("系统参数已改变,从新启动系统",NULL,MB_OKCANCEL+MB_ICONWARNING);
  99. if (reval == IDOK)
  100. {
  101. dlg.SaveConfigration();
  102. AfxGetMainWnd()->PostMessage(WM_CLOSE); //关闭应用程序
  103. }
  104. }
  105. else if (nResponse == IDCANCEL)
  106. {
  107. // TODO: Place code here to handle when the dialog is
  108. //  dismissed with Cancel
  109. }
  110. }
  111. void CMainFrame::OnExit() 
  112. {
  113. // TODO: Add your command handler code here
  114. }
  115. void CMainFrame::OnClose() 
  116. {
  117. CParkSysApp *app = (CParkSysApp *)AfxGetApp();
  118. app->avi.capClose();
  119. CFrameWnd::OnClose();
  120. }