Home
last modified time | relevance | path

Searched refs:rGraphics (Results 1 – 23 of 23) sorted by relevance

/trunk/main/UnoControls/source/controls/
H A Dprogressbar.cxx380 if ( rGraphics.is () ) in impl_paint()
386 rGraphics->setFillColor ( m_nBackgroundColor ) ; in impl_paint()
387 rGraphics->setLineColor ( m_nBackgroundColor ) ; in impl_paint()
388 rGraphics->drawRect ( nX, nY, impl_getWidth(), impl_getHeight() ) ; in impl_paint()
391 rGraphics->setFillColor ( m_nForegroundColor ) ; in impl_paint()
392 rGraphics->setLineColor ( m_nForegroundColor ) ; in impl_paint()
409 rGraphics->drawRect (nBlockStart, nY+FREESPACE, m_aBlockSize.Width, m_aBlockSize.Height) ; in impl_paint()
434 rGraphics->setLineColor ( LINECOLOR_SHADOW ) ; in impl_paint()
435 rGraphics->drawLine ( nX, nY, impl_getWidth(), nY ) ; in impl_paint()
436 rGraphics->drawLine ( nX, nY, nX , impl_getHeight() ) ; in impl_paint()
[all …]
H A Dprogressmonitor.cxx678 if (rGraphics.is()) in impl_paint()
684 rGraphics->setLineColor ( LINECOLOR_SHADOW ) ; in impl_paint()
685 rGraphics->drawLine ( impl_getWidth()-1, impl_getHeight()-1, impl_getWidth()-1, nY ) ; in impl_paint()
686 rGraphics->drawLine ( impl_getWidth()-1, impl_getHeight()-1, nX , impl_getHeight()-1 ) ; in impl_paint()
688 rGraphics->setLineColor ( LINECOLOR_BRIGHT ) ; in impl_paint()
689 rGraphics->drawLine ( nX, nY, impl_getWidth(), nY ) ; in impl_paint()
690 rGraphics->drawLine ( nX, nY, nX , impl_getHeight() ) ; in impl_paint()
693 rGraphics->setLineColor ( LINECOLOR_SHADOW ) ; in impl_paint()
694 rGraphics->drawLine ( m_a3DLine.X, m_a3DLine.Y, m_a3DLine.X+m_a3DLine.Width, m_a3DLine.Y ) ; in impl_paint()
696 rGraphics->setLineColor ( LINECOLOR_BRIGHT ) ; in impl_paint()
[all …]
H A Dstatusindicator.cxx460 …tatusIndicator::impl_paint ( sal_Int32 nX, sal_Int32 nY, const Reference< XGraphics > & rGraphics ) in impl_paint() argument
464 if ( rGraphics.is () ) in impl_paint()
485 rGraphics->setLineColor ( LINECOLOR_BRIGHT ); in impl_paint()
486 rGraphics->drawLine ( nX, nY, impl_getWidth(), nY ); in impl_paint()
487 rGraphics->drawLine ( nX, nY, nX , impl_getHeight() ); in impl_paint()
489rGraphics->setLineColor ( LINECOLOR_SHADOW … in impl_paint()
490rGraphics->drawLine ( impl_getWidth()-1, impl_getHeight()-1, impl_getWidth()-1, nY … in impl_paint()
491rGraphics->drawLine ( impl_getWidth()-1, impl_getHeight()-1, nX , impl_getHeight… in impl_paint()
/trunk/main/canvas/source/directx/
H A Ddx_canvashelper_texturefill.cxx88 rGraphics->FillPath( &aBackgroundBrush, rFillPath.get() ); in fillLinearGradient()
155 if( Gdiplus::Ok != rGraphics->SetClip( rFillPath.get(), in fillLinearGradient()
180 if( Gdiplus::Ok != rGraphics->SetClip( &aClipPath, in fillLinearGradient()
192 rGraphics->FillRectangle( &aBrush, aBounds ); in fillLinearGradient()
224 rGraphics->FillPath( &aBackgroundBrush, pFillPath.get() ); in fillPolygonalGradient()
362 rGraphics->FillPath( &aFillBrush, &aCurrPath ); in fillPolygonalGradient()
366 rGraphics->SetSmoothingMode( eOldAAMode ); in fillPolygonalGradient()
424 rGraphics->DrawRectangle( &aPen, in fillPolygonalGradient()
444 fillLinearGradient( rGraphics, in fillGradient()
458 rGraphics, in fillGradient()
[all …]
H A Ddx_vcltools.cxx80 bool drawDIBits( const ::boost::shared_ptr< Gdiplus::Graphics >& rGraphics, in drawDIBits() argument
96 bRet = tools::drawDIBits( rGraphics, *pBI, (void*)pBits ); in drawDIBits()
110 bool drawVCLBitmap( const ::boost::shared_ptr< Gdiplus::Graphics >& rGraphics, in drawVCLBitmap() argument
133 return drawDIBits( rGraphics, in drawVCLBitmap()
142 return drawDIBits( rGraphics, in drawVCLBitmap()
486 bool drawVCLBitmapEx( const ::boost::shared_ptr< Gdiplus::Graphics >& rGraphics, in drawVCLBitmapEx() argument
492 return drawVCLBitmap( rGraphics, aBmp ); in drawVCLBitmapEx()
496 return drawRGBABits( rGraphics, in drawVCLBitmapEx()
502 bool drawVCLBitmapFromXBitmap( const ::boost::shared_ptr< Gdiplus::Graphics >& rGraphics, in drawVCLBitmapFromXBitmap() argument
516 return drawVCLBitmapEx( rGraphics, aBmpEx ); in drawVCLBitmapFromXBitmap()
H A Ddx_impltools.cxx117 void setupGraphics( Gdiplus::Graphics& rGraphics ) in setupGraphics() argument
121 rGraphics.SetCompositingQuality( Gdiplus::CompositingQualityHighSpeed ); in setupGraphics()
123 rGraphics.SetInterpolationMode( Gdiplus::InterpolationModeBilinear ); in setupGraphics()
135 rGraphics.SetSmoothingMode( Gdiplus::SmoothingModeAntiAlias ); in setupGraphics()
138 rGraphics.SetPageUnit(Gdiplus::UnitPixel); in setupGraphics()
506 bool drawGdiPlusBitmap( const GraphicsSharedPtr& rGraphics, in drawGdiPlusBitmap() argument
510 return (Gdiplus::Ok == rGraphics->DrawImage( rBitmap.get(), in drawGdiPlusBitmap()
514 bool drawDIBits( const GraphicsSharedPtr& rGraphics, in drawDIBits() argument
522 return drawGdiPlusBitmap( rGraphics, in drawDIBits()
526 bool drawRGBABits( const GraphicsSharedPtr& rGraphics, in drawRGBABits() argument
[all …]
H A Ddx_canvashelper.cxx719 void CanvasHelper::setupGraphicsState( GraphicsSharedPtr& rGraphics, in setupGraphicsState() argument
744 Gdiplus::Ok == rGraphics->SetTransform( &aMatrix ), in setupGraphicsState()
749 Gdiplus::Ok == rGraphics->ResetClip(), in setupGraphicsState()
760 Gdiplus::Ok == rGraphics->SetClip( aClipPath.get(), in setupGraphicsState()
782 Gdiplus::Ok == rGraphics->SetTransform( &aMatrix ), in setupGraphicsState()
793 Gdiplus::Ok == rGraphics->SetClip( aClipPath.get(), in setupGraphicsState()
801 Gdiplus::Ok == rGraphics->SetCompositingMode( eCompositing ), in setupGraphicsState()
H A Ddx_impltools.hxx77 void setupGraphics( Gdiplus::Graphics& rGraphics );
115 bool drawGdiPlusBitmap( const GraphicsSharedPtr& rGraphics,
117 bool drawDIBits( const ::boost::shared_ptr< Gdiplus::Graphics >& rGraphics,
121 bool drawRGBABits( const ::boost::shared_ptr< Gdiplus::Graphics >& rGraphics,
H A Ddx_textlayout_drawhelper.cxx105 const GraphicsSharedPtr& rGraphics, in drawText() argument
117 HDC hdc = rGraphics->GetHDC(); in drawText()
122 rGraphics.get(), in drawText()
H A Ddx_textlayout.cxx230 bool TextLayout::draw( const GraphicsSharedPtr& rGraphics, in draw() argument
243 rGraphics, in draw()
H A Ddx_vcltools.hxx54 bool drawVCLBitmapFromXBitmap( const ::boost::shared_ptr< Gdiplus::Graphics >& rGraphics,
H A Ddx_textlayout_drawhelper.hxx53 void drawText( const boost::shared_ptr<Gdiplus::Graphics>& rGraphics,
H A Ddx_textlayout.hxx89 bool draw( const GraphicsSharedPtr& rGraphics,
H A Ddx_canvashelper.hxx242 void setupGraphicsState( GraphicsSharedPtr& rGraphics,
/trunk/main/vcl/win/source/gdi/
H A Dsalgdi_gdiplus.cxx318 Gdiplus::Graphics& rGraphics, in paintToGdiPlus() argument
336 rGraphics.DrawImage( in paintToGdiPlus()
353 Gdiplus::Graphics& rGraphics, in setInterpolationMode() argument
364 rGraphics.SetInterpolationMode(Gdiplus::InterpolationModeInvalid); in setInterpolationMode()
368 rGraphics.SetInterpolationMode(Gdiplus::InterpolationModeDefault); in setInterpolationMode()
372 rGraphics.SetInterpolationMode(Gdiplus::InterpolationModeBicubic); in setInterpolationMode()
376 rGraphics.SetInterpolationMode(Gdiplus::InterpolationModeDefault); in setInterpolationMode()
H A Dwinlayout.cxx648 void SimpleWinLayout::DrawText( SalGraphics& rGraphics ) const
653 WinSalGraphics& rWinGraphics = static_cast<WinSalGraphics&>(rGraphics);
/trunk/main/vcl/os2/source/gdi/
H A Dos2layout.cxx580 void Os2SalLayout::DrawText( SalGraphics& rGraphics ) const
590 aPt.y = static_cast<Os2SalGraphics&>(rGraphics).mnHeight - aPos.Y();
594 if (static_cast<Os2SalGraphics&>(rGraphics).mbPrinter) {
598 rc = Ft2CharStringPosAtA( static_cast<Os2SalGraphics&>(rGraphics).mhPS,
603 rc = Ft2CharStringPosAtW( static_cast<Os2SalGraphics&>(rGraphics).mhPS,
610 …::DrawText HPS %08x PosAtW failed '%s'!\n",static_cast<Os2SalGraphics&>(rGraphics).mhPS,str.GetBuf…
613 rc = Ft2CharStringPosAtA( static_cast<Os2SalGraphics&>(rGraphics).mhPS,
/trunk/main/vcl/aqua/source/gdi/
H A Dctlayout.cxx238 void CTLayout::DrawText( SalGraphics& rGraphics ) const in DrawText()
240 AquaSalGraphics& rAquaGraphics = static_cast<AquaSalGraphics&>(rGraphics); in DrawText()
515 bool CTLayout::GetBoundRect( SalGraphics& rGraphics, Rectangle& rVCLRect ) const in GetBoundRect() argument
517 AquaSalGraphics& rAquaGraphics = static_cast<AquaSalGraphics&>(rGraphics); in GetBoundRect()
H A Dsalgdi.cxx432 void AquaSalGraphics::copyResolution( AquaSalGraphics& rGraphics ) in copyResolution() argument
434 if( !rGraphics.mnRealDPIY && rGraphics.mbWindow && rGraphics.mpFrame ) in copyResolution()
435 rGraphics.initResolution( rGraphics.mpFrame->getNSWindow() ); in copyResolution()
437 mnRealDPIX = rGraphics.mnRealDPIX; in copyResolution()
438 mnRealDPIY = rGraphics.mnRealDPIY; in copyResolution()
439 mfFakeDPIScale = rGraphics.mfFakeDPIScale; in copyResolution()
H A Datslayout.cxx362 void ATSLayout::DrawText( SalGraphics& rGraphics ) const in DrawText()
364 AquaSalGraphics& rAquaGraphics = static_cast<AquaSalGraphics&>(rGraphics); in DrawText()
/trunk/main/vcl/source/gdi/
H A Dsallayout.cxx2116 void MultiSalLayout::DrawText( SalGraphics& rGraphics ) const in DrawText()
2124 rLayout.DrawText( rGraphics ); in DrawText()
2291 bool MultiSalLayout::GetOutline( SalGraphics& rGraphics, in GetOutline() argument
2302 bRet |= rLayout.GetOutline( rGraphics, rPPV ); in GetOutline()
2311 bool MultiSalLayout::GetBoundRect( SalGraphics& rGraphics, Rectangle& rRect ) const in GetBoundRect() argument
2322 if( rLayout.GetBoundRect( rGraphics, aRectangle ) ) in GetBoundRect()
/trunk/main/sdext/source/minimizer/
H A Dgraphiccollector.hxx93 const GraphicSettings& rGraphicSettings, sal_Int32& rGraphics );
/trunk/main/UnoControls/source/inc/
H A Dstatusindicator.hxx523 …void impl_paint ( sal_Int32 nX, sal_Int32 nY, const UNO3_REFERENCE< UNO3_XGRAPHICS > & rGraphics );

Completed in 115 milliseconds