1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef INCLUDED_CANVAS_CANVASTOOLS_HXX
#define INCLUDED_CANVAS_CANVASTOOLS_HXX
#include <com/sun/star/uno/Reference.hxx>
#include <com/sun/star/uno/Sequence.hxx>
#include <com/sun/star/uno/RuntimeException.hpp>
#include <osl/diagnose.h>
#include <rtl/ustring.hxx>
#include <sal/log.hxx>
#include <math.h>
#include <string.h>
#include <vector>
#include <limits>
#include <canvas/canvastoolsdllapi.h>
namespace basegfx
{
class B2DHomMatrix;
class B2DRange;
class B2IRange;
class B2IPoint;
class B2DPolyPolygon;
}
namespace com::sun::star::geometry
{
struct RealSize2D;
struct IntegerSize2D;
struct AffineMatrix2D;
struct Matrix2D;
}
namespace com::sun::star::rendering
{
struct RenderState;
struct ViewState;
struct IntegerBitmapLayout;
class XCanvas;
struct Texture;
class XIntegerBitmapColorSpace;
}
namespace com::sun::star::awt
{
struct Rectangle;
class XWindow2;
}
namespace com::sun::star::beans {
struct PropertyValue;
}
class Color;
class OutputDevice;
namespace canvas
{
namespace tools
{
/** Compute the next highest power of 2 of a 32-bit value
Code devised by Sean Anderson, in good ole HAKMEM
tradition.
@return 1 << (lg(x - 1) + 1)
*/
inline sal_uInt32 nextPow2( sal_uInt32 x )
{
--x;
x |= x >> 1;
x |= x >> 2;
x |= x >> 4;
x |= x >> 8;
x |= x >> 16;
return ++x;
}
/**
*
* Count the number of 1-bits of a n-bit value
*
*/
/** Round given floating point value down to next integer
*/
inline sal_Int32 roundDown( const double& rVal )
{
return static_cast< sal_Int32 >( floor( rVal ) );
}
/** Round given floating point value up to next integer
*/
inline sal_Int32 roundUp( const double& rVal )
{
return static_cast< sal_Int32 >( ceil( rVal ) );
}
/** Create a RealSize2D with both coordinate values set to +infinity
*/
CANVASTOOLS_DLLPUBLIC css::geometry::RealSize2D createInfiniteSize2D();
// View- and RenderState utilities
CANVASTOOLS_DLLPUBLIC css::rendering::RenderState&
initRenderState( css::rendering::RenderState& renderState );
CANVASTOOLS_DLLPUBLIC css::rendering::ViewState&
initViewState( css::rendering::ViewState& viewState );
CANVASTOOLS_DLLPUBLIC ::basegfx::B2DHomMatrix&
getViewStateTransform( ::basegfx::B2DHomMatrix& transform,
const css::rendering::ViewState& viewState );
CANVASTOOLS_DLLPUBLIC css::rendering::ViewState&
setViewStateTransform( css::rendering::ViewState& viewState,
const ::basegfx::B2DHomMatrix& transform );
CANVASTOOLS_DLLPUBLIC ::basegfx::B2DHomMatrix&
getRenderStateTransform( ::basegfx::B2DHomMatrix& transform,
const css::rendering::RenderState& renderState );
CANVASTOOLS_DLLPUBLIC css::rendering::RenderState&
setRenderStateTransform( css::rendering::RenderState& renderState,
const ::basegfx::B2DHomMatrix& transform );
CANVASTOOLS_DLLPUBLIC css::rendering::RenderState&
appendToRenderState( css::rendering::RenderState& renderState,
const ::basegfx::B2DHomMatrix& transform );
CANVASTOOLS_DLLPUBLIC css::rendering::RenderState&
prependToRenderState( css::rendering::RenderState& renderState,
const ::basegfx::B2DHomMatrix& transform );
CANVASTOOLS_DLLPUBLIC ::basegfx::B2DHomMatrix&
mergeViewAndRenderTransform( ::basegfx::B2DHomMatrix& transform,
const css::rendering::ViewState& viewState,
const css::rendering::RenderState& renderState );
// Matrix utilities
CANVASTOOLS_DLLPUBLIC css::geometry::AffineMatrix2D&
setIdentityAffineMatrix2D( css::geometry::AffineMatrix2D& matrix );
CANVASTOOLS_DLLPUBLIC css::geometry::Matrix2D&
setIdentityMatrix2D( css::geometry::Matrix2D& matrix );
// Special utilities
/** Calc the bounding rectangle of a transformed rectangle.
The method applies the given transformation to the
specified input rectangle, and returns the bounding box of
the resulting output area.
@param o_Rect
Output rectangle
@param i_Rect
Input rectangle
@param i_Transformation
Transformation to apply to the input rectangle
@return a reference to the resulting rectangle
*/
CANVASTOOLS_DLLPUBLIC ::basegfx::B2DRange& calcTransformedRectBounds( ::basegfx::B2DRange& o_Rect,
const ::basegfx::B2DRange& i_Rect,
const ::basegfx::B2DHomMatrix& i_Transformation );
/** Calc a transform that maps the upper, left corner of a
rectangle to the origin.
The method is a specialized version of
calcRectToRectTransform() (Removed now), mapping the input rectangle's
the upper, left corner to the origin, and leaving the size
untouched.
@param o_transform
Output parameter, to receive the resulting transformation
matrix.
@param i_srcRect
Input parameter, specifies the original source
rectangle. The resulting transformation will exactly map
the source rectangle's upper, left corner to the origin.
@param i_transformation
The original transformation matrix. This is changed with
translations (if necessary), to exactly map the source
rectangle to the origin.
@return a reference to the resulting transformation matrix
@see calcRectToRectTransform()
@see calcTransformedRectBounds()
*/
CANVASTOOLS_DLLPUBLIC ::basegfx::B2DHomMatrix& calcRectToOriginTransform( ::basegfx::B2DHomMatrix& o_transform,
const ::basegfx::B2DRange& i_srcRect,
const ::basegfx::B2DHomMatrix& i_transformation );
/** Check whether a given rectangle is within another
transformed rectangle.
This method checks for polygonal containedness, i.e. the
transformed rectangle is not represented as an axis-aligned
rectangle anymore (like calcTransformedRectBounds()), but
polygonal. Thus, the insideness test is based on tight
bounds.
@param rContainedRect
This rectangle is checked, whether it is fully within the
transformed rTransformRect.
@param rTransformRect
This rectangle is transformed, and then checked whether it
fully contains rContainedRect.
@param rTransformation
This transformation is applied to rTransformRect
*/
CANVASTOOLS_DLLPUBLIC bool isInside( const ::basegfx::B2DRange& rContainedRect,
const ::basegfx::B2DRange& rTransformRect,
const ::basegfx::B2DHomMatrix& rTransformation );
/** Clip a scroll to the given bound rect
@param io_rSourceArea
Source area to scroll. The resulting clipped source area
is returned therein.
@param io_rDestPoint
Destination point of the scroll (upper, left corner of
rSourceArea after the scroll). The new, resulting
destination point is returned therein.q
@param o_ClippedAreas
Vector of rectangles in the <em>destination</em> area
coordinate system, which are clipped away from the source
area, and thus need extra updates (i.e. they are not
correctly copy from the scroll operation, since there was
no information about them in the source).
@param rBounds
Bounds to clip against.
@return false, if the resulting scroll area is empty
*/
CANVASTOOLS_DLLPUBLIC bool clipScrollArea( ::basegfx::B2IRange& io_rSourceArea,
::basegfx::B2IPoint& io_rDestPoint,
::std::vector< ::basegfx::B2IRange >& o_ClippedAreas,
const ::basegfx::B2IRange& rBounds );
/** Clip a blit between two differently surfaces.
This method clips source and dest rect for a clip between
two differently clipped surfaces, such that the resulting
blit rects are fully within both clip areas.
@param io_rSourceArea
Source area of the blit. Returned therein is the computed
clipped source area.
@param io_rDestPoint
Dest area of the blit. Returned therein is the computed
clipped dest area.
@param rSourceBounds
Clip bounds of the source surface
@param rDestBounds
Clip bounds of the dest surface
@return false, if the resulting blit is empty, i.e. fully
clipped away.
*/
CANVASTOOLS_DLLPUBLIC ::basegfx::B2IRange spritePixelAreaFromB2DRange( const ::basegfx::B2DRange& rRange );
/** Retrieve various internal properties of the actual canvas implementation.
This method retrieves a bunch of internal, implementation-
and platform-dependent values from the canvas
implementation. Among them are for example operating
system window handles. The actual layout and content of
the returned sequence is dependent on the component
implementation, undocumented and subject to change.
@param i_rxCanvas
Input parameter, the canvas representation for which the device information
is to be retrieved
@param o_rxParams
Output parameter, the sequence of Anys that hold the device parameters. Layout is as described above
@return A reference to the resulting sequence of parameters
*/
CANVASTOOLS_DLLPUBLIC css::uno::Sequence< css::uno::Any >& getDeviceInfo(
const css::uno::Reference< css::rendering::XCanvas >& i_rxCanvas,
css::uno::Sequence< css::uno::Any >& o_rxParams );
/** Return a color space for a default RGBA integer format
Use this method for dead-simple bitmap implementations,
that map all their formats to 8888 RGBA color.
*/
CANVASTOOLS_DLLPUBLIC css::uno::Reference< css::rendering::XIntegerBitmapColorSpace> const & getStdColorSpace();
/** Return a color space for a default RGB integer format
Use this method for dead-simple bitmap implementations,
that map all their formats to 8888 RGB color (the last byte
is unused).
*/
CANVASTOOLS_DLLPUBLIC css::uno::Reference< css::rendering::XIntegerBitmapColorSpace> const & getStdColorSpaceWithoutAlpha();
/** Return a memory layout for a default RGBA integer format
Use this method for dead-simple bitmap implementations,
that map all their formats to 8888 RGBA color.
*/
CANVASTOOLS_DLLPUBLIC css::rendering::IntegerBitmapLayout getStdMemoryLayout(
const css::geometry::IntegerSize2D& rBitmapSize );
/// Convert standard 8888 RGBA color to vcl color
CANVASTOOLS_DLLPUBLIC css::uno::Sequence<sal_Int8> colorToStdIntSequence( const ::Color& rColor );
// Modelled closely after boost::numeric_cast, only that we
// issue some trace output here and throw a RuntimeException
/** Cast numeric value into another (numeric) data type
Apart from converting the numeric value, this template
also checks if any overflow, underflow, or sign
information is lost (if yes, it throws an
uno::RuntimeException.
*/
template< typename Target, typename Source > inline Target numeric_cast( Source arg )
{
// typedefs abbreviating respective trait classes
typedef ::std::numeric_limits< Source > SourceLimits;
typedef ::std::numeric_limits< Target > TargetLimits;
#undef min
#undef max
if( ( arg<0 && !TargetLimits::is_signed) || // losing the sign here
( SourceLimits::is_signed && arg<TargetLimits::min()) || // underflow will happen
( arg>TargetLimits::max() ) ) // overflow will happen
{
# if OSL_DEBUG_LEVEL > 2
SAL_WARN("canvas", "numeric_cast detected data loss");
#endif
throw css::uno::RuntimeException(
"numeric_cast detected data loss",
nullptr );
}
return static_cast<Target>(arg);
}
CANVASTOOLS_DLLPUBLIC css::awt::Rectangle getAbsoluteWindowRect(
const css::awt::Rectangle& rRect,
const css::uno::Reference< css::awt::XWindow2 >& xWin );
/** Retrieve for small bound marks around each corner of the given rectangle
*/
CANVASTOOLS_DLLPUBLIC ::basegfx::B2DPolyPolygon getBoundMarksPolyPolygon( const ::basegfx::B2DRange& rRange );
/** Calculate number of gradient "strips" to generate (takes
into account device resolution)
@param nColorSteps
Maximal integer difference between all color stops, needed
for smooth gradient color differences
*/
CANVASTOOLS_DLLPUBLIC int calcGradientStepCount( ::basegfx::B2DHomMatrix& rTotalTransform,
const css::rendering::ViewState& viewState,
const css::rendering::RenderState& renderState,
const css::rendering::Texture& texture,
int nColorSteps );
/** A very simplistic map for ASCII strings and arbitrary value
types.
This class internally references a constant, static array of
sorted MapEntries, and performs a binary search to look up
values for a given query string. Note that this map is static,
i.e. not meant to be extended at runtime.
@tpl ValueType
The value type this map should store, associated with an ASCII
string.
*/
template< typename ValueType > class ValueMap
{
public:
struct MapEntry
{
const char* maKey;
ValueType maValue;
};
/** Create a ValueMap for the given array of MapEntries.
@param pMap
Pointer to a <em>static</em> array of MapEntries. Must
live longer than this object! Make absolutely sure that
the string entries passed via pMap are ASCII-only -
everything else might not yield correct string
comparisons, and thus will result in undefined behaviour.
@param nEntries
Number of entries for pMap
@param bCaseSensitive
Whether the map query should be performed case sensitive
or not. When bCaseSensitive is false, all MapEntry strings
must be lowercase!
*/
ValueMap( const MapEntry* pMap,
::std::size_t nEntries,
bool bCaseSensitive ) :
mpMap( pMap ),
mnEntries( nEntries ),
mbCaseSensitive( bCaseSensitive )
{
#ifdef DBG_UTIL
// Ensure that map entries are sorted (and all lowercase, if this
// map is case insensitive)
const OString aStr( pMap->maKey );
if( !mbCaseSensitive &&
aStr != aStr.toAsciiLowerCase() )
{
SAL_WARN("canvas", "ValueMap::ValueMap(): Key is not lowercase " << pMap->maKey);
}
if( mnEntries > 1 )
{
for( ::std::size_t i=0; i<mnEntries-1; ++i, ++pMap )
{
if( !mapComparator(pMap[0], pMap[1]) &&
mapComparator(pMap[1], pMap[0]) )
{
SAL_WARN("canvas", "ValueMap::ValueMap(): Map is not sorted, keys are wrong, "
<< pMap[0].maKey << " and " << pMap[1].maKey);
OSL_FAIL( "ValueMap::ValueMap(): Map is not sorted" );
}
const OString aStr2( pMap[1].maKey );
if( !mbCaseSensitive &&
aStr2 != aStr2.toAsciiLowerCase() )
{
SAL_WARN("canvas", "ValueMap::ValueMap(): Key is not lowercase" << pMap[1].maKey);
}
}
}
#endif
}
/** Lookup a value for the given query string
@param rName
The string to lookup. If the map was created with the case
insensitive flag, the lookup is performed
case-insensitive, otherwise, case-sensitive.
@param o_rResult
Output parameter, which receives the value associated with
the query string. If no value was found, the referenced
object is kept unmodified.
@return true, if a matching entry was found.
*/
bool lookup( const OUString& rName,
ValueType& o_rResult ) const
{
// rName is required to contain only ASCII characters.
// TODO(Q1): Enforce this at upper layers
OString aKey( OUStringToOString( mbCaseSensitive ? rName : rName.toAsciiLowerCase(),
RTL_TEXTENCODING_ASCII_US ) );
MapEntry aSearchKey =
{
aKey.getStr(),
ValueType()
};
const MapEntry* pEnd = mpMap+mnEntries;
const MapEntry* pRes = ::std::lower_bound( mpMap,
pEnd,
aSearchKey,
&mapComparator );
if( pRes != pEnd )
{
// place to _insert before_ found - is it equal to
// the search key?
if( strcmp( pRes->maKey, aSearchKey.maKey ) == 0 )
{
// yep, correct entry found
o_rResult = pRes->maValue;
return true;
}
}
// not found
return false;
}
private:
static bool mapComparator( const MapEntry& rLHS,
const MapEntry& rRHS )
{
return strcmp( rLHS.maKey,
rRHS.maKey ) < 0;
}
const MapEntry* mpMap;
::std::size_t mnEntries;
bool mbCaseSensitive;
};
CANVASTOOLS_DLLPUBLIC void clipOutDev(const css::rendering::ViewState& viewState,
const css::rendering::RenderState& renderState,
OutputDevice& rOutDev,
OutputDevice* p2ndOutDev=nullptr);
CANVASTOOLS_DLLPUBLIC void extractExtraFontProperties(const css::uno::Sequence<css::beans::PropertyValue>& rExtraFontProperties,
sal_uInt32& rEmphasisMark);
}
}
#endif /* INCLUDED_CANVAS_CANVASTOOLS_HXX */
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|