📄 rectlist.cpp
字号:
// RectList.cpp: implementation of the CRectList class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "LaoMapEdt.h"
#include "RectList.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CRectList::CRectList()
{
m_pNext = NULL;
}
CRectList::CRectList( int l, int t, int r, int b ) : CRect(l, t, r, b)
{
m_pNext = NULL;
}
CRectList::CRectList( const RECT& srcRect ) : CRect(srcRect)
{
m_pNext = NULL;
}
CRectList::CRectList( LPCRECT lpSrcRect ) : CRect(lpSrcRect)
{
m_pNext = NULL;
}
CRectList::CRectList( POINT point, SIZE size ) : CRect(point, size)
{
m_pNext = NULL;
}
CRectList::CRectList( POINT topLeft, POINT bottomRight ) : CRect(topLeft, bottomRight)
{
m_pNext = NULL;
}
CRectList::~CRectList()
{
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -