blob: 2abe7d050880697a4fbc267df1ac32b9d6c4e037 [file] [log] [blame]
/**************************************************************
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_sc.hxx"
#include "AccessibleCell.hxx"
#include "scitems.hxx"
#include <editeng/eeitem.hxx>
#include "AccessibleText.hxx"
#include "AccessibleDocument.hxx"
#include "tabvwsh.hxx"
#include "document.hxx"
#include "attrib.hxx"
#include "miscuno.hxx"
#include "unoguard.hxx"
#include "editsrc.hxx"
#include "dociter.hxx"
#include "cell.hxx"
#include "validat.hxx"
#ifndef _UTL_ACCESSIBLESTATESETHELPER_HXX
#include <unotools/accessiblestatesethelper.hxx>
#endif
#ifndef _COM_SUN_STAR_ACCESSIBILITY_XACCESSIBLEROLE_HPP_
#include <com/sun/star/accessibility/AccessibleRole.hpp>
#endif
#ifndef _COM_SUN_STAR_ACCESSIBILITY_XACCESSIBLESTATETYPE_HPP_
#include <com/sun/star/accessibility/AccessibleStateType.hpp>
#endif
#include <com/sun/star/accessibility/AccessibleRelationType.hpp>
#include <com/sun/star/accessibility/XAccessibleTable.hpp>
#include <rtl/uuid.h>
#include <tools/debug.hxx>
#include <editeng/brshitem.hxx>
#include <comphelper/sequence.hxx>
#include <float.h>
#include "AccessibleSpreadsheet.hxx"
using namespace ::com::sun::star;
using namespace ::com::sun::star::accessibility;
//===== internal ============================================================
ScAccessibleCell::ScAccessibleCell(
const uno::Reference<XAccessible>& rxParent,
ScTabViewShell* pViewShell,
ScAddress& rCellAddress,
sal_Int32 nIndex,
ScSplitPos eSplitPos,
ScAccessibleDocument* pAccDoc)
:
ScAccessibleCellBase(rxParent, GetDocument(pViewShell), rCellAddress, nIndex),
::accessibility::AccessibleStaticTextBase(CreateEditSource(pViewShell, rCellAddress, eSplitPos)),
mpViewShell(pViewShell),
mpAccDoc(pAccDoc),
meSplitPos(eSplitPos)
{
if (pViewShell)
pViewShell->AddAccessibilityObject(*this);
}
ScAccessibleCell::~ScAccessibleCell()
{
if (!ScAccessibleContextBase::IsDefunc() && !rBHelper.bInDispose)
{
// increment refcount to prevent double call off dtor
osl_incrementInterlockedCount( &m_refCount );
// call dispose to inform object wich have a weak reference to this object
dispose();
}
}
void ScAccessibleCell::Init()
{
ScAccessibleCellBase::Init();
SetEventSource(this);
}
void SAL_CALL ScAccessibleCell::disposing()
{
ScUnoGuard aGuard;
// #100593# dispose in AccessibleStaticTextBase
Dispose();
if (mpViewShell)
{
mpViewShell->RemoveAccessibilityObject(*this);
mpViewShell = NULL;
}
mpAccDoc = NULL;
ScAccessibleCellBase::disposing();
}
//===== XInterface =====================================================
IMPLEMENT_FORWARD_XINTERFACE3( ScAccessibleCell, ScAccessibleCellBase, AccessibleStaticTextBase, ScAccessibleCellAttributeImpl )
//===== XTypeProvider ===================================================
IMPLEMENT_FORWARD_XTYPEPROVIDER3( ScAccessibleCell, ScAccessibleCellBase, AccessibleStaticTextBase, ScAccessibleCellAttributeImpl )
//===== XAccessibleComponent ============================================
uno::Reference< XAccessible > SAL_CALL ScAccessibleCell::getAccessibleAtPoint(
const awt::Point& rPoint )
throw (uno::RuntimeException)
{
return AccessibleStaticTextBase::getAccessibleAtPoint(rPoint);
}
void SAL_CALL ScAccessibleCell::grabFocus( )
throw (uno::RuntimeException)
{
ScUnoGuard aGuard;
IsObjectValid();
if (getAccessibleParent().is() && mpViewShell)
{
uno::Reference<XAccessibleComponent> xAccessibleComponent(getAccessibleParent()->getAccessibleContext(), uno::UNO_QUERY);
if (xAccessibleComponent.is())
{
xAccessibleComponent->grabFocus();
mpViewShell->SetCursor(maCellAddress.Col(), maCellAddress.Row());
}
}
}
Rectangle ScAccessibleCell::GetBoundingBoxOnScreen(void) const
throw (uno::RuntimeException)
{
Rectangle aCellRect(GetBoundingBox());
if (mpViewShell)
{
Window* pWindow = mpViewShell->GetWindowByPos(meSplitPos);
if (pWindow)
{
Rectangle aRect = pWindow->GetWindowExtentsRelative(NULL);
aCellRect.setX(aCellRect.getX() + aRect.getX());
aCellRect.setY(aCellRect.getY() + aRect.getY());
}
}
return aCellRect;
}
Rectangle ScAccessibleCell::GetBoundingBox(void) const
throw (uno::RuntimeException)
{
Rectangle aCellRect;
if (mpViewShell)
{
long nSizeX, nSizeY;
mpViewShell->GetViewData()->GetMergeSizePixel(
maCellAddress.Col(), maCellAddress.Row(), nSizeX, nSizeY);
aCellRect.SetSize(Size(nSizeX, nSizeY));
aCellRect.SetPos(mpViewShell->GetViewData()->GetScrPos(maCellAddress.Col(), maCellAddress.Row(), meSplitPos, sal_True));
Window* pWindow = mpViewShell->GetWindowByPos(meSplitPos);
if (pWindow)
{
Rectangle aRect(pWindow->GetWindowExtentsRelative(pWindow->GetAccessibleParentWindow()));
aRect.Move(-aRect.Left(), -aRect.Top());
aCellRect = aRect.Intersection(aCellRect);
}
/* #i19430# Gnopernicus reads text partly if it sticks out of the cell
boundaries. This leads to wrong results in cases where the cell
text is rotated, because rotation is not taken into account when
calculating the visible part of the text. In these cases we will
simply expand the cell size to the width of the unrotated text. */
if (mpDoc)
{
const SfxInt32Item* pItem = static_cast< const SfxInt32Item* >(
mpDoc->GetAttr( maCellAddress.Col(), maCellAddress.Row(), maCellAddress.Tab(), ATTR_ROTATE_VALUE ) );
if( pItem && (pItem->GetValue() != 0) )
{
Rectangle aParaRect = GetParagraphBoundingBox();
if( !aParaRect.IsEmpty() && (aCellRect.GetWidth() < aParaRect.GetWidth()) )
aCellRect.SetSize( Size( aParaRect.GetWidth(), aCellRect.GetHeight() ) );
}
}
}
if (aCellRect.IsEmpty())
aCellRect.SetPos(Point(-1, -1));
return aCellRect;
}
//===== XAccessibleContext ==============================================
sal_Int32 SAL_CALL
ScAccessibleCell::getAccessibleChildCount(void)
throw (uno::RuntimeException)
{
return AccessibleStaticTextBase::getAccessibleChildCount();
}
uno::Reference< XAccessible > SAL_CALL
ScAccessibleCell::getAccessibleChild(sal_Int32 nIndex)
throw (uno::RuntimeException,
lang::IndexOutOfBoundsException)
{
return AccessibleStaticTextBase::getAccessibleChild(nIndex);
}
uno::Reference<XAccessibleStateSet> SAL_CALL
ScAccessibleCell::getAccessibleStateSet(void)
throw (uno::RuntimeException)
{
ScUnoGuard aGuard;
uno::Reference<XAccessibleStateSet> xParentStates;
if (getAccessibleParent().is())
{
uno::Reference<XAccessibleContext> xParentContext = getAccessibleParent()->getAccessibleContext();
xParentStates = xParentContext->getAccessibleStateSet();
}
utl::AccessibleStateSetHelper* pStateSet = new utl::AccessibleStateSetHelper();
if (IsDefunc(xParentStates))
pStateSet->AddState(AccessibleStateType::DEFUNC);
else
{
if (IsFormulaMode())
{
pStateSet->AddState(AccessibleStateType::ENABLED);
pStateSet->AddState(AccessibleStateType::MULTI_LINE);
pStateSet->AddState(AccessibleStateType::MULTI_SELECTABLE);
if (IsOpaque(xParentStates))
pStateSet->AddState(AccessibleStateType::OPAQUE);
pStateSet->AddState(AccessibleStateType::SELECTABLE);
if (IsSelected())
pStateSet->AddState(AccessibleStateType::SELECTED);
if (isShowing())
pStateSet->AddState(AccessibleStateType::SHOWING);
pStateSet->AddState(AccessibleStateType::TRANSIENT);
if (isVisible())
pStateSet->AddState(AccessibleStateType::VISIBLE);
return pStateSet;
}
if (IsEditable(xParentStates))
{
pStateSet->AddState(AccessibleStateType::EDITABLE);
pStateSet->AddState(AccessibleStateType::RESIZABLE);
}
pStateSet->AddState(AccessibleStateType::ENABLED);
pStateSet->AddState(AccessibleStateType::MULTI_LINE);
pStateSet->AddState(AccessibleStateType::MULTI_SELECTABLE);
pStateSet->AddState(AccessibleStateType::FOCUSABLE);
if (IsOpaque(xParentStates))
pStateSet->AddState(AccessibleStateType::OPAQUE);
pStateSet->AddState(AccessibleStateType::SELECTABLE);
if (IsSelected())
pStateSet->AddState(AccessibleStateType::SELECTED);
if (isShowing())
pStateSet->AddState(AccessibleStateType::SHOWING);
pStateSet->AddState(AccessibleStateType::TRANSIENT);
if (isVisible())
pStateSet->AddState(AccessibleStateType::VISIBLE);
}
return pStateSet;
}
uno::Reference<XAccessibleRelationSet> SAL_CALL
ScAccessibleCell::getAccessibleRelationSet(void)
throw (uno::RuntimeException)
{
ScUnoGuard aGuard;
IsObjectValid();
utl::AccessibleRelationSetHelper* pRelationSet = NULL;
if (mpAccDoc)
pRelationSet = mpAccDoc->GetRelationSet(&maCellAddress);
if (!pRelationSet)
pRelationSet = new utl::AccessibleRelationSetHelper();
FillDependends(pRelationSet);
FillPrecedents(pRelationSet);
return pRelationSet;
}
//===== XServiceInfo ====================================================
::rtl::OUString SAL_CALL ScAccessibleCell::getImplementationName(void)
throw (uno::RuntimeException)
{
return rtl::OUString(RTL_CONSTASCII_USTRINGPARAM ("ScAccessibleCell"));
}
uno::Sequence< ::rtl::OUString> SAL_CALL
ScAccessibleCell::getSupportedServiceNames(void)
throw (uno::RuntimeException)
{
uno::Sequence< ::rtl::OUString > aSequence = ScAccessibleContextBase::getSupportedServiceNames();
sal_Int32 nOldSize(aSequence.getLength());
aSequence.realloc(nOldSize + 1);
::rtl::OUString* pNames = aSequence.getArray();
pNames[nOldSize] = rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.sheet.AccessibleCell"));
return aSequence;
}
//==== internal =========================================================
sal_Bool ScAccessibleCell::IsDefunc(
const uno::Reference<XAccessibleStateSet>& rxParentStates)
{
return ScAccessibleContextBase::IsDefunc() || (mpDoc == NULL) || (mpViewShell == NULL) || !getAccessibleParent().is() ||
(rxParentStates.is() && rxParentStates->contains(AccessibleStateType::DEFUNC));
}
sal_Bool ScAccessibleCell::IsEditable(
const uno::Reference<XAccessibleStateSet>& rxParentStates)
{
sal_Bool bEditable(sal_True);
if (rxParentStates.is() && !rxParentStates->contains(AccessibleStateType::EDITABLE) &&
mpDoc)
{
// here I have to test whether the protection of the table should influence this cell.
const ScProtectionAttr* pItem = (const ScProtectionAttr*)mpDoc->GetAttr(
maCellAddress.Col(), maCellAddress.Row(),
maCellAddress.Tab(), ATTR_PROTECTION);
if (pItem)
bEditable = !pItem->GetProtection();
}
return bEditable;
}
sal_Bool ScAccessibleCell::IsOpaque(
const uno::Reference<XAccessibleStateSet>& /* rxParentStates */)
{
// test whether there is a background color
sal_Bool bOpaque(sal_True);
if (mpDoc)
{
const SvxBrushItem* pItem = (const SvxBrushItem*)mpDoc->GetAttr(
maCellAddress.Col(), maCellAddress.Row(),
maCellAddress.Tab(), ATTR_BACKGROUND);
if (pItem)
bOpaque = pItem->GetColor() != COL_TRANSPARENT;
}
return bOpaque;
}
sal_Bool ScAccessibleCell::IsSelected()
{
if (IsFormulaMode())
{
const ScAccessibleSpreadsheet *pSheet =static_cast<const ScAccessibleSpreadsheet*>(mxParent.get());
if (pSheet)
{
return pSheet->IsScAddrFormulaSel(maCellAddress);
}
return sal_False;
}
sal_Bool bResult(sal_False);
if (mpViewShell && mpViewShell->GetViewData())
{
const ScMarkData& rMarkdata = mpViewShell->GetViewData()->GetMarkData();
bResult = rMarkdata.IsCellMarked(maCellAddress.Col(), maCellAddress.Row());
}
return bResult;
}
ScDocument* ScAccessibleCell::GetDocument(ScTabViewShell* pViewShell)
{
ScDocument* pDoc = NULL;
if (pViewShell && pViewShell->GetViewData())
pDoc = pViewShell->GetViewData()->GetDocument();
return pDoc;
}
::std::auto_ptr< SvxEditSource > ScAccessibleCell::CreateEditSource(ScTabViewShell* pViewShell, ScAddress aCell, ScSplitPos eSplitPos)
{
if (IsFormulaMode())
{
return ::std::auto_ptr< SvxEditSource >();
}
::std::auto_ptr < ScAccessibleTextData > pAccessibleCellTextData
( new ScAccessibleCellTextData( pViewShell, aCell, eSplitPos, this ) );
::std::auto_ptr< SvxEditSource > pEditSource (new ScAccessibilityEditSource(pAccessibleCellTextData));
return pEditSource;
}
void ScAccessibleCell::FillDependends(utl::AccessibleRelationSetHelper* pRelationSet)
{
if (mpDoc)
{
ScCellIterator aCellIter( mpDoc, 0,0, maCellAddress.Tab(), MAXCOL,MAXROW, maCellAddress.Tab() );
ScBaseCell* pCell = aCellIter.GetFirst();
while (pCell)
{
if (pCell->GetCellType() == CELLTYPE_FORMULA)
{
sal_Bool bFound(sal_False);
ScDetectiveRefIter aIter( (ScFormulaCell*) pCell );
ScRange aRef;
while ( !bFound && aIter.GetNextRef( aRef ) )
{
if (aRef.In(maCellAddress))
bFound = sal_True;
}
if (bFound)
AddRelation(ScAddress(aCellIter.GetCol(), aCellIter.GetRow(), aCellIter.GetTab()), AccessibleRelationType::CONTROLLER_FOR, pRelationSet);
}
pCell = aCellIter.GetNext();
}
}
}
void ScAccessibleCell::FillPrecedents(utl::AccessibleRelationSetHelper* pRelationSet)
{
if (mpDoc)
{
ScBaseCell* pBaseCell = mpDoc->GetCell(maCellAddress);
if (pBaseCell && (pBaseCell->GetCellType() == CELLTYPE_FORMULA))
{
ScFormulaCell* pFCell = (ScFormulaCell*) pBaseCell;
ScDetectiveRefIter aIter( pFCell );
ScRange aRef;
while ( aIter.GetNextRef( aRef ) )
{
AddRelation( aRef, AccessibleRelationType::CONTROLLED_BY, pRelationSet);
}
}
}
}
void ScAccessibleCell::AddRelation(const ScAddress& rCell,
const sal_uInt16 aRelationType,
utl::AccessibleRelationSetHelper* pRelationSet)
{
AddRelation(ScRange(rCell, rCell), aRelationType, pRelationSet);
}
void ScAccessibleCell::AddRelation(const ScRange& rRange,
const sal_uInt16 aRelationType,
utl::AccessibleRelationSetHelper* pRelationSet)
{
uno::Reference < XAccessibleTable > xTable ( getAccessibleParent()->getAccessibleContext(), uno::UNO_QUERY );
if (xTable.is())
{
sal_uInt32 nCount(static_cast<sal_uInt32>(rRange.aEnd.Col() -
rRange.aStart.Col() + 1) * (rRange.aEnd.Row() -
rRange.aStart.Row() + 1));
uno::Sequence < uno::Reference < uno::XInterface > > aTargetSet( nCount );
uno::Reference < uno::XInterface >* pTargetSet = aTargetSet.getArray();
if (pTargetSet)
{
sal_uInt32 nPos(0);
for (sal_uInt32 nRow = rRange.aStart.Row(); nRow <= sal::static_int_cast<sal_uInt32>(rRange.aEnd.Row()); ++nRow)
{
for (sal_uInt32 nCol = rRange.aStart.Col(); nCol <= sal::static_int_cast<sal_uInt32>(rRange.aEnd.Col()); ++nCol)
{
pTargetSet[nPos] = xTable->getAccessibleCellAt(nRow, nCol);
++nPos;
}
}
DBG_ASSERT(nCount == nPos, "something wents wrong");
}
AccessibleRelation aRelation;
aRelation.RelationType = aRelationType;
aRelation.TargetSet = aTargetSet;
pRelationSet->AddRelation(aRelation);
}
}
::rtl::OUString ReplaceOneChar(::rtl::OUString oldOUString, ::rtl::OUString replacedChar, ::rtl::OUString replaceStr)
{
int iReplace = -1;
iReplace = oldOUString.lastIndexOf(replacedChar);
if (iReplace > -1)
{
for(;iReplace>-1;)
{
oldOUString = oldOUString.replaceAt(iReplace,1, replaceStr);
iReplace=oldOUString.lastIndexOf(replacedChar,iReplace);
}
}
return oldOUString;
}
::rtl::OUString ReplaceFourChar(::rtl::OUString oldOUString)
{
oldOUString = ReplaceOneChar(oldOUString,::rtl::OUString::createFromAscii("\\"),::rtl::OUString::createFromAscii("\\\\"));
oldOUString = ReplaceOneChar(oldOUString,::rtl::OUString::createFromAscii(";"),::rtl::OUString::createFromAscii("\\;"));
oldOUString = ReplaceOneChar(oldOUString,::rtl::OUString::createFromAscii("="),::rtl::OUString::createFromAscii("\\="));
oldOUString = ReplaceOneChar(oldOUString,::rtl::OUString::createFromAscii(","),::rtl::OUString::createFromAscii("\\,"));
oldOUString = ReplaceOneChar(oldOUString,::rtl::OUString::createFromAscii(":"),::rtl::OUString::createFromAscii("\\:"));
return oldOUString;
}
uno::Any SAL_CALL ScAccessibleCell::getExtendedAttributes()
throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException)
{
uno::Any strRet;
if (mpViewShell)
{
const ::rtl::OUString strAttr(::rtl::OUString::createFromAscii(":"));
const ::rtl::OUString strSplit(::rtl::OUString::createFromAscii(";"));
::rtl::OUString strFor = mpViewShell->GetFormula(maCellAddress) ;
strFor = strFor.replaceAt(0,1,::rtl::OUString::createFromAscii(""));
strFor = ReplaceFourChar(strFor);
strFor =::rtl::OUString::createFromAscii("Formula:") + strFor;
strFor +=strSplit;
strFor +=::rtl::OUString::createFromAscii("Note:");
strFor +=ReplaceFourChar(GetAllDisplayNote());
strFor +=strSplit;
strFor += getShadowAttrs();//the string returned contains the spliter ";"
strFor += getBorderAttrs();//the string returned contains the spliter ";"
//end of cell attributes
if( mpDoc )
{
strFor += ::rtl::OUString::createFromAscii("isdropdown:");
if( IsDropdown() )
strFor+= ::rtl::OUString::createFromAscii("true");
else
strFor+= ::rtl::OUString::createFromAscii("false");
strFor += ::rtl::OUString::createFromAscii(";");
}
strRet <<= strFor ;
}
return strRet;
}
// cell has its own ParaIndent property, so when calling character attributes on cell, the ParaIndent should replace the ParaLeftMargin if its value is not zero.
uno::Sequence< beans::PropertyValue > SAL_CALL ScAccessibleCell::getCharacterAttributes( sal_Int32 nIndex, const ::com::sun::star::uno::Sequence< ::rtl::OUString >& aRequestedAttributes ) throw (lang::IndexOutOfBoundsException, uno::RuntimeException)
{
uno::Sequence< beans::PropertyValue > aAttribs = AccessibleStaticTextBase::getCharacterAttributes( nIndex, aRequestedAttributes );
beans::PropertyValue *pAttribs = aAttribs.getArray();
sal_uInt16 nParaIndent = static_cast< const SfxUInt16Item* >( mpDoc->GetAttr( maCellAddress.Col(), maCellAddress.Row(), maCellAddress.Tab(), ATTR_INDENT ) )->GetValue();
if (nParaIndent > 0)
{
::rtl::OUString sLeftMarginName (::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ParaLeftMargin")));
for (int i = 0; i < aAttribs.getLength(); ++i)
{
if (sLeftMarginName == pAttribs[i].Name)
{
pAttribs[i].Value = uno::makeAny( nParaIndent );
break;
}
}
}
return aAttribs;
}
sal_Bool ScAccessibleCell::IsFormulaMode()
{
ScAccessibleSpreadsheet* pSheet =static_cast<ScAccessibleSpreadsheet*>(mxParent.get());
if (pSheet)
{
return pSheet->IsFormulaMode();
}
return sal_False;
}
sal_Bool ScAccessibleCell::IsDropdown()
{
sal_uInt16 nPosX = maCellAddress.Col();
sal_uInt16 nPosY = sal_uInt16(maCellAddress.Row());
sal_uInt16 nTab = maCellAddress.Tab();
sal_uInt32 nValidation = static_cast< const SfxUInt32Item* >( mpDoc->GetAttr( nPosX, nPosY, nTab, ATTR_VALIDDATA ) )->GetValue();
if( nValidation )
{
const ScValidationData* pData = mpDoc->GetValidationEntry( nValidation );
if( pData && pData->HasSelectionList() )
return sal_True;
}
ScMergeFlagAttr* pAttr;
pAttr = (ScMergeFlagAttr*)mpDoc->GetAttr( nPosX, nPosY, nTab, ATTR_MERGE_FLAG );
if( pAttr->HasAutoFilter() )
{
return sal_True;
}
else
{
sal_uInt16 nTabCount = mpDoc->GetTableCount();
if ( nTab+1<nTabCount && mpDoc->IsScenario(nTab+1) && !mpDoc->IsScenario(nTab) )
{
sal_uInt16 i;
ScMarkData aMarks;
for (i=nTab+1; i<nTabCount && mpDoc->IsScenario(i); i++)
mpDoc->MarkScenario( i, nTab, aMarks, sal_False, SC_SCENARIO_SHOWFRAME );
ScRangeList aRanges;
aMarks.FillRangeListWithMarks( &aRanges, sal_False );
sal_Bool bHasScenario;
sal_uInt16 nRangeCount = (sal_uInt16)aRanges.Count();
for (i=0; i<nRangeCount; i++)
{
ScRange aRange = *aRanges.GetObject(i);
mpDoc->ExtendTotalMerge( aRange );
sal_Bool bTextBelow = ( aRange.aStart.Row() == 0 );
// MT IA2: Not used: sal_Bool bIsInScen = sal_False;
if ( bTextBelow )
{
bHasScenario = (aRange.aStart.Col() == nPosX && aRange.aEnd.Row() == nPosY-1);
}
else
{
bHasScenario = (aRange.aStart.Col() == nPosX && aRange.aStart.Row() == nPosY+1);
}
if( bHasScenario ) return sal_True;
}
}
}
return sal_False;
}