LibreOffice Module editeng (master) 1
forbiddencharacterstable.cxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
21
23#include <utility>
24
26 css::uno::Reference<css::uno::XComponentContext> xContext)
27 : m_xContext(std::move(xContext))
28{
29}
30
31std::shared_ptr<SvxForbiddenCharactersTable>
33 const css::uno::Reference<css::uno::XComponentContext>& rxContext)
34{
35 return std::shared_ptr<SvxForbiddenCharactersTable>(new SvxForbiddenCharactersTable(rxContext));
36}
37
38const css::i18n::ForbiddenCharacters*
40{
41 css::i18n::ForbiddenCharacters* pForbiddenCharacters = nullptr;
42 Map::iterator it = maMap.find(nLanguage);
43 if (it != maMap.end())
44 pForbiddenCharacters = &(it->second);
45 else if (bGetDefault && m_xContext.is())
46 {
47 LocaleDataWrapper aWrapper(m_xContext, LanguageTag(nLanguage));
48 maMap[nLanguage] = aWrapper.getForbiddenCharacters();
49 pForbiddenCharacters = &maMap[nLanguage];
50 }
51 return pForbiddenCharacters;
52}
53
55 LanguageType nLanguage, const css::i18n::ForbiddenCharacters& rForbiddenChars)
56{
57 maMap[nLanguage] = rForbiddenChars;
58}
59
61{
62 maMap.erase(nLanguage);
63}
64
65/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Reference< XComponentContext > m_xContext
css::i18n::ForbiddenCharacters getForbiddenCharacters() const
void SetForbiddenCharacters(LanguageType nLanguage, const css::i18n::ForbiddenCharacters &)
css::uno::Reference< css::uno::XComponentContext > m_xContext
void ClearForbiddenCharacters(LanguageType nLanguage)
const css::i18n::ForbiddenCharacters * GetForbiddenCharacters(LanguageType nLanguage, bool bGetDefault)
SvxForbiddenCharactersTable(css::uno::Reference< css::uno::XComponentContext > xContext)
static std::shared_ptr< SvxForbiddenCharactersTable > makeForbiddenCharactersTable(const css::uno::Reference< css::uno::XComponentContext > &rxContext)