Version 5.4.3.2, tag libreoffice-5.4.3.2
[LibreOffice.git] / vcl / inc / headless / svpbmp.hxx
blob83c1970879313843616ff3ae07afc42270fbc86d
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_VCL_INC_HEADLESS_SVPBMP_HXX
21 #define INCLUDED_VCL_INC_HEADLESS_SVPBMP_HXX
23 #include "sal/config.h"
24 #include "tools/solar.h"
26 #include <salbmp.hxx>
28 class VCL_DLLPUBLIC SvpSalBitmap : public SalBitmap
30 BitmapBuffer* mpDIB;
31 public:
32 SvpSalBitmap() : mpDIB(nullptr) {}
33 virtual ~SvpSalBitmap() override;
35 // SalBitmap
36 virtual bool Create( const Size& rSize,
37 sal_uInt16 nBitCount,
38 const BitmapPalette& rPal ) override;
39 virtual bool Create( const SalBitmap& rSalBmp ) override;
40 virtual bool Create( const SalBitmap& rSalBmp,
41 SalGraphics* pGraphics ) override;
42 virtual bool Create( const SalBitmap& rSalBmp,
43 sal_uInt16 nNewBitCount ) override;
44 virtual bool Create( const css::uno::Reference< css::rendering::XBitmapCanvas >& rBitmapCanvas,
45 Size& rSize,
46 bool bMask = false ) override;
47 bool Create(BitmapBuffer *pBuf);
48 const BitmapBuffer* GetBuffer() const
50 return mpDIB;
52 virtual void Destroy() final override;
53 virtual Size GetSize() const override;
54 virtual sal_uInt16 GetBitCount() const override;
56 virtual BitmapBuffer* AcquireBuffer( BitmapAccessMode nMode ) override;
57 virtual void ReleaseBuffer( BitmapBuffer* pBuffer, BitmapAccessMode nMode ) override;
58 virtual bool GetSystemData( BitmapSystemData& rData ) override;
60 virtual bool ScalingSupported() const override;
61 virtual bool Scale( const double& rScaleX, const double& rScaleY, BmpScaleFlag nScaleFlag ) override;
62 virtual bool Replace( const Color& rSearchColor, const Color& rReplaceColor, sal_uLong nTol ) override;
65 #endif // INCLUDED_VCL_INC_HEADLESS_SVPBMP_HXX
67 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */