MainFrm.cpp
上传用户:hawkcdm
上传日期:2013-02-10
资源大小:411k
文件大小:3k
源码类别:

xml/soap/webservice

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. // Markup Release 6.1 Lite
  4. // Copyright (C) 1999-2001 First Objective Software, Inc. All rights reserved
  5. // This entire notice must be retained in this source code
  6. // Redistributing this source code requires written permission
  7. // This software is provided "as is", with no warranty.
  8. // Latest fixes enhancements and documentation at www.firstobject.com
  9. #include "stdafx.h"
  10. #include "MarkupApp.h"
  11. #include "MainFrm.h"
  12. #ifdef _DEBUG
  13. #define new DEBUG_NEW
  14. #undef THIS_FILE
  15. static char THIS_FILE[] = __FILE__;
  16. #endif
  17. /////////////////////////////////////////////////////////////////////////////
  18. // CMainFrame
  19. IMPLEMENT_DYNAMIC(CMainFrame, CMDIFrameWnd)
  20. BEGIN_MESSAGE_MAP(CMainFrame, CMDIFrameWnd)
  21. //{{AFX_MSG_MAP(CMainFrame)
  22. // NOTE - the ClassWizard will add and remove mapping macros here.
  23. //    DO NOT EDIT what you see in these blocks of generated code !
  24. ON_WM_CREATE()
  25. //}}AFX_MSG_MAP
  26. ON_UPDATE_COMMAND_UI(ID_STATUSBAR_TEXT, OnUpdateStatus)
  27. ON_MESSAGE(WM_SETTEXT, OnSetText)
  28. END_MESSAGE_MAP()
  29. static UINT indicators[] =
  30. {
  31. ID_STATUSBAR_TEXT,
  32. ID_INDICATOR_CAPS,
  33. ID_INDICATOR_NUM,
  34. ID_INDICATOR_SCRL,
  35. };
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CMainFrame construction/destruction
  38. CMainFrame::CMainFrame()
  39. {
  40. m_csStatus = _T("Ready");
  41. }
  42. CMainFrame::~CMainFrame()
  43. {
  44. }
  45. void CMainFrame::SetStatus( CString csStatus )
  46. {
  47. m_wndStatusBar.SetPaneText( 0, csStatus ); // immediate
  48. m_csStatus = csStatus; // on idle
  49. }
  50. void CMainFrame::OnUpdateStatus(CCmdUI *pCmdUI) 
  51. {
  52.     pCmdUI->Enable();
  53.     pCmdUI->SetText( m_csStatus ); 
  54. }
  55. LRESULT CMainFrame::OnSetText(WPARAM, LPARAM)
  56. {
  57. CString csTitle = ((CMarkupApp*)AfxGetApp())->m_csTitle;
  58.     return DefWindowProc( WM_SETTEXT, 0, (long)(LPCTSTR)csTitle );
  59. }
  60. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  61. {
  62. if (CMDIFrameWnd::OnCreate(lpCreateStruct) == -1)
  63. return -1;
  64. if (!m_wndStatusBar.Create(this) ||
  65. !m_wndStatusBar.SetIndicators(indicators,
  66.   sizeof(indicators)/sizeof(UINT)))
  67. {
  68. return -1;      // fail to create
  69. }
  70. m_wndStatusBar.SetPaneStyle(0,SBPS_NOBORDERS|SBPS_STRETCH);
  71. return 0;
  72. }
  73. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  74. {
  75. if( !CMDIFrameWnd::PreCreateWindow(cs) )
  76. return FALSE;
  77. return TRUE;
  78. }
  79. /////////////////////////////////////////////////////////////////////////////
  80. // CMainFrame diagnostics
  81. #ifdef _DEBUG
  82. void CMainFrame::AssertValid() const
  83. {
  84. CMDIFrameWnd::AssertValid();
  85. }
  86. void CMainFrame::Dump(CDumpContext& dc) const
  87. {
  88. CMDIFrameWnd::Dump(dc);
  89. }
  90. #endif //_DEBUG
  91. /////////////////////////////////////////////////////////////////////////////
  92. // CMainFrame message handlers