GetClientRect和GetWindowRect封装
做GUI程序设计,经常需要获取窗口的大小,典型的代码示例如下:
CRect rcSize;
::GetClientRect( hWnd, rcSize );
::GetClientRect( hWnd, rcSize );
这段代码获取了hWnd窗口客户区的大小.用的多了,就觉得每次都要事先声明一个临时CRect变量很影响代码的
美观,如果您也有同感的话那么如下封装可能会适合你:
class CClientRect : public CRect
{
public:
CClientRect(HWND hWnd)
{
ATLASSERT(::IsWindow(hWnd));
::GetClientRect(hWnd, this);
}
};
{
public:
CClientRect(HWND hWnd)
{
ATLASSERT(::IsWindow(hWnd));
::GetClientRect(hWnd, this);
}
};
由于CClientRect从CRect继承,在需要CRect做参数的情况下,可以直接用CClientRect代替.
如果您的程序不能使用ATL和MFC的共享类CRect,那么可以让CClientRect从tagRECT数据结构派生,效果类似.
class CClientRect : public tagRECT
{
public:
CClientRect(HWND hWnd)
{
ATLASSERT(::IsWindow(hWnd));
::GetClientRect(hWnd, this);
}
};
{
public:
CClientRect(HWND hWnd)
{
ATLASSERT(::IsWindow(hWnd));
::GetClientRect(hWnd, this);
}
};
同上述风格,可以对GetWindowRect API函数做类似的封装,代码略