ED256.cpp
上传用户:dfwb928
上传日期:2013-04-20
资源大小:228k
文件大小:4k
源码类别:

图形图象

开发平台:

Visual C++

  1. // ED256.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "ED256.h"
  5. #include "MainFrm.h"
  6. #include "ED256Doc.h"
  7. #include "ED256View.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CED256App
  15. BEGIN_MESSAGE_MAP(CED256App, CWinApp)
  16. //{{AFX_MSG_MAP(CED256App)
  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. // CED256App construction
  27. CED256App::CED256App()
  28. {
  29. // TODO: add construction code here,
  30. // Place all significant initialization in InitInstance
  31. }
  32. /////////////////////////////////////////////////////////////////////////////
  33. // The one and only CED256App object
  34. CED256App theApp;
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CED256App initialization
  37. BOOL CED256App::InitInstance()
  38. {
  39. AfxEnableControlContainer();
  40. // Standard initialization
  41. // If you are not using these features and wish to reduce the size
  42. //  of your final executable, you should remove from the following
  43. //  the specific initialization routines you do not need.
  44. #ifdef _AFXDLL
  45. Enable3dControls(); // Call this when using MFC in a shared DLL
  46. #else
  47. Enable3dControlsStatic(); // Call this when linking to MFC statically
  48. #endif
  49. // Change the registry key under which our settings are stored.
  50. // You should modify this string to be something appropriate
  51. // such as the name of your company or organization.
  52. SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  53. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  54. // Register the application's document templates.  Document templates
  55. //  serve as the connection between documents, frame windows and views.
  56. CSingleDocTemplate* pDocTemplate;
  57. pDocTemplate = new CSingleDocTemplate(
  58. IDR_MAINFRAME,
  59. RUNTIME_CLASS(CED256Doc),
  60. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  61. RUNTIME_CLASS(CED256View));
  62. AddDocTemplate(pDocTemplate);
  63. // Parse command line for standard shell commands, DDE, file open
  64. CCommandLineInfo cmdInfo;
  65. ParseCommandLine(cmdInfo);
  66. // Dispatch commands specified on the command line
  67. if (!ProcessShellCommand(cmdInfo))
  68. return FALSE;
  69. // The one and only window has been initialized, so show and update it.
  70. m_pMainWnd->ShowWindow(SW_SHOW);
  71. m_pMainWnd->UpdateWindow();
  72. return TRUE;
  73. }
  74. /////////////////////////////////////////////////////////////////////////////
  75. // CAboutDlg dialog used for App About
  76. #include "hyperlink.h"
  77. class CAboutDlg : public CDialog
  78. {
  79. public:
  80. CAboutDlg();
  81. // Dialog Data
  82. //{{AFX_DATA(CAboutDlg)
  83. enum { IDD = IDD_ABOUTBOX };
  84. CHyperLink m_hLink;
  85. //}}AFX_DATA
  86. // ClassWizard generated virtual function overrides
  87. //{{AFX_VIRTUAL(CAboutDlg)
  88. protected:
  89. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  90. //}}AFX_VIRTUAL
  91. // Implementation
  92. protected:
  93. //{{AFX_MSG(CAboutDlg)
  94. virtual BOOL OnInitDialog();
  95. //}}AFX_MSG
  96. DECLARE_MESSAGE_MAP()
  97. };
  98. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  99. {
  100. //{{AFX_DATA_INIT(CAboutDlg)
  101. //}}AFX_DATA_INIT
  102. }
  103. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  104. {
  105. CDialog::DoDataExchange(pDX);
  106. //{{AFX_DATA_MAP(CAboutDlg)
  107. DDX_Control(pDX, IDC_LINK, m_hLink);
  108. //}}AFX_DATA_MAP
  109. }
  110. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  111. //{{AFX_MSG_MAP(CAboutDlg)
  112. //}}AFX_MSG_MAP
  113. END_MESSAGE_MAP()
  114. // App command to run the dialog
  115. void CED256App::OnAppAbout()
  116. {
  117. CAboutDlg aboutDlg;
  118. aboutDlg.DoModal();
  119. }
  120. /////////////////////////////////////////////////////////////////////////////
  121. // CED256App commands
  122. BOOL CAboutDlg::OnInitDialog() {
  123. CDialog::OnInitDialog();
  124. m_hLink.SetURL("http://www.generation5.org/");
  125. return TRUE;
  126. }