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 : #include <tools/line.hxx>
21 :
22 : #include <vcl/salbtype.hxx>
23 : #include <vcl/hatch.hxx>
24 : #include <vcl/virdev.hxx>
25 : #include <vcl/outdev.hxx>
26 : #include <vcl/settings.hxx>
27 :
28 : #include "../gdi/pdfwriter_impl.hxx"
29 :
30 : #include <boost/scoped_array.hpp>
31 :
32 : #define HATCH_MAXPOINTS 1024
33 :
34 9926 : extern "C" int SAL_CALL HatchCmpFnc( const void* p1, const void* p2 )
35 : {
36 9926 : const long nX1 = ( (Point*) p1 )->X();
37 9926 : const long nX2 = ( (Point*) p2 )->X();
38 9926 : const long nY1 = ( (Point*) p1 )->Y();
39 9926 : const long nY2 = ( (Point*) p2 )->Y();
40 :
41 9926 : return ( nX1 > nX2 ? 1 : nX1 == nX2 ? nY1 > nY2 ? 1: nY1 == nY2 ? 0 : -1 : -1 );
42 : }
43 :
44 194 : void OutputDevice::DrawHatch( const tools::PolyPolygon& rPolyPoly, const Hatch& rHatch )
45 : {
46 :
47 194 : Hatch aHatch( rHatch );
48 :
49 194 : if ( mnDrawMode & ( DRAWMODE_BLACKLINE | DRAWMODE_WHITELINE |
50 : DRAWMODE_GRAYLINE | DRAWMODE_GHOSTEDLINE |
51 : DRAWMODE_SETTINGSLINE ) )
52 : {
53 0 : Color aColor( rHatch.GetColor() );
54 :
55 0 : if ( mnDrawMode & DRAWMODE_BLACKLINE )
56 0 : aColor = Color( COL_BLACK );
57 0 : else if ( mnDrawMode & DRAWMODE_WHITELINE )
58 0 : aColor = Color( COL_WHITE );
59 0 : else if ( mnDrawMode & DRAWMODE_GRAYLINE )
60 : {
61 0 : const sal_uInt8 cLum = aColor.GetLuminance();
62 0 : aColor = Color( cLum, cLum, cLum );
63 : }
64 0 : else if( mnDrawMode & DRAWMODE_SETTINGSLINE )
65 : {
66 0 : aColor = GetSettings().GetStyleSettings().GetFontColor();
67 : }
68 :
69 0 : if ( mnDrawMode & DRAWMODE_GHOSTEDLINE )
70 : {
71 0 : aColor = Color( ( aColor.GetRed() >> 1 ) | 0x80,
72 0 : ( aColor.GetGreen() >> 1 ) | 0x80,
73 0 : ( aColor.GetBlue() >> 1 ) | 0x80);
74 : }
75 :
76 0 : aHatch.SetColor( aColor );
77 : }
78 :
79 194 : if( mpMetaFile )
80 30 : mpMetaFile->AddAction( new MetaHatchAction( rPolyPoly, aHatch ) );
81 :
82 194 : if( !IsDeviceOutputNecessary() || ImplIsRecordLayout() )
83 30 : return;
84 :
85 164 : if( !mpGraphics && !AcquireGraphics() )
86 0 : return;
87 :
88 164 : if( mbInitClipRegion )
89 0 : InitClipRegion();
90 :
91 164 : if( mbOutputClipped )
92 0 : return;
93 :
94 164 : if( rPolyPoly.Count() )
95 : {
96 164 : tools::PolyPolygon aPolyPoly( LogicToPixel( rPolyPoly ) );
97 164 : GDIMetaFile* pOldMetaFile = mpMetaFile;
98 164 : bool bOldMap = mbMap;
99 :
100 164 : aPolyPoly.Optimize( POLY_OPTIMIZE_NO_SAME );
101 164 : aHatch.SetDistance( ImplLogicWidthToDevicePixel( aHatch.GetDistance() ) );
102 :
103 164 : mpMetaFile = NULL;
104 164 : EnableMapMode( false );
105 164 : Push( PushFlags::LINECOLOR );
106 164 : SetLineColor( aHatch.GetColor() );
107 164 : InitLineColor();
108 164 : DrawHatch( aPolyPoly, aHatch, false );
109 164 : Pop();
110 164 : EnableMapMode( bOldMap );
111 164 : mpMetaFile = pOldMetaFile;
112 : }
113 :
114 164 : if( mpAlphaVDev )
115 0 : mpAlphaVDev->DrawHatch( rPolyPoly, rHatch );
116 : }
117 :
118 28 : void OutputDevice::AddHatchActions( const tools::PolyPolygon& rPolyPoly, const Hatch& rHatch,
119 : GDIMetaFile& rMtf )
120 : {
121 :
122 28 : tools::PolyPolygon aPolyPoly( rPolyPoly );
123 28 : aPolyPoly.Optimize( POLY_OPTIMIZE_NO_SAME | POLY_OPTIMIZE_CLOSE );
124 :
125 28 : if( aPolyPoly.Count() )
126 : {
127 28 : GDIMetaFile* pOldMtf = mpMetaFile;
128 :
129 28 : mpMetaFile = &rMtf;
130 28 : mpMetaFile->AddAction( new MetaPushAction( PushFlags::ALL ) );
131 28 : mpMetaFile->AddAction( new MetaLineColorAction( rHatch.GetColor(), true ) );
132 28 : DrawHatch( aPolyPoly, rHatch, true );
133 28 : mpMetaFile->AddAction( new MetaPopAction() );
134 28 : mpMetaFile = pOldMtf;
135 28 : }
136 28 : }
137 :
138 192 : void OutputDevice::DrawHatch( const tools::PolyPolygon& rPolyPoly, const Hatch& rHatch, bool bMtf )
139 : {
140 192 : if(rPolyPoly.Count())
141 : {
142 : // #i115630# DrawHatch does not work with beziers included in the polypolygon, take care of that
143 192 : bool bIsCurve(false);
144 :
145 384 : for(sal_uInt16 a(0); !bIsCurve && a < rPolyPoly.Count(); a++)
146 : {
147 192 : if(rPolyPoly[a].HasFlags())
148 : {
149 0 : bIsCurve = true;
150 : }
151 : }
152 :
153 192 : if(bIsCurve)
154 : {
155 : OSL_ENSURE(false, "DrawHatch does *not* support curves, falling back to AdaptiveSubdivide()...");
156 0 : tools::PolyPolygon aPolyPoly;
157 :
158 0 : rPolyPoly.AdaptiveSubdivide(aPolyPoly);
159 0 : DrawHatch(aPolyPoly, rHatch, bMtf);
160 : }
161 : else
162 : {
163 192 : Rectangle aRect( rPolyPoly.GetBoundRect() );
164 192 : const long nLogPixelWidth = ImplDevicePixelToLogicWidth( 1 );
165 192 : const long nWidth = ImplDevicePixelToLogicWidth( std::max( ImplLogicWidthToDevicePixel( rHatch.GetDistance() ), 3L ) );
166 192 : boost::scoped_array<Point> pPtBuffer(new Point[ HATCH_MAXPOINTS ]);
167 192 : Point aPt1, aPt2, aEndPt1;
168 192 : Size aInc;
169 :
170 : // Single hatch
171 192 : aRect.Left() -= nLogPixelWidth; aRect.Top() -= nLogPixelWidth; aRect.Right() += nLogPixelWidth; aRect.Bottom() += nLogPixelWidth;
172 192 : CalcHatchValues( aRect, nWidth, rHatch.GetAngle(), aPt1, aPt2, aInc, aEndPt1 );
173 9728 : do
174 : {
175 9728 : DrawHatchLine( Line( aPt1, aPt2 ), rPolyPoly, pPtBuffer.get(), bMtf );
176 9728 : aPt1.X() += aInc.Width(); aPt1.Y() += aInc.Height();
177 9728 : aPt2.X() += aInc.Width(); aPt2.Y() += aInc.Height();
178 : }
179 9728 : while( ( aPt1.X() <= aEndPt1.X() ) && ( aPt1.Y() <= aEndPt1.Y() ) );
180 :
181 192 : if( ( rHatch.GetStyle() == HATCH_DOUBLE ) || ( rHatch.GetStyle() == HATCH_TRIPLE ) )
182 : {
183 : // Double hatch
184 8 : CalcHatchValues( aRect, nWidth, rHatch.GetAngle() + 900, aPt1, aPt2, aInc, aEndPt1 );
185 416 : do
186 : {
187 416 : DrawHatchLine( Line( aPt1, aPt2 ), rPolyPoly, pPtBuffer.get(), bMtf );
188 416 : aPt1.X() += aInc.Width(); aPt1.Y() += aInc.Height();
189 416 : aPt2.X() += aInc.Width(); aPt2.Y() += aInc.Height();
190 : }
191 416 : while( ( aPt1.X() <= aEndPt1.X() ) && ( aPt1.Y() <= aEndPt1.Y() ) );
192 :
193 8 : if( rHatch.GetStyle() == HATCH_TRIPLE )
194 : {
195 : // Triple hatch
196 0 : CalcHatchValues( aRect, nWidth, rHatch.GetAngle() + 450, aPt1, aPt2, aInc, aEndPt1 );
197 0 : do
198 : {
199 0 : DrawHatchLine( Line( aPt1, aPt2 ), rPolyPoly, pPtBuffer.get(), bMtf );
200 0 : aPt1.X() += aInc.Width(); aPt1.Y() += aInc.Height();
201 0 : aPt2.X() += aInc.Width(); aPt2.Y() += aInc.Height();
202 : }
203 0 : while( ( aPt1.X() <= aEndPt1.X() ) && ( aPt1.Y() <= aEndPt1.Y() ) );
204 : }
205 192 : }
206 : }
207 : }
208 192 : }
209 :
210 200 : void OutputDevice::CalcHatchValues( const Rectangle& rRect, long nDist, sal_uInt16 nAngle10,
211 : Point& rPt1, Point& rPt2, Size& rInc, Point& rEndPt1 )
212 : {
213 200 : Point aRef;
214 200 : long nAngle = nAngle10 % 1800;
215 200 : long nOffset = 0;
216 :
217 200 : if( nAngle > 900 )
218 8 : nAngle -= 1800;
219 :
220 200 : aRef = ( !IsRefPoint() ? rRect.TopLeft() : GetRefPoint() );
221 :
222 200 : if( 0 == nAngle )
223 : {
224 172 : rInc = Size( 0, nDist );
225 172 : rPt1 = rRect.TopLeft();
226 172 : rPt2 = rRect.TopRight();
227 172 : rEndPt1 = rRect.BottomLeft();
228 :
229 172 : if( aRef.Y() <= rRect.Top() )
230 172 : nOffset = ( ( rRect.Top() - aRef.Y() ) % nDist );
231 : else
232 0 : nOffset = ( nDist - ( ( aRef.Y() - rRect.Top() ) % nDist ) );
233 :
234 172 : rPt1.Y() -= nOffset;
235 172 : rPt2.Y() -= nOffset;
236 : }
237 28 : else if( 900 == nAngle )
238 : {
239 12 : rInc = Size( nDist, 0 );
240 12 : rPt1 = rRect.TopLeft();
241 12 : rPt2 = rRect.BottomLeft();
242 12 : rEndPt1 = rRect.TopRight();
243 :
244 12 : if( aRef.X() <= rRect.Left() )
245 12 : nOffset = ( rRect.Left() - aRef.X() ) % nDist;
246 : else
247 0 : nOffset = nDist - ( ( aRef.X() - rRect.Left() ) % nDist );
248 :
249 12 : rPt1.X() -= nOffset;
250 12 : rPt2.X() -= nOffset;
251 : }
252 16 : else if( nAngle >= -450 && nAngle <= 450 )
253 : {
254 16 : const double fAngle = F_PI1800 * labs( nAngle );
255 16 : const double fTan = tan( fAngle );
256 16 : const long nYOff = FRound( ( rRect.Right() - rRect.Left() ) * fTan );
257 : long nPY;
258 :
259 16 : rInc = Size( 0, nDist = FRound( nDist / cos( fAngle ) ) );
260 :
261 16 : if( nAngle > 0 )
262 : {
263 8 : rPt1 = rRect.TopLeft();
264 8 : rPt2 = Point( rRect.Right(), rRect.Top() - nYOff );
265 8 : rEndPt1 = Point( rRect.Left(), rRect.Bottom() + nYOff );
266 8 : nPY = FRound( aRef.Y() - ( ( rPt1.X() - aRef.X() ) * fTan ) );
267 : }
268 : else
269 : {
270 8 : rPt1 = rRect.TopRight();
271 8 : rPt2 = Point( rRect.Left(), rRect.Top() - nYOff );
272 8 : rEndPt1 = Point( rRect.Right(), rRect.Bottom() + nYOff );
273 8 : nPY = FRound( aRef.Y() + ( ( rPt1.X() - aRef.X() ) * fTan ) );
274 : }
275 :
276 16 : if( nPY <= rPt1.Y() )
277 8 : nOffset = ( rPt1.Y() - nPY ) % nDist;
278 : else
279 8 : nOffset = nDist - ( ( nPY - rPt1.Y() ) % nDist );
280 :
281 16 : rPt1.Y() -= nOffset;
282 16 : rPt2.Y() -= nOffset;
283 : }
284 : else
285 : {
286 0 : const double fAngle = F_PI1800 * labs( nAngle );
287 0 : const double fTan = tan( fAngle );
288 0 : const long nXOff = FRound( ( rRect.Bottom() - rRect.Top() ) / fTan );
289 : long nPX;
290 :
291 0 : rInc = Size( nDist = FRound( nDist / sin( fAngle ) ), 0 );
292 :
293 0 : if( nAngle > 0 )
294 : {
295 0 : rPt1 = rRect.TopLeft();
296 0 : rPt2 = Point( rRect.Left() - nXOff, rRect.Bottom() );
297 0 : rEndPt1 = Point( rRect.Right() + nXOff, rRect.Top() );
298 0 : nPX = FRound( aRef.X() - ( ( rPt1.Y() - aRef.Y() ) / fTan ) );
299 : }
300 : else
301 : {
302 0 : rPt1 = rRect.BottomLeft();
303 0 : rPt2 = Point( rRect.Left() - nXOff, rRect.Top() );
304 0 : rEndPt1 = Point( rRect.Right() + nXOff, rRect.Bottom() );
305 0 : nPX = FRound( aRef.X() + ( ( rPt1.Y() - aRef.Y() ) / fTan ) );
306 : }
307 :
308 0 : if( nPX <= rPt1.X() )
309 0 : nOffset = ( rPt1.X() - nPX ) % nDist;
310 : else
311 0 : nOffset = nDist - ( ( nPX - rPt1.X() ) % nDist );
312 :
313 0 : rPt1.X() -= nOffset;
314 0 : rPt2.X() -= nOffset;
315 : }
316 200 : }
317 :
318 10144 : void OutputDevice::DrawHatchLine( const Line& rLine, const tools::PolyPolygon& rPolyPoly,
319 : Point* pPtBuffer, bool bMtf )
320 : {
321 : double fX, fY;
322 10144 : long nAdd, nPCounter = 0;
323 :
324 20288 : for( long nPoly = 0, nPolyCount = rPolyPoly.Count(); nPoly < nPolyCount; nPoly++ )
325 : {
326 10144 : const Polygon& rPoly = rPolyPoly[ (sal_uInt16) nPoly ];
327 :
328 10144 : if( rPoly.GetSize() > 1 )
329 : {
330 10144 : Line aCurSegment( rPoly[ 0 ], Point() );
331 :
332 52204 : for( long i = 1, nCount = rPoly.GetSize(); i <= nCount; i++ )
333 : {
334 42060 : aCurSegment.SetEnd( rPoly[ (sal_uInt16)( i % nCount ) ] );
335 42060 : nAdd = 0;
336 :
337 42060 : if( rLine.Intersection( aCurSegment, fX, fY ) )
338 : {
339 37808 : if( ( fabs( fX - aCurSegment.GetStart().X() ) <= 0.0000001 ) &&
340 17948 : ( fabs( fY - aCurSegment.GetStart().Y() ) <= 0.0000001 ) )
341 : {
342 58 : const Line aPrevSegment( rPoly[ (sal_uInt16)( ( i > 1 ) ? ( i - 2 ) : ( nCount - 1 ) ) ], aCurSegment.GetStart() );
343 58 : const double fPrevDistance = rLine.GetDistance( aPrevSegment.GetStart() );
344 58 : const double fCurDistance = rLine.GetDistance( aCurSegment.GetEnd() );
345 :
346 58 : if( ( fPrevDistance <= 0.0 && fCurDistance > 0.0 ) ||
347 0 : ( fPrevDistance > 0.0 && fCurDistance < 0.0 ) )
348 : {
349 50 : nAdd = 1;
350 : }
351 : }
352 37692 : else if( ( fabs( fX - aCurSegment.GetEnd().X() ) <= 0.0000001 ) &&
353 17890 : ( fabs( fY - aCurSegment.GetEnd().Y() ) <= 0.0000001 ) )
354 : {
355 58 : const Line aNextSegment( aCurSegment.GetEnd(), rPoly[ (sal_uInt16)( ( i + 1 ) % nCount ) ] );
356 :
357 116 : if( ( fabs( rLine.GetDistance( aNextSegment.GetEnd() ) ) <= 0.0000001 ) &&
358 58 : ( rLine.GetDistance( aCurSegment.GetStart() ) > 0.0 ) )
359 : {
360 58 : nAdd = 1;
361 : }
362 : }
363 : else
364 19744 : nAdd = 1;
365 :
366 19860 : if( nAdd )
367 19852 : pPtBuffer[ nPCounter++ ] = Point( FRound( fX ), FRound( fY ) );
368 : }
369 :
370 42060 : aCurSegment.SetStart( aCurSegment.GetEnd() );
371 : }
372 : }
373 : }
374 :
375 10144 : if( nPCounter > 1 )
376 : {
377 9926 : qsort( pPtBuffer, nPCounter, sizeof( Point ), HatchCmpFnc );
378 :
379 9926 : if( nPCounter & 1 )
380 0 : nPCounter--;
381 :
382 9926 : if( bMtf )
383 : {
384 2860 : for( long i = 0; i < nPCounter; i += 2 )
385 1430 : mpMetaFile->AddAction( new MetaLineAction( pPtBuffer[ i ], pPtBuffer[ i + 1 ] ) );
386 : }
387 : else
388 : {
389 16992 : for( long i = 0; i < nPCounter; i += 2 )
390 : {
391 8496 : if( mpPDFWriter )
392 : {
393 0 : mpPDFWriter->drawLine( pPtBuffer[ i ], pPtBuffer[ i+1 ] );
394 : }
395 : else
396 : {
397 8496 : const Point aPt1( ImplLogicToDevicePixel( pPtBuffer[ i ] ) );
398 8496 : const Point aPt2( ImplLogicToDevicePixel( pPtBuffer[ i + 1 ] ) );
399 8496 : mpGraphics->DrawLine( aPt1.X(), aPt1.Y(), aPt2.X(), aPt2.Y(), this );
400 : }
401 : }
402 : }
403 : }
404 11377 : }
405 :
406 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|