Home
last modified time | relevance | path

Searched refs:pOutDev (Results 26 – 50 of 121) sorted by relevance

12345

/trunk/main/vcl/inc/vcl/
H A Dgraph.hxx152 void Draw( OutputDevice* pOutDev,
154 void Draw( OutputDevice* pOutDev,
157 static void Draw( OutputDevice* pOutDev, const String& rText,
160 static void DrawEx( OutputDevice* pOutDev, const String& rText,
164 void StartAnimation( OutputDevice* pOutDev,
168 void StartAnimation( OutputDevice* pOutDev,
H A Dgdimtf.hxx102 OutputDevice* pOutDev; member in GDIMetaFile
182 void Record( OutputDevice* pOutDev );
186 void Play( OutputDevice* pOutDev, sal_uLong nPos = GDI_METAFILE_END );
187 void Play( OutputDevice* pOutDev, const Point& rPos,
/trunk/main/canvas/source/cairo/
H A Dcairo_canvasfont.cxx93 OutputDevice* pOutDev( mpRefDevice->getOutputDevice() ); in CanvasFont() local
95 if( pOutDev ) in CanvasFont()
97 const bool bOldMapState( pOutDev->IsMapModeEnabled() ); in CanvasFont()
98 pOutDev->EnableMapMode(sal_False); in CanvasFont()
100 const Size aSize = pOutDev->GetFontMetric( *maFont ).GetSize(); in CanvasFont()
112 pOutDev->EnableMapMode(bOldMapState); in CanvasFont()
H A Dcairo_canvas.cxx97 OutputDevice* pOutDev = reinterpret_cast<OutputDevice*>(nPtr); in initialize() local
99 ENSURE_ARG_OR_THROW( pOutDev != NULL, in initialize()
115 bool bHasXRender = IsCairoWorking(pOutDev); in initialize()
121 *pOutDev ); in initialize()
/trunk/main/vcl/source/gdi/
H A Dgdimtf.cxx197 pOutDev ( NULL ), in GDIMetaFile()
213 pOutDev ( NULL ), in GDIMetaFile()
228 Record( rMtf.pOutDev ); in GDIMetaFile()
266 pOutDev = NULL; in operator =()
272 Record( rMtf.pOutDev ); in operator =()
404 pOutDev = pOut; in Record()
544 Linker( pOutDev, sal_False ); in Pause()
549 Linker( pOutDev, sal_True ); in Pause()
565 Linker( pOutDev, sal_False ); in Stop()
744 Linker( pOutDev, sal_True ); in SaveStatus()
[all …]
H A Dimpgraph.cxx954 mpAnimation->Draw( pOutDev, rDestPt ); in ImplDraw()
958 maEx.Draw( pOutDev, rDestPt ); in ImplDraw()
964 ImplDraw( pOutDev, rDestPt, maMetaFile.GetPrefSize() ); in ImplDraw()
972 void ImpGraphic::ImplDraw( OutputDevice* pOutDev, in ImplDraw() argument
992 mpAnimation->Draw( pOutDev, rDestPt, rDestSize ); in ImplDraw()
996 maEx.Draw( pOutDev, rDestPt, rDestSize ); in ImplDraw()
1004 ( (ImpGraphic*) this )->maMetaFile.Play( pOutDev, rDestPt, rDestSize ); in ImplDraw()
1014 void ImpGraphic::ImplStartAnimation( OutputDevice* pOutDev, in ImplStartAnimation() argument
1020 mpAnimation->Start( pOutDev, rDestPt, nExtraData, pFirstFrameOutDev ); in ImplStartAnimation()
1035 void ImpGraphic::ImplStopAnimation( OutputDevice* pOutDev, long nExtraData ) in ImplStopAnimation() argument
[all …]
/trunk/main/dbaccess/source/ui/querydesign/
H A DConnectionLine.cxx301 void OConnectionLine::Draw( OutputDevice* pOutDev ) in Draw() argument
313 pOutDev->SetLineColor(Application::GetSettings().GetStyleSettings().GetHighlightColor()); in Draw()
315 pOutDev->SetLineColor(Application::GetSettings().GetStyleSettings().GetWindowTextColor()); in Draw()
325 pOutDev->DrawPolyLine(aPoly,aLineInfo); in Draw()
329 pOutDev->SetFillColor(Application::GetSettings().GetStyleSettings().GetWindowColor()); in Draw()
332 pOutDev->DrawRect( calcRect(m_aSourceDescrLinePos,aVector) ); in Draw()
333 pOutDev->DrawRect( calcRect( m_aDestDescrLinePos,aVector) ); in Draw()
/trunk/main/vcl/source/control/
H A Dscrbar.cxx713 DecorationView aDecoView( pOutDev ); in ImplDraw()
725 if( pOutDev->GetOutDevType() == OUTDEV_WINDOW ) in ImplDraw()
726 pWin = (Window*) pOutDev; in ImplDraw()
789 pOutDev->SetLineColor(); in ImplDraw()
803 pOutDev->DrawRect( maThumbRect ); in ImplDraw()
811 pOutDev->SetFillColor( rStyleSettings.GetShadowColor() ); in ImplDraw()
813 pOutDev->SetFillColor( rStyleSettings.GetCheckedColor() ); in ImplDraw()
814 pOutDev->DrawRect( maPage1Rect ); in ImplDraw()
819 pOutDev->SetFillColor( rStyleSettings.GetShadowColor() ); in ImplDraw()
821 pOutDev->SetFillColor( rStyleSettings.GetCheckedColor() ); in ImplDraw()
[all …]
/trunk/main/editeng/source/editeng/
H A Dediteng.cxx252 Draw( pOutDev, rOutRect, Point( 0, 0 ) ); in Draw()
261 if( pOutDev->GetConnectMetaFile() ) in Draw()
262 pOutDev->Push(); in Draw()
270 if( pOutDev->GetConnectMetaFile() ) in Draw()
271 pOutDev->Pop(); in Draw()
328 pOutDev->Push(); in Draw()
348 aPixSz = pOutDev->PixelToLogic( aPixSz ); in Draw()
352 pOutDev->IntersectClipRegion( aClipRect ); in Draw()
359 pOutDev->Pop(); in Draw()
361 pOutDev->SetClipRegion( aOldRegion ); in Draw()
[all …]
H A Deditattr.cxx148 void EditCharAttribUnderline::SetFont( SvxFont& rFont, OutputDevice* pOutDev ) in SetFont() argument
151 if ( pOutDev ) in SetFont()
152 pOutDev->SetTextLineColor( ((const SvxUnderlineItem*)GetItem())->GetColor() ); in SetFont()
164 void EditCharAttribOverline::SetFont( SvxFont& rFont, OutputDevice* pOutDev ) in SetFont() argument
167 if ( pOutDev ) in SetFont()
168 pOutDev->SetOverlineColor( ((const SvxOverlineItem*)GetItem())->GetColor() ); in SetFont()
/trunk/main/svx/source/form/
H A Dfmvwimp.cxx1220 OutputDevice* pOutDev = NULL; in implCreateFieldControl() local
1222 pOutDev = const_cast<OutputDevice*>(m_pView->GetActualOutDev()); in implCreateFieldControl()
1226 if( pPageView && !pOutDev ) in implCreateFieldControl()
1237 pOutDev = &rPageWindow.GetPaintWindow().GetOutputDevice(); in implCreateFieldControl()
1244 if ( !pOutDev ) in implCreateFieldControl()
1373 OutputDevice* pOutDev = NULL; in implCreateXFormsControl() local
1375 pOutDev = const_cast<OutputDevice*>(m_pView->GetActualOutDev()); in implCreateXFormsControl()
1379 if( pPageView && !pOutDev ) in implCreateXFormsControl()
1390 pOutDev = &rPageWindow.GetPaintWindow().GetOutputDevice(); in implCreateXFormsControl()
1397 if ( !pOutDev ) in implCreateXFormsControl()
[all …]
/trunk/main/svx/source/sdr/contact/
H A Dobjectcontactofpageview.cxx162 OutputDevice* pOutDev = TryToGetOutputDevice(); in DoProcessDisplay() local
163 …OSL_ENSURE(0 != pOutDev, "ObjectContactOfPageView without OutDev, someone has overloaded TryToGetO… in DoProcessDisplay()
170 pOutDev->Push(PUSH_CLIPREGION); in DoProcessDisplay()
171 pOutDev->IntersectClipRegion(rRedrawArea); in DoProcessDisplay()
255 pOutDev->SetLayoutMode(0); // reset, default is no BiDi/RTL in DoProcessDisplay()
272 pOutDev->Pop(); in DoProcessDisplay()
/trunk/main/editeng/source/outliner/
H A Doutliner.cxx1036 Font aOldFont = pOutDev->GetFont(); in PaintBullet()
1037 pOutDev->SetFont( aBulletFont ); in PaintBullet()
1075 pOutDev->SetFont( aRotatedFont ); in PaintBullet()
1083 pOutDev->SetLayoutMode( nLayoutMode ); in PaintBullet()
1087 const Font aSvxFont(pOutDev->GetFont()); in PaintBullet()
1089 pOutDev->GetTextArray( pPara->GetText(), pBuf ); in PaintBullet()
1105 pOutDev->DrawText( aTextPos, pPara->GetText() ); in PaintBullet()
1108 pOutDev->SetFont( aOldFont ); in PaintBullet()
1180 pOutDev->SetLineColor( Color( COL_BLACK ) ); in PaintBullet()
1181 pOutDev->DrawLine( aStartPos, aEndPos ); in PaintBullet()
[all …]
H A Doutlin2.cxx223 void Outliner::Draw( OutputDevice* pOutDev, const Rectangle& rOutRect ) in Draw() argument
226 pEditEngine->Draw( pOutDev, rOutRect ); in Draw()
229 void Outliner::Draw( OutputDevice* pOutDev, const Rectangle& rOutRect, const Point& rStartDocPos ) in Draw() argument
232 pEditEngine->Draw( pOutDev, rOutRect, rStartDocPos ); in Draw()
236 void Outliner::Draw( OutputDevice* pOutDev, const Point& rStartPos, short nOrientation ) in Draw() argument
239 pEditEngine->Draw( pOutDev, rStartPos, nOrientation ); in Draw()
/trunk/main/sd/source/ui/view/
H A Dclview.cxx48 OutputDevice* pOutDev, in ClientView() argument
50 : DrawView (pDocSh, pOutDev, pShell) in ClientView()
97 void ClientView::CompleteRedraw(OutputDevice* pOutDev, const Region& rReg, sdr::contact::ViewObject… in CompleteRedraw() argument
99 DrawView::CompleteRedraw(pOutDev, rReg, pRedirector); in CompleteRedraw()
H A Ddrawview.cxx100 DrawView::DrawView( DrawDocShell* pDocSh, OutputDevice* pOutDev, DrawViewShell* pShell) in DrawView() argument
101 : ::sd::View(pDocSh->GetDoc(), pOutDev, pShell) in DrawView()
488 void DrawView::CompleteRedraw(OutputDevice* pOutDev, const Region& rReg, sdr::contact::ViewObjectCo… in CompleteRedraw() argument
505 if( (pShowWindow == pOutDev) || (xSlideshow->getAnimationMode() == ANIMATIONMODE_PREVIEW) ) in CompleteRedraw()
507 if( pShowWindow == pOutDev ) in CompleteRedraw()
516 ::sd::View::CompleteRedraw(pOutDev, rReg, pRedirector); in CompleteRedraw()
H A Dsdview4.cxx186 ::OutputDevice* pOutDev = 0; in InsertGraphic()
188 pOutDev = mpViewSh->GetActiveWindow(); in InsertGraphic()
190 if( !pOutDev ) in InsertGraphic()
191 pOutDev = Application::GetDefaultDevice(); in InsertGraphic()
193 if( pOutDev ) in InsertGraphic()
194 aSize = pOutDev->PixelToLogic( rGraphic.GetPrefSize(), MAP_100TH_MM ); in InsertGraphic()
H A Dsdview.cxx122 View::View(SdDrawDocument* pDrawDoc, OutputDevice* pOutDev, in View() argument
124 : FmFormView(pDrawDoc, pOutDev), in View()
508 void View::CompleteRedraw(OutputDevice* pOutDev, const Region& rReg, sdr::contact::ViewObjectContac… in CompleteRedraw() argument
523 if(bScreenDisplay && pOutDev && OUTDEV_PRINTER == pOutDev->GetOutDevType()) in CompleteRedraw()
531 if(bScreenDisplay && pOutDev && pOutDev->GetPDFWriter()) in CompleteRedraw()
544 FmFormView::CompleteRedraw(pOutDev, rReg, pRedirector ? pRedirector : &aViewRedirector); in CompleteRedraw()
553 pRec->mpOut = pOutDev; in CompleteRedraw()
/trunk/main/sw/source/core/docnode/
H A Dndnotxt.cxx161 OutputDevice* pOutDev = in HasContour() local
173 rPoly[i] = pOutDev->LogicToPixel( rPoly[i], in HasContour()
177 rPoly[i] = pOutDev->PixelToLogic( rPoly[i], aGrfMap ); in HasContour()
181 rPoly[i] = Point( rPoly[i].X() * pOutDev->ImplGetDPIX() / nGrfDPIx, in HasContour()
182 rPoly[i].Y() * pOutDev->ImplGetDPIY() / nGrfDPIy ); in HasContour()
/trunk/main/sw/source/core/bastyp/
H A Dswtypes.cxx90 Size GetGraphicSizeTwip( const Graphic& rGraphic, OutputDevice* pOutDev ) in GetGraphicSizeTwip() argument
96 if( !pOutDev ) in GetGraphicSizeTwip()
97 pOutDev = Application::GetDefaultDevice(); in GetGraphicSizeTwip()
98 aSize = pOutDev->PixelToLogic( aSize, aMapTwip ); in GetGraphicSizeTwip()
/trunk/main/vcl/inc/
H A Dbrdwin.hxx257 …virtual void DrawWindow( sal_uInt16 nDrawFlags, OutputDevice* pOutDev = NULL, const Point* pOffs…
284 virtual void DrawWindow( sal_uInt16 nDrawFlags, OutputDevice* pOutDev, const Point* pOffset );
309 virtual void Init( OutputDevice* pOutDev, long nWidth, long nHeight );
313 virtual void DrawWindow( sal_uInt16 nDrawFlags, OutputDevice* pOutDev, const Point* pOffset );
344 virtual void DrawWindow( sal_uInt16 nDrawFlags, OutputDevice* pOutDev, const Point* pOffset );
H A Dimpgraph.hxx119 void ImplDraw( OutputDevice* pOutDev,
121 void ImplDraw( OutputDevice* pOutDev,
125 void ImplStartAnimation( OutputDevice* pOutDev,
129 void ImplStartAnimation( OutputDevice* pOutDev,
/trunk/main/toolkit/source/helper/
H A Dunowrapper.cxx191 …o::Reference< ::com::sun::star::awt::XGraphics> UnoWrapper::CreateGraphics( OutputDevice* pOutDev ) in CreateGraphics() argument
196 pGrf->Init( pOutDev ); in CreateGraphics()
200 void UnoWrapper::ReleaseAllGraphics( OutputDevice* pOutDev ) in ReleaseAllGraphics() argument
202 List* pLst = pOutDev->GetUnoGraphicsList(); in ReleaseAllGraphics()
/trunk/main/canvas/source/vcl/
H A Dcanvas.cxx107 OutputDevice* pOutDev = reinterpret_cast<OutputDevice*>(nPtr); in initialize() local
108 if( !pOutDev ) in initialize()
114 OutDevProviderSharedPtr pOutdevProvider( new OutDevHolder(*pOutDev) ); in initialize()
H A Dspritedevicehelper.cxx46 void SpriteDeviceHelper::init( const OutDevProviderSharedPtr& pOutDev ) in init() argument
48 DeviceHelper::init(pOutDev); in init()
51 OutputDevice& rOutDev( pOutDev->getOutDev() ); in init()

Completed in 112 milliseconds

12345