gmark.cpp
上传用户:pumpssky
上传日期:2007-12-07
资源大小:110k
文件大小:4k
源码类别:

MacOS编程

开发平台:

C/C++

  1. // gmark.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "gmark.h"
  5. #include "MainFrm.h"
  6. #include "gmarkDoc.h"
  7. #include "gmarkView.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CGmarkApp
  15. BEGIN_MESSAGE_MAP(CGmarkApp, CWinApp)
  16. //{{AFX_MSG_MAP(CGmarkApp)
  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. // CGmarkApp construction
  27. CGmarkApp::CGmarkApp()
  28. : CWinApp()
  29. {
  30. // TODO: add construction code here,
  31. // Place all significant initialization in InitInstance
  32. }
  33. /////////////////////////////////////////////////////////////////////////////
  34. // The one and only CGmarkApp object
  35. CGmarkApp theApp;
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CGmarkApp initialization
  38. BOOL CGmarkApp::InitInstance()
  39. {
  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. // Change the registry key under which our settings are stored.
  45. // You should modify this string to be something appropriate
  46. // such as the name of your company or organization.
  47. SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  48. LoadStdProfileSettings();  // 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(CGmarkDoc),
  55. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  56. RUNTIME_CLASS(CGmarkView));
  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. // The one and only window has been initialized, so show and update it.
  65. m_pMainWnd->ShowWindow(SW_SHOW);
  66. m_pMainWnd->UpdateWindow();
  67. return TRUE;
  68. }
  69. /////////////////////////////////////////////////////////////////////////////
  70. // CAboutDlg dialog used for App About
  71. class CAboutDlg : public CDialog
  72. {
  73. public:
  74. CAboutDlg();
  75. // Dialog Data
  76. //{{AFX_DATA(CAboutDlg)
  77. enum { IDD = IDD_ABOUTBOX };
  78. //}}AFX_DATA
  79. // ClassWizard generated virtual function overrides
  80. //{{AFX_VIRTUAL(CAboutDlg)
  81. protected:
  82. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  83. //}}AFX_VIRTUAL
  84. // Implementation
  85. protected:
  86. //{{AFX_MSG(CAboutDlg)
  87. virtual BOOL OnInitDialog(); // Added for WCE apps
  88. //}}AFX_MSG
  89. DECLARE_MESSAGE_MAP()
  90. };
  91. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  92. {
  93. //{{AFX_DATA_INIT(CAboutDlg)
  94. //}}AFX_DATA_INIT
  95. }
  96. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  97. {
  98. CDialog::DoDataExchange(pDX);
  99. //{{AFX_DATA_MAP(CAboutDlg)
  100. //}}AFX_DATA_MAP
  101. }
  102. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  103. //{{AFX_MSG_MAP(CAboutDlg)
  104. // No message handlers
  105. //}}AFX_MSG_MAP
  106. END_MESSAGE_MAP()
  107. // App command to run the dialog
  108. void CGmarkApp::OnAppAbout()
  109. {
  110. CAboutDlg aboutDlg;
  111. aboutDlg.DoModal();
  112. }
  113. /////////////////////////////////////////////////////////////////////////////
  114. // CGmarkApp commands
  115. // Added for WCE apps
  116. BOOL CAboutDlg::OnInitDialog() 
  117. {
  118. CDialog::OnInitDialog();
  119. CenterWindow();
  120. return TRUE;  // return TRUE unless you set the focus to a control
  121.               // EXCEPTION: OCX Property Pages should return FALSE
  122. }