Lines Matching refs:mpOutputDevice

68 	mpOutputDevice = NULL;  in IMPL_XTYPEPROVIDER_START()
74 List* pLst = mpOutputDevice ? mpOutputDevice->GetUnoGraphicsList() : NULL; in ~VCLXGraphics()
83 mpOutputDevice = pOutDev; in SetOutputDevice()
90 DBG_ASSERT( !mpOutputDevice, "VCLXGraphics::Init allready has pOutDev !" ); in Init()
91 mpOutputDevice = pOutDev; in Init()
97 List* pLst = mpOutputDevice->GetUnoGraphicsList(); in Init()
99 pLst = mpOutputDevice->CreateUnoGraphicsList(); in Init()
105 if ( !mpOutputDevice ) in initAttrs()
108 maFont = mpOutputDevice->GetFont(); in initAttrs()
109 maTextColor = mpOutputDevice->GetTextColor(); /* COL_BLACK */ in initAttrs()
110 maTextFillColor = mpOutputDevice->GetTextFillColor(); /* COL_TRANSPARENT */ in initAttrs()
111 maLineColor = mpOutputDevice->GetLineColor(); /* COL_BLACK */ in initAttrs()
112 maFillColor = mpOutputDevice->GetFillColor(); /* COL_WHITE */ in initAttrs()
113 meRasterOp = mpOutputDevice->GetRasterOp(); /* ROP_OVERPAINT */ in initAttrs()
118 if(mpOutputDevice) in InitOutputDevice()
124 mpOutputDevice->SetFont( maFont ); in InitOutputDevice()
125 mpOutputDevice->SetTextColor( maTextColor ); in InitOutputDevice()
126 mpOutputDevice->SetTextFillColor( maTextFillColor ); in InitOutputDevice()
131 mpOutputDevice->SetLineColor( maLineColor ); in InitOutputDevice()
132 mpOutputDevice->SetFillColor( maFillColor ); in InitOutputDevice()
137 mpOutputDevice->SetRasterOp( meRasterOp ); in InitOutputDevice()
143 mpOutputDevice->SetClipRegion( *mpClipRegion ); in InitOutputDevice()
145 mpOutputDevice->SetClipRegion(); in InitOutputDevice()
154 if( !mxDevice.is() && mpOutputDevice ) in getDevice()
157 pDev->SetOutputDevice( mpOutputDevice ); in getDevice()
168 if( mpOutputDevice ) in getFontMetric()
170 mpOutputDevice->SetFont( maFont ); in getFontMetric()
171 aM = VCLUnoHelper::CreateFontMetric( mpOutputDevice->GetFontMetric() ); in getFontMetric()
303 if( mpOutputDevice ) in push()
304 mpOutputDevice->Push(); in push()
312 if( mpOutputDevice ) in pop()
313 mpOutputDevice->Pop(); in pop()
322 if( mpOutputDevice ) in clear()
325 mpOutputDevice->Erase( aVCLRect ); in clear()
333 if ( mpOutputDevice ) in copy()
340 mpOutputDevice->DrawOutDev( Point( nDestX, nDestY ), Size( nDestWidth, nDestHeight ), in copy()
350 if( mpOutputDevice ) in draw()
372mpOutputDevice->IntersectClipRegion(Region(Rectangle(nDestX, nDestY, nDestX + nDestWidth - 1, nDes… in draw()
374 mpOutputDevice->DrawBitmapEx( aPos, aSz, aBmpEx ); in draw()
382 if( mpOutputDevice ) in drawPixel()
385 mpOutputDevice->DrawPixel( Point( x, y ) ); in drawPixel()
393 if( mpOutputDevice ) in drawLine()
396 mpOutputDevice->DrawLine( Point( x1, y1 ), Point( x2, y2 ) ); in drawLine()
404 if( mpOutputDevice ) in drawRect()
407 mpOutputDevice->DrawRect( Rectangle( Point( x, y ), Size( width, height ) ) ); in drawRect()
415 if( mpOutputDevice ) in drawRoundedRect()
418mpOutputDevice->DrawRect( Rectangle( Point( x, y ), Size( width, height ) ), nHorzRound, nVertRoun… in drawRoundedRect()
426 if( mpOutputDevice ) in drawPolyLine()
429 mpOutputDevice->DrawPolyLine( VCLUnoHelper::CreatePolygon( DataX, DataY ) ); in drawPolyLine()
437 if( mpOutputDevice ) in drawPolygon()
440 mpOutputDevice->DrawPolygon( VCLUnoHelper::CreatePolygon( DataX, DataY ) ); in drawPolygon()
448 if( mpOutputDevice ) in drawPolyPolygon()
456 mpOutputDevice->DrawPolyPolygon( aPolyPoly ); in drawPolyPolygon()
464 if( mpOutputDevice ) in drawEllipse()
467 mpOutputDevice->DrawEllipse( Rectangle( Point( x, y ), Size( width, height ) ) ); in drawEllipse()
475 if( mpOutputDevice ) in drawArc()
478mpOutputDevice->DrawArc( Rectangle( Point( x, y ), Size( width, height ) ), Point( x1, y1 ), Point… in drawArc()
486 if( mpOutputDevice ) in drawPie()
489mpOutputDevice->DrawPie( Rectangle( Point( x, y ), Size( width, height ) ), Point( x1, y1 ), Point… in drawPie()
497 if( mpOutputDevice ) in drawChord()
500mpOutputDevice->DrawChord( Rectangle( Point( x, y ), Size( width, height ) ), Point( x1, y1 ), Poi… in drawChord()
508 if( mpOutputDevice ) in drawGradient()
519 mpOutputDevice->DrawGradient( Rectangle( Point( x, y ), Size( width, height ) ), aGradient ); in drawGradient()
527 if( mpOutputDevice ) in drawText()
530 mpOutputDevice->DrawText( Point( x, y ), rText ); in drawText()
538 if( mpOutputDevice ) in drawTextArray()
541 mpOutputDevice->DrawTextArray( Point( x, y ), rText, rLongs.getConstArray() ); in drawTextArray()
550 if( mpOutputDevice && xGraphic.is() ) in drawImage()
556 mpOutputDevice->DrawImage( Point( x, y ), Size( width, height ), aImage, nStyle ); in drawImage()