ydpd.cpp
上传用户:seppec
上传日期:2010-02-09
资源大小:2347k
文件大小:4k
源码类别:

2D图形编程

开发平台:

Visual C++

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