LCOV - code coverage report
Current view: top level - sw/source/uibase/wrtsh - wrtsh4.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 1 123 0.8 %
Date: 2015-06-13 12:38:46 Functions: 2 12 16.7 %
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             :  * 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             : 
      20             : #include <wrtsh.hxx>
      21             : #include <crsskip.hxx>
      22             : 
      23             : // Private methods, which move the cursor over search.
      24             : // The removal of the selection must be made on the level above.
      25             : 
      26             : // The beginning of a word is the follow of a
      27             : // non-delimiter to delimiter. Furthermore, the follow of
      28             : // non-sentence separators on sentence separator.
      29             : // The begin of paragraph is also the word beginning.
      30             : 
      31           0 : bool SwWrtShell::_SttWrd()
      32             : {
      33           0 :     if ( IsSttPara() )
      34           0 :         return true;
      35             :         // Create temporary cursor without selection.
      36           0 :     Push();
      37           0 :     ClearMark();
      38           0 :     if( !GoStartWord() )
      39             :             // not found --> go to the beginning of the paragraph.
      40           0 :         SwCrsrShell::MovePara( fnParaCurr, fnParaStart );
      41           0 :     ClearMark();
      42             :         // If Mark was previously set, summarize.
      43           0 :     Combine();
      44           0 :     return true;
      45             : }
      46             : 
      47             : // The end of a word is the follow of separator to nonseparator.
      48             : // The end of a word is also the sequence of wordseparators to
      49             : // punctuation marks.
      50             : // The end of a paragraph is also the end of a word.
      51             : 
      52           0 : bool SwWrtShell::_EndWrd()
      53             : {
      54           0 :     if ( IsEndWrd() )
      55           0 :         return true;
      56             :         // Create temporary cursor without selection.
      57           0 :     Push();
      58           0 :     ClearMark();
      59           0 :     if( !GoEndWord() )
      60             :             // not found --> go to the end of the paragraph.
      61           0 :         SwCrsrShell::MovePara(fnParaCurr, fnParaEnd);
      62           0 :     ClearMark();
      63             :         // If Mark was previously set, summarize.
      64           0 :     Combine();
      65           0 :     return true;
      66             : }
      67             : 
      68           0 : bool SwWrtShell::_NxtWrd()
      69             : {
      70           0 :     bool bRet = false;
      71           0 :     while( IsEndPara() )               // If already at the end, then the next???
      72             :     {
      73           0 :         if(!SwCrsrShell::Right(1,CRSR_SKIP_CHARS))  // Document - end ??
      74             :         {
      75           0 :             Pop( false );
      76           0 :             return bRet;
      77             :         }
      78           0 :         bRet = IsStartWord();
      79             :     }
      80           0 :     Push();
      81           0 :     ClearMark();
      82           0 :     while( !bRet )
      83             :     {
      84           0 :         if( !GoNextWord() )
      85             :         {
      86           0 :             if( (!IsEndPara() && !SwCrsrShell::MovePara( fnParaCurr, fnParaEnd ) )
      87           0 :                 || !SwCrsrShell::Right(1,CRSR_SKIP_CHARS) )
      88           0 :                 break;
      89           0 :             bRet = IsStartWord();
      90             :         }
      91             :         else
      92           0 :             bRet = true;
      93             :     }
      94           0 :     ClearMark();
      95           0 :     Combine();
      96           0 :     return bRet;
      97             : }
      98             : 
      99           0 : bool SwWrtShell::_PrvWrd()
     100             : {
     101           0 :     bool bRet = false;
     102           0 :     while( IsSttPara() )
     103             :     {                            // if already at the beginning, then the next???
     104           0 :         if(!SwCrsrShell::Left(1,CRSR_SKIP_CHARS))
     105             :         {                        // Document - beginning ??
     106           0 :             Pop( false );
     107           0 :             return bRet;
     108             :         }
     109           0 :         bRet = IsStartWord();
     110             :     }
     111           0 :     Push();
     112           0 :     ClearMark();
     113           0 :     while( !bRet )
     114             :     {
     115           0 :         if( !GoPrevWord() )
     116             :         {
     117           0 :             if( (!IsSttPara() && !SwCrsrShell::MovePara( fnParaCurr, fnParaStart ) )
     118           0 :                 || !SwCrsrShell::Left(1,CRSR_SKIP_CHARS) )
     119           0 :                 break;
     120           0 :             bRet = IsStartWord();
     121             :         }
     122             :         else
     123           0 :             bRet = true;
     124             :     }
     125           0 :     ClearMark();
     126           0 :     Combine();
     127           0 :     return bRet;
     128             : }
     129             : 
     130             : // #i92468#
     131             : // method code of <SwWrtShell::_NxtWrd()> before fix for issue i72162
     132           0 : bool SwWrtShell::_NxtWrdForDelete()
     133             : {
     134           0 :     if ( IsEndPara() )
     135             :     {
     136           0 :         if ( !SwCrsrShell::Right(1,CRSR_SKIP_CHARS) )
     137             :         {
     138           0 :             Pop( false );
     139           0 :             return false;
     140             :         }
     141           0 :         return true;
     142             :     }
     143           0 :     Push();
     144           0 :     ClearMark();
     145           0 :     if ( !GoNextWord() )
     146             :     {
     147           0 :         SwCrsrShell::MovePara( fnParaCurr, fnParaEnd );
     148             :     }
     149           0 :     ClearMark();
     150           0 :     Combine();
     151           0 :     return true;
     152             : }
     153             : 
     154             : // method code of <SwWrtShell::_PrvWrd()> before fix for issue i72162
     155           0 : bool SwWrtShell::_PrvWrdForDelete()
     156             : {
     157           0 :     if ( IsSttPara() )
     158             :     {
     159           0 :         if ( !SwCrsrShell::Left(1,CRSR_SKIP_CHARS) )
     160             :         {
     161           0 :             Pop( false );
     162           0 :             return false;
     163             :         }
     164           0 :         return true;
     165             :     }
     166           0 :     Push();
     167           0 :     ClearMark();
     168           0 :     if( !GoPrevWord() )
     169             :     {
     170           0 :         SwCrsrShell::MovePara( fnParaCurr, fnParaStart );
     171             :     }
     172           0 :     ClearMark();
     173           0 :     Combine();
     174           0 :     return true;
     175             : }
     176             : 
     177           0 : bool SwWrtShell::_FwdSentence()
     178             : {
     179           0 :     Push();
     180           0 :     ClearMark();
     181           0 :     if(!SwCrsrShell::Right(1,CRSR_SKIP_CHARS))
     182             :     {
     183           0 :         Pop(false);
     184           0 :         return false;
     185             :     }
     186           0 :     if( !GoNextSentence() && !IsEndPara() )
     187           0 :         SwCrsrShell::MovePara(fnParaCurr, fnParaEnd);
     188             : 
     189           0 :     ClearMark();
     190           0 :     Combine();
     191           0 :     return true;
     192             : }
     193             : 
     194           0 : bool SwWrtShell::_BwdSentence()
     195             : {
     196           0 :     Push();
     197           0 :     ClearMark();
     198           0 :     if(!SwCrsrShell::Left(1,CRSR_SKIP_CHARS))
     199             :     {
     200           0 :         Pop(false);
     201           0 :         return false;
     202             :     }
     203           0 :     if( !GoStartSentence()  && !IsSttPara() )
     204             :             // not found --> go to the beginning of the paragraph
     205           0 :         SwCrsrShell::MovePara( fnParaCurr, fnParaStart );
     206           0 :     ClearMark();
     207           0 :     Combine();
     208           0 :     return true;
     209             : }
     210             : 
     211           0 : bool SwWrtShell::_FwdPara()
     212             : {
     213           0 :     Push();
     214           0 :     ClearMark();
     215           0 :     bool bRet = SwCrsrShell::MovePara(fnParaNext, fnParaStart);
     216             : 
     217           0 :     ClearMark();
     218           0 :     Combine();
     219           0 :     return bRet;
     220             : }
     221             : 
     222           0 : bool SwWrtShell::_BwdPara()
     223             : {
     224           0 :     Push();
     225           0 :     ClearMark();
     226             : 
     227           0 :     bool bRet = SwCrsrShell::MovePara(fnParaPrev, fnParaStart);
     228           0 :     if ( !bRet && !IsSttOfPara() )
     229             :     {
     230           0 :         SttPara();
     231             :     }
     232             : 
     233           0 :     ClearMark();
     234           0 :     Combine();
     235           0 :     return bRet;
     236         177 : }
     237             : 
     238             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11