LCOV - code coverage report
Current view: top level - sc/source/ui/view - spellcheckcontext.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 32 46 69.6 %
Date: 2014-11-03 Functions: 11 13 84.6 %
Legend: Lines: hit not hit

          Line data    Source code
       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             : 
      10             : #include "spellcheckcontext.hxx"
      11             : 
      12             : namespace sc {
      13             : 
      14        8439 : size_t SpellCheckContext::CellPos::Hash::operator() (const CellPos& rPos) const
      15             : {
      16        8439 :     size_t nVal = rPos.mnCol;
      17        8439 :     nVal = nVal << 4;
      18        8439 :     nVal += rPos.mnRow;
      19        8439 :     return nVal;
      20             : }
      21             : 
      22         546 : SpellCheckContext::CellPos::CellPos() : mnCol(0), mnRow(0) {}
      23        8439 : SpellCheckContext::CellPos::CellPos(SCCOL nCol, SCROW nRow) : mnCol(nCol), mnRow(nRow) {}
      24             : 
      25         374 : void SpellCheckContext::CellPos::setInvalid()
      26             : {
      27         374 :     mnCol = -1;
      28         374 :     mnRow = -1;
      29         374 : }
      30             : 
      31        1784 : bool SpellCheckContext::CellPos::isValid() const
      32             : {
      33        1784 :     return mnCol >= 0 && mnRow >= 0;
      34             : }
      35             : 
      36        1658 : void SpellCheckContext::CellPos::reset()
      37             : {
      38        1658 :     mnCol = 0;
      39        1658 :     mnRow = 0;
      40        1658 : }
      41             : 
      42           0 : bool SpellCheckContext::CellPos::operator< (const CellPos& r) const
      43             : {
      44           0 :     if (mnCol != r.mnCol)
      45           0 :         return mnCol < r.mnCol;
      46             : 
      47           0 :     return mnRow < r.mnRow;
      48             : }
      49             : 
      50         110 : bool SpellCheckContext::CellPos::operator== (const CellPos& r) const
      51             : {
      52         110 :     return mnCol == r.mnCol && mnRow == r.mnRow;
      53             : }
      54             : 
      55         546 : SpellCheckContext::SpellCheckContext()
      56             : {
      57         546 : }
      58             : 
      59        7816 : bool SpellCheckContext::isMisspelled( SCCOL nCol, SCROW nRow ) const
      60             : {
      61        7816 :     return maMisspellCells.count(CellPos(nCol, nRow)) > 0;
      62             : }
      63             : 
      64         605 : const std::vector<editeng::MisspellRanges>* SpellCheckContext::getMisspellRanges(
      65             :     SCCOL nCol, SCROW nRow ) const
      66             : {
      67         605 :     CellMapType::const_iterator it = maMisspellCells.find(CellPos(nCol,nRow));
      68         605 :     if (it == maMisspellCells.end())
      69         523 :         return NULL;
      70             : 
      71          82 :     return &it->second;
      72             : }
      73             : 
      74           0 : void SpellCheckContext::setMisspellRanges(
      75             :     SCCOL nCol, SCROW nRow, const std::vector<editeng::MisspellRanges>* pRanges )
      76             : {
      77           0 :     CellPos aPos(nCol, nRow);
      78           0 :     CellMapType::iterator it = maMisspellCells.find(aPos);
      79             : 
      80           0 :     if (pRanges)
      81             :     {
      82           0 :         if (it == maMisspellCells.end())
      83           0 :             maMisspellCells.insert(CellMapType::value_type(aPos, *pRanges));
      84             :         else
      85           0 :             it->second = *pRanges;
      86             :     }
      87             :     else
      88             :     {
      89           0 :         if (it != maMisspellCells.end())
      90           0 :             maMisspellCells.erase(it);
      91             :     }
      92           0 : }
      93             : 
      94        1658 : void SpellCheckContext::reset()
      95             : {
      96        1658 :     maPos.reset();
      97        1658 :     maMisspellCells.clear();
      98        1658 : }
      99             : 
     100             : }
     101             : 
     102             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10