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/.
10 #ifndef INCLUDED_VCL_FONT_FEATUREPASER_HXX
11 #define INCLUDED_VCL_FONT_FEATUREPASER_HXX
13 #include <vcl/dllapi.h>
14 #include <rtl/ustring.hxx>
16 #include <unordered_map>
18 #include <vcl/font/Feature.hxx>
24 // These must not conflict with font name lists which use ; and ,
25 constexpr const char FeaturePrefix
= ':';
26 constexpr const char FeatureSeparator
= '&';
28 VCL_DLLPUBLIC OUString
trimFontNameFeatures(OUString
const& rFontName
);
30 class VCL_DLLPUBLIC FeatureParser
34 std::vector
<FeatureSetting
> m_aFeatures
;
37 FeatureParser(OUString
const& sFontName
);
39 OUString
const& getLanguage() const { return m_sLanguage
; }
41 std::vector
<FeatureSetting
> const& getFeatures() const { return m_aFeatures
; }
43 std::unordered_map
<uint32_t, uint32_t> getFeaturesMap() const;
46 } // end font namespace
47 } // end vcl namespace
49 #endif // INCLUDED_VCL_FONT_FEATUREPASER_HXX
51 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */