TIFFSample.cpp
上传用户:lbr_007
上传日期:2019-05-31
资源大小:282k
文件大小:4k
源码类别:

传真(Fax)编程

开发平台:

Visual C++

  1. // TIFFSample.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "TIFFSample.h"
  5. #include "TIFFFrame.h"
  6. #include "TIFFDoc.h"
  7. #include "TIFFView.h"
  8. char g_initFolder[MAX_PATH];
  9. char * GetInitialFolder(void){ return g_initFolder;}
  10. /////////////////////////////////////////////////////////////////////////////
  11. // TIFFApp
  12. BEGIN_MESSAGE_MAP(TIFFApp, CWinApp)
  13. //{{AFX_MSG_MAP(TIFFApp)
  14. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  15. // NOTE - the ClassWizard will add and remove mapping macros here.
  16. //    DO NOT EDIT what you see in these blocks of generated code!
  17. //}}AFX_MSG_MAP
  18. // Standard file based document commands
  19. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  20. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  21. // Standard print setup command
  22. ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  23. END_MESSAGE_MAP()
  24. /////////////////////////////////////////////////////////////////////////////
  25. // TIFFApp construction
  26. TIFFApp::TIFFApp()
  27. {
  28. // TODO: add construction code here,
  29. // Place all significant initialization in InitInstance
  30. }
  31. /////////////////////////////////////////////////////////////////////////////
  32. // The one and only TIFFApp object
  33. TIFFApp theApp;
  34. /////////////////////////////////////////////////////////////////////////////
  35. // TIFFApp initialization
  36. BOOL TIFFApp::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. memset(g_initFolder, 0, (size_t)MAX_PATH);
  49. _getcwd(g_initFolder, MAX_PATH-1);
  50. // Change the registry key under which our settings are stored.
  51. // TODO: You should modify this string to be something appropriate
  52. // such as the name of your company or organization.
  53. SetRegistryKey(_T("TIFFSample by Andyf4i"));
  54. LoadStdProfileSettings(0);  // Load standard INI file options (including MRU)
  55. // Register the application's document templates.  Document templates
  56. //  serve as the connection between documents, frame windows and views.
  57. CSingleDocTemplate* pDocTemplate;
  58. pDocTemplate = new CSingleDocTemplate(
  59. IDR_MAINFRAME,
  60. RUNTIME_CLASS(TIFFDoc),
  61. RUNTIME_CLASS(TIFFFrame),       // main SDI frame window
  62. RUNTIME_CLASS(TIFFView));
  63. AddDocTemplate(pDocTemplate);
  64. // Parse command line for standard shell commands, DDE, file open
  65. CCommandLineInfo cmdInfo;
  66. ParseCommandLine(cmdInfo);
  67. // Dispatch commands specified on the command line
  68. if (!ProcessShellCommand(cmdInfo))
  69. return FALSE;
  70. // The one and only window has been initialized, so show and update it.
  71. m_pMainWnd->ShowWindow(SW_SHOW);
  72. m_pMainWnd->UpdateWindow();
  73. return TRUE;
  74. }
  75. /////////////////////////////////////////////////////////////////////////////
  76. // CAboutDlg dialog used for App About
  77. class CAboutDlg : public CDialog
  78. {
  79. public:
  80. CAboutDlg();
  81. // Dialog Data
  82. //{{AFX_DATA(CAboutDlg)
  83. enum { IDD = IDD_ABOUTBOX };
  84. //}}AFX_DATA
  85. // ClassWizard generated virtual function overrides
  86. //{{AFX_VIRTUAL(CAboutDlg)
  87. protected:
  88. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  89. //}}AFX_VIRTUAL
  90. // Implementation
  91. protected:
  92. //{{AFX_MSG(CAboutDlg)
  93. // No message handlers
  94. //}}AFX_MSG
  95. DECLARE_MESSAGE_MAP()
  96. };
  97. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  98. {
  99. //{{AFX_DATA_INIT(CAboutDlg)
  100. //}}AFX_DATA_INIT
  101. }
  102. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  103. {
  104. CDialog::DoDataExchange(pDX);
  105. //{{AFX_DATA_MAP(CAboutDlg)
  106. //}}AFX_DATA_MAP
  107. }
  108. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  109. //{{AFX_MSG_MAP(CAboutDlg)
  110. // No message handlers
  111. //}}AFX_MSG_MAP
  112. END_MESSAGE_MAP()
  113. // App command to run the dialog
  114. void TIFFApp::OnAppAbout()
  115. {
  116. CAboutDlg aboutDlg;
  117. aboutDlg.DoModal();
  118. }
  119. /////////////////////////////////////////////////////////////////////////////
  120. // TIFFApp message handlers