| /trunk/main/vcl/source/window/ |
| H A D | decoview.cxx | 43 static void ImplDrawSymbol( OutputDevice* pDev, const Rectangle& rRect, in ImplDrawSymbol() argument 75 pDev->DrawRect( Rectangle( nCenterX, nTop, nCenterX, nBottom ) ); in ImplDrawSymbol() 81 pDev->DrawRect( Rectangle( nTemp, nTop, nTemp, nBottom ) ); in ImplDrawSymbol() 83 pDev->DrawRect( Rectangle( nTemp, nTop, nTemp, nBottom ) ); in ImplDrawSymbol() 86 pDev->DrawRect( Rectangle( nCenterX-n4, nBottom, in ImplDrawSymbol() 100 pDev->DrawRect( Rectangle( nCenterX, nTop, nCenterX, nBottom ) ); in ImplDrawSymbol() 106 pDev->DrawRect( Rectangle( nTemp, nTop, nTemp, nBottom ) ); in ImplDrawSymbol() 108 pDev->DrawRect( Rectangle( nTemp, nTop, nTemp, nBottom ) ); in ImplDrawSymbol() 111 pDev->DrawRect( Rectangle( nCenterX-n4, nTop-n2, in ImplDrawSymbol() 125 pDev->DrawRect( Rectangle( nLeft, nCenterY, nRight, nCenterY ) ); in ImplDrawSymbol() [all …]
|
| H A D | tabpage.cxx | 163 void TabPage::Draw( OutputDevice* pDev, const Point& rPos, const Size& rSize, sal_uLong ) in Draw() argument 165 Point aPos = pDev->LogicToPixel( rPos ); in Draw() 166 Size aSize = pDev->LogicToPixel( rSize ); in Draw() 172 pDev->Push(); in Draw() 173 pDev->SetMapMode(); in Draw() 174 pDev->SetLineColor(); in Draw() 177 pDev->DrawBitmapEx( aPos, aSize, aWallpaper.GetBitmap() ); in Draw() 181 pDev->SetFillColor( GetSettings().GetStyleSettings().GetDialogColor() ); in Draw() 183 pDev->SetFillColor( aWallpaper.GetColor() ); in Draw() 184 pDev->DrawRect( Rectangle( aPos, aSize ) ); in Draw() [all …]
|
| H A D | brdwin.cxx | 112 static void ImplDrawBrdWinSymbol( OutputDevice* pDev, in ImplDrawBrdWinSymbol() argument 116 DecorationView aDecoView( pDev ); in ImplDrawBrdWinSymbol() 120 pDev->GetSettings().GetStyleSettings().GetButtonTextColor(), 0 ); in ImplDrawBrdWinSymbol() 125 static void ImplDrawBrdWinSymbolButton( OutputDevice* pDev, in ImplDrawBrdWinSymbolButton() argument 133 Window *pWin = dynamic_cast< Window* >(pDev); in ImplDrawBrdWinSymbolButton() 139 pWin->SetFillColor( pDev->GetSettings().GetStyleSettings().GetWindowColor() ); in ImplDrawBrdWinSymbolButton() 153 DecorationView aDecoView( pDev ); in ImplDrawBrdWinSymbolButton() 156 ImplDrawBrdWinSymbol( pDev, aTempRect, eSymbol ); in ImplDrawBrdWinSymbolButton() 1082 void ImplSmallBorderWindowView::Init( OutputDevice* pDev, long nWidth, long nHeight ) in Init() argument 1084 mpOutDev = pDev; in Init() [all …]
|
| /trunk/main/svx/source/sidebar/tools/ |
| H A D | ValueSetWithTextControl.cxx | 167 OutputDevice* pDev = rUDEvt.GetDevice(); in UserDraw() local 168 pDev->Push( PUSH_ALL ); in UserDraw() 188 … pDev->SetFillColor( sfx2::sidebar::Theme::GetColor( sfx2::sidebar::Theme::Color_Highlight ) ); in UserDraw() 189 pDev->DrawRect(aBackRect); in UserDraw() 193 pDev->SetFillColor( COL_TRANSPARENT ); in UserDraw() 194 pDev->DrawRect(aRect); in UserDraw() 221 pDev->DrawImage( aImgStart, *pImage ); in UserDraw() 224 pDev->SetFont(aFont); in UserDraw() 225 pDev->DrawText(aStrRect, maItems[nItemId-1].maItemText, TEXT_DRAW_ENDELLIPSIS); in UserDraw() 233 pDev->SetFont(aFont); in UserDraw() [all …]
|
| /trunk/main/sc/source/ui/sidebar/ |
| H A D | CellLineStyleValueSet.cxx | 89 OutputDevice* pDev = rUDEvt.GetDevice(); in UserDraw() local 96 Font aOldFont = pDev->GetFont(); in UserDraw() 97 Color aOldColor = pDev->GetLineColor(); in UserDraw() 98 Color aOldFillColor = pDev->GetFillColor(); in UserDraw() 116 pDev->SetFillColor(aBackColor); in UserDraw() 117 pDev->DrawRect(aBackRect); in UserDraw() 121 pDev->SetFillColor( COL_TRANSPARENT ); in UserDraw() 122 pDev->DrawRect(aRect); in UserDraw() 131 pDev->SetFont(aFont); in UserDraw() 133 …pDev->DrawText(aStart, strUnit[ nItemId - 1 ]); // can't set TEXT_DRAW_ENDELLIPSIS here, or the te… in UserDraw() [all …]
|
| /trunk/main/vcl/source/control/ |
| H A D | group.cxx | 130 void GroupBox::ImplDraw( OutputDevice* pDev, sal_uLong nDrawFlags, in ImplDraw() argument 171 aRect = pDev->GetTextRect( aRect, aText, nTextStyle ); in ImplDraw() 180 pDev->SetLineColor( Color( COL_BLACK ) ); in ImplDraw() 182 pDev->SetLineColor( rStyleSettings.GetShadowColor() ); in ImplDraw() 185 pDev->DrawLine( Point( rPos.X(), nTop ), Point( rPos.X()+rSize.Width()-2, nTop ) ); in ImplDraw() 188 pDev->DrawLine( Point( rPos.X(), nTop ), Point( aRect.Left()-nTextOff, nTop ) ); in ImplDraw() 189 … pDev->DrawLine( Point( aRect.Right()+nTextOff, nTop ), Point( rPos.X()+rSize.Width()-2, nTop ) ); in ImplDraw() 191 pDev->DrawLine( Point( rPos.X(), nTop ), Point( rPos.X(), rPos.Y()+rSize.Height()-2 ) ); in ImplDraw() 192 …pDev->DrawLine( Point( rPos.X(), rPos.Y()+rSize.Height()-2 ), Point( rPos.X()+rSize.Width()-2, rPo… in ImplDraw() 193 …pDev->DrawLine( Point( rPos.X()+rSize.Width()-2, rPos.Y()+rSize.Height()-2 ), Point( rPos.X()+rSiz… in ImplDraw() [all …]
|
| H A D | button.cxx | 364 void Button::ImplDrawAlignedImage( OutputDevice* pDev, Point& rPos, in ImplDrawAlignedImage() argument 404 DrawControlText( *pDev, aOutRect, aText, nTextStyle, pVector, pDisplayText ); in ImplDrawAlignedImage() 426 if ( pBitmapEx && ( pDev->GetOutDevType() == OUTDEV_PRINTER ) ) in ImplDrawAlignedImage() 432 aImageSize = pDev->LogicToPixel( aImageSize, aMap100thMM ); in ImplDrawAlignedImage() 456 nSymbolHeight = pDev->GetTextHeight(); in ImplDrawAlignedImage() 496 aRect = pDev->GetTextRect( aRect, aText, nTextStyle ); in ImplDrawAlignedImage() 639 if ( pBitmapEx && ( pDev->GetOutDevType() == OUTDEV_PRINTER ) ) in ImplDrawAlignedImage() 643 pBitmapEx->Draw( pDev, aImagePos, aImageSize /*, nStyle*/ ); in ImplDrawAlignedImage() 648 pDev->DrawImage( aImagePos, aImageSize, *pImage, nStyle ); in ImplDrawAlignedImage() 650 pDev->DrawImage( aImagePos, *pImage, nStyle ); in ImplDrawAlignedImage() [all …]
|
| H A D | fixed.cxx | 224 void FixedText::ImplDraw( OutputDevice* pDev, sal_uLong nDrawFlags, in ImplDraw() argument 264 DrawControlText( *pDev, aRect, aText, nTextStyle, in ImplDraw() 279 void FixedText::Draw( OutputDevice* pDev, const Point& rPos, const Size& rSize, in Draw() argument 284 Point aPos = pDev->LogicToPixel( rPos ); in Draw() 285 Size aSize = pDev->LogicToPixel( rSize ); in Draw() 286 Font aFont = GetDrawPixelFont( pDev ); in Draw() 288 pDev->Push(); in Draw() 289 pDev->SetMapMode(); in Draw() 290 pDev->SetFont( aFont ); in Draw() 292 pDev->SetTextColor( Color( COL_BLACK ) ); in Draw() [all …]
|
| H A D | lstbox.cxx | 402 void ListBox::Draw( OutputDevice* pDev, const Point& rPos, const Size& rSize, sal_uLong nFlags ) in Draw() argument 406 Point aPos = pDev->LogicToPixel( rPos ); in Draw() 407 Size aSize = pDev->LogicToPixel( rSize ); in Draw() 408 Font aFont = mpImplLB->GetMainWindow()->GetDrawPixelFont( pDev ); in Draw() 409 OutDevType eOutDevType = pDev->GetOutDevType(); in Draw() 411 pDev->Push(); in Draw() 412 pDev->SetMapMode(); in Draw() 413 pDev->SetFont( aFont ); in Draw() 414 pDev->SetTextFillColor(); in Draw() 417 pDev->SetLineColor(); in Draw() [all …]
|
| H A D | spinfld.cxx | 671 void SpinField::ImplCalcButtonAreas( OutputDevice* pDev, const Size& rOutSz, Rectangle& rDDArea, Re… in ImplCalcButtonAreas() argument 673 const StyleSettings& rStyleSettings = pDev->GetSettings().GetStyleSettings(); in ImplCalcButtonAreas() 681 nW = GetDrawPixel( pDev, nW ); in ImplCalcButtonAreas() 703 if ( (pDev->GetOutDevType() == OUTDEV_WINDOW) && in ImplCalcButtonAreas() 708 Window *pWin = (Window*) pDev; in ImplCalcButtonAreas() 741 aSize.Width() -= CalcZoom( GetDrawPixel( pDev, rStyleSettings.GetSpinSize() ) ); in ImplCalcButtonAreas() 1031 void SpinField::Draw( OutputDevice* pDev, const Point& rPos, const Size& rSize, sal_uLong nFlags ) in Draw() argument 1033 Edit::Draw( pDev, rPos, rSize, nFlags ); in Draw() 1038 Point aPos = pDev->LogicToPixel( rPos ); in Draw() 1039 Size aSize = pDev->LogicToPixel( rSize ); in Draw() [all …]
|
| /trunk/main/sc/source/ui/view/ |
| H A D | output.cxx | 141 pDev( pNewDev ), in ScOutputData() 223 if ( pRefDevice == pDev ) in SetContentDevice() 225 if ( pFmtDevice == pDev ) in SetContentDevice() 227 pDev = pContentDev; in SetContentDevice() 314 Size aOnePixel = pDev->PixelToLogic(Size(1,1)); in DrawGrid() 335 pDev->SetLineColor( aGridColor ); in DrawGrid() 336 ScGridMerger aGrid( pDev, nOneX, nOneY ); in DrawGrid() 372 pDev->SetLineColor( (nBreak & BREAK_MANUAL) ? aManualColor : in DrawGrid() 501 pDev->SetLineColor( (nBreak & BREAK_MANUAL) ? aManualColor : in DrawGrid() 784 Size aOnePixel = pDev->PixelToLogic(Size(1,1)); in DrawBackground() [all …]
|
| H A D | printfun.cxx | 191 pDev->SetMapMode(MAP_PIXEL); in Construct() 243 pDev = pPrinter; in ScPrintFunc() 266 pDev = pOutDev; in ScPrintFunc() 281 pDev = pOutDev; in ScPrintFunc() 410 void ScPrintFunc::DrawToDev( ScDocument* pDoc, OutputDevice* pDev, double /* nPrintFactor */, in DrawToDev() argument 437 MapMode aMode = pDev->GetMapMode(); in DrawToDev() 442 aRect = Rectangle( Point(), pDev->GetOutputSize() ); in DrawToDev() 526 ScOutputData aOutputData( pDev, OUTTYPE_PRINTER, aTabInfo, pDoc, nTab, in DrawToDev() 538 pDrawView = new FmFormView( pModel, pDev ); in DrawToDev() 546 if ( bMetaFile && pDev->GetOutDevType() == OUTDEV_VIRDEV ) in DrawToDev() [all …]
|
| H A D | output3.cxx | 97 MapMode aOldMode = pDev->GetMapMode(); in PrePrintDrawingLayer() 99 …pDev->SetMapMode( MapMode( MAP_100TH_MM, aMMOffset, aOldMode.GetScaleX(), aOldMode.GetScaleY() ) ); in PrePrintDrawingLayer() 105 mpTargetPaintWindow = pLocalDrawView->BeginDrawLayers(pDev, aRectRegion, true); in PrePrintDrawingLayer() 109 pDev->SetMapMode( aOldMode ); in PrePrintDrawingLayer() 121 MapMode aOldMode = pDev->GetMapMode(); in PostPrintDrawingLayer() 125 …pDev->SetMapMode( MapMode( MAP_100TH_MM, rMMOffset, aOldMode.GetScaleX(), aOldMode.GetScaleY() ) ); in PostPrintDrawingLayer() 143 pDev->SetMapMode( aOldMode ); in PostPrintDrawingLayer() 169 MapMode aOldMode = pDev->GetMapMode(); in PrintDrawingLayer() 173 …pDev->SetMapMode( MapMode( MAP_100TH_MM, rMMOffset, aOldMode.GetScaleX(), aOldMode.GetScaleY() ) ); in PrintDrawingLayer() 181 pDev->SetMapMode( aOldMode ); in PrintDrawingLayer() [all …]
|
| /trunk/main/sfx2/source/doc/ |
| H A D | objembed.cxx | 216 void SfxObjectShell::DoDraw( OutputDevice* pDev, in DoDraw() argument 222 MapMode aMod = pDev->GetMapMode(); in DoDraw() 225 aSize = pDev->LogicToLogic( aSize, &aWilliMode, &aMod ); in DoDraw() 234 DoDraw_Impl( pDev, rObjPos, aXF, aYF, rSetup, nAspect ); in DoDraw() 239 void SfxObjectShell::DoDraw_Impl( OutputDevice* pDev, in DoDraw_Impl() argument 253 Point aOrg = pDev->LogicToLogic( rViewPos, NULL, &aMapMode ); in DoDraw_Impl() 261 pDev->Push(); in DoDraw_Impl() 264 if( pDev->IsClipRegion() && pDev->GetOutDevType() != OUTDEV_PRINTER ) in DoDraw_Impl() 266 aRegion = pDev->GetClipRegion(); in DoDraw_Impl() 267 aRegion = pDev->LogicToPixel( aRegion ); in DoDraw_Impl() [all …]
|
| /trunk/main/svx/source/sidebar/line/ |
| H A D | LineWidthValueSet.cxx | 108 OutputDevice* pDev = rUDEvt.GetDevice(); in UserDraw() local 118 Font aOldFont = pDev->GetFont(); in UserDraw() 119 Color aOldColor = pDev->GetLineColor(); in UserDraw() 120 Color aOldFillColor = pDev->GetFillColor(); in UserDraw() 132 pDev->DrawImage(aImgStart, imgCus); in UserDraw() 143 pDev->SetFont(aFont); in UserDraw() 144 pDev->DrawText(aStrRect, strUnit[ nItemId - 1 ], TEXT_DRAW_ENDELLIPSIS); in UserDraw() 154 pDev->SetFillColor(aBackColor); in UserDraw() 155 pDev->DrawRect(aBackRect); in UserDraw() 159 pDev->SetFillColor( COL_TRANSPARENT ); in UserDraw() [all …]
|
| H A D | LineStyleValueSet.cxx | 61 OutputDevice* pDev = rUDEvt.GetDevice(); in UserDraw() local 70 Color aOldFillColor = pDev->GetFillColor(); in UserDraw() 80 pDev->SetFillColor(aBackColor); in UserDraw() 81 pDev->DrawRect(aBackRect); in UserDraw() 85 pDev->SetFillColor( COL_TRANSPARENT ); in UserDraw() 86 pDev->DrawRect(aRect); in UserDraw() 88 pDev->SetFillColor(aOldFillColor); in UserDraw() 91 Font aOldFont = pDev->GetFont(); in UserDraw() 92 Color aOldColor = pDev->GetLineColor(); in UserDraw() 104 pDev->SetFont(aFont); in UserDraw() [all …]
|
| /trunk/main/svtools/source/control/ |
| H A D | headbar.cxx | 332 void HeaderBar::ImplDrawItem( OutputDevice* pDev, in ImplDrawItem() argument 373 pDev->SetLineColor(); in ImplDrawItem() 374 pDev->SetFillColor( rStyleSettings.GetCheckedColor() ); in ImplDrawItem() 375 pDev->DrawRect( aRect ); in ImplDrawItem() 378 pDev->DrawWallpaper( aRect, GetBackground() ); in ImplDrawItem() 382 pDev->SetLineColor( rStyleSettings.GetDarkShadowColor() ); in ImplDrawItem() 383 pDev->DrawLine( Point( aRect.Right(), aRect.Top() ), in ImplDrawItem() 401 Size aTxtSize( pDev->GetTextWidth( pItem->maOutText ), 0 ); in ImplDrawItem() 403 aTxtSize.Height() = pDev->GetTextHeight(); in ImplDrawItem() 432 nTxtWidth = pDev->GetTextWidth( pItem->maOutText ); in ImplDrawItem() [all …]
|
| /trunk/main/svx/source/stbctrls/ |
| H A D | pszctrl.cxx | 363 OutputDevice* pDev = rUsrEvt.GetDevice(); in Paint() local 364 DBG_ASSERT( pDev, "no OutputDevice on UserDrawEvent" ); in Paint() 368 Color aOldLineColor = pDev->GetLineColor(); in Paint() 369 Color aOldFillColor = pDev->GetFillColor(); in Paint() 370 pDev->SetLineColor(); in Paint() 371 pDev->SetFillColor( pDev->GetBackground().GetColor() ); in Paint() 382 pDev->DrawImage( aPnt, pImp->aPosImage ); in Paint() 388 pDev->DrawRect( in Paint() 390 pDev->DrawText( aPnt, aStr ); in Paint() 397 pDev->DrawImage( aPnt, pImp->aSizeImage ); in Paint() [all …]
|
| H A D | zoomsliderctrl.cxx | 267 OutputDevice* pDev = rUsrEvt.GetDevice(); in Paint() local 276 Color aOldLineColor = pDev->GetLineColor(); in Paint() 277 Color aOldFillColor = pDev->GetFillColor(); in Paint() 279 pDev->SetLineColor( Color( COL_GRAY ) ); in Paint() 280 pDev->SetFillColor( Color( COL_GRAY ) ); in Paint() 293 pDev->DrawRect( aSnapping ); in Paint() 297 pDev->DrawRect( aSnapping ); in Paint() 313 pDev->SetLineColor( Color ( COL_GRAY ) ); in Paint() 314 pDev->SetFillColor( Color ( COL_GRAY ) ); in Paint() 315 pDev->DrawRect( aSecondLine ); in Paint() [all …]
|
| H A D | xmlsecctrl.cxx | 166 OutputDevice* pDev = rUsrEvt.GetDevice(); in Paint() local 167 …DBG_ASSERT( pDev, "-XmlSecStatusBarControl::Paint(): no Output Device... this will lead to nirvana… in Paint() 171 Color aOldLineColor = pDev->GetLineColor(); in Paint() 172 Color aOldFillColor = pDev->GetFillColor(); in Paint() 174 pDev->SetLineColor(); in Paint() 175 pDev->SetFillColor( pDev->GetBackground().GetColor() ); in Paint() 180 pDev->DrawImage( aRect.TopLeft(), mpImpl->maImage ); in Paint() 185 pDev->DrawImage( aRect.TopLeft(), mpImpl->maImageBroken ); in Paint() 191 pDev->DrawImage( aRect.TopLeft(), mpImpl->maImageNotValidated ); in Paint() 194 pDev->DrawRect( aRect ); in Paint() [all …]
|
| /trunk/main/xmlsecurity/source/dialogs/ |
| H A D | stbcontrl.cxx | 165 OutputDevice* pDev = rUsrEvt.GetDevice(); in Paint() local 166 …DBG_ASSERT( pDev, "-XmlSecStatusBarControl::Paint(): no Output Device... this will lead to nirvana… in Paint() 170 Color aOldLineColor = pDev->GetLineColor(); in Paint() 171 Color aOldFillColor = pDev->GetFillColor(); in Paint() 174 pDev->SetLineColor(); in Paint() 175 pDev->SetFillColor( pDev->GetBackground().GetColor() ); in Paint() 178 pDev->DrawRect( rRect ); in Paint() 179 …pDev->DrawText( Point( rRect.Left() + rRect.GetWidth() / 2 - pDev->GetTextWidth( s ) / 2, aItemPos… in Paint() 181 pDev->SetLineColor( aOldLineColor ); in Paint() 182 pDev->SetFillColor( aOldFillColor ); in Paint()
|
| /trunk/main/svx/source/dialog/ |
| H A D | svxbmpnumvalueset.cxx | 175 OutputDevice* pDev = rUDEvt.GetDevice(); in UserDraw() local 182 Font aOldFont = pDev->GetFont(); in UserDraw() 183 Color aOldColor = pDev->GetLineColor(); in UserDraw() 184 pDev->SetLineColor(aTextColor); in UserDraw() 204 pDev->SetFont(aFont); in UserDraw() 210 pVDev = new VirtualDevice(*pDev); in UserDraw() 211 pVDev->SetMapMode(pDev->GetMapMode()); in UserDraw() 235 pDev->DrawOutDev( aRect.TopLeft(), aRectSize, in UserDraw() 252 aStart.Y() -= pDev->GetTextHeight()/2; in UserDraw() 275 aStart.Y() -= pDev->GetTextHeight()/2; in UserDraw() [all …]
|
| /trunk/main/sw/source/ui/misc/ |
| H A D | insrule.cxx | 145 OutputDevice* pDev = rUDEvt.GetDevice(); in UserDraw() local 180 Region aRegion = pDev->GetClipRegion(); in UserDraw() 181 pDev->SetClipRegion(aRect); in UserDraw() 182 aGraphic.Draw(pDev, aBLPos, aPaintSize); in UserDraw() 183 pDev->SetClipRegion(aRegion); in UserDraw() 194 Font aOldFont = pDev->GetFont(); in UserDraw() 195 Font aFont = pDev->GetFont(); in UserDraw() 200 pDev->SetFont(aFont); in UserDraw() 202 aSize.Width() = pDev->GetTextWidth(aText); in UserDraw() 203 aSize.Height() = pDev->GetTextHeight(); in UserDraw() [all …]
|
| /trunk/main/sd/source/ui/view/ |
| H A D | viewoverlaymanager.cxx | 209 OutputDevice* pDev = pHdlList->GetView()->GetFirstOutputDevice(); in onMouseEnter() local 210 if( pDev == 0 ) in onMouseEnter() 211 pDev = Application::GetDefaultDevice(); in onMouseEnter() 214 aMDPos -= pDev->LogicToPixel( GetPos() ); in onMouseEnter() 231 Rectangle aScreenRect( pDev->LogicToPixel( GetPos() ), maImageSize ); in onMouseEnter() 387 OutputDevice* pDev = mrView.GetFirstOutputDevice(); in createOverlayImage() local 388 if( pDev == 0 ) in createOverlayImage() 389 pDev = Application::GetDefaultDevice(); in createOverlayImage() 391 Size aShapeSizePix = pDev->LogicToPixel(rSnapRect.GetSize()); in createOverlayImage() 422 OutputDevice* pDev = mrView.GetFirstOutputDevice(); in addCustomHandles() local [all …]
|
| /trunk/main/sc/source/core/data/ |
| H A D | column2.cxx | 183 long ScColumn::GetNeededSize( SCROW nRow, OutputDevice* pDev, in GetNeededSize() argument 322 pPattern->GetFont( aFont, SC_AUTOCOL_BLACK, pDev, &aFontZoom, pCondSet, nScript ); in GetNeededSize() 323 pDev->SetFont(aFont); in GetNeededSize() 345 Size aSize( pDev->GetTextWidth( aValStr ), pDev->GetTextHeight() ); in GetNeededSize() 379 long nCmp = pDev->GetFont().GetSize().Height() * SC_ROT_BREAK_FACTOR; in GetNeededSize() 423 Font aOldFont = pDev->GetFont(); in GetNeededSize() 431 sal_Bool bTextWysiwyg = ( pDev->GetOutDevType() == OUTDEV_PRINTER ); in GetNeededSize() 438 MapMode aOld = pDev->GetMapMode(); in GetNeededSize() 439 pDev->SetMapMode( aHMMMode ); in GetNeededSize() 440 pEngine->SetRefDevice( pDev ); in GetNeededSize() [all …]
|