diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 16:51:28 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 16:51:28 +0000 |
commit | 940b4d1848e8c70ab7642901a68594e8016caffc (patch) | |
tree | eb72f344ee6c3d9b80a7ecc079ea79e9fba8676d /sc/source/ui/view/spellcheckcontext.cxx | |
parent | Initial commit. (diff) | |
download | libreoffice-upstream.tar.xz libreoffice-upstream.zip |
Adding upstream version 1:7.0.4.upstream/1%7.0.4upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | sc/source/ui/view/spellcheckcontext.cxx | 95 |
1 files changed, 95 insertions, 0 deletions
diff --git a/sc/source/ui/view/spellcheckcontext.cxx b/sc/source/ui/view/spellcheckcontext.cxx new file mode 100644 index 000000000..867dc26f5 --- /dev/null +++ b/sc/source/ui/view/spellcheckcontext.cxx @@ -0,0 +1,95 @@ +/* -*- 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/. + */ + +#include <spellcheckcontext.hxx> +#include <boost/functional/hash.hpp> + +namespace sc { + +size_t SpellCheckContext::CellPos::Hash::operator() (const CellPos& rPos) const +{ + std::size_t seed = 0; + boost::hash_combine(seed, rPos.mnCol); + boost::hash_combine(seed, rPos.mnRow); + return seed; +} + +SpellCheckContext::CellPos::CellPos() : mnCol(0), mnRow(0) {} +SpellCheckContext::CellPos::CellPos(SCCOL nCol, SCROW nRow) : mnCol(nCol), mnRow(nRow) {} + +void SpellCheckContext::CellPos::setInvalid() +{ + mnCol = -1; + mnRow = -1; +} + +bool SpellCheckContext::CellPos::isValid() const +{ + return mnCol >= 0 && mnRow >= 0; +} + +void SpellCheckContext::CellPos::reset() +{ + mnCol = 0; + mnRow = 0; +} + +bool SpellCheckContext::CellPos::operator== (const CellPos& r) const +{ + return mnCol == r.mnCol && mnRow == r.mnRow; +} + +SpellCheckContext::SpellCheckContext() +{ +} + +bool SpellCheckContext::isMisspelled( SCCOL nCol, SCROW nRow ) const +{ + return maMisspellCells.count(CellPos(nCol, nRow)) > 0; +} + +const std::vector<editeng::MisspellRanges>* SpellCheckContext::getMisspellRanges( + SCCOL nCol, SCROW nRow ) const +{ + CellMapType::const_iterator it = maMisspellCells.find(CellPos(nCol,nRow)); + if (it == maMisspellCells.end()) + return nullptr; + + return &it->second; +} + +void SpellCheckContext::setMisspellRanges( + SCCOL nCol, SCROW nRow, const std::vector<editeng::MisspellRanges>* pRanges ) +{ + CellPos aPos(nCol, nRow); + CellMapType::iterator it = maMisspellCells.find(aPos); + + if (pRanges) + { + if (it == maMisspellCells.end()) + maMisspellCells.emplace(aPos, *pRanges); + else + it->second = *pRanges; + } + else + { + if (it != maMisspellCells.end()) + maMisspellCells.erase(it); + } +} + +void SpellCheckContext::reset() +{ + maPos.reset(); + maMisspellCells.clear(); +} + +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |