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 <canvas/debug.hxx>
22 #include <com/sun/star/rendering/PanoseProportion.hpp>
23 #include <cppuhelper/supportsservice.hxx>
25 #include <rtl/math.hxx>
26 #include <basegfx/numeric/ftools.hxx>
28 #include <vcl/metric.hxx>
29 #include <i18nlangtag/languagetag.hxx>
31 #include "cairo_canvasfont.hxx"
32 #include "cairo_textlayout.hxx"
34 using namespace ::com::sun::star
;
39 CanvasFont::CanvasFont( const rendering::FontRequest
& rFontRequest
,
40 const uno::Sequence
< beans::PropertyValue
>& /*rExtraFontProperties*/,
41 const geometry::Matrix2D
& rFontMatrix
,
42 const SurfaceProviderRef
& rDevice
) :
43 CanvasFont_Base( m_aMutex
),
44 maFont( vcl::Font( rFontRequest
.FontDescription
.FamilyName
,
45 rFontRequest
.FontDescription
.StyleName
,
46 Size( 0, ::basegfx::fround(rFontRequest
.CellSize
) ) ) ),
47 maFontRequest( rFontRequest
),
48 mpRefDevice( rDevice
)
50 maFont
->SetAlign( ALIGN_BASELINE
);
51 maFont
->SetCharSet( (rFontRequest
.FontDescription
.IsSymbolFont
==com::sun::star::util::TriState_YES
) ? RTL_TEXTENCODING_SYMBOL
: RTL_TEXTENCODING_UNICODE
);
52 maFont
->SetVertical( rFontRequest
.FontDescription
.IsVertical
==com::sun::star::util::TriState_YES
);
54 // TODO(F2): improve panose->vclenum conversion
55 maFont
->SetWeight( static_cast<FontWeight
>(rFontRequest
.FontDescription
.FontDescription
.Weight
) );
56 maFont
->SetItalic( (rFontRequest
.FontDescription
.FontDescription
.Letterform
<=8) ? ITALIC_NONE
: ITALIC_NORMAL
);
58 rFontRequest
.FontDescription
.FontDescription
.Proportion
== rendering::PanoseProportion::MONO_SPACED
59 ? PITCH_FIXED
: PITCH_VARIABLE
);
61 maFont
->SetLanguage( LanguageTag::convertToLanguageType( rFontRequest
.Locale
, false));
63 // adjust to stretched/shrunk font
64 if( !::rtl::math::approxEqual( rFontMatrix
.m00
, rFontMatrix
.m11
) )
66 VclPtr
<OutputDevice
> pOutDev( mpRefDevice
->getOutputDevice() );
70 const bool bOldMapState( pOutDev
->IsMapModeEnabled() );
71 pOutDev
->EnableMapMode(false);
73 const Size aSize
= pOutDev
->GetFontMetric( *maFont
).GetSize();
75 const double fDividend( rFontMatrix
.m10
+ rFontMatrix
.m11
);
76 double fStretch
= (rFontMatrix
.m00
+ rFontMatrix
.m01
);
78 if( !::basegfx::fTools::equalZero( fDividend
) )
79 fStretch
/= fDividend
;
81 const long nNewWidth
= ::basegfx::fround( aSize
.Width() * fStretch
);
83 maFont
->SetWidth( nNewWidth
);
85 pOutDev
->EnableMapMode(bOldMapState
);
90 void SAL_CALL
CanvasFont::disposing()
92 SolarMutexGuard aGuard
;
97 uno::Reference
< rendering::XTextLayout
> SAL_CALL
CanvasFont::createTextLayout( const rendering::StringContext
& aText
, sal_Int8 nDirection
, sal_Int64 nRandomSeed
) throw (uno::RuntimeException
, std::exception
)
99 SolarMutexGuard aGuard
;
101 if( !mpRefDevice
.is() )
102 return uno::Reference
< rendering::XTextLayout
>(); // we're disposed
104 return new TextLayout( aText
,
111 rendering::FontRequest SAL_CALL
CanvasFont::getFontRequest( ) throw (uno::RuntimeException
, std::exception
)
113 SolarMutexGuard aGuard
;
115 return maFontRequest
;
118 rendering::FontMetrics SAL_CALL
CanvasFont::getFontMetrics( ) throw (uno::RuntimeException
, std::exception
)
120 SolarMutexGuard aGuard
;
123 return rendering::FontMetrics();
126 uno::Sequence
< double > SAL_CALL
CanvasFont::getAvailableSizes( ) throw (uno::RuntimeException
, std::exception
)
128 SolarMutexGuard aGuard
;
131 return uno::Sequence
< double >();
134 uno::Sequence
< beans::PropertyValue
> SAL_CALL
CanvasFont::getExtraFontProperties( ) throw (uno::RuntimeException
, std::exception
)
136 SolarMutexGuard aGuard
;
139 return uno::Sequence
< beans::PropertyValue
>();
142 OUString SAL_CALL
CanvasFont::getImplementationName() throw( uno::RuntimeException
, std::exception
)
144 return OUString( "CairoCanvas::CanvasFont" );
147 sal_Bool SAL_CALL
CanvasFont::supportsService( const OUString
& ServiceName
) throw( uno::RuntimeException
, std::exception
)
149 return cppu::supportsService( this, ServiceName
);
152 uno::Sequence
< OUString
> SAL_CALL
CanvasFont::getSupportedServiceNames() throw( uno::RuntimeException
, std::exception
)
154 uno::Sequence
< OUString
> aRet(1);
155 aRet
[0] = "com.sun.star.rendering.CanvasFont";
160 vcl::Font
CanvasFont::getVCLFont() const
166 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */