MainFrm.cpp
上传用户:samlee1007
上传日期:2007-01-02
资源大小:123k
文件大小:2k
源码类别:

文件操作

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "WaveEditClient.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. //}}AFX_MSG_MAP
  18. END_MESSAGE_MAP()
  19. static UINT indicators[] =
  20. {
  21. ID_SEPARATOR,           // status line indicator
  22. ID_INDICATOR_CAPS,
  23. ID_INDICATOR_TIME,
  24. ID_INDICATOR_SCRL,
  25. };
  26. /////////////////////////////////////////////////////////////////////////////
  27. // CMainFrame construction/destruction
  28. CMainFrame::CMainFrame()
  29. {
  30. }
  31. CMainFrame::~CMainFrame()
  32. {
  33. }
  34. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  35. {
  36. if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  37. return -1;
  38. if (!m_wndToolBar.Create(this) ||
  39. !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  40. {
  41. TRACE0("Failed to create toolbarn");
  42. return -1;      // fail to create
  43. }
  44. if (!m_wndStatusBar.Create(this) ||
  45. !m_wndStatusBar.SetIndicators(indicators,
  46.   sizeof(indicators)/sizeof(UINT)))
  47. {
  48. TRACE0("Failed to create status barn");
  49. return -1;      // fail to create
  50. }
  51. m_wndStatusBar.SetPaneInfo(0, ID_SEPARATOR, SBPS_STRETCH | SBPS_NOBORDERS, 80);
  52. m_wndStatusBar.SetPaneInfo(2, ID_INDICATOR_TIME, 0, 45);
  53. m_wndToolBar.SetBarStyle(m_wndToolBar.GetBarStyle() |
  54. CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC);
  55. m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  56. EnableDocking(CBRS_ALIGN_ANY);
  57. return 0;
  58. }
  59. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  60. {
  61. cs.style = WS_OVERLAPPED | WS_CAPTION 
  62.  | WS_SYSMENU | WS_MINIMIZEBOX;
  63. cs.cx = 260;
  64. cs.cy = 93;
  65. cs.x = 100;
  66. cs.y = 155;
  67. return CFrameWnd::PreCreateWindow(cs);
  68. }
  69. /////////////////////////////////////////////////////////////////////////////
  70. // CMainFrame diagnostics
  71. #ifdef _DEBUG
  72. void CMainFrame::AssertValid() const
  73. {
  74. CFrameWnd::AssertValid();
  75. }
  76. void CMainFrame::Dump(CDumpContext& dc) const
  77. {
  78. CFrameWnd::Dump(dc);
  79. }
  80. #endif //_DEBUG
  81. /////////////////////////////////////////////////////////////////////////////
  82. // CMainFrame message handlers