www.pudn.com > sancedit.rar > MainFrm.h
// MainFrm.h : interface of the CMainFrame class
//
#include "CoolDialogBar.h"
#include "ControlDialog.h"
#include "BrowseDlg.h"
#pragma once
class CMainFrame : public CFrameWnd
{
protected: // create from serialization only
CMainFrame();
DECLARE_DYNCREATE(CMainFrame)
// Attributes
public:
// Operations
public:
// Overrides
public:
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
// Implementation
public:
virtual ~CMainFrame();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected: // control bar embedded members
///////////////////////////////////////////////////////////////////////////////////////////////////////////////
CStatusBar m_wndStatusBar;
CToolBar m_wndToolBar;
CControlDialog m_WorldTreeDlg;
CBrowseDlg m_BrowseDlg;
CCoolDialogBar m_wndBrowseBar;
CCoolDialogBar m_wndWorldTreeBar;
// Generated message map functions
protected:
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
DECLARE_MESSAGE_MAP()
public:
void OnViewWorldTree(void);
void OnViewBrowse(void);
afx_msg void OnViewBrowser();
};