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

多媒体编程

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "WaveEdit.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_NUM,
  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_wndToolBar.SetBarStyle(m_wndToolBar.GetBarStyle() |
  52. CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC);
  53. m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  54. EnableDocking(CBRS_ALIGN_ANY);
  55. //DockControlBar(&m_wndToolBar);
  56. return 0;
  57. }
  58. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  59. {
  60. cs.style = WS_OVERLAPPED | WS_CAPTION /*| FWS_ADDTOTITLE*/
  61. /*| WS_THICKFRAME*/ | WS_SYSMENU | WS_MINIMIZEBOX;
  62. cs.cx = 322;
  63. cs.cy = 150;
  64. return CFrameWnd::PreCreateWindow(cs);
  65. }
  66. /////////////////////////////////////////////////////////////////////////////
  67. // CMainFrame diagnostics
  68. #ifdef _DEBUG
  69. void CMainFrame::AssertValid() const
  70. {
  71. CFrameWnd::AssertValid();
  72. }
  73. void CMainFrame::Dump(CDumpContext& dc) const
  74. {
  75. CFrameWnd::Dump(dc);
  76. }
  77. #endif //_DEBUG
  78. /////////////////////////////////////////////////////////////////////////////
  79. // CMainFrame message handlers