Test1.cpp
上传用户:wangdan
上传日期:2022-06-30
资源大小:739k
文件大小:5k
源码类别:

3D图形编程

开发平台:

Visual C++

  1. // Test1.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "Test1.h"
  5. #include "MainFrm.h"
  6. #include "Test1Doc.h"
  7. #include "Test1View.h"
  8. #include "WBButton.h"
  9. #ifdef _DEBUG
  10. #define new DEBUG_NEW
  11. #undef THIS_FILE
  12. static char THIS_FILE[] = __FILE__;
  13. #endif
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CTest1App
  16. BEGIN_MESSAGE_MAP(CTest1App, CWinApp)
  17. //{{AFX_MSG_MAP(CTest1App)
  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. // CTest1App construction
  30. CTest1App::CTest1App()
  31. {
  32. // TODO: add construction code here,
  33. // Place all significant initialization in InitInstance
  34. }
  35. /////////////////////////////////////////////////////////////////////////////
  36. // The one and only CTest1App object
  37. CTest1App theApp;
  38. bool gbIsGetData; //全局变量,用来判断是否正在读取数据,读取数据时不进行任何图像显示
  39. bool gbDataIsEmpty;//全局变量,用来判断数据是否存在.存在用false,不存在用true;
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CTest1App initialization
  42. BOOL CTest1App::InitInstance()
  43. {
  44. AfxEnableControlContainer();
  45. gbIsGetData = false;
  46. gbDataIsEmpty = true;
  47. // Standard initialization
  48. // If you are not using these features and wish to reduce the size
  49. //  of your final executable, you should remove from the following
  50. //  the specific initialization routines you do not need.
  51. #ifdef _AFXDLL
  52. Enable3dControls(); // Call this when using MFC in a shared DLL
  53. #else
  54. Enable3dControlsStatic(); // Call this when linking to MFC statically
  55. #endif
  56. // Change the registry key under which our settings are stored.
  57. // TODO: You should modify this string to be something appropriate
  58. // such as the name of your company or organization.
  59. SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  60. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  61. // Register the application's document templates.  Document templates
  62. //  serve as the connection between documents, frame windows and views.
  63. CSingleDocTemplate* pDocTemplate;
  64. pDocTemplate = new CSingleDocTemplate(
  65. IDR_MAINFRAME,
  66. RUNTIME_CLASS(CTest1Doc),
  67. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  68. RUNTIME_CLASS(CTest1View));
  69. AddDocTemplate(pDocTemplate);
  70. // Parse command line for standard shell commands, DDE, file open
  71. CCommandLineInfo cmdInfo;
  72. ParseCommandLine(cmdInfo);
  73. // Dispatch commands specified on the command line
  74. if (!ProcessShellCommand(cmdInfo))
  75. return FALSE;
  76. // The one and only window has been initialized, so show and update it.
  77. m_pMainWnd->ShowWindow(SW_SHOWMAXIMIZED);
  78. m_pMainWnd->UpdateWindow();
  79. m_pMainWnd->SetWindowText("三维交会图演示系统->没有任何数据");
  80. return TRUE;
  81. }
  82. /////////////////////////////////////////////////////////////////////////////
  83. // CAboutDlg dialog used for App About
  84. class CAboutDlg : public CDialog
  85. {
  86. public:
  87. CAboutDlg();
  88. // Dialog Data
  89. //{{AFX_DATA(CAboutDlg)
  90. enum { IDD = IDD_ABOUTBOX };
  91. CWBButton m_Ok;
  92. //}}AFX_DATA
  93. // ClassWizard generated virtual function overrides
  94. //{{AFX_VIRTUAL(CAboutDlg)
  95. protected:
  96. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  97. //}}AFX_VIRTUAL
  98. // Implementation
  99. protected:
  100. //{{AFX_MSG(CAboutDlg)
  101. virtual BOOL OnInitDialog();
  102. //}}AFX_MSG
  103. DECLARE_MESSAGE_MAP()
  104. };
  105. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  106. {
  107. //{{AFX_DATA_INIT(CAboutDlg)
  108. //}}AFX_DATA_INIT
  109. }
  110. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  111. {
  112. CDialog::DoDataExchange(pDX);
  113. //{{AFX_DATA_MAP(CAboutDlg)
  114. DDX_Control(pDX, IDOK, m_Ok);
  115. //}}AFX_DATA_MAP
  116. }
  117. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  118. //{{AFX_MSG_MAP(CAboutDlg)
  119. //}}AFX_MSG_MAP
  120. END_MESSAGE_MAP()
  121. // App command to run the dialog
  122. void CTest1App::OnAppAbout()
  123. {
  124. CAboutDlg aboutDlg;
  125. aboutDlg.DoModal();
  126. }
  127. /////////////////////////////////////////////////////////////////////////////
  128. // CTest1App message handlers
  129. BOOL CAboutDlg::OnInitDialog() 
  130. {
  131. CDialog::OnInitDialog();
  132. // TODO: Add extra initialization here
  133. this->m_Ok.LoadBitmaps(IDB_BUTTON,5, 5, 5, 5, 4 );
  134. return TRUE;  // return TRUE unless you set the focus to a control
  135.               // EXCEPTION: OCX Property Pages should return FALSE
  136. }