MainFrm.cpp
上传用户:tuheem
上传日期:2007-05-01
资源大小:21889k
文件大小:3k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "robot.h"
  5. #include"Label.h"
  6. #include "MainFrm.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CMainFrame
  14. #define mymessage 1002
  15. IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)
  16. BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
  17. //{{AFX_MSG_MAP(CMainFrame)
  18. ON_WM_CREATE()
  19. ON_WM_PAINT()
  20. ON_COMMAND(ID_HELP, OnHelp)
  21. //}}AFX_MSG_MAP
  22. END_MESSAGE_MAP()
  23. static UINT indicators[] =
  24. {
  25. ID_SEPARATOR,           // status line indicator
  26. ID_INDICATOR_CAPS,
  27. ID_INDICATOR_NUM,
  28. ID_INDICATOR_SCRL,
  29. };
  30. /////////////////////////////////////////////////////////////////////////////
  31. // CMainFrame construction/destruction
  32. CMainFrame::CMainFrame()
  33. {
  34. // TODO: add member initialization code here
  35. }
  36. CMainFrame::~CMainFrame()
  37. {
  38. }
  39. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  40. {
  41. if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  42. return -1;
  43. if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT,WS_CHILD | WS_VISIBLE | CBRS_TOP
  44. | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
  45. !m_wndToolBar.LoadToolBar(IDR_TOOLBAR1))
  46. {
  47. TRACE0("Failed to create toolbarn");
  48. return -1;      // fail to create
  49. }
  50. if (!m_wndStatusBar.Create(this) ||
  51. !m_wndStatusBar.SetIndicators(indicators,
  52.   sizeof(indicators)/sizeof(UINT)))
  53. {
  54. TRACE0("Failed to create status barn");
  55. return -1;      // fail to create
  56. }
  57. // TODO: Delete these three lines if you don't want the toolbar to
  58. //  be dockable
  59. // SetDialogBkColor(RGB(176,192,192),RGB(200,0,100));
  60. m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  61. EnableDocking(CBRS_ALIGN_ANY);
  62. DockControlBar(&m_wndToolBar);
  63. return 0;
  64. }
  65. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  66. {
  67. if( !CFrameWnd::PreCreateWindow(cs) )
  68. return FALSE;
  69. // TODO: Modify the Window class or styles here by modifying
  70. //  the CREATESTRUCT cs
  71. cs.style = WS_OVERLAPPED | WS_CAPTION | FWS_ADDTOTITLE
  72. | WS_SYSMENU | WS_MINIMIZEBOX;
  73. //cs.cy=300;
  74. //cs.cx=550;
  75. return TRUE;
  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::OnPaint() 
  92. {
  93. CPaintDC dc(this); // device context for painting
  94. // TODO: Add your message handler code here
  95. SetWindowText(_T("机器人语音控制系统"));
  96. // Do not call CFrameWnd::OnPaint() for painting messages
  97. }
  98. void CMainFrame::OnHelp() 
  99. {
  100. // TODO: Add your command handler code here
  101. }
  102. LRESULT CMainFrame::WindowProc(UINT message, WPARAM wParam, LPARAM lParam) 
  103. {
  104. // TODO: Add your specialized code here and/or call the base class
  105. if(message == (WM_USER + 1001))
  106. {   //MessageBox("dfgdfgdfgs");
  107. ::SendMessage(GetActiveView()->GetSafeHwnd(),WM_USER + 1002,wParam,lParam);
  108. }
  109. return CFrameWnd::WindowProc(message, wParam, lParam);
  110. }