StarFieldDlg.h
上传用户:kangjialed
上传日期:2021-05-31
资源大小:23k
文件大小:2k
源码类别:

屏幕保护

开发平台:

Visual C++

  1. // StarFieldDlg.h : header file
  2. //
  3. #if !defined(AFX_STARFIELDDLG_H__0D0578CF_3F93_4846_8B3E_942177497A94__INCLUDED_)
  4. #define AFX_STARFIELDDLG_H__0D0578CF_3F93_4846_8B3E_942177497A94__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CStarFieldDlg dialog
  10. #define StarCount 300
  11. struct CStar
  12. {
  13. int x;
  14. int y;
  15. int speed;
  16. };
  17. class CStarFieldDlg : public CDialog
  18. {
  19. // Construction
  20. public:
  21. CStarFieldDlg(CWnd* pParent = NULL); // standard constructor
  22. // Dialog Data
  23. //{{AFX_DATA(CStarFieldDlg)
  24. enum { IDD = IDD_STARFIELD_DIALOG };
  25. // NOTE: the ClassWizard will add data members here
  26. //}}AFX_DATA
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(CStarFieldDlg)
  29. protected:
  30. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  31. //}}AFX_VIRTUAL
  32. // Implementation
  33. protected:
  34. HICON m_hIcon;
  35. // Generated message map functions
  36. //{{AFX_MSG(CStarFieldDlg)
  37. virtual BOOL OnInitDialog();
  38. afx_msg void OnPaint();
  39. afx_msg HCURSOR OnQueryDragIcon();
  40. afx_msg void OnTimer(UINT nIDEvent);
  41. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  42. //}}AFX_MSG
  43. DECLARE_MESSAGE_MAP()
  44. private:
  45. void Point(CDC *dc, int x, int y, int Size);
  46. void Cls(CDC *dc);
  47. CStar Star[StarCount];
  48. };
  49. //{{AFX_INSERT_LOCATION}}
  50. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  51. #endif // !defined(AFX_STARFIELDDLG_H__0D0578CF_3F93_4846_8B3E_942177497A94__INCLUDED_)