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 INCLUDED_VCL_VIRDEV_HXX
21 : #define INCLUDED_VCL_VIRDEV_HXX
22 :
23 : #include <basebmp/bitmapdevice.hxx>
24 : #include <vcl/dllapi.h>
25 : #include <vcl/outdev.hxx>
26 :
27 : class SalVirtualDevice;
28 : struct SystemGraphicsData;
29 :
30 : class VCL_DLLPUBLIC VirtualDevice : public OutputDevice
31 : {
32 : friend class Application;
33 : friend class ::OutputDevice;
34 : friend class Printer;
35 :
36 : private:
37 : SalVirtualDevice* mpVirDev;
38 : VirtualDevice* mpPrev;
39 : VirtualDevice* mpNext;
40 : sal_uInt16 mnBitCount;
41 : bool mbScreenComp;
42 : sal_Int8 mnAlphaDepth;
43 : sal_uInt8 meRefDevMode;
44 :
45 : SAL_DLLPRIVATE void ImplInitVirDev( const OutputDevice* pOutDev, long nDX, long nDY, sal_uInt16 nBitCount, const SystemGraphicsData *pData = NULL );
46 : SAL_DLLPRIVATE bool InnerImplSetOutputSizePixel( const Size& rNewSize, bool bErase,
47 : const basebmp::RawMemorySharedArray &pBuffer,
48 : const bool bTopDown );
49 : SAL_DLLPRIVATE bool ImplSetOutputSizePixel( const Size& rNewSize, bool bErase,
50 : const basebmp::RawMemorySharedArray &pBuffer,
51 : const bool bTopDown );
52 :
53 : // Copy assignment is forbidden and not implemented.
54 : VirtualDevice (const VirtualDevice &);
55 : VirtualDevice & operator= (const VirtualDevice &);
56 :
57 : /** Used for alpha VDev, to set areas to opaque
58 :
59 : @since \#i32109#
60 : */
61 : SAL_DLLPRIVATE void ImplFillOpaqueRectangle( const Rectangle& rRect );
62 :
63 : // TODO: add extra member for refdev backward compatibility options
64 : #define REFDEV_FORCE_ZERO_EXTLEAD 0x80
65 531706 : SAL_DLLPRIVATE bool ForceZeroExtleadBug() const
66 531706 : { return ((meRefDevMode & REFDEV_FORCE_ZERO_EXTLEAD) != 0); }
67 :
68 : protected:
69 : virtual bool AcquireGraphics() const SAL_OVERRIDE;
70 : virtual void ReleaseGraphics( bool bRelease = true ) SAL_OVERRIDE;
71 :
72 : public:
73 0 : SalVirtualDevice* getSalVirtualDevice() { return mpVirDev; }
74 :
75 : /** Create a virtual device of size 1x1
76 :
77 : @param nBitCount
78 : Bit depth of the generated virtual device. Use 0 here, to
79 : indicate: take default screen depth. Only 0, 1 and 8
80 : are allowed here, with 1 denoting binary mask and 8 a graylevel mask.
81 : */
82 : explicit VirtualDevice( sal_uInt16 nBitCount = 0 );
83 :
84 : /** Create a virtual device of size 1x1
85 :
86 : @param rCompDev
87 : The generated vdev will be compatible to this device.
88 :
89 : @param nBitCount
90 : Bit depth of the generated virtual device. Use 0 here, to
91 : indicate: take default screen depth. Only 0 and 1
92 : are allowed here, with 1 denoting binary mask.
93 : */
94 : explicit VirtualDevice( const OutputDevice& rCompDev,
95 : sal_uInt16 nBitCount = 0 );
96 :
97 : /** Create a virtual device of size 1x1 with alpha channel
98 :
99 : @param rCompDev
100 : The generated vdev will be compatible to this device.
101 :
102 : @param nBitCount
103 : Bit depth of the generated virtual device. Use 0 here, to
104 : indicate: take default screen depth. Only 0 and 1
105 : are allowed here, with 1 denoting binary mask.
106 :
107 : @param nAlphaBitCount
108 : Bit depth of the generated virtual device. Use 0 here, to
109 : indicate: take default screen depth. Only 0 and 1
110 : are allowed here, with 1 denoting binary mask.
111 : */
112 : explicit VirtualDevice( const OutputDevice& rCompDev,
113 : sal_uInt16 nBitCount, sal_uInt16 nAlphaBitCount );
114 :
115 : /** Create a virtual device using an existing system dependent device or graphics context
116 : Any rendering will happen directly on the context and not on any intermediate bitmap.
117 : Note: This might not be supported on all platforms !
118 : */
119 : explicit VirtualDevice( const SystemGraphicsData *pData, sal_uInt16 nBitCount );
120 :
121 : virtual ~VirtualDevice();
122 :
123 : virtual void EnableRTL( bool bEnable = true ) SAL_OVERRIDE;
124 :
125 : bool SetOutputSizePixel( const Size& rNewSize, bool bErase = true );
126 : bool SetOutputSizePixelScaleOffsetAndBuffer( const Size& rNewSize,
127 : const Fraction& rScale,
128 : const Point& rNewOffset,
129 : const basebmp::RawMemorySharedArray &pBuffer,
130 : const bool bTopDown = false );
131 12 : bool SetOutputSize( const Size& rNewSize, bool bErase = true )
132 12 : { return SetOutputSizePixel( LogicToPixel( rNewSize ), bErase ); }
133 :
134 : // reference device modes for different compatibility levels
135 : enum RefDevMode { REFDEV_NONE = 0,
136 : REFDEV_MODE06 = 1, // 600 dpi
137 : REFDEV_MODE_MSO1 = 3,
138 : REFDEV_MODE_PDF1 = 4,
139 : REFDEV_CUSTOM = 5
140 : };
141 :
142 : void SetReferenceDevice( RefDevMode );
143 :
144 : void Compat_ZeroExtleadBug(); // enable workaround for #i60495#
145 :
146 : void SetReferenceDevice( sal_Int32 i_nDPIX, sal_Int32 i_nDPIY );
147 :
148 : virtual sal_uInt16 GetBitCount() const SAL_OVERRIDE;
149 : virtual sal_uInt16 GetAlphaBitCount() const SAL_OVERRIDE;
150 :
151 : private:
152 : SAL_DLLPRIVATE void ImplSetReferenceDevice( RefDevMode, sal_Int32 i_nDPIX, sal_Int32 i_nDPIY );
153 :
154 : protected:
155 : virtual bool UsePolyPolygonForComplexGradient() SAL_OVERRIDE;
156 :
157 : virtual long GetFontExtLeading() const SAL_OVERRIDE;
158 :
159 : };
160 :
161 : #endif // INCLUDED_VCL_VIRDEV_HXX
162 :
163 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|