/* -*- 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/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ #ifndef INCLUDED_I18NUTIL_SEARCHOPT_HXX #define INCLUDED_I18NUTIL_SEARCHOPT_HXX
inline constexpr css::util::SearchAlgorithms downgradeSearchAlgorithms2(sal_Int16 searchAlgorithms2)
{ switch (searchAlgorithms2)
{ case css::util::SearchAlgorithms2::ABSOLUTE: return css::util::SearchAlgorithms_ABSOLUTE; case css::util::SearchAlgorithms2::REGEXP: return css::util::SearchAlgorithms_REGEXP; case css::util::SearchAlgorithms2::APPROXIMATE: return css::util::SearchAlgorithms_APPROXIMATE; default: // default what? case css::util::SearchAlgorithms2::WILDCARD: // something valid return css::util::SearchAlgorithms_ABSOLUTE;
}
}
inline constexpr sal_Int16 upgradeSearchAlgorithms(css::util::SearchAlgorithms searchAlgorithms)
{ switch (searchAlgorithms)
{ default: // default what? case css::util::SearchAlgorithms_ABSOLUTE: return css::util::SearchAlgorithms2::ABSOLUTE; case css::util::SearchAlgorithms_REGEXP: return css::util::SearchAlgorithms2::REGEXP; case css::util::SearchAlgorithms_APPROXIMATE: return css::util::SearchAlgorithms2::APPROXIMATE;
}
}
/** * This is a wrapper around com::sun::star::util::SearchOptions and SearchOptions2, * but using the more type-safe TransliterationFlags enum, and without obsolete * algorithmType, which is superseded by AlgorithmType2.
*/ struct SAL_WARN_UNUSED SearchOptions2 {
sal_Int32 searchFlag;
OUString searchString;
OUString replaceString;
css::lang::Locale Locale;
sal_Int32 changedChars;
sal_Int32 deletedChars;
sal_Int32 insertedChars;
TransliterationFlags transliterateFlags;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.