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()
1661 if (mpChildrenShapes) in Notify()
1662 mpChildrenShapes->VisAreaChanged(); in Notify()
1685 if (mpChildrenShapes && mpChildrenShapes->SelectionChanged()) in selectionChanged()
1696 if(mpChildrenShapes ) in selectionChanged()
1698 mpChildrenShapes->SelectionChanged(); in selectionChanged()
1741 if (mpChildrenShapes) in getAccessibleAtPoint()
1742 xAccessible = mpChildrenShapes->GetAt(rPoint); in getAccessibleAtPoint()
1795 if (mpChildrenShapes) in getAccessibleChildCount()
1796 … nCount = mpChildrenShapes->GetCount(); // returns the count of the shapes inclusive the table in getAccessibleChildCount()
1816 if (mpChildrenShapes) in getAccessibleChild()
1818 … xAccessible = mpChildrenShapes->Get(nIndex); // returns NULL if it is the table or out of range in getAccessibleChild()
1819 nCount = mpChildrenShapes->GetCount(); //there is always a table in getAccessibleChild()
1903 if (mpChildrenShapes) in selectAccessibleChild()
1905 sal_Int32 nCount(mpChildrenShapes->GetCount()); //all shapes and the table in selectAccessibleChild()
1911 uno::Reference < XAccessible > xAccessible = mpChildrenShapes->Get(nChildIndex); in selectAccessibleChild()
1916 if (mpChildrenShapes) in selectAccessibleChild()
1917mpChildrenShapes->Select(nChildIndex); // throws no lang::IndexOutOfBoundsException if Index is to… in selectAccessibleChild()
1938 if (mpChildrenShapes) in isAccessibleChildSelected()
1940 sal_Int32 nCount(mpChildrenShapes->GetCount()); //all shapes and the table in isAccessibleChildSelected()
1946 uno::Reference < XAccessible > xAccessible = mpChildrenShapes->Get(nChildIndex); in isAccessibleChildSelected()
1950 …bResult = mpChildrenShapes->IsSelected(nChildIndex, xShape); // throws no lang::IndexOutOfBoundsEx… in isAccessibleChildSelected()
1970 if (mpChildrenShapes) in clearAccessibleSelection()
1971 mpChildrenShapes->DeselectAll(); //deselects all (also the table) in clearAccessibleSelection()
1981 if (mpChildrenShapes) in selectAllAccessibleChildren()
1982 mpChildrenShapes->SelectAll(); in selectAllAccessibleChildren()
1999 if (mpChildrenShapes) in getSelectedAccessibleChildCount()
2000 nCount = mpChildrenShapes->GetSelectedCount(); in getSelectedAccessibleChildCount()
2018 if (mpChildrenShapes) in getSelectedAccessibleChild()
2026 if (mpChildrenShapes) in getSelectedAccessibleChild()
2027 …xAccessible = mpChildrenShapes->GetSelected(nSelectedChildIndex, bTabMarked); // throws no lang::I… in getSelectedAccessibleChild()
2046 if (mpChildrenShapes) in deselectAccessibleChild()
2048 sal_Int32 nCount(mpChildrenShapes->GetCount()); //all shapes and the table in deselectAccessibleChild()
2056 uno::Reference < XAccessible > xAccessible = mpChildrenShapes->Get(nChildIndex); in deselectAccessibleChild()
2059 if (mpChildrenShapes) in deselectAccessibleChild()
2060mpChildrenShapes->Deselect(nChildIndex); // throws no lang::IndexOutOfBoundsException if Index is … in deselectAccessibleChild()
2203 if (mpChildrenShapes) in GetRelationSet()
2204 pRelationSet = mpChildrenShapes->GetRelationSet(pAddress); in GetRelationSet()
2459 uno::Reference < XAccessible > xAcc = mpChildrenShapes->GetAccessibleCaption(xShape); in get_AccFlowTo()