2000-09-18 16:07:07 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2005-09-09 11:12:30 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2005-09-09 11:12:30 +00:00
|
|
|
* $RCSfile: virdev.cxx,v $
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2006-10-27 11:00:46 +00:00
|
|
|
* $Revision: 1.28 $
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2006-10-27 11:00:46 +00:00
|
|
|
* last change: $Author: rt $ $Date: 2006-10-27 12:00:46 $
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2005-09-09 11:12:30 +00:00
|
|
|
* The Contents of this file are made available subject to
|
|
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
|
|
|
*
|
2005-09-09 11:12:30 +00:00
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
* =============================================
|
|
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2005-09-09 11:12:30 +00:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License version 2.1, as published by the Free Software Foundation.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2005-09-09 11:12:30 +00:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2005-09-09 11:12:30 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-17 11:11:55 +00:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_vcl.hxx"
|
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
#ifndef _SV_SVSYS_HXX
|
|
|
|
#include <svsys.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _SV_SALINST_HXX
|
|
|
|
#include <salinst.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _SV_SALGDI_HXX
|
|
|
|
#include <salgdi.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _SV_SALFRAME_HXX
|
|
|
|
#include <salframe.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _SV_SALVD_HXX
|
|
|
|
#include <salvd.hxx>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _DEBUG_HXX
|
|
|
|
#include <tools/debug.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _SV_SVDATA_HXX
|
|
|
|
#include <svdata.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _SV_SETTINGS_HXX
|
|
|
|
#include <settings.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _SV_SVAPP_HXX
|
|
|
|
#include <svapp.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _SV_WRKWIN_HXX
|
|
|
|
#include <wrkwin.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _SV_OUTDEV_H
|
|
|
|
#include <outdev.h>
|
|
|
|
#endif
|
|
|
|
#ifndef _SV_VIRDEV_HXX
|
|
|
|
#include <virdev.hxx>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
|
|
|
|
// =======================================================================
|
|
|
|
|
|
|
|
void VirtualDevice::ImplInitVirDev( const OutputDevice* pOutDev,
|
2004-11-26 19:43:19 +00:00
|
|
|
long nDX, long nDY, USHORT nBitCount, const SystemGraphicsData *pData )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
DBG_ASSERT( nBitCount <= 1,
|
|
|
|
"VirtualDevice::VirtualDevice(): Only 0 or 1 is for BitCount allowed" );
|
|
|
|
|
|
|
|
if ( nDX < 1 )
|
|
|
|
nDX = 1;
|
|
|
|
|
|
|
|
if ( nDY < 1 )
|
|
|
|
nDY = 1;
|
|
|
|
|
|
|
|
ImplSVData* pSVData = ImplGetSVData();
|
|
|
|
|
|
|
|
if ( !pOutDev )
|
|
|
|
pOutDev = ImplGetDefaultWindow();
|
2006-05-18 09:09:00 +00:00
|
|
|
if( !pOutDev )
|
|
|
|
return;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
SalGraphics* pGraphics;
|
|
|
|
if ( !pOutDev->mpGraphics )
|
|
|
|
((OutputDevice*)pOutDev)->ImplGetGraphics();
|
|
|
|
pGraphics = pOutDev->mpGraphics;
|
|
|
|
if ( pGraphics )
|
2004-11-26 19:43:19 +00:00
|
|
|
mpVirDev = pSVData->mpDefInst->CreateVirtualDevice( pGraphics, nDX, nDY, nBitCount, pData );
|
2000-09-18 16:07:07 +00:00
|
|
|
else
|
|
|
|
mpVirDev = NULL;
|
|
|
|
if ( !mpVirDev )
|
2005-01-31 12:23:56 +00:00
|
|
|
{
|
|
|
|
// do not abort but throw an exception, may be the current thread terminates anyway (plugin-scenario)
|
|
|
|
throw ::com::sun::star::uno::RuntimeException(
|
|
|
|
OUString( RTL_CONSTASCII_USTRINGPARAM( "Could not create system bitmap!" ) ),
|
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >() );
|
|
|
|
//GetpApp()->Exception( EXC_SYSOBJNOTCREATED );
|
|
|
|
}
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
mnBitCount = ( nBitCount ? nBitCount : pOutDev->GetBitCount() );
|
|
|
|
mnOutWidth = nDX;
|
|
|
|
mnOutHeight = nDY;
|
|
|
|
mbScreenComp = TRUE;
|
2003-11-24 16:34:15 +00:00
|
|
|
mbScreenComp = FALSE;
|
|
|
|
mnAlphaDepth = -1;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
2006-03-29 10:25:58 +00:00
|
|
|
// #i59315# init vdev size from system object, when passed a
|
|
|
|
// SystemGraphicsData. Otherwise, output size will always
|
|
|
|
// incorrectly stay at (1,1)
|
|
|
|
if( pData && mpVirDev )
|
|
|
|
mpVirDev->GetSize(mnOutWidth,mnOutHeight);
|
|
|
|
|
2001-05-23 11:00:28 +00:00
|
|
|
if( mnBitCount < 8 )
|
|
|
|
SetAntialiasing( ANTIALIASING_DISABLE_TEXT );
|
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
if ( pOutDev->GetOutDevType() == OUTDEV_PRINTER )
|
|
|
|
mbScreenComp = FALSE;
|
|
|
|
else if ( pOutDev->GetOutDevType() == OUTDEV_VIRDEV )
|
|
|
|
mbScreenComp = ((VirtualDevice*)pOutDev)->mbScreenComp;
|
|
|
|
|
|
|
|
meOutDevType = OUTDEV_VIRDEV;
|
|
|
|
mbDevOutput = TRUE;
|
|
|
|
mpFontList = pSVData->maGDIData.mpScreenFontList;
|
|
|
|
mpFontCache = pSVData->maGDIData.mpScreenFontCache;
|
|
|
|
mnDPIX = pOutDev->mnDPIX;
|
|
|
|
mnDPIY = pOutDev->mnDPIY;
|
|
|
|
maFont = pOutDev->maFont;
|
|
|
|
|
2004-09-08 14:36:47 +00:00
|
|
|
if( maTextColor != pOutDev->maTextColor )
|
|
|
|
{
|
|
|
|
maTextColor = pOutDev->maTextColor;
|
|
|
|
mbInitTextColor = true;
|
|
|
|
}
|
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
// Virtuelle Devices haben defaultmaessig einen weissen Hintergrund
|
|
|
|
SetBackground( Wallpaper( Color( COL_WHITE ) ) );
|
2006-02-28 09:46:25 +00:00
|
|
|
|
|
|
|
// #i59283# don't erase user-provided surface
|
|
|
|
if( !pData )
|
|
|
|
Erase();
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
// VirDev in Liste eintragen
|
|
|
|
mpNext = pSVData->maGDIData.mpFirstVirDev;
|
|
|
|
mpPrev = NULL;
|
|
|
|
if ( mpNext )
|
|
|
|
mpNext->mpPrev = this;
|
|
|
|
else
|
|
|
|
pSVData->maGDIData.mpLastVirDev = this;
|
|
|
|
pSVData->maGDIData.mpFirstVirDev = this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
VirtualDevice::VirtualDevice( USHORT nBitCount )
|
2003-10-15 09:03:11 +00:00
|
|
|
: mpVirDev( NULL ),
|
|
|
|
meRefDevMode( REFDEV_NONE )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
DBG_TRACE1( "VirtualDevice::VirtualDevice( %hu )", nBitCount );
|
|
|
|
|
|
|
|
ImplInitVirDev( Application::GetDefaultDevice(), 1, 1, nBitCount );
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
VirtualDevice::VirtualDevice( const OutputDevice& rCompDev, USHORT nBitCount )
|
2003-10-15 09:03:11 +00:00
|
|
|
: mpVirDev( NULL ),
|
|
|
|
meRefDevMode( REFDEV_NONE )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
DBG_TRACE1( "VirtualDevice::VirtualDevice( %hu )", nBitCount );
|
|
|
|
|
|
|
|
ImplInitVirDev( &rCompDev, 1, 1, nBitCount );
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2003-11-24 16:34:15 +00:00
|
|
|
VirtualDevice::VirtualDevice( const OutputDevice& rCompDev, USHORT nBitCount, USHORT nAlphaBitCount )
|
|
|
|
: mpVirDev( NULL )
|
|
|
|
{
|
|
|
|
DBG_TRACE1( "VirtualDevice::VirtualDevice( %hu )", nBitCount );
|
|
|
|
|
|
|
|
ImplInitVirDev( &rCompDev, 1, 1, nBitCount );
|
|
|
|
|
|
|
|
// #110958# Enable alpha channel
|
2006-06-19 18:32:16 +00:00
|
|
|
mnAlphaDepth = sal::static_int_cast<sal_Int8>(nAlphaBitCount);
|
2003-11-24 16:34:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2004-11-26 19:43:19 +00:00
|
|
|
VirtualDevice::VirtualDevice( const SystemGraphicsData *pData, USHORT nBitCount )
|
|
|
|
: mpVirDev( NULL ),
|
|
|
|
meRefDevMode( REFDEV_NONE )
|
|
|
|
{
|
|
|
|
DBG_TRACE1( "VirtualDevice::VirtualDevice( %hu )", nBitCount );
|
|
|
|
|
|
|
|
ImplInitVirDev( Application::GetDefaultDevice(), 1, 1, nBitCount, pData );
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
VirtualDevice::~VirtualDevice()
|
|
|
|
{
|
|
|
|
DBG_TRACE( "VirtualDevice::~VirtualDevice()" );
|
|
|
|
|
2004-07-13 08:29:45 +00:00
|
|
|
ImplSVData* pSVData = ImplGetSVData();
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
ImplReleaseGraphics();
|
|
|
|
|
|
|
|
if ( mpVirDev )
|
|
|
|
pSVData->mpDefInst->DestroyVirtualDevice( mpVirDev );
|
|
|
|
|
2004-07-13 08:29:45 +00:00
|
|
|
// remove this VirtualDevice from the double-linked global list
|
2000-09-18 16:07:07 +00:00
|
|
|
if( mpPrev )
|
|
|
|
mpPrev->mpNext = mpNext;
|
|
|
|
else
|
|
|
|
pSVData->maGDIData.mpFirstVirDev = mpNext;
|
|
|
|
|
|
|
|
if( mpNext )
|
|
|
|
mpNext->mpPrev = mpPrev;
|
|
|
|
else
|
|
|
|
pSVData->maGDIData.mpLastVirDev = mpPrev;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2003-11-24 16:34:15 +00:00
|
|
|
BOOL VirtualDevice::ImplSetOutputSizePixel( const Size& rNewSize, BOOL bErase )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
2003-11-24 16:34:15 +00:00
|
|
|
DBG_TRACE3( "VirtualDevice::ImplSetOutputSizePixel( %ld, %ld, %d )", rNewSize.Width(), rNewSize.Height(), (int)bErase );
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
if ( !mpVirDev )
|
|
|
|
return FALSE;
|
|
|
|
else if ( rNewSize == GetOutputSizePixel() )
|
|
|
|
{
|
|
|
|
if ( bErase )
|
|
|
|
Erase();
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL bRet;
|
|
|
|
long nNewWidth = rNewSize.Width(), nNewHeight = rNewSize.Height();
|
|
|
|
|
|
|
|
if ( nNewWidth < 1 )
|
|
|
|
nNewWidth = 1;
|
|
|
|
|
|
|
|
if ( nNewHeight < 1 )
|
|
|
|
nNewHeight = 1;
|
|
|
|
|
|
|
|
if ( bErase )
|
|
|
|
{
|
|
|
|
bRet = mpVirDev->SetSize( nNewWidth, nNewHeight );
|
|
|
|
|
|
|
|
if ( bRet )
|
|
|
|
{
|
|
|
|
mnOutWidth = rNewSize.Width();
|
|
|
|
mnOutHeight = rNewSize.Height();
|
|
|
|
Erase();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
SalVirtualDevice* pNewVirDev;
|
|
|
|
ImplSVData* pSVData = ImplGetSVData();
|
|
|
|
|
|
|
|
// we need a graphics
|
|
|
|
if ( !mpGraphics )
|
|
|
|
{
|
|
|
|
if ( !ImplGetGraphics() )
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
pNewVirDev = pSVData->mpDefInst->CreateVirtualDevice( mpGraphics, nNewWidth, nNewHeight, mnBitCount );
|
|
|
|
if ( pNewVirDev )
|
|
|
|
{
|
|
|
|
SalGraphics* pGraphics = pNewVirDev->GetGraphics();
|
|
|
|
if ( pGraphics )
|
|
|
|
{
|
|
|
|
SalTwoRect aPosAry;
|
|
|
|
long nWidth;
|
|
|
|
long nHeight;
|
|
|
|
if ( mnOutWidth < nNewWidth )
|
|
|
|
nWidth = mnOutWidth;
|
|
|
|
else
|
|
|
|
nWidth = nNewWidth;
|
|
|
|
if ( mnOutHeight < nNewHeight )
|
|
|
|
nHeight = mnOutHeight;
|
|
|
|
else
|
|
|
|
nHeight = nNewHeight;
|
|
|
|
aPosAry.mnSrcX = 0;
|
|
|
|
aPosAry.mnSrcY = 0;
|
|
|
|
aPosAry.mnSrcWidth = nWidth;
|
|
|
|
aPosAry.mnSrcHeight = nHeight;
|
|
|
|
aPosAry.mnDestX = 0;
|
|
|
|
aPosAry.mnDestY = 0;
|
|
|
|
aPosAry.mnDestWidth = nWidth;
|
|
|
|
aPosAry.mnDestHeight = nHeight;
|
|
|
|
|
2002-08-29 14:42:38 +00:00
|
|
|
pGraphics->CopyBits( &aPosAry, mpGraphics, this, this );
|
2000-09-18 16:07:07 +00:00
|
|
|
pNewVirDev->ReleaseGraphics( pGraphics );
|
|
|
|
ImplReleaseGraphics();
|
|
|
|
pSVData->mpDefInst->DestroyVirtualDevice( mpVirDev );
|
|
|
|
mpVirDev = pNewVirDev;
|
|
|
|
mnOutWidth = rNewSize.Width();
|
|
|
|
mnOutHeight = rNewSize.Height();
|
|
|
|
bRet = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
bRet = FALSE;
|
|
|
|
pSVData->mpDefInst->DestroyVirtualDevice( pNewVirDev );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
bRet = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bRet;
|
|
|
|
}
|
|
|
|
|
2003-10-15 09:03:11 +00:00
|
|
|
// -----------------------------------------------------------------------
|
2004-08-31 13:59:40 +00:00
|
|
|
|
|
|
|
// #i32109#: Fill opaque areas correctly (without relying on
|
|
|
|
// fill/linecolor state)
|
|
|
|
void VirtualDevice::ImplFillOpaqueRectangle( const Rectangle& rRect )
|
|
|
|
{
|
|
|
|
// Set line and fill color to black (->opaque),
|
|
|
|
// fill rect with that (linecolor, too, because of
|
|
|
|
// those pesky missing pixel problems)
|
|
|
|
Push( PUSH_LINECOLOR | PUSH_FILLCOLOR );
|
|
|
|
SetLineColor( COL_BLACK );
|
|
|
|
SetFillColor( COL_BLACK );
|
|
|
|
DrawRect( rRect );
|
|
|
|
Pop();
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
2003-10-15 09:03:11 +00:00
|
|
|
|
2003-11-24 16:34:15 +00:00
|
|
|
BOOL VirtualDevice::SetOutputSizePixel( const Size& rNewSize, BOOL bErase )
|
|
|
|
{
|
|
|
|
if( ImplSetOutputSizePixel(rNewSize, bErase) )
|
|
|
|
{
|
|
|
|
if( mnAlphaDepth != -1 )
|
|
|
|
{
|
|
|
|
// #110958# Setup alpha bitmap
|
|
|
|
if(mpAlphaVDev && mpAlphaVDev->GetOutputSizePixel() != rNewSize)
|
|
|
|
{
|
|
|
|
delete mpAlphaVDev;
|
|
|
|
mpAlphaVDev = 0L;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !mpAlphaVDev )
|
|
|
|
{
|
|
|
|
mpAlphaVDev = new VirtualDevice( *this, mnAlphaDepth );
|
|
|
|
mpAlphaVDev->ImplSetOutputSizePixel(rNewSize, bErase);
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: copy full outdev state to new one, here. Also needed in outdev2.cxx:DrawOutDev
|
|
|
|
if( GetLineColor() != Color( COL_TRANSPARENT ) )
|
|
|
|
mpAlphaVDev->SetLineColor( COL_BLACK );
|
|
|
|
|
|
|
|
if( GetFillColor() != Color( COL_TRANSPARENT ) )
|
|
|
|
mpAlphaVDev->SetFillColor( COL_BLACK );
|
|
|
|
|
|
|
|
mpAlphaVDev->SetMapMode( GetMapMode() );
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2003-10-15 09:03:11 +00:00
|
|
|
void VirtualDevice::SetReferenceDevice( RefDevMode eRefDevMode )
|
2003-04-01 08:44:04 +00:00
|
|
|
{
|
2003-10-15 09:03:11 +00:00
|
|
|
switch( eRefDevMode )
|
|
|
|
{
|
|
|
|
case REFDEV_NONE:
|
|
|
|
default:
|
|
|
|
DBG_ASSERT( FALSE, "VDev::SetRefDev illegal argument!" );
|
|
|
|
// fall through
|
|
|
|
case REFDEV_MODE06:
|
|
|
|
mnDPIX = mnDPIY = 600;
|
|
|
|
break;
|
|
|
|
case REFDEV_MODE48:
|
|
|
|
mnDPIX = mnDPIY = 4800;
|
|
|
|
break;
|
2004-11-26 22:14:40 +00:00
|
|
|
case REFDEV_MODE_MSO1:
|
|
|
|
mnDPIX = mnDPIY = 6*1440;
|
2003-10-15 09:03:11 +00:00
|
|
|
break;
|
2006-07-10 16:26:14 +00:00
|
|
|
case REFDEV_MODE_PDF1:
|
|
|
|
mnDPIX = mnDPIY = 720;
|
|
|
|
break;
|
2003-10-15 09:03:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
EnableOutput( FALSE ); // prevent output on reference device
|
2003-05-02 13:36:42 +00:00
|
|
|
mbScreenComp = FALSE;
|
|
|
|
|
2003-10-15 09:03:11 +00:00
|
|
|
// invalidate currently selected fonts
|
|
|
|
mbInitFont = TRUE;
|
|
|
|
mbNewFont = TRUE;
|
|
|
|
|
|
|
|
// avoid adjusting font lists when already in refdev mode
|
|
|
|
BYTE nOldRefDevMode = meRefDevMode;
|
2006-10-27 11:00:46 +00:00
|
|
|
BYTE nOldCompatFlag = (BYTE)meRefDevMode & REFDEV_FORCE_ZERO_EXTLEAD;
|
|
|
|
meRefDevMode = (BYTE)(eRefDevMode | nOldCompatFlag);
|
|
|
|
if( (nOldRefDevMode ^ nOldCompatFlag) != REFDEV_NONE )
|
2003-10-15 09:03:11 +00:00
|
|
|
return;
|
|
|
|
|
2003-05-02 13:36:42 +00:00
|
|
|
// the reference device should have only scalable fonts
|
|
|
|
// => clean up the original font lists before getting new ones
|
|
|
|
if ( mpFontEntry )
|
|
|
|
{
|
|
|
|
mpFontCache->Release( mpFontEntry );
|
|
|
|
mpFontEntry = NULL;
|
|
|
|
}
|
|
|
|
if ( mpGetDevFontList )
|
|
|
|
{
|
|
|
|
delete mpGetDevFontList;
|
|
|
|
mpGetDevFontList = NULL;
|
|
|
|
}
|
|
|
|
if ( mpGetDevSizeList )
|
|
|
|
{
|
|
|
|
delete mpGetDevSizeList;
|
|
|
|
mpGetDevSizeList = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// preserve global font lists
|
|
|
|
ImplSVData* pSVData = ImplGetSVData();
|
|
|
|
if( mpFontList && (mpFontList != pSVData->maGDIData.mpScreenFontList) )
|
|
|
|
delete mpFontList;
|
|
|
|
if( mpFontCache && (mpFontCache != pSVData->maGDIData.mpScreenFontCache) )
|
|
|
|
delete mpFontCache;
|
|
|
|
|
|
|
|
// get font list with scalable fonts only
|
2003-11-18 13:35:02 +00:00
|
|
|
ImplGetGraphics();
|
2004-07-13 08:29:45 +00:00
|
|
|
mpFontList = pSVData->maGDIData.mpScreenFontList->Clone( true, false );
|
2003-05-02 13:36:42 +00:00
|
|
|
|
|
|
|
// prepare to use new font lists
|
2004-07-13 08:29:45 +00:00
|
|
|
mpFontCache = new ImplFontCache( false );
|
2003-04-01 08:44:04 +00:00
|
|
|
}
|
|
|
|
|
2003-10-15 09:03:11 +00:00
|
|
|
// -----------------------------------------------------------------------
|
2006-10-27 11:00:46 +00:00
|
|
|
|
|
|
|
void VirtualDevice::Compat_ZeroExtleadBug()
|
|
|
|
{
|
|
|
|
meRefDevMode = (BYTE)meRefDevMode | REFDEV_FORCE_ZERO_EXTLEAD;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|