Home
last modified time | relevance | path

Searched refs:hDCImage (Results 1 – 2 of 2) sorted by relevance

/reactos/base/applications/mspaint/
H A Dselectionmodel.h41 void DrawBackground(HDC hDCImage, COLORREF crBg);
42 void DrawBackgroundPoly(HDC hDCImage, COLORREF crBg);
43 void DrawBackgroundRect(HDC hDCImage, COLORREF crBg);
45 …void DrawSelection(HDC hDCImage, COLORREF crBg, BOOL bBgTransparent, const CRect& rc, HBITMAP hbm);
47 void DrawSelection(HDC hDCImage, COLORREF crBg, BOOL bBgTransparent) in DrawSelection() argument
49 return DrawSelection(hDCImage, crBg, bBgTransparent, m_rc); in DrawSelection()
52 void DrawSelection(HDC hDCImage, COLORREF crBg, BOOL bBgTransparent, const CRect& rc) in DrawSelection() argument
54 return DrawSelection(hDCImage, crBg, bBgTransparent, rc, m_hbmColor); in DrawSelection()
H A Dselectionmodel.cpp33 void SelectionModel::DrawBackgroundPoly(HDC hDCImage, COLORREF crBg) in DrawBackgroundPoly() argument
38 HGDIOBJ hbrOld = ::SelectObject(hDCImage, ::GetStockObject(DC_BRUSH)); in DrawBackgroundPoly()
39 ::SetDCBrushColor(hDCImage, crBg); in DrawBackgroundPoly()
40 ::MaskBlt(hDCImage, m_rcOld.left, m_rcOld.top, m_rcOld.Width(), m_rcOld.Height(), in DrawBackgroundPoly()
42 ::SelectObject(hDCImage, hbrOld); in DrawBackgroundPoly()
45 void SelectionModel::DrawBackgroundRect(HDC hDCImage, COLORREF crBg) in DrawBackgroundRect() argument
53 void SelectionModel::DrawBackground(HDC hDCImage, COLORREF crBg) in DrawBackground() argument
56 DrawBackgroundPoly(hDCImage, crBg); in DrawBackground()
58 DrawBackgroundRect(hDCImage, crBg); in DrawBackground()
74 HDC hMemDC = CreateCompatibleDC(hDCImage); in DrawSelection()
[all …]