mainfrm.h

来自「某个实验事编写粗糙集智能信息处理的程序」· C头文件 代码 · 共 71 行

H
71
字号
// MainFrm.h : interface of the CMainFrame class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_MAINFRM_H__F8D53C09_14C3_11D5_BFEA_0040054EF889__INCLUDED_)
#define AFX_MAINFRM_H__F8D53C09_14C3_11D5_BFEA_0040054EF889__INCLUDED_
 
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "mdiclient.h"
class CMainFrame : public CMDIFrameWnd
{
	DECLARE_DYNAMIC(CMainFrame)
public:
	CMainFrame();
private:
	CMDIClient m_MDIClient;
// Attributes
public:

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CMainFrame)
	public:
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
	virtual BOOL PreTranslateMessage(MSG* pMsg);
	//}}AFX_VIRTUAL

// 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;
public:
	void EnableToolBar(bool value);
	CToolBar* GetToolBar(){return & m_wndToolBar;}
// Generated message map functions
protected:
	void OnHelpFinder(void);
	//{{AFX_MSG(CMainFrame)
	afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
	afx_msg void OnSize(UINT nType, int cx, int cy);
	afx_msg void OnClose();
	afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo);
	afx_msg void OnUpdateOpenDb(CCmdUI* pCmdUI);
	afx_msg void OnUpdateOpenDatabase(CCmdUI* pCmdUI);
	afx_msg void OnOpenDatabase();
	//}}AFX_MSG
	afx_msg void OnPerformFinished();
	afx_msg void OnKylinOpenFile();
	DECLARE_MESSAGE_MAP()
};

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_MAINFRM_H__F8D53C09_14C3_11D5_BFEA_0040054EF889__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?