MainFrm.cpp
上传用户:shlanyl88
上传日期:2013-03-14
资源大小:147k
文件大小:2k
源码类别:

3D图形编程

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "DelaunayDemo.h"
  5. #include "MainFrm.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #endif
  9. // CMainFrame
  10. IMPLEMENT_DYNAMIC(CMainFrame, CFrameWnd)
  11. BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
  12. ON_WM_CREATE()
  13. ON_WM_SETFOCUS()
  14. END_MESSAGE_MAP()
  15. // CMainFrame construction/destruction
  16. CMainFrame::CMainFrame()
  17. {
  18. // TODO: add member initialization code here
  19. }
  20. CMainFrame::~CMainFrame()
  21. {
  22. }
  23. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  24. {
  25. if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  26. return -1;
  27. // create a view to occupy the client area of the frame
  28. if (!m_wndView.Create(NULL, NULL, AFX_WS_DEFAULT_VIEW,
  29. CRect(0, 0, 0, 0), this, AFX_IDW_PANE_FIRST, NULL))
  30. {
  31. TRACE0("Failed to create view windown");
  32. return -1;
  33. }
  34. return 0;
  35. }
  36. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  37. {
  38. if( !CFrameWnd::PreCreateWindow(cs) )
  39. return FALSE;
  40. // TODO: Modify the Window class or styles here by modifying
  41. //  the CREATESTRUCT cs
  42. cs.dwExStyle &= ~WS_EX_CLIENTEDGE;
  43. cs.lpszClass = AfxRegisterWndClass(0);
  44. return TRUE;
  45. }
  46. // CMainFrame diagnostics
  47. #ifdef _DEBUG
  48. void CMainFrame::AssertValid() const
  49. {
  50. CFrameWnd::AssertValid();
  51. }
  52. void CMainFrame::Dump(CDumpContext& dc) const
  53. {
  54. CFrameWnd::Dump(dc);
  55. }
  56. #endif //_DEBUG
  57. // CMainFrame message handlers
  58. void CMainFrame::OnSetFocus(CWnd* /*pOldWnd*/)
  59. {
  60. // forward focus to the view window
  61. m_wndView.SetFocus();
  62. }
  63. BOOL CMainFrame::OnCmdMsg(UINT nID, int nCode, void* pExtra, AFX_CMDHANDLERINFO* pHandlerInfo)
  64. {
  65. // let the view have first crack at the command
  66. if (m_wndView.OnCmdMsg(nID, nCode, pExtra, pHandlerInfo))
  67. return TRUE;
  68. // otherwise, do default handling
  69. return CFrameWnd::OnCmdMsg(nID, nCode, pExtra, pHandlerInfo);
  70. }