home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / common / msdev98 / bin / ide / devgal.pkg / TEMPLATE / 22331 < prev    next >
Encoding:
Text File  |  1998-06-18  |  1.2 KB  |  49 lines

  1. // $$VAL:FRAMEHEADER$$ : header file
  2. //
  3. // This file contains the mini-frame that controls modeless 
  4. // property sheet $$VAL:SHEETCLASS$$.
  5.  
  6. #ifndef $$VAL:FRAMEWRAPPER$$
  7. #define $$VAL:FRAMEWRAPPER$$
  8.  
  9. #include "$$VAL:SHEETHEADER$$"
  10.  
  11. /////////////////////////////////////////////////////////////////////////////
  12. // $$VAL:FRAMECLASS$$ frame
  13.  
  14. class $$VAL:FRAMECLASS$$ : public CMiniFrameWnd
  15. {
  16.     DECLARE_DYNCREATE($$VAL:FRAMECLASS$$)
  17. //Construction
  18. public:
  19.     $$VAL:FRAMECLASS$$();
  20.  
  21. // Attributes
  22. public:
  23.     $$VAL:SHEETCLASS$$* m_pModelessPropSheet;
  24.  
  25. // Operations
  26. public:
  27.  
  28. // Overrides
  29.     // ClassWizard generated virtual function overrides
  30.     //{{AFX_VIRTUAL($$VAL:FRAMECLASS$$)
  31.     //}}AFX_VIRTUAL
  32.  
  33. // Implementation
  34. public:
  35.     virtual ~$$VAL:FRAMECLASS$$();
  36.  
  37.     // Generated message map functions
  38.     //{{AFX_MSG($$VAL:FRAMECLASS$$)
  39.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  40.     afx_msg void OnClose();
  41.     afx_msg void OnSetFocus(CWnd* pOldWnd);
  42.     afx_msg void OnActivate(UINT nState, CWnd* pWndOther, BOOL bMinimized);
  43.     //}}AFX_MSG
  44.     DECLARE_MESSAGE_MAP()
  45. };
  46.  
  47. /////////////////////////////////////////////////////////////////////////////
  48. #endif    // $$VAL:FRAMEWRAPPER$$
  49.