home *** CD-ROM | disk | FTP | other *** search
/ BUG 4 / BUGCD1997_05.BIN / aplic / visualj / vjtrial.exe / RCDATA / CABINET / mfcapwz.dll / TEMPLATE / FRAME.H < prev    next >
C/C++ Source or Header  |  1997-01-28  |  2KB  |  86 lines

  1. // $$frame_hfile$$.h : interface of the $$FRAME_CLASS$$ class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. #if !defined($$FILE_NAME_SYMBOL$$_INCLUDED_)
  6. #define $$FILE_NAME_SYMBOL$$_INCLUDED_
  7.  
  8. #if _MSC_VER >= 1000
  9. #pragma once
  10. #endif // _MSC_VER >= 1000
  11.  
  12. $$IF(PROJTYPE_MDI)
  13. class $$FRAME_CLASS$$ : public $$FRAME_BASE_CLASS$$
  14. {
  15.     DECLARE_DYNAMIC($$FRAME_CLASS$$)
  16. public:
  17.     $$FRAME_CLASS$$();
  18. $$ELSE
  19. class $$FRAME_CLASS$$ : public $$FRAME_BASE_CLASS$$
  20. {
  21. protected: // create from serialization only
  22.     $$FRAME_CLASS$$();
  23.     DECLARE_DYNCREATE($$FRAME_CLASS$$)
  24. $$ENDIF
  25.  
  26. // Attributes
  27. $$IF(SPLITTER_SDI)
  28. protected:
  29.     CSplitterWnd m_wndSplitter;
  30. $$ENDIF //SPLITTER_SDI
  31. public:
  32.  
  33. // Operations
  34. public:
  35.  
  36. // Overrides
  37.     // ClassWizard generated virtual function overrides
  38.     //{{AFX_VIRTUAL($$FRAME_CLASS$$)
  39. $$IF(SPLITTER_SDI || FRAME_STYLES)
  40.     public:
  41. $$ENDIF
  42. $$IF(SPLITTER_SDI)
  43.     virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  44. $$ENDIF
  45.     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  46.     //}}AFX_VIRTUAL
  47.  
  48. // Implementation
  49. public:
  50.     virtual ~$$FRAME_CLASS$$();
  51. #ifdef _DEBUG
  52.     virtual void AssertValid() const;
  53.     virtual void Dump(CDumpContext& dc) const;
  54. #endif
  55. $$IF(TOOLBAR || STATUSBAR)
  56.  
  57. protected:  // control bar embedded members
  58. $$IF(STATUSBAR)    
  59.     CStatusBar  m_wndStatusBar;
  60. $$ENDIF //STATUSBAR
  61. $$IF(TOOLBAR)
  62.     CToolBar    m_wndToolBar;
  63. $$ENDIF //TOOLBAR
  64. $$ENDIF //TOOLBAR || STATUSBAR
  65.  
  66. // Generated message map functions
  67. protected:
  68.     //{{AFX_MSG($$FRAME_CLASS$$)
  69. $$IF(TOOLBAR || STATUSBAR)
  70.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  71. $$ENDIF //TOOLBAR || STATUSBAR
  72. $$IF(VERBOSE)
  73.         // NOTE - the ClassWizard will add and remove member functions here.
  74.         //    DO NOT EDIT what you see in these blocks of generated code!
  75. $$ENDIF
  76.     //}}AFX_MSG
  77.     DECLARE_MESSAGE_MAP()
  78. };
  79.  
  80. /////////////////////////////////////////////////////////////////////////////
  81.  
  82. //{{AFX_INSERT_LOCATION}}
  83. // $$INSERT_LOCATION_COMMENT$$
  84.  
  85. #endif // !defined($$FILE_NAME_SYMBOL$$_INCLUDED_)
  86.