LibreOffice Module vcl (master) 1
impglyphitem.hxx
Go to the documentation of this file.
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_IMPGLYPHITEM_HXX
21#define INCLUDED_VCL_IMPGLYPHITEM_HXX
22
24#include <tools/gen.hxx>
25#include <vcl/dllapi.h>
26#include <vcl/outdev.hxx>
27#include <rtl/math.hxx>
28#include <vector>
29
31#include "glyphid.hxx"
32
34{
35 NONE = 0,
36 IS_IN_CLUSTER = 0x01,
37 IS_RTL_GLYPH = 0x02,
38 IS_VERTICAL = 0x04,
39 IS_SPACING = 0x08,
40 IS_DROPPED = 0x10,
41 IS_CLUSTER_START = 0x20,
42 IS_UNSAFE_TO_BREAK = 0x40, // HB_GLYPH_FLAG_UNSAFE_TO_BREAK from harfbuzz
43 IS_SAFE_TO_INSERT_KASHIDA = 0x80 // HB_GLYPH_FLAG_SAFE_TO_INSERT_TATWEEL from harfbuzz
44};
45namespace o3tl
46{
47template <> struct typed_flags<GlyphItemFlags> : is_typed_flags<GlyphItemFlags, 0xff>
48{
49};
50};
51
53{
54 basegfx::B2DPoint m_aLinearPos; // absolute position of non rotated string
55 double m_nOrigWidth; // original glyph width
56 sal_Int32 m_nCharPos; // index in string
57 double m_nXOffset;
58 double m_nYOffset;
59 double m_nNewWidth; // width after adjustments
62 sal_Int8 m_nCharCount; // number of characters making up this glyph
63
64public:
65 GlyphItem(int nCharPos, int nCharCount, sal_GlyphId aGlyphId,
66 const basegfx::B2DPoint& rLinearPos, GlyphItemFlags nFlags, double nOrigWidth,
67 double nXOffset, double nYOffset)
68 : m_aLinearPos(rLinearPos)
69 , m_nOrigWidth(nOrigWidth)
70 , m_nCharPos(nCharPos)
71 , m_nXOffset(nXOffset)
72 , m_nYOffset(nYOffset)
73 , m_nNewWidth(nOrigWidth)
74 , m_aGlyphId(aGlyphId)
75 , m_nFlags(nFlags)
76 , m_nCharCount(nCharCount)
77 {
78 }
79
80 bool IsInCluster() const { return bool(m_nFlags & GlyphItemFlags::IS_IN_CLUSTER); }
81 bool IsRTLGlyph() const { return bool(m_nFlags & GlyphItemFlags::IS_RTL_GLYPH); }
82 bool IsVertical() const { return bool(m_nFlags & GlyphItemFlags::IS_VERTICAL); }
83 bool IsSpacing() const { return bool(m_nFlags & GlyphItemFlags::IS_SPACING); }
84 bool IsDropped() const { return bool(m_nFlags & GlyphItemFlags::IS_DROPPED); }
88 {
90 }
91
92 inline bool GetGlyphBoundRect(const LogicalFontInstance*, tools::Rectangle&) const;
93 inline bool GetGlyphOutline(const LogicalFontInstance*, basegfx::B2DPolyPolygon&) const;
94 inline void dropGlyph();
95
96 sal_GlyphId glyphId() const { return m_aGlyphId; }
97 int charCount() const { return m_nCharCount; }
98 double origWidth() const { return m_nOrigWidth; }
99 int charPos() const { return m_nCharPos; }
100 double xOffset() const { return m_nXOffset; }
101 double yOffset() const { return m_nYOffset; }
102 double newWidth() const { return m_nNewWidth; }
103 const basegfx::B2DPoint& linearPos() const { return m_aLinearPos; }
104
105 void setNewWidth(double width) { m_nNewWidth = width; }
106 void addNewWidth(double width) { m_nNewWidth += width; }
107 void setLinearPos(const basegfx::B2DPoint& point) { m_aLinearPos = point; }
108 void setLinearPosX(double x) { m_aLinearPos.setX(x); }
109 void adjustLinearPosX(double diff) { m_aLinearPos.adjustX(diff); }
110 bool isLayoutEquivalent(const GlyphItem& other) const
111 {
112 return rtl::math::approxEqual(m_aLinearPos.getX(), other.m_aLinearPos.getX(), 8)
113 && rtl::math::approxEqual(m_aLinearPos.getY(), other.m_aLinearPos.getY(), 8)
114 && m_nOrigWidth == other.m_nOrigWidth && m_nCharPos == other.m_nCharPos
115 && m_nXOffset == other.m_nXOffset && m_nYOffset == other.m_nYOffset
116 && m_nNewWidth == other.m_nNewWidth && m_aGlyphId == other.m_aGlyphId
117 && m_nCharCount == other.m_nCharCount
120 }
121};
122
124 tools::Rectangle& rRect) const
125{
126 return pFontInstance->GetGlyphBoundRect(m_aGlyphId, rRect, IsVertical());
127}
128
130 basegfx::B2DPolyPolygon& rPoly) const
131{
132 return pFontInstance->GetGlyphOutline(m_aGlyphId, rPoly, IsVertical());
133}
134
136{
137 m_nCharPos = -1;
139}
140
141class SalLayoutGlyphsImpl : public std::vector<GlyphItem>
142{
143public:
145 : m_rFontInstance(&rFontInstance)
146 {
147 }
148 SalLayoutGlyphsImpl* clone() const;
149 SalLayoutGlyphsImpl* cloneCharRange(sal_Int32 index, sal_Int32 length) const;
151 bool IsValid() const;
152 void SetFlags(SalLayoutFlags flags) { mnFlags = flags; }
153 SalLayoutFlags GetFlags() const { return mnFlags; }
154#ifdef DBG_UTIL
155 bool isLayoutEquivalent(const SalLayoutGlyphsImpl* other) const;
156#endif
157
158private:
159 bool isSafeToBreak(const_iterator pos, bool rtl) const;
162};
163
164#endif // INCLUDED_VCL_IMPGLYPHITEM_HXX
165
166/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
SalLayoutFlags
bool GetGlyphBoundRect(const LogicalFontInstance *, tools::Rectangle &) const
double xOffset() const
double m_nXOffset
bool GetGlyphOutline(const LogicalFontInstance *, basegfx::B2DPolyPolygon &) const
double yOffset() const
bool IsSpacing() const
sal_Int32 m_nCharPos
bool IsRTLGlyph() const
sal_GlyphId m_aGlyphId
void setLinearPosX(double x)
GlyphItem(int nCharPos, int nCharCount, sal_GlyphId aGlyphId, const basegfx::B2DPoint &rLinearPos, GlyphItemFlags nFlags, double nOrigWidth, double nXOffset, double nYOffset)
bool IsSafeToInsertKashida() const
GlyphItemFlags m_nFlags
sal_GlyphId glyphId() const
bool IsClusterStart() const
int charPos() const
bool IsDropped() const
double origWidth() const
int charCount() const
void setLinearPos(const basegfx::B2DPoint &point)
void addNewWidth(double width)
double newWidth() const
bool isLayoutEquivalent(const GlyphItem &other) const
bool IsVertical() const
basegfx::B2DPoint m_aLinearPos
bool IsUnsafeToBreak() const
double m_nNewWidth
void setNewWidth(double width)
double m_nYOffset
double m_nOrigWidth
sal_Int8 m_nCharCount
void dropGlyph()
bool IsInCluster() const
void adjustLinearPosX(double diff)
const basegfx::B2DPoint & linearPos() const
virtual bool GetGlyphOutline(sal_GlyphId, basegfx::B2DPolyPolygon &, bool) const =0
bool GetGlyphBoundRect(sal_GlyphId, tools::Rectangle &, bool) const
SalLayoutGlyphsImpl(LogicalFontInstance &rFontInstance)
void SetFlags(SalLayoutFlags flags)
SalLayoutFlags GetFlags() const
rtl::Reference< LogicalFontInstance > m_rFontInstance
SalLayoutGlyphsImpl * clone() const
bool IsValid() const
bool isSafeToBreak(const_iterator pos, bool rtl) const
bool isLayoutEquivalent(const SalLayoutGlyphsImpl *other) const
SalLayoutFlags mnFlags
SalLayoutGlyphsImpl * cloneCharRange(sal_Int32 index, sal_Int32 length) const
const rtl::Reference< LogicalFontInstance > & GetFont() const
TYPE getX() const
void adjustX(TYPE fX)
TYPE getY() const
void setX(TYPE fX)
#define VCL_DLLPUBLIC
Definition: dllapi.h:29
float x
sal_Int32 m_nFlags
uint32_t sal_GlyphId
Definition: glyphid.hxx:24
GlyphItemFlags
def point()
NONE
unsigned char sal_uInt8
signed char sal_Int8