MainFrm.cpp
上传用户:chinasdcnc
上传日期:2022-07-02
资源大小:2702k
文件大小:2k
源码类别:

分形几何

开发平台:

Visual C++

  1. // MainFrm.cpp : CMainFrame 类的实现
  2. //
  3. #include "stdafx.h"
  4. #include "dtriangulation.h"
  5. #include "MainFrm.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #endif
  9. // CMainFrame
  10. IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)
  11. BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
  12. ON_WM_CREATE()
  13. END_MESSAGE_MAP()
  14. static UINT indicators[] =
  15. {
  16. ID_SEPARATOR,           // 状态行指示器
  17. ID_INDICATOR_RUNTIME,
  18. ID_INDICATOR_CAPS,
  19. ID_INDICATOR_NUM,
  20. ID_INDICATOR_SCRL,
  21. };
  22. // CMainFrame 构造/析构
  23. CMainFrame::CMainFrame()
  24. {
  25. // TODO: 在此添加成员初始化代码
  26. }
  27. CMainFrame::~CMainFrame()
  28. {
  29. }
  30. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  31. {
  32. if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  33. return -1;
  34. if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP
  35. | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
  36. !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  37. {
  38. TRACE0("未能创建工具栏n");
  39. return -1;      // 未能创建
  40. }
  41. if (!m_wndStatusBar.Create(this) ||
  42. !m_wndStatusBar.SetIndicators(indicators,
  43.   sizeof(indicators)/sizeof(UINT)))
  44. {
  45. TRACE0("未能创建状态栏n");
  46. return -1;      // 未能创建
  47. }
  48. // TODO: 如果不需要工具栏可停靠,则删除这三行
  49. m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  50. EnableDocking(CBRS_ALIGN_ANY);
  51. DockControlBar(&m_wndToolBar);
  52. return 0;
  53. }
  54. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  55. {
  56. if( !CFrameWnd::PreCreateWindow(cs) )
  57. return FALSE;
  58. // TODO: 在此处通过修改
  59. //  CREATESTRUCT cs 来修改窗口类或样式
  60. return TRUE;
  61. }
  62. // CMainFrame 诊断
  63. #ifdef _DEBUG
  64. void CMainFrame::AssertValid() const
  65. {
  66. CFrameWnd::AssertValid();
  67. }
  68. void CMainFrame::Dump(CDumpContext& dc) const
  69. {
  70. CFrameWnd::Dump(dc);
  71. }
  72. #endif //_DEBUG
  73. // CMainFrame 消息处理程序