DrawDlg.h
上传用户:junliqi
上传日期:2022-05-01
资源大小:1869k
文件大小:2k
源码类别:

2D图形编程

开发平台:

Visual C++

  1. #if !defined(AFX_DRAWDLG_H__94AEB0A6_A642_468F_A51A_C7670353E45A__INCLUDED_)
  2. #define AFX_DRAWDLG_H__94AEB0A6_A642_468F_A51A_C7670353E45A__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // DrawDlg.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CDrawDlg dialog
  10. class CDrawDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14. void fill(POINT *x,POINT *y,POINT *z,int i,int j,int q);
  15. int Maxnum(int *p,int n);
  16. struct D
  17. {
  18. int x;
  19. int y;
  20. int z;
  21. };
  22. void Draw();
  23. int a,b,c;
  24. int Ctrl;
  25. CDrawDlg(CWnd* pParent = NULL);   // standard constructor
  26. // Dialog Data
  27. //{{AFX_DATA(CDrawDlg)
  28. enum { IDD = IDD_DIALOG_DRAW };
  29. CScrollBar m_scroll1;
  30. CScrollBar m_scroll2;
  31. CScrollBar m_scroll3;
  32. //}}AFX_DATA
  33. // Overrides
  34. // ClassWizard generated virtual function overrides
  35. //{{AFX_VIRTUAL(CDrawDlg)
  36. protected:
  37. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  38. //}}AFX_VIRTUAL
  39. // Implementation
  40. protected:
  41. // Generated message map functions
  42. //{{AFX_MSG(CDrawDlg)
  43. afx_msg void OnButtonRotation1();
  44. virtual void OnOK();
  45. afx_msg void OnButtonRotation2();
  46. afx_msg void OnButtonRotation3();
  47. afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
  48. virtual BOOL OnInitDialog();
  49. afx_msg void OnPaint();
  50. afx_msg void OnTimer(UINT nIDEvent);
  51. afx_msg void OnButtonRotation4();
  52. //}}AFX_MSG
  53. DECLARE_MESSAGE_MAP()
  54. };
  55. //{{AFX_INSERT_LOCATION}}
  56. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  57. #endif // !defined(AFX_DRAWDLG_H__94AEB0A6_A642_468F_A51A_C7670353E45A__INCLUDED_)