ipframe.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:1k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // [!output INPLACE_FRAME_HEADER] : interface of the [!output INPLACE_FRAME_CLASS] class
  2. //
  3. #pragma once
  4. class [!output INPLACE_FRAME_CLASS] : public [!output INPLACE_FRAME_BASE_CLASS]
  5. {
  6. DECLARE_DYNCREATE([!output INPLACE_FRAME_CLASS])
  7. public:
  8. [!output INPLACE_FRAME_CLASS]();
  9. // Attributes
  10. public:
  11. // Operations
  12. public:
  13. // Overrides
  14. [!if DOCKING_TOOLBAR]
  15. public:
  16. virtual BOOL OnCreateControlBars(CFrameWnd* pWndFrame, CFrameWnd* pWndDoc);
  17. [!endif]
  18. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  19. // Implementation
  20. public:
  21. virtual ~[!output INPLACE_FRAME_CLASS]();
  22. #ifdef _DEBUG
  23. virtual void AssertValid() const;
  24. virtual void Dump(CDumpContext& dc) const;
  25. #endif
  26. protected:
  27. [!if DOCKING_TOOLBAR]
  28. CToolBar    m_wndToolBar;
  29. [!if TOOLBAR_STYLE_REBAR]
  30. CDialogBar m_wndDlgBar;
  31. CReBar m_wndReBar;
  32. [!endif]
  33. [!endif]
  34. COleDropTarget  m_dropTarget;
  35. COleResizeBar   m_wndResizeBar;
  36. // Generated message map functions
  37. protected:
  38. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  39. DECLARE_MESSAGE_MAP()
  40. };