2012-01-31 01:07:48 +01:00
|
|
|
/* -*- 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/.
|
|
|
|
*/
|
|
|
|
|
2013-11-05 01:47:54 +01:00
|
|
|
#ifndef INCLUDED_CANVAS_SOURCE_OPENGL_OGL_TEXTLAYOUT_HXX
|
|
|
|
#define INCLUDED_CANVAS_SOURCE_OPENGL_OGL_TEXTLAYOUT_HXX
|
2012-01-31 01:07:48 +01:00
|
|
|
|
2015-07-06 23:17:44 +09:00
|
|
|
#include <cppuhelper/compbase.hxx>
|
2016-07-01 09:46:23 +02:00
|
|
|
#include <cppuhelper/basemutex.hxx>
|
2012-01-31 01:07:48 +01:00
|
|
|
|
|
|
|
#include <com/sun/star/rendering/XTextLayout.hpp>
|
|
|
|
|
|
|
|
#include <basegfx/vector/b2isize.hxx>
|
|
|
|
|
|
|
|
#include "ogl_canvasfont.hxx"
|
|
|
|
|
|
|
|
|
|
|
|
/* Definition of TextLayout class */
|
|
|
|
|
|
|
|
namespace oglcanvas
|
|
|
|
{
|
2015-07-21 12:16:45 +02:00
|
|
|
typedef ::cppu::WeakComponentImplHelper< css::rendering::XTextLayout > TextLayoutBaseT;
|
2012-01-31 01:07:48 +01:00
|
|
|
|
2016-07-01 09:46:23 +02:00
|
|
|
class TextLayout : public ::cppu::BaseMutex,
|
2016-04-06 18:32:13 +02:00
|
|
|
public TextLayoutBaseT
|
2012-01-31 01:07:48 +01:00
|
|
|
{
|
|
|
|
public:
|
2015-07-21 12:16:45 +02:00
|
|
|
TextLayout( const css::rendering::StringContext& aText,
|
2012-01-31 01:07:48 +01:00
|
|
|
sal_Int8 nDirection,
|
|
|
|
sal_Int64 nRandomSeed,
|
|
|
|
const CanvasFont::ImplRef& rFont );
|
|
|
|
|
2016-04-06 18:32:13 +02:00
|
|
|
/// make noncopyable
|
|
|
|
TextLayout(const TextLayout&) = delete;
|
|
|
|
const TextLayout& operator=(const TextLayout&) = delete;
|
|
|
|
|
2012-01-31 01:07:48 +01:00
|
|
|
/// Dispose all internal references
|
2015-10-12 16:04:04 +02:00
|
|
|
virtual void SAL_CALL disposing() override;
|
2012-01-31 01:07:48 +01:00
|
|
|
|
|
|
|
// XTextLayout
|
2017-01-26 12:28:58 +01:00
|
|
|
virtual css::uno::Sequence< css::uno::Reference< css::rendering::XPolyPolygon2D > > SAL_CALL queryTextShapes( ) override;
|
|
|
|
virtual css::uno::Sequence< css::geometry::RealRectangle2D > SAL_CALL queryInkMeasures( ) override;
|
|
|
|
virtual css::uno::Sequence< css::geometry::RealRectangle2D > SAL_CALL queryMeasures( ) override;
|
|
|
|
virtual css::uno::Sequence< double > SAL_CALL queryLogicalAdvancements( ) override;
|
|
|
|
virtual void SAL_CALL applyLogicalAdvancements( const css::uno::Sequence< double >& aAdvancements ) override;
|
|
|
|
virtual css::geometry::RealRectangle2D SAL_CALL queryTextBounds( ) override;
|
|
|
|
virtual double SAL_CALL justify( double nSize ) override;
|
|
|
|
virtual double SAL_CALL combinedJustify( const css::uno::Sequence< css::uno::Reference< css::rendering::XTextLayout > >& aNextLayouts, double nSize ) override;
|
|
|
|
virtual css::rendering::TextHit SAL_CALL getTextHit( const css::geometry::RealPoint2D& aHitPoint ) override;
|
|
|
|
virtual css::rendering::Caret SAL_CALL getCaret( sal_Int32 nInsertionIndex, sal_Bool bExcludeLigatures ) override;
|
|
|
|
virtual sal_Int32 SAL_CALL getNextInsertionIndex( sal_Int32 nStartIndex, sal_Int32 nCaretAdvancement, sal_Bool bExcludeLigatures ) override;
|
|
|
|
virtual css::uno::Reference< css::rendering::XPolyPolygon2D > SAL_CALL queryVisualHighlighting( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) override;
|
|
|
|
virtual css::uno::Reference< css::rendering::XPolyPolygon2D > SAL_CALL queryLogicalHighlighting( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) override;
|
|
|
|
virtual double SAL_CALL getBaselineOffset( ) override;
|
|
|
|
virtual sal_Int8 SAL_CALL getMainTextDirection( ) override;
|
|
|
|
virtual css::uno::Reference< css::rendering::XCanvasFont > SAL_CALL getFont( ) override;
|
|
|
|
virtual css::rendering::StringContext SAL_CALL getText( ) override;
|
2015-07-21 12:16:45 +02:00
|
|
|
|
2012-01-31 01:07:48 +01:00
|
|
|
private:
|
2015-07-21 12:16:45 +02:00
|
|
|
css::rendering::StringContext maText;
|
|
|
|
css::uno::Sequence< double > maLogicalAdvancements;
|
2012-01-31 01:07:48 +01:00
|
|
|
CanvasFont::ImplRef mpFont;
|
|
|
|
sal_Int8 mnTextDirection;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|