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

3D图形编程

开发平台:

Visual C++

  1. // Test1.h : main header file for the TEST1 application
  2. //
  3. #if !defined(AFX_TEST1_H__48BAF0FF_68E2_4D0D_A8C9_AB9ECAFB6A3B__INCLUDED_)
  4. #define AFX_TEST1_H__48BAF0FF_68E2_4D0D_A8C9_AB9ECAFB6A3B__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. #ifndef __AFXWIN_H__
  9. #error include 'stdafx.h' before including this file for PCH
  10. #endif
  11. #include "resource.h"       // main symbols
  12. //允许设置OpenGL
  13. #include <GL/gl.h>
  14. #include <GL/glaux.h>
  15. #include <gl/glu.h>
  16. //定义几种常用颜色
  17. const COLORREF RED = RGB(255,0,0);
  18. const COLORREF GREEN = RGB(0,255,0);
  19. const COLORREF BLUE =  RGB(0,0,255);
  20. const COLORREF YELLOW = RGB(255,255,0);
  21. const COLORREF BLACK  = RGB(0,0,0);
  22. const COLORREF WHITE = RGB(255,255,255);
  23. const COLORREF BRIGHT = RGB(100,100,100);
  24. const COLORREF GRAY   = RGB(0,255,255);
  25. //向进度条发送的消息
  26. const int MESSAGE_STEPPRO = WM_USER + 102;
  27. //向控制台发送消息使按钮可用
  28. const int MESSAGE_ENABLEBTN = WM_USER + 103;
  29. //向控制台发送消息使按钮不可用
  30. const int MESSAGE_DISABLEBTN = WM_USER + 104;
  31. //由主三维窗口发给三维投影窗口的消息,通知坐标倾角发生了变化.
  32. const int MESSAGE_ANGLECHANGING = WM_USER+105;
  33. //通告各窗口数据读取已完成
  34. const int MESSAGE_GETDATAFINISHED = WM_USER+106;
  35. //通知投影窗口位图已拷贝完成,需要进行显示
  36. const int MESSAGE_BMPHASBECOPIED = WM_USER+107;
  37. //数组大小
  38. const int ArrayOne = 20000;
  39. const int ArrayTwo = 16;
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CTest1App:
  42. // See Test1.cpp for the implementation of this class
  43. //
  44. class CTest1App : public CWinApp
  45. {
  46. public:
  47. CTest1App();
  48. // Overrides
  49. // ClassWizard generated virtual function overrides
  50. //{{AFX_VIRTUAL(CTest1App)
  51. public:
  52. virtual BOOL InitInstance();
  53. //}}AFX_VIRTUAL
  54. // Implementation
  55. //{{AFX_MSG(CTest1App)
  56. afx_msg void OnAppAbout();
  57. // NOTE - the ClassWizard will add and remove member functions here.
  58. //    DO NOT EDIT what you see in these blocks of generated code !
  59. //}}AFX_MSG
  60. DECLARE_MESSAGE_MAP()
  61. };
  62. /////////////////////////////////////////////////////////////////////////////
  63. //{{AFX_INSERT_LOCATION}}
  64. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  65. #endif // !defined(AFX_TEST1_H__48BAF0FF_68E2_4D0D_A8C9_AB9ECAFB6A3B__INCLUDED_)