home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / ole / wordpad / splash.h < prev    next >
C/C++ Source or Header  |  1998-03-26  |  1KB  |  61 lines

  1. // splash.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 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. /////////////////////////////////////////////////////////////////////////////
  14. // CBigIcon window
  15.  
  16. class CBigIcon : public CButton
  17. {
  18. // Attributes
  19. public:
  20.     CBitmap m_bitmap;
  21.     CSize m_sizeBitmap;
  22.  
  23. // Operations
  24. public:
  25.     void SizeToContent();
  26.  
  27. // Implementation
  28. protected:
  29.     virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
  30.  
  31.     //{{AFX_MSG(CBigIcon)
  32.     afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  33.     //}}AFX_MSG
  34.     DECLARE_MESSAGE_MAP()
  35. };
  36.  
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CSplash dialog
  39.  
  40. class CSplashWnd : public CDialog
  41. {
  42. // Construction
  43. public:
  44.     BOOL Create(CWnd* pParent);
  45.  
  46. // Dialog Data
  47.     //{{AFX_DATA(CSplashWnd)
  48.     enum { IDD = IDD_SPLASH };
  49.         // NOTE: the ClassWizard will add data members here
  50.     //}}AFX_DATA
  51.  
  52. // Implementation
  53. protected:
  54.     CBigIcon m_icon; // self-draw button
  55.  
  56.     // Generated message map functions
  57.     //{{AFX_MSG(CSplashWnd)
  58.     virtual BOOL OnInitDialog();
  59.     //}}AFX_MSG
  60. };
  61.