1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include <vcl/ctrl.hxx>
21 #include <vcl/outdev.hxx>
23 #include <textlayout.hxx>
25 #include <osl/diagnose.h>
26 #include <tools/fract.hxx>
27 #include <sal/log.hxx>
29 #if OSL_DEBUG_LEVEL > 1
30 #include <rtl/strbuf.hxx>
39 DefaultTextLayout::~DefaultTextLayout()
43 long DefaultTextLayout::GetTextWidth( const OUString
& _rText
, sal_Int32 _nStartIndex
, sal_Int32 _nLength
) const
45 return m_rTargetDevice
.GetTextWidth( _rText
, _nStartIndex
, _nLength
);
48 void DefaultTextLayout::DrawText( const Point
& _rStartPoint
, const OUString
& _rText
, sal_Int32 _nStartIndex
,
49 sal_Int32 _nLength
, MetricVector
* _pVector
, OUString
* _pDisplayText
)
51 m_rTargetDevice
.DrawText( _rStartPoint
, _rText
, _nStartIndex
, _nLength
, _pVector
, _pDisplayText
);
54 void DefaultTextLayout::GetCaretPositions( const OUString
& _rText
, long* _pCaretXArray
,
55 sal_Int32 _nStartIndex
, sal_Int32 _nLength
) const
57 m_rTargetDevice
.GetCaretPositions( _rText
, _pCaretXArray
, _nStartIndex
, _nLength
);
60 sal_Int32
DefaultTextLayout::GetTextBreak( const OUString
& _rText
, long _nMaxTextWidth
, sal_Int32 _nStartIndex
, sal_Int32 _nLength
) const
62 return m_rTargetDevice
.GetTextBreak( _rText
, _nMaxTextWidth
, _nStartIndex
, _nLength
);
65 bool DefaultTextLayout::DecomposeTextRectAction() const
70 class ReferenceDeviceTextLayout
: public ITextLayout
73 ReferenceDeviceTextLayout( const Control
& _rControl
, OutputDevice
& _rTargetDevice
, OutputDevice
& _rReferenceDevice
);
74 virtual ~ReferenceDeviceTextLayout();
77 virtual long GetTextWidth( const OUString
& rStr
, sal_Int32 nIndex
, sal_Int32 nLen
) const override
;
78 virtual void DrawText( const Point
& _rStartPoint
, const OUString
& _rText
, sal_Int32 _nStartIndex
, sal_Int32 _nLength
, MetricVector
* _pVector
, OUString
* _pDisplayText
) override
;
79 virtual void GetCaretPositions( const OUString
& _rText
, long* _pCaretXArray
, sal_Int32 _nStartIndex
, sal_Int32 _nLength
) const override
;
80 virtual sal_Int32
GetTextBreak(const OUString
& _rText
, long _nMaxTextWidth
, sal_Int32 _nStartIndex
, sal_Int32 _nLength
) const override
;
81 virtual bool DecomposeTextRectAction() const override
;
84 // equivalents to the respective OutputDevice methods, which take the reference device into account
85 tools::Rectangle
DrawText( const tools::Rectangle
& _rRect
, const OUString
& _rText
, DrawTextFlags _nStyle
, MetricVector
* _pVector
, OUString
* _pDisplayText
, const Size
* i_pDeviceSize
);
86 tools::Rectangle
GetTextRect( const tools::Rectangle
& _rRect
, const OUString
& _rText
, DrawTextFlags _nStyle
, Size
* o_pDeviceSize
);
89 long GetTextArray( const OUString
& _rText
, long* _pDXAry
, sal_Int32 _nStartIndex
, sal_Int32 _nLength
) const;
91 OutputDevice
& m_rTargetDevice
;
92 OutputDevice
& m_rReferenceDevice
;
93 Font
const m_aUnzoomedPointFont
;
94 const bool m_bRTLEnabled
;
96 tools::Rectangle m_aCompleteTextRect
;
99 ReferenceDeviceTextLayout::ReferenceDeviceTextLayout( const Control
& _rControl
, OutputDevice
& _rTargetDevice
,
100 OutputDevice
& _rReferenceDevice
)
101 :m_rTargetDevice( _rTargetDevice
)
102 ,m_rReferenceDevice( _rReferenceDevice
)
103 ,m_aUnzoomedPointFont( _rControl
.GetUnzoomedControlPointFont() )
104 ,m_bRTLEnabled( _rControl
.IsRTLEnabled() )
106 const Fraction
& aZoom( _rControl
.GetZoom() );
107 m_rTargetDevice
.Push( PushFlags::MAPMODE
| PushFlags::FONT
| PushFlags::TEXTLAYOUTMODE
);
109 MapMode
aTargetMapMode( m_rTargetDevice
.GetMapMode() );
110 OSL_ENSURE( aTargetMapMode
.GetOrigin() == Point(), "ReferenceDeviceTextLayout::ReferenceDeviceTextLayout: uhm, the code below won't work here ..." );
112 // normally, controls simulate "zoom" by "zooming" the font. This is responsible for (part of) the discrepancies
113 // between text in Writer and text in controls in Writer, though both have the same font.
114 // So, if we have a zoom set at the control, then we do not scale the font, but instead modify the map mode
115 // to accommodate for the zoom.
116 aTargetMapMode
.SetScaleX( aZoom
); // TODO: shouldn't this be "current_scale * zoom"?
117 aTargetMapMode
.SetScaleY( aZoom
);
119 // also, use a higher-resolution map unit than "pixels", which should save us some rounding errors when
120 // translating coordinates between the reference device and the target device.
121 OSL_ENSURE( aTargetMapMode
.GetMapUnit() == MapUnit::MapPixel
,
122 "ReferenceDeviceTextLayout::ReferenceDeviceTextLayout: this class is not expected to work with such target devices!" );
123 // we *could* adjust all the code in this class to handle this case, but at the moment, it's not necessary
124 const MapUnit eTargetMapUnit
= m_rReferenceDevice
.GetMapMode().GetMapUnit();
125 aTargetMapMode
.SetMapUnit( eTargetMapUnit
);
126 OSL_ENSURE( aTargetMapMode
.GetMapUnit() != MapUnit::MapPixel
,
127 "ReferenceDeviceTextLayout::ReferenceDeviceTextLayout: a reference device which has map mode PIXEL?!" );
129 m_rTargetDevice
.SetMapMode( aTargetMapMode
);
131 // now that the Zoom is part of the map mode, reset the target device's font to the "unzoomed" version
132 Font
aDrawFont( m_aUnzoomedPointFont
);
133 aDrawFont
.SetFontSize( OutputDevice::LogicToLogic(aDrawFont
.GetFontSize(), MapMode(MapUnit::MapPoint
), MapMode(eTargetMapUnit
)) );
134 _rTargetDevice
.SetFont( aDrawFont
);
136 // transfer font to the reference device
137 m_rReferenceDevice
.Push( PushFlags::FONT
| PushFlags::TEXTLAYOUTMODE
);
138 Font
aRefFont( m_aUnzoomedPointFont
);
139 aRefFont
.SetFontSize( OutputDevice::LogicToLogic(
140 aRefFont
.GetFontSize(), MapMode(MapUnit::MapPoint
), m_rReferenceDevice
.GetMapMode()) );
141 m_rReferenceDevice
.SetFont( aRefFont
);
144 ReferenceDeviceTextLayout::~ReferenceDeviceTextLayout()
146 m_rReferenceDevice
.Pop();
147 m_rTargetDevice
.Pop();
152 bool lcl_normalizeLength( const OUString
& _rText
, const sal_Int32 _nStartIndex
, sal_Int32
& _io_nLength
)
154 sal_Int32 nTextLength
= _rText
.getLength();
155 if ( _nStartIndex
> nTextLength
)
157 if ( _nStartIndex
+ _io_nLength
> nTextLength
)
158 _io_nLength
= nTextLength
- _nStartIndex
;
163 long ReferenceDeviceTextLayout::GetTextArray( const OUString
& _rText
, long* _pDXAry
, sal_Int32 _nStartIndex
, sal_Int32 _nLength
) const
165 if ( !lcl_normalizeLength( _rText
, _nStartIndex
, _nLength
) )
168 // retrieve the character widths from the reference device
169 long nTextWidth
= m_rReferenceDevice
.GetTextArray( _rText
, _pDXAry
, _nStartIndex
, _nLength
);
170 #if OSL_DEBUG_LEVEL > 1
173 OStringBuffer aTrace
;
174 aTrace
.append( "ReferenceDeviceTextLayout::GetTextArray( " );
175 aTrace
.append( OUStringToOString( _rText
, RTL_TEXTENCODING_UTF8
) );
176 aTrace
.append( " ): " );
177 aTrace
.append( nTextWidth
);
178 aTrace
.append( " = ( " );
179 for ( sal_Int32 i
=0; i
<_nLength
; )
181 aTrace
.append( _pDXAry
[i
] );
182 if ( ++i
< _nLength
)
183 aTrace
.append( ", " );
185 aTrace
.append( ")" );
186 SAL_INFO( "vcl", aTrace
.makeStringAndClear() );
192 long ReferenceDeviceTextLayout::GetTextWidth( const OUString
& _rText
, sal_Int32 _nStartIndex
, sal_Int32 _nLength
) const
194 return GetTextArray( _rText
, nullptr, _nStartIndex
, _nLength
);
197 void ReferenceDeviceTextLayout::DrawText( const Point
& _rStartPoint
, const OUString
& _rText
, sal_Int32 _nStartIndex
, sal_Int32 _nLength
, MetricVector
* _pVector
, OUString
* _pDisplayText
)
199 if ( !lcl_normalizeLength( _rText
, _nStartIndex
, _nLength
) )
202 if ( _pVector
&& _pDisplayText
)
204 MetricVector aGlyphBounds
;
205 m_rReferenceDevice
.GetGlyphBoundRects( _rStartPoint
, _rText
, _nStartIndex
, _nLength
, aGlyphBounds
);
207 aGlyphBounds
.begin(), aGlyphBounds
.end(),
208 ::std::insert_iterator
< MetricVector
> ( *_pVector
, _pVector
->end() ) );
209 *_pDisplayText
+= _rText
.copy( _nStartIndex
, _nLength
);
213 std::unique_ptr
<long[]> pCharWidths(new long[ _nLength
]);
214 long nTextWidth
= GetTextArray( _rText
, pCharWidths
.get(), _nStartIndex
, _nLength
);
215 m_rTargetDevice
.DrawTextArray( _rStartPoint
, _rText
, pCharWidths
.get(), _nStartIndex
, _nLength
);
218 m_aCompleteTextRect
.Union( tools::Rectangle( _rStartPoint
, Size( nTextWidth
, m_rTargetDevice
.GetTextHeight() ) ) );
221 void ReferenceDeviceTextLayout::GetCaretPositions( const OUString
& _rText
, long* _pCaretXArray
,
222 sal_Int32 _nStartIndex
, sal_Int32 _nLength
) const
224 if ( !lcl_normalizeLength( _rText
, _nStartIndex
, _nLength
) )
227 // retrieve the caret positions from the reference device
228 m_rReferenceDevice
.GetCaretPositions( _rText
, _pCaretXArray
, _nStartIndex
, _nLength
);
231 sal_Int32
ReferenceDeviceTextLayout::GetTextBreak( const OUString
& _rText
, long _nMaxTextWidth
, sal_Int32 _nStartIndex
, sal_Int32 _nLength
) const
233 if ( !lcl_normalizeLength( _rText
, _nStartIndex
, _nLength
) )
236 return m_rReferenceDevice
.GetTextBreak( _rText
, _nMaxTextWidth
, _nStartIndex
, _nLength
);
239 bool ReferenceDeviceTextLayout::DecomposeTextRectAction() const
244 tools::Rectangle
ReferenceDeviceTextLayout::DrawText( const tools::Rectangle
& _rRect
, const OUString
& _rText
, DrawTextFlags _nStyle
,
245 MetricVector
* _pVector
, OUString
* _pDisplayText
, const Size
* i_pDeviceSize
)
247 if ( _rText
.isEmpty() )
248 return tools::Rectangle();
250 // determine text layout mode from the RTL-ness of the control whose text we render
251 ComplexTextLayoutFlags nTextLayoutMode
= m_bRTLEnabled
? ComplexTextLayoutFlags::BiDiRtl
: ComplexTextLayoutFlags::Default
;
252 m_rReferenceDevice
.SetLayoutMode( nTextLayoutMode
);
253 m_rTargetDevice
.SetLayoutMode( nTextLayoutMode
| ComplexTextLayoutFlags::TextOriginLeft
);
255 // ComplexTextLayoutFlags::TextOriginLeft is because when we do actually draw the text (in DrawText( Point, ... )), then
256 // our caller gives us the left border of the draw position, regardless of script type, text layout,
257 // 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,
258 // but passed pixel coordinates. So, adjust the rect.
259 tools::Rectangle
aRect( m_rTargetDevice
.PixelToLogic( _rRect
) );
262 //if i_pDeviceSize is passed in here, it was the original pre logic-to-pixel size of _rRect
263 SAL_WARN_IF(std::abs(_rRect
.GetSize().Width() - m_rTargetDevice
.LogicToPixel(*i_pDeviceSize
).Width()) > 1, "vcl", "DeviceSize width was expected to match Pixel width");
264 SAL_WARN_IF(std::abs(_rRect
.GetSize().Height() - m_rTargetDevice
.LogicToPixel(*i_pDeviceSize
).Height()) > 1, "vcl", "DeviceSize height was expected to match Pixel height");
265 aRect
.SetSize(*i_pDeviceSize
);
268 m_aCompleteTextRect
.SetEmpty();
269 m_rTargetDevice
.DrawText( aRect
, _rText
, _nStyle
, _pVector
, _pDisplayText
, this );
270 tools::Rectangle aTextRect
= m_aCompleteTextRect
;
272 if ( aTextRect
.IsEmpty() && !aRect
.IsEmpty() )
274 // this happens for instance if we're in a PaintToDevice call, where only a MetaFile is recorded,
275 // but no actual painting happens, so our "DrawText( Point, ... )" is never called
276 // In this case, calculate the rect from what OutputDevice::GetTextRect would give us. This has
277 // the disadvantage of less accuracy, compared with the approach to calculate the rect from the
278 // single "DrawText( Point, ... )" calls, since more intermediate arithmetic will translate
279 // from ref- to target-units.
280 aTextRect
= m_rTargetDevice
.GetTextRect( aRect
, _rText
, _nStyle
, nullptr, this );
283 // similar to above, the text rect now contains TWIPs (or whatever unit the ref device has), but the caller
284 // expects pixel coordinates
285 aTextRect
= m_rTargetDevice
.LogicToPixel( aTextRect
);
287 // convert the metric vector
290 for ( auto& rCharRect
: *_pVector
)
292 rCharRect
= m_rTargetDevice
.LogicToPixel( rCharRect
);
299 tools::Rectangle
ReferenceDeviceTextLayout::GetTextRect( const tools::Rectangle
& _rRect
, const OUString
& _rText
, DrawTextFlags _nStyle
, Size
* o_pDeviceSize
)
301 if ( _rText
.isEmpty() )
302 return tools::Rectangle();
304 // determine text layout mode from the RTL-ness of the control whose text we render
305 ComplexTextLayoutFlags nTextLayoutMode
= m_bRTLEnabled
? ComplexTextLayoutFlags::BiDiRtl
: ComplexTextLayoutFlags::Default
;
306 m_rReferenceDevice
.SetLayoutMode( nTextLayoutMode
);
307 m_rTargetDevice
.SetLayoutMode( nTextLayoutMode
| ComplexTextLayoutFlags::TextOriginLeft
);
309 // ComplexTextLayoutFlags::TextOriginLeft is because when we do actually draw the text (in DrawText( Point, ... )), then
310 // our caller gives us the left border of the draw position, regardless of script type, text layout,
311 // 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,
312 // but passed pixel coordinates. So, adjust the rect.
313 tools::Rectangle
aRect( m_rTargetDevice
.PixelToLogic( _rRect
) );
315 tools::Rectangle aTextRect
= m_rTargetDevice
.GetTextRect( aRect
, _rText
, _nStyle
, nullptr, this );
317 //if o_pDeviceSize is available, stash the pre logic-to-pixel size in it
320 *o_pDeviceSize
= aTextRect
.GetSize();
323 // similar to above, the text rect now contains TWIPs (or whatever unit the ref device has), but the caller
324 // expects pixel coordinates
325 aTextRect
= m_rTargetDevice
.LogicToPixel( aTextRect
);
330 ControlTextRenderer::ControlTextRenderer( const Control
& _rControl
, OutputDevice
& _rTargetDevice
, OutputDevice
& _rReferenceDevice
)
331 :m_pImpl( new ReferenceDeviceTextLayout( _rControl
, _rTargetDevice
, _rReferenceDevice
) )
335 ControlTextRenderer::~ControlTextRenderer()
339 tools::Rectangle
ControlTextRenderer::DrawText( const tools::Rectangle
& _rRect
, const OUString
& _rText
, DrawTextFlags _nStyle
,
340 MetricVector
* _pVector
, OUString
* _pDisplayText
, const Size
* i_pDeviceSize
)
342 return m_pImpl
->DrawText( _rRect
, _rText
, _nStyle
, _pVector
, _pDisplayText
, i_pDeviceSize
);
345 tools::Rectangle
ControlTextRenderer::GetTextRect( const tools::Rectangle
& _rRect
, const OUString
& _rText
, DrawTextFlags _nStyle
, Size
* o_pDeviceSize
= nullptr )
347 return m_pImpl
->GetTextRect( _rRect
, _rText
, _nStyle
, o_pDeviceSize
);
352 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */