home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / general / propdlg / minifrm.h < prev    next >
C/C++ Source or Header  |  1998-03-26  |  975b  |  33 lines

  1. // minifrm.h : interface of the CShapePropSheetFrame class
  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. class CShapePropSheetFrame : public CMiniFrameWnd
  14. {
  15. // Constructor
  16. public:
  17.     CShapePropSheetFrame();
  18.  
  19. // Attributes
  20. public:
  21.     CModelessShapePropSheet* m_pModelessShapePropSheet;
  22.  
  23. // Handlers
  24. protected:
  25.     //{{AFX_MSG(CShapePropSheetFrame)
  26.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  27.     afx_msg void OnClose();
  28.     afx_msg void OnSetFocus(CWnd* pOldWnd);
  29.     afx_msg void OnActivate(UINT nState, CWnd* pWndOther, BOOL bMinimized);
  30.     //}}AFX_MSG
  31.     DECLARE_MESSAGE_MAP()
  32. };
  33.