SPLASH.H
上传用户:aakk678
上传日期:2022-07-09
资源大小:406k
文件大小:1k
源码类别:

界面编程

开发平台:

Visual C++

  1. // splash.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1997 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CBigIcon window
  14. class CBigIcon : public CButton
  15. {
  16. // Attributes
  17. public:
  18. CBitmap m_bitmap;
  19. CSize m_sizeBitmap;
  20. // Operations
  21. public:
  22. void SizeToContent();
  23. // Implementation
  24. protected:
  25. virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
  26. //{{AFX_MSG(CBigIcon)
  27. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  28. //}}AFX_MSG
  29. DECLARE_MESSAGE_MAP()
  30. };
  31. /////////////////////////////////////////////////////////////////////////////
  32. // CSplash dialog
  33. class CSplashWnd : public CDialog
  34. {
  35. // Construction
  36. public:
  37. BOOL Create(CWnd* pParent);
  38. // Dialog Data
  39. //{{AFX_DATA(CSplashWnd)
  40. enum { IDD = IDD_SPLASH };
  41. // NOTE: the ClassWizard will add data members here
  42. //}}AFX_DATA
  43. // Implementation
  44. protected:
  45. CBigIcon m_icon; // self-draw button
  46. // Generated message map functions
  47. //{{AFX_MSG(CSplashWnd)
  48. virtual BOOL OnInitDialog();
  49. //}}AFX_MSG
  50. };