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 <sal/config.h>
22 #include <sal/types.h>
23 #include <vcl/fontcharmap.hxx>
24 #include <basegfx/range/b2ibox.hxx>
25 #include <headless/svpgdi.hxx>
26 #include <font/FontMetricData.hxx>
27 #include <sallayout.hxx>
29 void SvpSalGraphics::SetFont(LogicalFontInstance
* pIFSD
, int nFallbackLevel
)
31 m_aTextRenderImpl
.SetFont(pIFSD
, nFallbackLevel
);
34 void SvpSalGraphics::GetFontMetric( FontMetricDataRef
& xFontMetric
, int nFallbackLevel
)
36 m_aTextRenderImpl
.GetFontMetric(xFontMetric
, nFallbackLevel
);
39 FontCharMapRef
SvpSalGraphics::GetFontCharMap() const
41 return m_aTextRenderImpl
.GetFontCharMap();
44 bool SvpSalGraphics::GetFontCapabilities(vcl::FontCapabilities
&rFontCapabilities
) const
46 return m_aTextRenderImpl
.GetFontCapabilities(rFontCapabilities
);
49 void SvpSalGraphics::GetDevFontList( vcl::font::PhysicalFontCollection
* pFontCollection
)
51 m_aTextRenderImpl
.GetDevFontList(pFontCollection
);
54 void SvpSalGraphics::ClearDevFontCache()
56 m_aTextRenderImpl
.ClearDevFontCache();
59 bool SvpSalGraphics::AddTempDevFont( vcl::font::PhysicalFontCollection
* pFontCollection
,
60 const OUString
& rFileURL
, const OUString
& rFontName
)
62 return m_aTextRenderImpl
.AddTempDevFont(pFontCollection
, rFileURL
, rFontName
);
65 std::unique_ptr
<GenericSalLayout
> SvpSalGraphics::GetTextLayout(int nFallbackLevel
)
67 return m_aTextRenderImpl
.GetTextLayout(nFallbackLevel
);
70 void SvpSalGraphics::DrawTextLayout(const GenericSalLayout
& rLayout
)
72 m_aTextRenderImpl
.DrawTextLayout(rLayout
, *this);
75 void SvpSalGraphics::SetTextColor( Color nColor
)
77 m_aTextRenderImpl
.SetTextColor(nColor
);
80 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */