74 lines
1.9 KiB
C
74 lines
1.9 KiB
C
|
// MainFrm.h : interface of the CMainFrame class
|
||
|
//
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
#if !defined(AFX_MAINFRM_H__7F1D7310_0433_406F_8D82_205D723EAE2F__INCLUDED_)
|
||
|
#define AFX_MAINFRM_H__7F1D7310_0433_406F_8D82_205D723EAE2F__INCLUDED_
|
||
|
|
||
|
#if _MSC_VER > 1000
|
||
|
#pragma once
|
||
|
#endif // _MSC_VER > 1000
|
||
|
|
||
|
class CFileSpyView;
|
||
|
|
||
|
class CMainFrame : public CFrameWnd
|
||
|
{
|
||
|
|
||
|
protected: // create from serialization only
|
||
|
CMainFrame();
|
||
|
DECLARE_DYNCREATE(CMainFrame)
|
||
|
|
||
|
// Attributes
|
||
|
protected:
|
||
|
CSplitterWnd m_wndSplitter;
|
||
|
CSplitterWnd m_wndSplitter2;
|
||
|
public:
|
||
|
|
||
|
// Operations
|
||
|
public:
|
||
|
|
||
|
// Overrides
|
||
|
// ClassWizard generated virtual function overrides
|
||
|
//{{AFX_VIRTUAL(CMainFrame)
|
||
|
public:
|
||
|
virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
|
||
|
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
|
||
|
//}}AFX_VIRTUAL
|
||
|
|
||
|
// Implementation
|
||
|
public:
|
||
|
virtual ~CMainFrame();
|
||
|
CFileSpyView* GetRightPane();
|
||
|
#ifdef _DEBUG
|
||
|
virtual void AssertValid() const;
|
||
|
virtual void Dump(CDumpContext& dc) const;
|
||
|
#endif
|
||
|
|
||
|
protected: // control bar embedded members
|
||
|
CStatusBar m_wndStatusBar;
|
||
|
CToolBar m_wndToolBar;
|
||
|
CReBar m_wndReBar;
|
||
|
CDialogBar m_wndDlgBar;
|
||
|
|
||
|
// Generated message map functions
|
||
|
protected:
|
||
|
//{{AFX_MSG(CMainFrame)
|
||
|
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
|
||
|
afx_msg void OnDestroy();
|
||
|
afx_msg void OnEditFilters();
|
||
|
afx_msg void OnEditClearfsfilter();
|
||
|
afx_msg void OnEditClearfastio();
|
||
|
afx_msg void OnEditClearirp();
|
||
|
//}}AFX_MSG
|
||
|
afx_msg void OnUpdateViewStyles(CCmdUI* pCmdUI);
|
||
|
afx_msg void OnViewStyle(UINT nCommandID);
|
||
|
DECLARE_MESSAGE_MAP()
|
||
|
};
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
//{{AFX_INSERT_LOCATION}}
|
||
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
||
|
|
||
|
#endif // !defined(AFX_MAINFRM_H__7F1D7310_0433_406F_8D82_205D723EAE2F__INCLUDED_)
|