Lines Matching refs:mpChildrenShapes
888 const ScChildrenShapes* mpChildrenShapes; member
893 mpChildrenShapes(pChildrenShapes), in SetRelation()
909 aRelation.TargetSet[0] = mpChildrenShapes->Get(pAccShapeData); in operator ()()
1417 mpChildrenShapes(NULL), in ScAccessibleDocument()
1450 if(!mpChildrenShapes) in Init()
1451 mpChildrenShapes = new ScChildrenShapes(this, mpViewShell, meSplitPos); in Init()
1477 if (mpChildrenShapes) in disposing()
1478 DELETEZ(mpChildrenShapes); in disposing()
1544 if (mpChildrenShapes) in Notify()
1547 xAccessible = mpChildrenShapes->GetSelected(0, bTabMarked); in Notify()
1577 if (mpChildrenShapes) in Notify()
1578 DELETEZ(mpChildrenShapes); in Notify()
1581 if ( !mpChildrenShapes ) in Notify()
1583 mpChildrenShapes = new ScChildrenShapes( this, mpViewShell, meSplitPos ); in Notify()
1596 if (mpChildrenShapes) in Notify()
1597 mpChildrenShapes->SetDrawBroadcaster(); in Notify()
1659 if (mpChildrenShapes) in Notify()
1660 mpChildrenShapes->VisAreaChanged(); in Notify()
1683 if (mpChildrenShapes && mpChildrenShapes->SelectionChanged()) in selectionChanged()
1694 if(mpChildrenShapes ) in selectionChanged()
1696 mpChildrenShapes->SelectionChanged(); in selectionChanged()
1739 if (mpChildrenShapes) in getAccessibleAtPoint()
1740 xAccessible = mpChildrenShapes->GetAt(rPoint); in getAccessibleAtPoint()
1793 if (mpChildrenShapes) in getAccessibleChildCount()
1794 … nCount = mpChildrenShapes->GetCount(); // returns the count of the shapes inclusive the table in getAccessibleChildCount()
1814 if (mpChildrenShapes) in getAccessibleChild()
1816 … xAccessible = mpChildrenShapes->Get(nIndex); // returns NULL if it is the table or out of range in getAccessibleChild()
1817 nCount = mpChildrenShapes->GetCount(); //there is always a table in getAccessibleChild()
1901 if (mpChildrenShapes) in selectAccessibleChild()
1903 sal_Int32 nCount(mpChildrenShapes->GetCount()); //all shapes and the table in selectAccessibleChild()
1909 uno::Reference < XAccessible > xAccessible = mpChildrenShapes->Get(nChildIndex); in selectAccessibleChild()
1914 if (mpChildrenShapes) in selectAccessibleChild()
1915 …mpChildrenShapes->Select(nChildIndex); // throws no lang::IndexOutOfBoundsException if Index is to… in selectAccessibleChild()
1936 if (mpChildrenShapes) in isAccessibleChildSelected()
1938 sal_Int32 nCount(mpChildrenShapes->GetCount()); //all shapes and the table in isAccessibleChildSelected()
1944 uno::Reference < XAccessible > xAccessible = mpChildrenShapes->Get(nChildIndex); in isAccessibleChildSelected()
1948 …bResult = mpChildrenShapes->IsSelected(nChildIndex, xShape); // throws no lang::IndexOutOfBoundsEx… in isAccessibleChildSelected()
1968 if (mpChildrenShapes) in clearAccessibleSelection()
1969 mpChildrenShapes->DeselectAll(); //deselects all (also the table) in clearAccessibleSelection()
1979 if (mpChildrenShapes) in selectAllAccessibleChildren()
1980 mpChildrenShapes->SelectAll(); in selectAllAccessibleChildren()
1997 if (mpChildrenShapes) in getSelectedAccessibleChildCount()
1998 nCount = mpChildrenShapes->GetSelectedCount(); in getSelectedAccessibleChildCount()
2016 if (mpChildrenShapes) in getSelectedAccessibleChild()
2024 if (mpChildrenShapes) in getSelectedAccessibleChild()
2025 …xAccessible = mpChildrenShapes->GetSelected(nSelectedChildIndex, bTabMarked); // throws no lang::I… in getSelectedAccessibleChild()
2044 if (mpChildrenShapes) in deselectAccessibleChild()
2046 sal_Int32 nCount(mpChildrenShapes->GetCount()); //all shapes and the table in deselectAccessibleChild()
2054 uno::Reference < XAccessible > xAccessible = mpChildrenShapes->Get(nChildIndex); in deselectAccessibleChild()
2057 if (mpChildrenShapes) in deselectAccessibleChild()
2058 …mpChildrenShapes->Deselect(nChildIndex); // throws no lang::IndexOutOfBoundsException if Index is … in deselectAccessibleChild()
2201 if (mpChildrenShapes) in GetRelationSet()
2202 pRelationSet = mpChildrenShapes->GetRelationSet(pAddress); in GetRelationSet()
2458 uno::Reference < XAccessible > xAcc = mpChildrenShapes->GetAccessibleCaption(xShape); in get_AccFlowTo()