AboutCtrl.h
上传用户:dengkfang
上传日期:2008-12-30
资源大小:5233k
文件大小:2k
源码类别:

CA认证

开发平台:

Visual C++

  1. #if !defined(AFX_ABOUTCTRL_H__B75B0B9E_367D_11D6_AB38_00D0B70C3D79__INCLUDED_)
  2. #define AFX_ABOUTCTRL_H__B75B0B9E_367D_11D6_AB38_00D0B70C3D79__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. class CAboutCtrl : public CStatic
  7. {
  8. // Construction
  9. public:
  10. CAboutCtrl();
  11. // Attributes
  12. protected:
  13. HDC m_hLogoDC; 
  14. HDC m_hBackgroundDC; 
  15. HDC m_hMemDC; 
  16. HDC m_hCreditsDC; 
  17. // logo dimensions
  18. int m_cxLogo, m_cyLogo;
  19. // logo angle
  20. int m_xAngle, m_yAngle;
  21. // logo 'fly' speed
  22. int m_nSpeed;
  23. // logo position
  24. int m_xPos, m_yPos; 
  25. int m_cxData;
  26. int m_cyData;
  27. int m_uScrollTextX;
  28. int m_nCounter;
  29. // Operations
  30. public:
  31. // Overrides
  32. // ClassWizard generated virtual function overrides
  33. //{{AFX_VIRTUAL(CAboutCtrl)
  34. protected:
  35. virtual void PreSubclassWindow();
  36. //}}AFX_VIRTUAL
  37. // Implementation
  38. public:
  39. void SetCredits(LPCTSTR lpszCredits, UINT uScrollTextX, 
  40. UINT uScrollTextWidth, UINT uScrollTextHeight);
  41. virtual ~CAboutCtrl();
  42. // Generated message map functions
  43. protected:
  44. CString m_strCredits;
  45. void Initialize();
  46. void AnimateLogo();
  47. void LoadPicture(int nResourceID, HDC &hDestinationDC, int &nWidth, int &nHeight, HDC hDC);
  48. void LoadCredits(HDC &hDestination, int nWidth, int nHeight, HDC hDC);
  49. //{{AFX_MSG(CAboutCtrl)
  50. afx_msg void OnPaint();
  51. afx_msg void OnTimer(UINT nIDEvent);
  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_ABOUTCTRL_H__B75B0B9E_367D_11D6_AB38_00D0B70C3D79__INCLUDED_)