Lines Matching refs:getHDC

68 		hSrcDC = static_cast<WinSalGraphics*>(pSrcGraphics)->getHDC();  in copyBits()
70 hSrcDC = getHDC(); in copyBits()
80 BitBlt( getHDC(), in copyBits()
89 int nOldStretchMode = SetStretchBltMode( getHDC(), STRETCH_DELETESCANS ); in copyBits()
90 StretchBlt( getHDC(), in copyBits()
97 SetStretchBltMode( getHDC(), nOldStretchMode ); in copyBits()
288 nOldClipRgnType = GetClipRgn( getHDC(), hOldClipRgn ); in copyArea()
291 ExtSelectClipRgn( getHDC(), hInvalidateRgn, RGN_DIFF ); in copyArea()
297 BitBlt( getHDC(), in copyArea()
300 getHDC(), in copyArea()
308 SelectClipRgn( getHDC(), hOldClipRgn); in copyArea()
316 if ( GetClipRgn( getHDC(), hTempRgn ) == 1 ) in copyArea()
458 ImplDrawBitmap(getHDC(), rPosAry, static_cast<const WinSalBitmap&>(rSalBitmap), in drawBitmap()
553 HDC hDC = getHDC(); in drawBitmap()
635 bool bRet = AlphaBlend( getHDC(), nX, nY, nWidth, nHeight, in drawAlphaRect()
658 HDC hDC = getHDC(); in drawMask()
690 HDC hDC = getHDC(); in getBitmap()
723 COLORREF aWinCol = ::GetPixel( getHDC(), (int) nX, (int) nY ); in getPixel()
740 HPEN hOldPen = SelectPen( getHDC(), hDotPen ); in invert()
741 HBRUSH hOldBrush = SelectBrush( getHDC(), GetStockBrush( NULL_BRUSH ) ); in invert()
742 int nOldROP = SetROP2( getHDC(), R2_NOT ); in invert()
744 WIN_Rectangle( getHDC(), (int)nX, (int)nY, (int)(nX+nWidth), (int)(nY+nHeight) ); in invert()
746 SetROP2( getHDC(), nOldROP ); in invert()
747 SelectPen( getHDC(), hOldPen ); in invert()
748 SelectBrush( getHDC(), hOldBrush ); in invert()
761 COLORREF nOldTextColor = ::SetTextColor( getHDC(), 0 ); in invert()
762 HBRUSH hOldBrush = SelectBrush( getHDC(), pSalData->mh50Brush ); in invert()
763 PatBlt( getHDC(), nX, nY, nWidth, nHeight, PATINVERT ); in invert()
764 ::SetTextColor( getHDC(), nOldTextColor ); in invert()
765 SelectBrush( getHDC(), hOldBrush ); in invert()
774 ::InvertRect( getHDC(), &aRect ); in invert()
787 int nOldROP = SetROP2( getHDC(), R2_NOT ); in invert()
810 nOldTextColor = ::SetTextColor( getHDC(), 0 ); in invert()
811 hOldBrush = SelectBrush( getHDC(), hBrush ); in invert()
813 hOldPen = SelectPen( getHDC(), hPen ); in invert()
825 if ( !Polyline( getHDC(), pWinPtAry, (int)nPoints ) && (nPoints > MAX_64KSALPOINTS) ) in invert()
826 Polyline( getHDC(), pWinPtAry, MAX_64KSALPOINTS ); in invert()
830 if ( !WIN_Polygon( getHDC(), pWinPtAry, (int)nPoints ) && (nPoints > MAX_64KSALPOINTS) ) in invert()
831 WIN_Polygon( getHDC(), pWinPtAry, MAX_64KSALPOINTS ); in invert()
834 SetROP2( getHDC(), nOldROP ); in invert()
835 SelectPen( getHDC(), hOldPen ); in invert()
841 ::SetTextColor( getHDC(), nOldTextColor ); in invert()
842 SelectBrush( getHDC(), hOldBrush ); in invert()