/* -*- 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/. */ #ifndef INCLUDED_VCL_INC_FONT_OPENTYPEFEATUREDEFINITONLIST_HXX #define INCLUDED_VCL_INC_FONT_OPENTYPEFEATUREDEFINITONLIST_HXX #include #include #include #include #include namespace vcl { namespace font { class OpenTypeFeatureDefinitonListPrivate { private: std::vector m_aFeatureDefinition; std::unordered_map m_aCodeToIndex; std::vector m_aRequiredFeatures; void init(); static bool isSpecialFeatureCode(sal_uInt32 nFeatureCode); static FeatureDefinition handleSpecialFeatureCode(sal_uInt32 nFeatureCode); public: OpenTypeFeatureDefinitonListPrivate(); FeatureDefinition getDefinition(sal_uInt32 nFeatureCode); bool isRequired(sal_uInt32 nFeatureCode); }; class VCL_DLLPUBLIC OpenTypeFeatureDefinitonList : public rtl::Static { }; } // end font namespace } // end vcl namespace #endif // INCLUDED_VCL_INC_FONT_OPENTYPEFEATUREDEFINITONLIST_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */