DialogGLDlg.h
上传用户:tengyuc
上传日期:2007-08-14
资源大小:722k
文件大小:2k
源码类别:

OpenGL

开发平台:

Visual C++

  1. // DialogGLDlg.h : header file
  2. //
  3. #if !defined(AFX_DIALOGGLDLG_H__A779FD07_4258_11D1_88DD_A4B001C10000__INCLUDED_)
  4. #define AFX_DIALOGGLDLG_H__A779FD07_4258_11D1_88DD_A4B001C10000__INCLUDED_
  5. #if _MSC_VER >= 1000
  6. #pragma once
  7. #endif // _MSC_VER >= 1000
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CDialogGLDlg dialog
  10. class CDialogGLDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14. void BuildList();
  15. CDialogGLDlg(CWnd* pParent = NULL); // standard constructor
  16. BOOL SetWindowPixelFormat(HDC hDC);
  17. BOOL CreateViewGLContext(HDC hDC);
  18. void RenderScene();
  19. void Rotate();
  20. BOOL m_Rotate;
  21. BOOL m_Antialias;
  22. HGLRC m_hGLContext;
  23. int m_GLPixelIndex;
  24. double m_transY;
  25. double m_transX;
  26. double m_angle1;
  27. double m_angle2;
  28. float m_ScaleX;
  29. float m_ScaleY;
  30. float m_ScaleZ;
  31. GLdouble m_xRotate;
  32. GLdouble m_yRotate;
  33. int m_width;
  34. int m_height;
  35. int m_exp;
  36. float m_size;
  37. CPoint m_RightDownPos;
  38. CPoint m_LeftDownPos;
  39. BOOL m_RightButtonDown;
  40. BOOL m_LeftButtonDown;
  41. // Dialog Data
  42. //{{AFX_DATA(CDialogGLDlg)
  43. enum { IDD = IDD_DIALOGGL_DIALOG };
  44. // NOTE: the ClassWizard will add data members here
  45. //}}AFX_DATA
  46. // ClassWizard generated virtual function overrides
  47. //{{AFX_VIRTUAL(CDialogGLDlg)
  48. protected:
  49. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  50. //}}AFX_VIRTUAL
  51. // Implementation
  52. protected:
  53. afx_msg void OnContextMenu(CWnd*, CPoint point);
  54. HICON m_hIcon;
  55. // Generated message map functions
  56. //{{AFX_MSG(CDialogGLDlg)
  57. virtual BOOL OnInitDialog();
  58. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  59. afx_msg void OnPaint();
  60. afx_msg HCURSOR OnQueryDragIcon();
  61. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  62. afx_msg void OnDestroy();
  63. afx_msg void OnSize(UINT nType, int cx, int cy);
  64. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  65. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  66. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  67. afx_msg void OnTimer(UINT nIDEvent);
  68. afx_msg void OnPopupRotate();
  69. afx_msg void OnPopupSizeDecrease();
  70. afx_msg void OnPopupSizeIncrease();
  71. afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  72. afx_msg void OnPopupAntialiasing();
  73. //}}AFX_MSG
  74. DECLARE_MESSAGE_MAP()
  75. };
  76. //{{AFX_INSERT_LOCATION}}
  77. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  78. #endif // !defined(AFX_DIALOGGLDLG_H__A779FD07_4258_11D1_88DD_A4B001C10000__INCLUDED_)