umlentityinterface.h

来自「uml编辑器很牛」· C头文件 代码 · 共 28 行

H
28
字号
#ifndef _UMLENTITYINTERFACE_H_
#define _UMLENTITYINTERFACE_H_

#include "UMLEntity.h"
#include "UMLInterfacePropertyDialog.h"

class CUMLEntityInterface : public CUMLEntity
{
public:
	CUMLEntityInterface();
	virtual ~CUMLEntityInterface();

	virtual CDiagramEntity* Clone();
	static	CDiagramEntity* CreateFromString( const CString& str );
	virtual void Draw( CDC* dc, CRect rect );

	virtual int		GetLinkCode( CPoint point ) const;
	virtual void	DrawSelectionMarkers( CDC* dc, CRect rect ) const;
	virtual HCURSOR	GetCursor( int hit ) const;
	virtual CString	Export( UINT format = 0 ) const;

private:

	CUMLInterfacePropertyDialog	m_dlg;

};

#endif //_UMLENTITYINTERFACE_H_

⌨️ 快捷键说明

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