Fractal Example.cpp
上传用户:sycq158
上传日期:2008-10-22
资源大小:15361k
文件大小:4k
源码类别:

游戏

开发平台:

Visual C++

  1. // Fractal Example.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "Fractal Example.h"
  5. #include "MainFrm.h"
  6. #include "Fractal ExampleDoc.h"
  7. #include "Fractal ExampleView.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CFractalExampleApp
  15. BEGIN_MESSAGE_MAP(CFractalExampleApp, CWinApp)
  16. //{{AFX_MSG_MAP(CFractalExampleApp)
  17. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  18. // NOTE - the ClassWizard will add and remove mapping macros here.
  19. //    DO NOT EDIT what you see in these blocks of generated code!
  20. //}}AFX_MSG_MAP
  21. // Standard file based document commands
  22. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  23. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  24. END_MESSAGE_MAP()
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CFractalExampleApp construction
  27. CFractalExampleApp::CFractalExampleApp()
  28. {
  29. // TODO: add construction code here,
  30. // Place all significant initialization in InitInstance
  31. }
  32. /////////////////////////////////////////////////////////////////////////////
  33. // The one and only CFractalExampleApp object
  34. CFractalExampleApp theApp;
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CFractalExampleApp initialization
  37. BOOL CFractalExampleApp::InitInstance()
  38. {
  39. // Standard initialization
  40. // If you are not using these features and wish to reduce the size
  41. //  of your final executable, you should remove from the following
  42. //  the specific initialization routines you do not need.
  43. #ifdef _AFXDLL
  44. Enable3dControls(); // Call this when using MFC in a shared DLL
  45. #else
  46. Enable3dControlsStatic(); // Call this when linking to MFC statically
  47. #endif
  48. LoadStdProfileSettings(0);  // Load standard INI file options (including MRU)
  49. // Register the application's document templates.  Document templates
  50. //  serve as the connection between documents, frame windows and views.
  51. CSingleDocTemplate* pDocTemplate;
  52. pDocTemplate = new CSingleDocTemplate(
  53. IDR_MAINFRAME,
  54. RUNTIME_CLASS(CFractalExampleDoc),
  55. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  56. RUNTIME_CLASS(CFractalExampleView));
  57. AddDocTemplate(pDocTemplate);
  58. // Parse command line for standard shell commands, DDE, file open
  59. CCommandLineInfo cmdInfo;
  60. ParseCommandLine(cmdInfo);
  61. // Dispatch commands specified on the command line
  62. if (!ProcessShellCommand(cmdInfo))
  63. return FALSE;
  64. return TRUE;
  65. }
  66. /////////////////////////////////////////////////////////////////////////////
  67. // CAboutDlg dialog used for App About
  68. class CAboutDlg : public CDialog
  69. {
  70. public:
  71. CAboutDlg();
  72. // Dialog Data
  73. //{{AFX_DATA(CAboutDlg)
  74. enum { IDD = IDD_ABOUTBOX };
  75. //}}AFX_DATA
  76. // ClassWizard generated virtual function overrides
  77. //{{AFX_VIRTUAL(CAboutDlg)
  78. protected:
  79. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  80. //}}AFX_VIRTUAL
  81. // Implementation
  82. protected:
  83. //{{AFX_MSG(CAboutDlg)
  84. // No message handlers
  85. //}}AFX_MSG
  86. DECLARE_MESSAGE_MAP()
  87. };
  88. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  89. {
  90. //{{AFX_DATA_INIT(CAboutDlg)
  91. //}}AFX_DATA_INIT
  92. }
  93. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  94. {
  95. CDialog::DoDataExchange(pDX);
  96. //{{AFX_DATA_MAP(CAboutDlg)
  97. //}}AFX_DATA_MAP
  98. }
  99. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  100. //{{AFX_MSG_MAP(CAboutDlg)
  101. // No message handlers
  102. //}}AFX_MSG_MAP
  103. END_MESSAGE_MAP()
  104. // App command to run the dialog
  105. void CFractalExampleApp::OnAppAbout()
  106. {
  107. CAboutDlg aboutDlg;
  108. aboutDlg.DoModal();
  109. }
  110. /////////////////////////////////////////////////////////////////////////////
  111. // CFractalExampleApp commands