mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00
[MSPAINT] Add const to SelectionModel methods (#4191)
Add const keywords to some methods of SelectionModel class. CORE-17931
This commit is contained in:
parent
ce54a8a5f2
commit
b5536e448a
2 changed files with 14 additions and 14 deletions
|
@ -224,12 +224,12 @@ void SelectionModel::RotateNTimes90Degrees(int iN)
|
|||
NotifyRefreshNeeded();
|
||||
}
|
||||
|
||||
HBITMAP SelectionModel::GetBitmap()
|
||||
HBITMAP SelectionModel::GetBitmap() const
|
||||
{
|
||||
return m_hBm;
|
||||
}
|
||||
|
||||
int SelectionModel::PtStackSize()
|
||||
int SelectionModel::PtStackSize() const
|
||||
{
|
||||
return m_iPtSP;
|
||||
}
|
||||
|
@ -253,7 +253,7 @@ void SelectionModel::SetSrcRectSizeToZero()
|
|||
m_rcSrc.bottom = m_rcSrc.top;
|
||||
}
|
||||
|
||||
BOOL SelectionModel::IsSrcRectSizeNonzero()
|
||||
BOOL SelectionModel::IsSrcRectSizeNonzero() const
|
||||
{
|
||||
return (RECT_WIDTH(m_rcSrc) != 0) && (RECT_HEIGHT(m_rcSrc) != 0);
|
||||
}
|
||||
|
@ -318,22 +318,22 @@ void SelectionModel::ModifyDestRect(POINT& ptDelta, int iAction)
|
|||
ptDelta.y -= ptDeltaUsed.y;
|
||||
}
|
||||
|
||||
LONG SelectionModel::GetDestRectWidth()
|
||||
LONG SelectionModel::GetDestRectWidth() const
|
||||
{
|
||||
return m_rcDest.right - m_rcDest.left;
|
||||
}
|
||||
|
||||
LONG SelectionModel::GetDestRectHeight()
|
||||
LONG SelectionModel::GetDestRectHeight() const
|
||||
{
|
||||
return m_rcDest.bottom - m_rcDest.top;
|
||||
}
|
||||
|
||||
LONG SelectionModel::GetDestRectLeft()
|
||||
LONG SelectionModel::GetDestRectLeft() const
|
||||
{
|
||||
return m_rcDest.left;
|
||||
}
|
||||
|
||||
LONG SelectionModel::GetDestRectTop()
|
||||
LONG SelectionModel::GetDestRectTop() const
|
||||
{
|
||||
return m_rcDest.top;
|
||||
}
|
||||
|
|
|
@ -54,17 +54,17 @@ public:
|
|||
void FlipHorizontally();
|
||||
void FlipVertically();
|
||||
void RotateNTimes90Degrees(int iN);
|
||||
HBITMAP GetBitmap();
|
||||
int PtStackSize();
|
||||
HBITMAP GetBitmap() const;
|
||||
int PtStackSize() const;
|
||||
void DrawFramePoly(HDC hDCImage);
|
||||
void SetSrcAndDestRectFromPoints(const POINT& ptFrom, const POINT& ptTo);
|
||||
void SetSrcRectSizeToZero();
|
||||
BOOL IsSrcRectSizeNonzero();
|
||||
BOOL IsSrcRectSizeNonzero() const;
|
||||
void ModifyDestRect(POINT& ptDelta, int iAction);
|
||||
LONG GetDestRectWidth();
|
||||
LONG GetDestRectHeight();
|
||||
LONG GetDestRectLeft();
|
||||
LONG GetDestRectTop();
|
||||
LONG GetDestRectWidth() const;
|
||||
LONG GetDestRectHeight() const;
|
||||
LONG GetDestRectLeft() const;
|
||||
LONG GetDestRectTop() const;
|
||||
void DrawTextToolText(HDC hDCImage, COLORREF crFg, COLORREF crBg, BOOL bBgTransparent = FALSE);
|
||||
|
||||
private:
|
||||
|
|
Loading…
Reference in a new issue