LibreOffice Module vcl (master) 1
textlayout.cxx
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#include <vcl/ctrl.hxx>
21#include <vcl/kernarray.hxx>
22#include <vcl/outdev.hxx>
23
24#include <textlayout.hxx>
25
26#include <osl/diagnose.h>
27#include <tools/fract.hxx>
28#include <sal/log.hxx>
29
30#if OSL_DEBUG_LEVEL > 1
31#include <rtl/strbuf.hxx>
32#endif
33
34#include <memory>
35#include <iterator>
36
37namespace vcl
38{
39
41 {
42 }
43
44 tools::Long DefaultTextLayout::GetTextWidth( const OUString& _rText, sal_Int32 _nStartIndex, sal_Int32 _nLength ) const
45 {
46 return m_rTargetDevice.GetTextWidth( _rText, _nStartIndex, _nLength );
47 }
48
49 void DefaultTextLayout::DrawText( const Point& _rStartPoint, const OUString& _rText, sal_Int32 _nStartIndex,
50 sal_Int32 _nLength, std::vector< tools::Rectangle >* _pVector, OUString* _pDisplayText )
51 {
52 m_rTargetDevice.DrawText( _rStartPoint, _rText, _nStartIndex, _nLength, _pVector, _pDisplayText );
53 }
54
55 tools::Long DefaultTextLayout::GetTextArray( const OUString& _rText, KernArray* _pDXArray,
56 sal_Int32 _nStartIndex, sal_Int32 _nLength, bool bCaret ) const
57 {
58 return m_rTargetDevice.GetTextArray( _rText, _pDXArray, _nStartIndex, _nLength, bCaret );
59 }
60
61 sal_Int32 DefaultTextLayout::GetTextBreak( const OUString& _rText, tools::Long _nMaxTextWidth, sal_Int32 _nStartIndex, sal_Int32 _nLength ) const
62 {
63 return m_rTargetDevice.GetTextBreak( _rText, _nMaxTextWidth, _nStartIndex, _nLength );
64 }
65
67 {
68 return false;
69 }
70
72 {
73 public:
74 ReferenceDeviceTextLayout( const Control& _rControl, OutputDevice& _rTargetDevice, OutputDevice& _rReferenceDevice );
76
77 // ITextLayout
78 virtual tools::Long GetTextWidth( const OUString& rStr, sal_Int32 nIndex, sal_Int32 nLen ) const override;
79 virtual void DrawText( const Point& _rStartPoint, const OUString& _rText, sal_Int32 _nStartIndex, sal_Int32 _nLength, std::vector< tools::Rectangle >* _pVector, OUString* _pDisplayText ) override;
80 virtual tools::Long GetTextArray( const OUString& _rText, KernArray* _pDXAry, sal_Int32 _nStartIndex, sal_Int32 _nLength, bool bCaret = false ) const override;
81 virtual sal_Int32 GetTextBreak(const OUString& _rText, tools::Long _nMaxTextWidth, sal_Int32 _nStartIndex, sal_Int32 _nLength) const override;
82 virtual bool DecomposeTextRectAction() const override;
83
84 public:
85 // equivalents to the respective OutputDevice methods, which take the reference device into account
86 tools::Rectangle DrawText( const tools::Rectangle& _rRect, const OUString& _rText, DrawTextFlags _nStyle, std::vector< tools::Rectangle >* _pVector, OUString* _pDisplayText, const Size* i_pDeviceSize );
87 tools::Rectangle GetTextRect( const tools::Rectangle& _rRect, const OUString& _rText, DrawTextFlags _nStyle, Size* o_pDeviceSize );
88
89 private:
90
93 const bool m_bRTLEnabled;
94
96 };
97
99 OutputDevice& _rReferenceDevice )
100 :m_rTargetDevice( _rTargetDevice )
101 ,m_rReferenceDevice( _rReferenceDevice )
102 ,m_bRTLEnabled( _rControl.IsRTLEnabled() )
103 {
104 Font const aUnzoomedPointFont( _rControl.GetUnzoomedControlPointFont() );
105 const Fraction& aZoom( _rControl.GetZoom() );
107
108 MapMode aTargetMapMode( m_rTargetDevice.GetMapMode() );
109 OSL_ENSURE( aTargetMapMode.GetOrigin() == Point(), "ReferenceDeviceTextLayout::ReferenceDeviceTextLayout: uhm, the code below won't work here ..." );
110
111 // normally, controls simulate "zoom" by "zooming" the font. This is responsible for (part of) the discrepancies
112 // between text in Writer and text in controls in Writer, though both have the same font.
113 // So, if we have a zoom set at the control, then we do not scale the font, but instead modify the map mode
114 // to accommodate for the zoom.
115 aTargetMapMode.SetScaleX( aZoom ); // TODO: shouldn't this be "current_scale * zoom"?
116 aTargetMapMode.SetScaleY( aZoom );
117
118 // also, use a higher-resolution map unit than "pixels", which should save us some rounding errors when
119 // translating coordinates between the reference device and the target device.
120 OSL_ENSURE( aTargetMapMode.GetMapUnit() == MapUnit::MapPixel,
121 "ReferenceDeviceTextLayout::ReferenceDeviceTextLayout: this class is not expected to work with such target devices!" );
122 // we *could* adjust all the code in this class to handle this case, but at the moment, it's not necessary
123 const MapUnit eTargetMapUnit = m_rReferenceDevice.GetMapMode().GetMapUnit();
124 aTargetMapMode.SetMapUnit( eTargetMapUnit );
125 OSL_ENSURE( aTargetMapMode.GetMapUnit() != MapUnit::MapPixel,
126 "ReferenceDeviceTextLayout::ReferenceDeviceTextLayout: a reference device which has map mode PIXEL?!" );
127
128 m_rTargetDevice.SetMapMode( aTargetMapMode );
129
130 // now that the Zoom is part of the map mode, reset the target device's font to the "unzoomed" version
131 Font aDrawFont( aUnzoomedPointFont );
132 aDrawFont.SetFontSize( OutputDevice::LogicToLogic(aDrawFont.GetFontSize(), MapMode(MapUnit::MapPoint), MapMode(eTargetMapUnit)) );
133 _rTargetDevice.SetFont( aDrawFont );
134
135 // transfer font to the reference device
137 Font aRefFont( aUnzoomedPointFont );
139 aRefFont.GetFontSize(), MapMode(MapUnit::MapPoint), m_rReferenceDevice.GetMapMode()) );
140 m_rReferenceDevice.SetFont( aRefFont );
141 }
142
144 {
147 }
148
149 namespace
150 {
151 bool lcl_normalizeLength( std::u16string_view _rText, const sal_Int32 _nStartIndex, sal_Int32& _io_nLength )
152 {
153 sal_Int32 nTextLength = _rText.size();
154 if ( _nStartIndex > nTextLength )
155 return false;
156 if ( _nStartIndex + _io_nLength > nTextLength )
157 _io_nLength = nTextLength - _nStartIndex;
158 return true;
159 }
160 }
161
162 tools::Long ReferenceDeviceTextLayout::GetTextArray( const OUString& _rText, KernArray* _pDXAry, sal_Int32 _nStartIndex, sal_Int32 _nLength, bool bCaret ) const
163 {
164 if ( !lcl_normalizeLength( _rText, _nStartIndex, _nLength ) )
165 return 0;
166
167 // retrieve the character widths from the reference device
168 tools::Long nTextWidth = m_rReferenceDevice.GetTextArray( _rText, _pDXAry, _nStartIndex, _nLength, bCaret );
169#if OSL_DEBUG_LEVEL > 1
170 if ( _pDXAry )
171 {
172 OStringBuffer aTrace;
173 aTrace.append( "ReferenceDeviceTextLayout::GetTextArray( " );
174 aTrace.append( OUStringToOString( _rText, RTL_TEXTENCODING_UTF8 ) );
175 aTrace.append( " ): " );
176 aTrace.append( nTextWidth );
177 aTrace.append( " = ( " );
178 for ( sal_Int32 i=0; i<_nLength; )
179 {
180 aTrace.append( _pDXAry->at(i) );
181 if ( ++i < _nLength )
182 aTrace.append( ", " );
183 }
184 aTrace.append( ")" );
185 SAL_INFO( "vcl", aTrace.makeStringAndClear() );
186 }
187#endif
188 return nTextWidth;
189 }
190
191 tools::Long ReferenceDeviceTextLayout::GetTextWidth( const OUString& _rText, sal_Int32 _nStartIndex, sal_Int32 _nLength ) const
192 {
193 return GetTextArray( _rText, nullptr, _nStartIndex, _nLength );
194 }
195
196 void ReferenceDeviceTextLayout::DrawText( const Point& _rStartPoint, const OUString& _rText, sal_Int32 _nStartIndex, sal_Int32 _nLength, std::vector< tools::Rectangle >* _pVector, OUString* _pDisplayText )
197 {
198 if ( !lcl_normalizeLength( _rText, _nStartIndex, _nLength ) )
199 return;
200
201 if ( _pVector && _pDisplayText )
202 {
203 std::vector< tools::Rectangle > aGlyphBounds;
204 m_rReferenceDevice.GetGlyphBoundRects( _rStartPoint, _rText, _nStartIndex, _nLength, aGlyphBounds );
205 _pVector->insert( _pVector->end(), aGlyphBounds.begin(), aGlyphBounds.end() );
206 *_pDisplayText += _rText.subView( _nStartIndex, _nLength );
207 return;
208 }
209
210 KernArray aCharWidths;
211 tools::Long nTextWidth = GetTextArray( _rText, &aCharWidths, _nStartIndex, _nLength );
212 m_rTargetDevice.DrawTextArray( _rStartPoint, _rText, aCharWidths, {}, _nStartIndex, _nLength );
213
214 m_aCompleteTextRect.Union( tools::Rectangle( _rStartPoint, Size( nTextWidth, m_rTargetDevice.GetTextHeight() ) ) );
215 }
216
217 sal_Int32 ReferenceDeviceTextLayout::GetTextBreak( const OUString& _rText, tools::Long _nMaxTextWidth, sal_Int32 _nStartIndex, sal_Int32 _nLength ) const
218 {
219 if ( !lcl_normalizeLength( _rText, _nStartIndex, _nLength ) )
220 return 0;
221
222 return m_rReferenceDevice.GetTextBreak( _rText, _nMaxTextWidth, _nStartIndex, _nLength );
223 }
224
226 {
227 return true;
228 }
229
231 std::vector< tools::Rectangle >* _pVector, OUString* _pDisplayText, const Size* i_pDeviceSize )
232 {
233 if ( _rText.isEmpty() )
234 return tools::Rectangle();
235
236 // determine text layout mode from the RTL-ness of the control whose text we render
238 m_rReferenceDevice.SetLayoutMode( nTextLayoutMode );
240
241 // ComplexTextLayoutFlags::TextOriginLeft is because when we do actually draw the text (in DrawText( Point, ... )), then
242 // our caller gives us the left border of the draw position, regardless of script type, text layout,
243 // and the like in our ctor, we set the map mode of the target device from pixel to twip, but our caller doesn't know this,
244 // but passed pixel coordinates. So, adjust the rect.
246 if (i_pDeviceSize)
247 {
248 //if i_pDeviceSize is passed in here, it was the original pre logic-to-pixel size of _rRect
249 SAL_WARN_IF(std::abs(_rRect.GetSize().Width() - m_rTargetDevice.LogicToPixel(*i_pDeviceSize).Width()) > 1, "vcl", "DeviceSize width was expected to match Pixel width");
250 SAL_WARN_IF(std::abs(_rRect.GetSize().Height() - m_rTargetDevice.LogicToPixel(*i_pDeviceSize).Height()) > 1, "vcl", "DeviceSize height was expected to match Pixel height");
251 aRect.SetSize(*i_pDeviceSize);
252 }
253
255 m_rTargetDevice.DrawText( aRect, _rText, _nStyle, _pVector, _pDisplayText, this );
257
258 if ( aTextRect.IsEmpty() && !aRect.IsEmpty() )
259 {
260 // this happens for instance if we're in a PaintToDevice call, where only a MetaFile is recorded,
261 // but no actual painting happens, so our "DrawText( Point, ... )" is never called
262 // In this case, calculate the rect from what OutputDevice::GetTextRect would give us. This has
263 // the disadvantage of less accuracy, compared with the approach to calculate the rect from the
264 // single "DrawText( Point, ... )" calls, since more intermediate arithmetic will translate
265 // from ref- to target-units.
266 aTextRect = m_rTargetDevice.GetTextRect( aRect, _rText, _nStyle, nullptr, this );
267 }
268
269 // similar to above, the text rect now contains TWIPs (or whatever unit the ref device has), but the caller
270 // expects pixel coordinates
271 aTextRect = m_rTargetDevice.LogicToPixel( aTextRect );
272
273 // convert the metric vector
274 if ( _pVector )
275 {
276 for ( auto& rCharRect : *_pVector )
277 {
278 rCharRect = m_rTargetDevice.LogicToPixel( rCharRect );
279 }
280 }
281
282 return aTextRect;
283 }
284
285 tools::Rectangle ReferenceDeviceTextLayout::GetTextRect( const tools::Rectangle& _rRect, const OUString& _rText, DrawTextFlags _nStyle, Size* o_pDeviceSize )
286 {
287 if ( _rText.isEmpty() )
288 return tools::Rectangle();
289
290 // determine text layout mode from the RTL-ness of the control whose text we render
292 m_rReferenceDevice.SetLayoutMode( nTextLayoutMode );
294
295 // ComplexTextLayoutFlags::TextOriginLeft is because when we do actually draw the text (in DrawText( Point, ... )), then
296 // our caller gives us the left border of the draw position, regardless of script type, text layout,
297 // and the like in our ctor, we set the map mode of the target device from pixel to twip, but our caller doesn't know this,
298 // but passed pixel coordinates. So, adjust the rect.
300
301 tools::Rectangle aTextRect = m_rTargetDevice.GetTextRect( aRect, _rText, _nStyle, nullptr, this );
302
303 //if o_pDeviceSize is available, stash the pre logic-to-pixel size in it
304 if (o_pDeviceSize)
305 {
306 *o_pDeviceSize = aTextRect.GetSize();
307 }
308
309 // similar to above, the text rect now contains TWIPs (or whatever unit the ref device has), but the caller
310 // expects pixel coordinates
311 aTextRect = m_rTargetDevice.LogicToPixel( aTextRect );
312
313 return aTextRect;
314 }
315
316 ControlTextRenderer::ControlTextRenderer( const Control& _rControl, OutputDevice& _rTargetDevice, OutputDevice& _rReferenceDevice )
317 :m_pImpl( new ReferenceDeviceTextLayout( _rControl, _rTargetDevice, _rReferenceDevice ) )
318 {
319 }
320
322 {
323 }
324
325 tools::Rectangle ControlTextRenderer::DrawText( const tools::Rectangle& _rRect, const OUString& _rText, DrawTextFlags _nStyle,
326 std::vector< tools::Rectangle >* _pVector, OUString* _pDisplayText, const Size* i_pDeviceSize )
327 {
328 return m_pImpl->DrawText( _rRect, _rText, _nStyle, _pVector, _pDisplayText, i_pDeviceSize );
329 }
330
331 tools::Rectangle ControlTextRenderer::GetTextRect( const tools::Rectangle& _rRect, const OUString& _rText, DrawTextFlags _nStyle, Size* o_pDeviceSize = nullptr )
332 {
333 return m_pImpl->GetTextRect( _rRect, _rText, _nStyle, o_pDeviceSize );
334 }
335
336} // namespace vcl
337
338/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
DrawTextFlags
::std::unique_ptr< XmlIdRegistry_Impl > m_pImpl
Definition: ctrl.hxx:80
vcl::Font GetUnzoomedControlPointFont() const
Definition: ctrl.cxx:476
void SetScaleY(const Fraction &rScaleY)
Definition: mapmod.cxx:150
MapUnit GetMapUnit() const
Definition: mapmod.cxx:181
void SetMapUnit(MapUnit eUnit)
Definition: mapmod.cxx:133
const Point & GetOrigin() const
Definition: mapmod.cxx:183
void SetScaleX(const Fraction &rScaleX)
Definition: mapmod.cxx:144
Some things multiple-inherit from VclAbstractDialog and OutputDevice, so we need to use virtual inher...
Definition: outdev.hxx:170
bool GetGlyphBoundRects(const Point &rOrigin, const OUString &rStr, int nIndex, int nLen, std::vector< tools::Rectangle > &rVector) const
sal_Int32 GetTextBreak(const OUString &rStr, tools::Long nTextWidth, sal_Int32 nIndex, sal_Int32 nLen=-1, tools::Long nCharExtra=0, vcl::text::TextLayoutCache const *=nullptr, const SalLayoutGlyphs *pGlyphs=nullptr) const
Definition: text.cxx:1457
void DrawTextArray(const Point &rStartPt, const OUString &rStr, KernArraySpan aKernArray, o3tl::span< const sal_Bool > pKashidaAry, sal_Int32 nIndex, sal_Int32 nLen, SalLayoutFlags flags=SalLayoutFlags::NONE, const SalLayoutGlyphs *pLayoutCache=nullptr)
Definition: text.cxx:923
void SetFont(const vcl::Font &rNewFont)
Definition: outdev/font.cxx:56
SAL_WARN_UNUSED_RESULT Point PixelToLogic(const Point &rDevicePt) const
Definition: map.cxx:1110
SAL_WARN_UNUSED_RESULT Point LogicToLogic(const Point &rPtSource, const MapMode *pMapModeSource, const MapMode *pMapModeDest) const
Definition: map.cxx:1580
void SetMapMode()
Definition: map.cxx:597
tools::Long GetTextWidth(const OUString &rStr, sal_Int32 nIndex=0, sal_Int32 nLen=-1, vcl::text::TextLayoutCache const *=nullptr, SalLayoutGlyphs const *const pLayoutCache=nullptr) const
Width of the text.
Definition: text.cxx:886
tools::Long GetTextArray(const OUString &rStr, KernArray *pDXAry, sal_Int32 nIndex=0, sal_Int32 nLen=-1, bool bCaret=false, vcl::text::TextLayoutCache const *=nullptr, SalLayoutGlyphs const *const pLayoutCache=nullptr) const
Definition: text.cxx:958
SAL_WARN_UNUSED_RESULT Point LogicToPixel(const Point &rLogicPt) const
Definition: map.cxx:879
tools::Rectangle GetTextRect(const tools::Rectangle &rRect, const OUString &rStr, DrawTextFlags nStyle=DrawTextFlags::WordBreak, TextRectInfo *pInfo=nullptr, const vcl::ITextLayout *_pTextLayout=nullptr) const
Definition: text.cxx:1881
const MapMode & GetMapMode() const
Definition: outdev.hxx:1557
void Push(vcl::PushFlags nFlags=vcl::PushFlags::ALL)
Definition: stack.cxx:32
tools::Long GetTextHeight() const
Height where any character of the current font fits; in logic coordinates.
Definition: text.cxx:897
void Pop()
Definition: stack.cxx:91
void DrawText(const Point &rStartPt, const OUString &rStr, sal_Int32 nIndex=0, sal_Int32 nLen=-1, std::vector< tools::Rectangle > *pVector=nullptr, OUString *pDisplayText=nullptr, const SalLayoutGlyphs *pLayoutCache=nullptr)
Definition: text.cxx:797
void SetLayoutMode(vcl::text::ComplexTextLayoutFlags nTextLayoutMode)
Definition: text.cxx:60
constexpr tools::Long Height() const
constexpr tools::Long Width() const
void SetSize(const Size &)
constexpr Size GetSize() const
tools::Rectangle & Union(const tools::Rectangle &rRect)
constexpr bool IsEmpty() const
::std::unique_ptr< ReferenceDeviceTextLayout > m_pImpl
Definition: textlayout.hxx:106
tools::Rectangle DrawText(const tools::Rectangle &_rRect, const OUString &_rText, DrawTextFlags _nStyle, std::vector< tools::Rectangle > *_pVector, OUString *_pDisplayText, const Size *i_pDeviceSize)
Definition: textlayout.cxx:325
tools::Rectangle GetTextRect(const tools::Rectangle &_rRect, const OUString &_rText, DrawTextFlags _nStyle, Size *o_pDeviceSize)
Definition: textlayout.cxx:331
ControlTextRenderer(const Control &_rControl, OutputDevice &_rTargetDevice, OutputDevice &_rReferenceDevice)
Definition: textlayout.cxx:316
virtual tools::Long GetTextArray(const OUString &_rText, KernArray *_pDXArray, sal_Int32 _nStartIndex, sal_Int32 _nLength, bool bCaret=false) const override
Definition: textlayout.cxx:55
virtual void DrawText(const Point &_rStartPoint, const OUString &_rText, sal_Int32 _nStartIndex, sal_Int32 _nLength, std::vector< tools::Rectangle > *_pVector, OUString *_pDisplayText) override
Definition: textlayout.cxx:49
virtual ~DefaultTextLayout()
Definition: textlayout.cxx:40
virtual bool DecomposeTextRectAction() const override
Definition: textlayout.cxx:66
virtual tools::Long GetTextWidth(const OUString &_rText, sal_Int32 _nStartIndex, sal_Int32 _nLength) const override
Definition: textlayout.cxx:44
virtual sal_Int32 GetTextBreak(const OUString &_rText, tools::Long _nMaxTextWidth, sal_Int32 _nStartIndex, sal_Int32 _nLength) const override
Definition: textlayout.cxx:61
OutputDevice & m_rTargetDevice
Definition: textlayout.hxx:81
void SetFontSize(const Size &)
Definition: font/font.cxx:149
const Size & GetFontSize() const
Definition: font/font.cxx:907
OutputDevice & m_rReferenceDevice
Definition: textlayout.cxx:92
tools::Rectangle m_aCompleteTextRect
Definition: textlayout.cxx:95
virtual void DrawText(const Point &_rStartPoint, const OUString &_rText, sal_Int32 _nStartIndex, sal_Int32 _nLength, std::vector< tools::Rectangle > *_pVector, OUString *_pDisplayText) override
Definition: textlayout.cxx:196
tools::Rectangle GetTextRect(const tools::Rectangle &_rRect, const OUString &_rText, DrawTextFlags _nStyle, Size *o_pDeviceSize)
Definition: textlayout.cxx:285
virtual bool DecomposeTextRectAction() const override
Definition: textlayout.cxx:225
virtual sal_Int32 GetTextBreak(const OUString &_rText, tools::Long _nMaxTextWidth, sal_Int32 _nStartIndex, sal_Int32 _nLength) const override
Definition: textlayout.cxx:217
ReferenceDeviceTextLayout(const Control &_rControl, OutputDevice &_rTargetDevice, OutputDevice &_rReferenceDevice)
Definition: textlayout.cxx:98
virtual tools::Long GetTextArray(const OUString &_rText, KernArray *_pDXAry, sal_Int32 _nStartIndex, sal_Int32 _nLength, bool bCaret=false) const override
Definition: textlayout.cxx:162
virtual tools::Long GetTextWidth(const OUString &rStr, sal_Int32 nIndex, sal_Int32 nLen) const override
Definition: textlayout.cxx:191
const Fraction & GetZoom() const
Definition: window2.cxx:1236
sal_Int32 nIndex
#define SAL_WARN_IF(condition, area, stream)
#define SAL_INFO(area, stream)
MapUnit
int i
OString OUStringToOString(std::u16string_view str, ConnectionSettings const *settings)
long Long
ComplexTextLayoutFlags
Definition: State.hxx:76