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/fontcharmap.hxx>
21 #include <sal/config.h>
22 #include <headless/svpgdi.hxx>
23 #include <font/FontMetricData.hxx>
24 #include <sallayout.hxx>
26 void SvpSalGraphics::SetFont(LogicalFontInstance
* pIFSD
, int nFallbackLevel
)
28 m_aTextRenderImpl
.SetFont(pIFSD
, nFallbackLevel
);
31 void SvpSalGraphics::GetFontMetric( FontMetricDataRef
& xFontMetric
, int nFallbackLevel
)
33 m_aTextRenderImpl
.GetFontMetric(xFontMetric
, nFallbackLevel
);
36 FontCharMapRef
SvpSalGraphics::GetFontCharMap() const
38 return m_aTextRenderImpl
.GetFontCharMap();
41 bool SvpSalGraphics::GetFontCapabilities(vcl::FontCapabilities
&rFontCapabilities
) const
43 return m_aTextRenderImpl
.GetFontCapabilities(rFontCapabilities
);
46 void SvpSalGraphics::GetDevFontList( vcl::font::PhysicalFontCollection
* pFontCollection
)
48 m_aTextRenderImpl
.GetDevFontList(pFontCollection
);
51 void SvpSalGraphics::ClearDevFontCache()
53 m_aTextRenderImpl
.ClearDevFontCache();
56 bool SvpSalGraphics::AddTempDevFont( vcl::font::PhysicalFontCollection
* pFontCollection
,
57 const OUString
& rFileURL
, const OUString
& rFontName
)
59 return m_aTextRenderImpl
.AddTempDevFont(pFontCollection
, rFileURL
, rFontName
);
62 std::unique_ptr
<GenericSalLayout
> SvpSalGraphics::GetTextLayout(int nFallbackLevel
)
64 return m_aTextRenderImpl
.GetTextLayout(nFallbackLevel
);
67 void SvpSalGraphics::DrawTextLayout(const GenericSalLayout
& rLayout
)
69 m_aTextRenderImpl
.DrawTextLayout(rLayout
, *this);
72 void SvpSalGraphics::DrawSalLayout(const GenericSalLayout
& rLayout
, void* pSurface
, const basegfx::BColor
& rTextColor
, bool bAntiAliased
) const
74 CairoTextRender::ImplDrawTextLayout(
75 static_cast<cairo_t
*>(pSurface
),
82 void SvpSalGraphics::SetTextColor( Color nColor
)
84 m_aTextRenderImpl
.SetTextColor(nColor
);
87 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */