test8.cpp
上传用户:yatsl7111
上传日期:2007-01-08
资源大小:1433k
文件大小:4k
源码类别:

图形图象

开发平台:

Visual C++

  1. // test8.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "test8.h"
  5. #include "MainFrm.h"
  6. #include "test8Doc.h"
  7. #include "test8View.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. static LPCTSTR strWmfDllPath="D:\ISee项目基础模板\PsdModule\Debug\PsdModule.dll";
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CTest8App
  16. BEGIN_MESSAGE_MAP(CTest8App, CWinApp)
  17. //{{AFX_MSG_MAP(CTest8App)
  18. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  19. ON_COMMAND(ID_FILE_OPEN, OnFileOpen)
  20. //}}AFX_MSG_MAP
  21. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  22. // Standard file based document commands
  23. END_MESSAGE_MAP()
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CTest8App construction
  26. CTest8App::CTest8App()
  27. {
  28. // TODO: add construction code here,
  29. // Place all significant initialization in InitInstance
  30. }
  31. /////////////////////////////////////////////////////////////////////////////
  32. // The one and only CTest8App object
  33. CTest8App theApp;
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CTest8App initialization
  36. BOOL CTest8App::InitInstance()
  37. {
  38. AfxEnableControlContainer();
  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. // Change the registry key under which our settings are stored.
  49. // TODO: You should modify this string to be something appropriate
  50. // such as the name of your company or organization.
  51. SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  52. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  53. // Register the application's document templates.  Document templates
  54. //  serve as the connection between documents, frame windows and views.
  55. hLib = ::LoadLibrary(strWmfDllPath);
  56. if (hLib)
  57. pAccess = (int (WINAPI *)(LPINFOSTR))::GetProcAddress(hLib, MAKEINTRESOURCE(1));
  58. CSingleDocTemplate* pDocTemplate;
  59. pDocTemplate = new CSingleDocTemplate(
  60. IDR_MAINFRAME,
  61. RUNTIME_CLASS(CTest8Doc),
  62. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  63. RUNTIME_CLASS(CTest8View));
  64. AddDocTemplate(pDocTemplate);
  65. // Parse command line for standard shell commands, DDE, file open
  66. CCommandLineInfo cmdInfo;
  67. ParseCommandLine(cmdInfo);
  68. //cmdInfo.m_nShellCommand = CCommandLineInfo::FileNothing;
  69. // Dispatch commands specified on the command line
  70. if (!ProcessShellCommand(cmdInfo))
  71. return FALSE;
  72. // The one and only window has been initialized, so show and update it.
  73. m_pMainWnd->ShowWindow(SW_SHOW);
  74. m_pMainWnd->UpdateWindow();
  75. return TRUE;
  76. }
  77. /////////////////////////////////////////////////////////////////////////////
  78. // CAboutDlg dialog used for App About
  79. class CAboutDlg : public CDialog
  80. {
  81. public:
  82. CAboutDlg();
  83. // Dialog Data
  84. //{{AFX_DATA(CAboutDlg)
  85. enum { IDD = IDD_ABOUTBOX };
  86. //}}AFX_DATA
  87. // ClassWizard generated virtual function overrides
  88. //{{AFX_VIRTUAL(CAboutDlg)
  89. protected:
  90. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  91. //}}AFX_VIRTUAL
  92. // Implementation
  93. protected:
  94. //{{AFX_MSG(CAboutDlg)
  95. // No message handlers
  96. //}}AFX_MSG
  97. DECLARE_MESSAGE_MAP()
  98. };
  99. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  100. {
  101. //{{AFX_DATA_INIT(CAboutDlg)
  102. //}}AFX_DATA_INIT
  103. }
  104. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  105. {
  106. CDialog::DoDataExchange(pDX);
  107. //{{AFX_DATA_MAP(CAboutDlg)
  108. //}}AFX_DATA_MAP
  109. }
  110. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  111. //{{AFX_MSG_MAP(CAboutDlg)
  112. // No message handlers
  113. //}}AFX_MSG_MAP
  114. END_MESSAGE_MAP()
  115. // App command to run the dialog
  116. void CTest8App::OnAppAbout()
  117. {
  118. CAboutDlg aboutDlg;
  119. aboutDlg.DoModal();
  120. }
  121. /////////////////////////////////////////////////////////////////////////////
  122. // CTest8App message handlers
  123. int CTest8App::ExitInstance() 
  124. {
  125. // TODO: Add your specialized code here and/or call the base class
  126. if (hLib)
  127. ::FreeLibrary(hLib);
  128. return CWinApp::ExitInstance();
  129. }
  130. int WINAPI fnp(int total, int cur)
  131. {
  132. return 0;
  133. }
  134. void CTest8App::OnFileOpen() 
  135. {
  136. // TODO: Add your command handler code here
  137. CWinApp::OnFileOpen();
  138. }