Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
1.6 KiB

  1. // ChildFrm.h : interface of the CChildFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_CHILDFRM_H__47783F71_48FC_40B7_94DC_B11386CF7100__INCLUDED_)
  5. #define AFX_CHILDFRM_H__47783F71_48FC_40B7_94DC_B11386CF7100__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CNcbrowseView;
  10. class CNCEditView;
  11. class CChildFrame : public CMDIChildWnd
  12. {
  13. DECLARE_DYNCREATE(CChildFrame)
  14. public:
  15. CChildFrame();
  16. // Attributes
  17. protected:
  18. CSplitterWnd m_wndSplitterTB;
  19. public:
  20. // Operations
  21. public:
  22. // Overrides
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CChildFrame)
  25. public:
  26. virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  27. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  28. //}}AFX_VIRTUAL
  29. // Implementation
  30. public:
  31. virtual ~CChildFrame();
  32. #ifdef _DEBUG
  33. virtual void AssertValid() const;
  34. virtual void Dump(CDumpContext& dc) const;
  35. #endif
  36. protected:
  37. CNcbrowseView* GetRightPane();
  38. CNCEditView* GetLowerPane();
  39. // Generated message map functions
  40. protected:
  41. //{{AFX_MSG(CChildFrame)
  42. // NOTE - the ClassWizard will add and remove member functions here.
  43. // DO NOT EDIT what you see in these blocks of generated code!
  44. //}}AFX_MSG
  45. afx_msg void OnUpdateViewStyles(CCmdUI* pCmdUI);
  46. afx_msg void OnViewStyle(UINT nCommandID);
  47. DECLARE_MESSAGE_MAP()
  48. };
  49. /////////////////////////////////////////////////////////////////////////////
  50. //{{AFX_INSERT_LOCATION}}
  51. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  52. #endif // !defined(AFX_CHILDFRM_H__47783F71_48FC_40B7_94DC_B11386CF7100__INCLUDED_)