SuperMarket.cpp
上传用户:tyjx315
上传日期:2015-01-18
资源大小:1685k
文件大小:5k
源码类别:

百货/超市行业

开发平台:

Visual C++

  1. // SuperMarket.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "SuperMarket.h"
  5. #include "MainFrm.h"
  6. #include "ChildFrm.h"
  7. #include "SuperMarketDoc.h"
  8. #include "SuperMarketView.h"
  9. #ifdef _DEBUG
  10. #define new DEBUG_NEW
  11. #undef THIS_FILE
  12. static char THIS_FILE[] = __FILE__;
  13. #endif
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CSuperMarketApp
  16. BEGIN_MESSAGE_MAP(CSuperMarketApp, CWinApp)
  17. //{{AFX_MSG_MAP(CSuperMarketApp)
  18. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  19. // NOTE - the ClassWizard will add and remove mapping macros here.
  20. //    DO NOT EDIT what you see in these blocks of generated code!
  21. //}}AFX_MSG_MAP
  22. // Standard file based document commands
  23. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  24. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  25. // Standard print setup command
  26. ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  27. END_MESSAGE_MAP()
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CSuperMarketApp construction
  30. CSuperMarketApp::CSuperMarketApp()
  31. {
  32. // TODO: add construction code here,
  33. // Place all significant initialization in InitInstance
  34. }
  35. /////////////////////////////////////////////////////////////////////////////
  36. // The one and only CSuperMarketApp object
  37. CSuperMarketApp theApp;
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CSuperMarketApp initialization
  40. BOOL CSuperMarketApp::InitInstance()
  41. {
  42. /* int  __stdcall InitSkinMagicLib( HINSTANCE hInstance,   LPCTSTR lpApplication ,  LPCTSTR lpReserved1,LPCTSTR lpReserved2 );
  43.     VERIFY( 1 == InitSkinMagicLib(AfxGetInstanceHandle(), NULL, NULL, NULL));
  44.     VERIFY( 1 == LoadSkinFile("corona.smf"));
  45.  */
  46.     VERIFY( 1 == InitSkinMagicLib(AfxGetInstanceHandle(), NULL, NULL, NULL));
  47. VERIFY( 1 == LoadSkinFile("corona.smf"));
  48. SetDialogBkColor(RGB(0,50,100),RGB(0,200,250)); 
  49. AfxEnableControlContainer();
  50. // Standard initialization
  51. // If you are not using these features and wish to reduce the size
  52. //  of your final executable, you should remove from the following
  53. //  the specific initialization routines you do not need.
  54. #ifdef _AFXDLL
  55. Enable3dControls(); // Call this when using MFC in a shared DLL
  56. #else
  57. Enable3dControlsStatic(); // Call this when linking to MFC statically
  58. #endif
  59. // Change the registry key under which our settings are stored.
  60. // TODO: You should modify this string to be something appropriate
  61. // such as the name of your company or organization.
  62. SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  63. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  64. // Register the application's document templates.  Document templates
  65. //  serve as the connection between documents, frame windows and views.
  66. CMultiDocTemplate* pDocTemplate;
  67. pDocTemplate = new CMultiDocTemplate(
  68. IDR_SUPERMTYPE,
  69. RUNTIME_CLASS(CSuperMarketDoc),
  70. RUNTIME_CLASS(CChildFrame), // custom MDI child frame
  71. RUNTIME_CLASS(CSuperMarketView));
  72. AddDocTemplate(pDocTemplate);
  73. // create main MDI Frame window
  74. CMainFrame* pMainFrame = new CMainFrame;
  75. if (!pMainFrame->LoadFrame(IDR_MAINFRAME))
  76. return FALSE;
  77.  
  78. m_pMainWnd = pMainFrame;
  79. // Parse command line for standard shell commands, DDE, file open
  80. CCommandLineInfo cmdInfo;
  81. ParseCommandLine(cmdInfo);
  82. // Dispatch commands specified on the command line
  83. if (!ProcessShellCommand(cmdInfo))
  84. return FALSE;
  85. // The main window has been initialized, so show and update it.
  86. VERIFY( 1 == SetWindowSkin( m_pMainWnd->m_hWnd , "MainFrame" ));
  87.     VERIFY( 1 == SetDialogSkin( "Dialog" ) );
  88. pMainFrame->ShowWindow(m_nCmdShow);
  89. pMainFrame->UpdateWindow();
  90. return TRUE;
  91. }
  92. /////////////////////////////////////////////////////////////////////////////
  93. // CAboutDlg dialog used for App About
  94. class CAboutDlg : public CDialog
  95. {
  96. public:
  97. CAboutDlg();
  98. // Dialog Data
  99. //{{AFX_DATA(CAboutDlg)
  100. enum { IDD = IDD_ABOUTBOX };
  101. //}}AFX_DATA
  102. // ClassWizard generated virtual function overrides
  103. //{{AFX_VIRTUAL(CAboutDlg)
  104. protected:
  105. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  106. //}}AFX_VIRTUAL
  107. // Implementation
  108. protected:
  109. //{{AFX_MSG(CAboutDlg)
  110. // No message handlers
  111. //}}AFX_MSG
  112. DECLARE_MESSAGE_MAP()
  113. };
  114. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  115. {
  116. //{{AFX_DATA_INIT(CAboutDlg)
  117. //}}AFX_DATA_INIT
  118. }
  119. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  120. {
  121. CDialog::DoDataExchange(pDX);
  122. //{{AFX_DATA_MAP(CAboutDlg)
  123. //}}AFX_DATA_MAP
  124. }
  125. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  126. //{{AFX_MSG_MAP(CAboutDlg)
  127. // No message handlers
  128. //}}AFX_MSG_MAP
  129. END_MESSAGE_MAP()
  130. // App command to run the dialog
  131. void CSuperMarketApp::OnAppAbout()
  132. {
  133. CAboutDlg aboutDlg;
  134. aboutDlg.DoModal();
  135. }
  136. /////////////////////////////////////////////////////////////////////////////
  137. // CSuperMarketApp message handlers