Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 : #ifndef _SV_SALBMP_H
21 : #define _SV_SALBMP_H
22 :
23 : #include <unx/salstd.hxx>
24 : #ifndef _SV_SALGTYPE
25 : #include <vcl/salgtype.hxx>
26 : #endif
27 : #include <unx/saldisp.hxx>
28 : #include <salbmp.hxx>
29 : #include <vclpluginapi.h>
30 : #include <list>
31 :
32 : struct BitmapBuffer;
33 : class BitmapPalette;
34 : class SalGraphics;
35 : class ImplSalDDB;
36 : class ImplSalBitmapCache;
37 :
38 : // -------------
39 : // - SalBitmap -
40 : // -------------
41 :
42 : class VCLPLUG_GEN_PUBLIC X11SalBitmap : public SalBitmap
43 : {
44 : private:
45 :
46 : static BitmapBuffer* ImplCreateDIB(
47 : const Size& rSize,
48 : sal_uInt16 nBitCount,
49 : const BitmapPalette& rPal
50 : );
51 :
52 : static BitmapBuffer* ImplCreateDIB(
53 : Drawable aDrawable,
54 : SalX11Screen nXScreen,
55 : long nDrawableDepth,
56 : long nX,
57 : long nY,
58 : long nWidth,
59 : long nHeight,
60 : bool bGrey
61 : );
62 :
63 : public:
64 :
65 : static ImplSalBitmapCache* mpCache;
66 : static sal_uIntPtr mnCacheInstCount;
67 :
68 : static void ImplCreateCache();
69 : static void ImplDestroyCache();
70 : void ImplRemovedFromCache();
71 :
72 : private:
73 :
74 : BitmapBuffer* mpDIB;
75 : ImplSalDDB* mpDDB;
76 : bool mbGrey;
77 :
78 : public:
79 :
80 : SAL_DLLPRIVATE bool ImplCreateFromDrawable(
81 : Drawable aDrawable,
82 : SalX11Screen nXScreen,
83 : long nDrawableDepth,
84 : long nX,
85 : long nY,
86 : long nWidth,
87 : long nHeight
88 : );
89 :
90 : SAL_DLLPRIVATE XImage* ImplCreateXImage(
91 : SalDisplay* pSalDisp,
92 : SalX11Screen nXScreen,
93 : long nDepth,
94 : const SalTwoRect& rTwoRect
95 : ) const;
96 :
97 : SAL_DLLPRIVATE ImplSalDDB* ImplGetDDB(
98 : Drawable,
99 : SalX11Screen nXScreen,
100 : long nDrawableDepth,
101 : const SalTwoRect&
102 : ) const;
103 :
104 : void ImplDraw(
105 : Drawable aDrawable,
106 : SalX11Screen nXScreen,
107 : long nDrawableDepth,
108 : const SalTwoRect& rTwoRect,
109 : const GC& rGC
110 : ) const;
111 :
112 : public:
113 :
114 : X11SalBitmap();
115 : virtual ~X11SalBitmap();
116 :
117 : // overload pure virtual methods
118 : virtual bool Create(
119 : const Size& rSize,
120 : sal_uInt16 nBitCount,
121 : const BitmapPalette& rPal
122 : );
123 :
124 : virtual bool Create( const SalBitmap& rSalBmp );
125 : virtual bool Create(
126 : const SalBitmap& rSalBmp,
127 : SalGraphics* pGraphics
128 : );
129 :
130 : virtual bool Create(
131 : const SalBitmap& rSalBmp,
132 : sal_uInt16 nNewBitCount
133 : );
134 :
135 : virtual bool Create(
136 : const ::com::sun::star::uno::Reference<
137 : ::com::sun::star::rendering::XBitmapCanvas
138 : > xBitmapCanvas,
139 : Size& rSize,
140 : bool bMask = false
141 : );
142 :
143 : virtual void Destroy();
144 :
145 : virtual Size GetSize() const;
146 : virtual sal_uInt16 GetBitCount() const;
147 :
148 : virtual BitmapBuffer* AcquireBuffer( bool bReadOnly );
149 : virtual void ReleaseBuffer( BitmapBuffer* pBuffer, bool bReadOnly );
150 : virtual bool GetSystemData( BitmapSystemData& rData );
151 : };
152 :
153 : // --------------
154 : // - ImplSalDDB -
155 : // --------------
156 :
157 : class ImplSalDDB
158 : {
159 : private:
160 :
161 : Pixmap maPixmap;
162 : SalTwoRect maTwoRect;
163 : long mnDepth;
164 : SalX11Screen mnXScreen;
165 :
166 : ImplSalDDB() : mnXScreen(0) {}
167 :
168 : static void ImplDraw(
169 : Drawable aSrcDrawable,
170 : long nSrcDrawableDepth,
171 : Drawable aDstDrawable,
172 : long nDstDrawableDepth,
173 : long nSrcX,
174 : long nSrcY,
175 : long nDestWidth,
176 : long nDestHeight,
177 : long nDestX,
178 : long nDestY,
179 : const GC& rGC
180 : );
181 :
182 : public:
183 :
184 : ImplSalDDB(
185 : XImage* pImage,
186 : Drawable aDrawable,
187 : SalX11Screen nXScreen,
188 : const SalTwoRect& rTwoRect
189 : );
190 :
191 : ImplSalDDB(
192 : Drawable aDrawable,
193 : SalX11Screen nXScreen,
194 : long nDrawableDepth,
195 : long nX,
196 : long nY,
197 : long nWidth,
198 : long nHeight
199 : );
200 :
201 : ~ImplSalDDB();
202 :
203 0 : Pixmap ImplGetPixmap() const { return maPixmap; }
204 0 : long ImplGetWidth() const { return maTwoRect.mnDestWidth; }
205 0 : long ImplGetHeight() const { return maTwoRect.mnDestHeight; }
206 0 : long ImplGetDepth() const { return mnDepth; }
207 0 : sal_uIntPtr ImplGetMemSize() const
208 : {
209 0 : return( ( maTwoRect.mnDestWidth * maTwoRect.mnDestHeight * mnDepth ) >> 3 );
210 : }
211 0 : SalX11Screen ImplGetScreen() const { return mnXScreen; }
212 :
213 : bool ImplMatches( SalX11Screen nXScreen, long nDepth, const SalTwoRect& rTwoRect ) const;
214 :
215 : void ImplDraw(
216 : Drawable aDrawable,
217 : long nDrawableDepth,
218 : const SalTwoRect& rTwoRect,
219 : const GC& rGC
220 : ) const;
221 : };
222 :
223 : // ----------------------
224 : // - ImplSalBitmapCache -
225 : // ----------------------
226 :
227 : struct ImplBmpObj;
228 :
229 : class ImplSalBitmapCache
230 : {
231 : private:
232 : typedef ::std::list< ImplBmpObj* > BmpList_impl;
233 :
234 : BmpList_impl maBmpList;
235 : sal_uIntPtr mnTotalSize;
236 :
237 : public:
238 :
239 : ImplSalBitmapCache();
240 : ~ImplSalBitmapCache();
241 :
242 : void ImplAdd( X11SalBitmap* pBmp, sal_uIntPtr nMemSize = 0UL, sal_uIntPtr nFlags = 0UL );
243 : void ImplRemove( X11SalBitmap* pBmp );
244 : void ImplClear();
245 : };
246 :
247 : #endif // _SV_SALBMP_HXX
248 :
249 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|