hxedctrl.h

来自「FX2 68013的控制面板源程序」· C头文件 代码 · 共 59 行

H
59
字号
////////////////////////////////////////////////////////////////////////////////
// HxEdCtrl.h : interface of the CHxEdCntrItem class
// $Header: /USB/Util/EzMr/HxEdCtrl.h 3     8/08/00 2:26p Tpm $
// Copyright (c) 2000 Cypress Semiconductor. May not be reproduced without permission.
// See the EzUsb Developer's Kit license agreement for more details.
////////////////////////////////////////////////////////////////////////////////


#if !defined(AFX_HXEDCNTR_H_INCLUDED_)
#define AFX_HXEDCNTR_H_INCLUDED_

#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000

class CHxEdDoc;
class CHxEdView;

class CHxEdCntrItem : public CRichEditCntrItem
{
	DECLARE_SERIAL(CHxEdCntrItem)

// Constructors
public:
	CHxEdCntrItem(REOBJECT* preo = NULL, CHxEdDoc* pContainer = NULL);
		// Note: pContainer is allowed to be NULL to enable IMPLEMENT_SERIALIZE.
		//  IMPLEMENT_SERIALIZE requires the class have a constructor with
		//  zero arguments.  Normally, OLE items are constructed with a
		//  non-NULL document pointer.

// Attributes
public:
	CHxEdDoc* GetDocument()
		{ return (CHxEdDoc*)CRichEditCntrItem::GetDocument(); }
	CHxEdView* GetActiveView()
		{ return (CHxEdView*)CRichEditCntrItem::GetActiveView(); }

	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CHxEdCntrItem)
	public:
	protected:
	//}}AFX_VIRTUAL

// Implementation
public:
	~CHxEdCntrItem();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif
};

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

//{{AFX_INSERT_LOCATION}}
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_HXEDCNTR_H_INCLUDED_)

⌨️ 快捷键说明

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