diff options
author | Jan-Marek Glogowski <glogow@fbihome.de> | 2014-08-08 11:21:14 +0200 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-08-17 16:25:12 -0500 |
commit | d33db207e27198df7af9fc007d7532ec76c80991 (patch) | |
tree | fd29a6cdbbcff66b16ca3dcd01311734a1501319 /sw | |
parent | 3f26ab24e0bfd27645c97ff7915fba2db409930a (diff) |
Fix input field tab handling
When searching for the current field in the field list to find the
previous or next one, we check the field start and compare it with
the cursor position.
But with the new input fields, the cursor can actually be anywhere
in the field, so we actually have to search for the start position
of the input field at the cursor position.
Change-Id: I26526524eccfdbea41c6bf69a460fa64248f50ca
Reviewed-on: https://gerrit.libreoffice.org/10837
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/crsr/crstrvl.cxx | 34 |
1 files changed, 30 insertions, 4 deletions
diff --git a/sw/source/core/crsr/crstrvl.cxx b/sw/source/core/crsr/crstrvl.cxx index 7eb498f1f96a..86ebf8cd034b 100644 --- a/sw/source/core/crsr/crstrvl.cxx +++ b/sw/source/core/crsr/crstrvl.cxx @@ -673,6 +673,8 @@ bool SwCrsrShell::MoveFldType( SwTxtFld * pTxtFld = pTNd->GetFldTxtAttrAt( rPos.nContent.GetIndex(), true ); const bool bDelFld = ( pTxtFld == NULL ); + sal_Int32 nContentOffset = -1; + if( bDelFld ) { // create dummy for the search @@ -683,23 +685,47 @@ bool SwCrsrShell::MoveFldType( mpDoc->IsClipBoard() ); pTxtFld->ChgTxtNode( pTNd ); } + else + { + // the cursor might be anywhere inside the input field, + // but we will be searching for the field start + if (pTxtFld->Which() == RES_TXTATR_INPUTFIELD + && rPos.nContent.GetIndex() != pTxtFld->GetStart()) + nContentOffset = pTxtFld->GetStart(); + } + + _SetGetExpFld *pSrch = NULL; + SwIndex *pIndex = NULL; + if( -1 == nContentOffset ) + { + pSrch = new _SetGetExpFld( rPos.nNode, pTxtFld, &rPos.nContent ); + } + else + { + pIndex = new SwIndex( rPos.nNode.GetNode().GetCntntNode(), nContentOffset ); + pSrch = new _SetGetExpFld( rPos.nNode, pTxtFld, pIndex ); + } - _SetGetExpFld aSrch( rPos.nNode, pTxtFld, &rPos.nContent ); if( rPos.nNode.GetIndex() < mpDoc->GetNodes().GetEndOfExtras().GetIndex() ) { // also at collection use only the first frame Point aPt; - aSrch.SetBodyPos( *pTNd->getLayoutFrm( GetLayout(), &aPt, &rPos, false ) ); + pSrch->SetBodyPos( *pTNd->getLayoutFrm( GetLayout(), &aPt, &rPos, false ) ); } - it = aSrtLst.lower_bound( &aSrch ); + it = aSrtLst.lower_bound( pSrch ); + + bool isSrch = (**it == *pSrch); + delete pIndex; + delete pSrch; + if( bDelFld ) { delete (SwFmtFld*)&pTxtFld->GetAttr(); delete pTxtFld; } - if( it != aSrtLst.end() && **it == aSrch ) // found + if( it != aSrtLst.end() && isSrch ) // found { if( bNext ) { |