2000-09-18 16:07:07 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-11 07:44:16 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 07:44:16 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 07:44:16 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 07:44:16 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 07:44:16 +00:00
|
|
|
* OpenOffice.org 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 version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 07:44:16 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-17 11:02:51 +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
|
2007-06-27 19:15:19 +00:00
|
|
|
#include <vcl/salbmp.hxx>
|
2000-09-18 16:07:07 +00:00
|
|
|
#include <tools/debug.hxx>
|
2007-07-24 09:10:19 +00:00
|
|
|
#include <vcl/impbmp.hxx>
|
2007-06-27 19:15:19 +00:00
|
|
|
#include <vcl/bitmap.hxx>
|
|
|
|
#include <vcl/svdata.hxx>
|
|
|
|
#include <vcl/salinst.hxx>
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
// --------------
|
|
|
|
// - ImpBitmap -
|
|
|
|
// --------------
|
|
|
|
|
|
|
|
ImpBitmap::ImpBitmap() :
|
|
|
|
mnRefCount ( 1UL ),
|
|
|
|
mnChecksum ( 0UL ),
|
2006-09-08 07:34:25 +00:00
|
|
|
mpSalBitmap ( ImplGetSVData()->mpDefInst->CreateSalBitmap() ),
|
|
|
|
maSourceSize( 0, 0 )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
ImpBitmap::~ImpBitmap()
|
|
|
|
{
|
|
|
|
delete mpSalBitmap;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
void ImpBitmap::ImplSetSalBitmap( SalBitmap* pBitmap )
|
|
|
|
{
|
|
|
|
delete mpSalBitmap, mpSalBitmap = pBitmap;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
BOOL ImpBitmap::ImplCreate( const Size& rSize, USHORT nBitCount, const BitmapPalette& rPal )
|
|
|
|
{
|
2006-09-08 07:34:25 +00:00
|
|
|
maSourceSize = rSize;
|
2000-09-18 16:07:07 +00:00
|
|
|
return mpSalBitmap->Create( rSize, nBitCount, rPal );
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
BOOL ImpBitmap::ImplCreate( const ImpBitmap& rImpBitmap )
|
|
|
|
{
|
2006-09-08 07:34:25 +00:00
|
|
|
maSourceSize = rImpBitmap.maSourceSize;
|
2000-09-18 16:07:07 +00:00
|
|
|
mnChecksum = rImpBitmap.mnChecksum;
|
|
|
|
return mpSalBitmap->Create( *rImpBitmap.mpSalBitmap );
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
BOOL ImpBitmap::ImplCreate( const ImpBitmap& rImpBitmap, SalGraphics* pGraphics )
|
|
|
|
{
|
|
|
|
return mpSalBitmap->Create( *rImpBitmap.mpSalBitmap, pGraphics );
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
BOOL ImpBitmap::ImplCreate( const ImpBitmap& rImpBitmap, USHORT nNewBitCount )
|
|
|
|
{
|
|
|
|
return mpSalBitmap->Create( *rImpBitmap.mpSalBitmap, nNewBitCount );
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void ImpBitmap::ImplDestroy()
|
|
|
|
{
|
|
|
|
mpSalBitmap->Destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
Size ImpBitmap::ImplGetSize() const
|
|
|
|
{
|
2003-12-01 12:18:18 +00:00
|
|
|
return mpSalBitmap->GetSize();
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
USHORT ImpBitmap::ImplGetBitCount() const
|
|
|
|
{
|
2003-12-01 12:18:18 +00:00
|
|
|
USHORT nBitCount = mpSalBitmap->GetBitCount();
|
2000-09-18 16:07:07 +00:00
|
|
|
return( ( nBitCount <= 1 ) ? 1 : ( nBitCount <= 4 ) ? 4 : ( nBitCount <= 8 ) ? 8 : 24 );
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
BitmapBuffer* ImpBitmap::ImplAcquireBuffer( BOOL bReadOnly )
|
|
|
|
{
|
|
|
|
return mpSalBitmap->AcquireBuffer( bReadOnly );
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void ImpBitmap::ImplReleaseBuffer( BitmapBuffer* pBuffer, BOOL bReadOnly )
|
|
|
|
{
|
|
|
|
mpSalBitmap->ReleaseBuffer( pBuffer, bReadOnly );
|
|
|
|
|
|
|
|
if( !bReadOnly )
|
|
|
|
mnChecksum = 0;
|
2005-03-10 12:16:01 +00:00
|
|
|
}
|