bcwnd.h

来自「1553B板卡的源代码,只有购买板卡才能得到的好资料」· C头文件 代码 · 共 77 行

H
77
字号
#if !defined(AFX_BCWND_H__F938D5FB_7EA1_4C8C_8CA2_C1423DB29505__INCLUDED_)
#define AFX_BCWND_H__F938D5FB_7EA1_4C8C_8CA2_C1423DB29505__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// BCWnd.h : header file
//
#include "msflexgrid.h"

/////////////////////////////////////////////////////////////////////////////
// CBCWnd frame

class CBCWnd : public CMDIChildWnd
{
	DECLARE_DYNCREATE(CBCWnd)
protected:
	CBCWnd();           // protected constructor used by dynamic creation

// Attributes
public:

// Operations
public:

	BOOL Create(LPCTSTR szTitle, LONG style /* = 0 */,
		const RECT& rect /* = rectDefault */,
		CMDIFrameWnd* parent /* = NULL */);



// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CBCWnd)
	//}}AFX_VIRTUAL

// Implementation
private:
	CToolBar    m_wndToolBar;
	CMSFlexGrid m_Grid;
private:
	ULONG MsgRecvCnt;
	BOOL isFileOptNow;
	BOOL isNeedRTDraw;
protected:
	virtual ~CBCWnd();

	static CMenu NEAR menu;     // menu for all BC windows
	// Generated message map functions
	//{{AFX_MSG(CBCWnd)
	afx_msg void OnMenuFileNew();
	afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
	afx_msg void OnBcSetup();
	afx_msg void OnBcMessage();
	afx_msg void OnBcRun();
	afx_msg void OnBcStop();
	afx_msg void OnBcSendFrame();
	afx_msg void OnBcClearview();
	afx_msg void OnBcAutorep();
	afx_msg void OnBcFrame();
	afx_msg void OnCMsgBcUpdate();
	afx_msg void OnSize(UINT nType, int cx, int cy);
	afx_msg void OnFileOpen();
	afx_msg void OnFileSave();
	afx_msg void OnMenuTime();
	afx_msg void OnMenuDio();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

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

#endif // !defined(AFX_BCWND_H__F938D5FB_7EA1_4C8C_8CA2_C1423DB29505__INCLUDED_)

⌨️ 快捷键说明

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