📄 umlentityinterface.h
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -