1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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_UNX_SALBMP_H
21 #define INCLUDED_VCL_INC_UNX_SALBMP_H
25 #include <vcl/salgtype.hxx>
26 #include <unx/saldisp.hxx>
28 #include <vclpluginapi.h>
34 class ImplSalBitmapCache
;
37 class X11SalBitmap final
: public SalBitmap
41 static std::unique_ptr
<BitmapBuffer
>
44 vcl::PixelFormat ePixelFormat
,
45 const BitmapPalette
& rPal
48 static std::unique_ptr
<BitmapBuffer
>
51 SalX11Screen nXScreen
,
52 tools::Long nDrawableDepth
,
62 static ImplSalBitmapCache
* mpCache
;
63 static unsigned int mnCacheInstCount
;
65 static void ImplCreateCache();
66 static void ImplDestroyCache();
67 void ImplRemovedFromCache();
71 std::unique_ptr
<BitmapBuffer
> mpDIB
;
72 mutable std::unique_ptr
<ImplSalDDB
> mpDDB
;
77 bool ImplCreateFromDrawable(
79 SalX11Screen nXScreen
,
80 tools::Long nDrawableDepth
,
87 XImage
* ImplCreateXImage(
88 SalDisplay
const * pSalDisp
,
89 SalX11Screen nXScreen
,
91 const SalTwoRect
& rTwoRect
94 ImplSalDDB
* ImplGetDDB(
96 SalX11Screen nXScreen
,
97 tools::Long nDrawableDepth
,
103 SalX11Screen nXScreen
,
104 tools::Long nDrawableDepth
,
105 const SalTwoRect
& rTwoRect
,
112 virtual ~X11SalBitmap() override
;
114 // override pure virtual methods
117 vcl::PixelFormat ePixelFormat
,
118 const BitmapPalette
& rPal
121 virtual bool Create( const SalBitmap
& rSalBmp
) override
;
123 const SalBitmap
& rSalBmp
,
124 SalGraphics
* pGraphics
128 const SalBitmap
& rSalBmp
,
129 vcl::PixelFormat ePixelFormat
133 const css::uno::Reference
< css::rendering::XBitmapCanvas
>& rBitmapCanvas
,
138 virtual void Destroy() override
;
140 virtual Size
GetSize() const override
;
141 virtual sal_uInt16
GetBitCount() const override
;
143 virtual BitmapBuffer
* AcquireBuffer( BitmapAccessMode nMode
) override
;
144 virtual void ReleaseBuffer( BitmapBuffer
* pBuffer
, BitmapAccessMode nMode
) override
;
145 virtual bool GetSystemData( BitmapSystemData
& rData
) override
;
147 virtual bool ScalingSupported() const override
;
148 virtual bool Scale( const double& rScaleX
, const double& rScaleY
, BmpScaleFlag nScaleFlag
) override
;
149 virtual bool Replace( const Color
& rSearchColor
, const Color
& rReplaceColor
, sal_uInt8 nTol
) override
;
158 SalTwoRect maTwoRect
;
160 SalX11Screen mnXScreen
;
162 static void ImplDraw(
163 Drawable aSrcDrawable
,
164 tools::Long nSrcDrawableDepth
,
165 Drawable aDstDrawable
,
168 tools::Long nDestWidth
,
169 tools::Long nDestHeight
,
180 SalX11Screen nXScreen
,
181 const SalTwoRect
& rTwoRect
186 SalX11Screen nXScreen
,
187 tools::Long nDrawableDepth
,
196 Pixmap
ImplGetPixmap() const { return maPixmap
; }
197 tools::Long
ImplGetWidth() const { return maTwoRect
.mnDestWidth
; }
198 tools::Long
ImplGetHeight() const { return maTwoRect
.mnDestHeight
; }
199 tools::Long
ImplGetDepth() const { return mnDepth
; }
200 const SalX11Screen
& ImplGetScreen() const { return mnXScreen
; }
202 bool ImplMatches( SalX11Screen nXScreen
, tools::Long nDepth
, const SalTwoRect
& rTwoRect
) const;
206 const SalTwoRect
& rTwoRect
,
214 class ImplSalBitmapCache
217 std::vector
<X11SalBitmap
*> maBmpList
;
221 ImplSalBitmapCache();
222 ~ImplSalBitmapCache();
224 void ImplAdd( X11SalBitmap
* pBmp
);
225 void ImplRemove( X11SalBitmap
const * pBmp
);
229 #endif // INCLUDED_VCL_INC_UNX_SALBMP_H
231 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */