Lines Matching refs:xShapes

214     uno::Reference < drawing::XShapes > xShapes;  member
215 SelectShape(uno::Reference<drawing::XShapes>& xTemp) : xShapes(xTemp) {} in SelectShape()
223 if (xShapes.is()) in operator ()()
224 xShapes->add(pAccShapeData->xShape); in operator ()()
307 …(const com::sun::star::uno::Reference<com::sun::star::drawing::XShapes>& xShapes, sal_Bool bCommit…
341 uno::Reference<drawing::XShapes> xShapes(xSelectionSupplier->getSelection(), uno::UNO_QUERY); in ScChildrenShapes() local
342 if (xShapes.is()) in ScChildrenShapes()
343 FindSelectedShapesChanges(xShapes, sal_False); in ScChildrenShapes()
673 uno::Reference<drawing::XShapes> xShapes(xSelectionSupplier->getSelection(), uno::UNO_QUERY); in SelectionChanged() local
675 bResult = FindSelectedShapesChanges(xShapes, sal_True); in SelectionChanged()
694 uno::Reference<drawing::XShapes> xShapes; in Select() local
695 xSelectionSupplier->getSelection() >>= xShapes; in Select()
697 if (!xShapes.is()) in Select()
698 xShapes = new SvxShapeCollection(); in Select()
700 xShapes->add(maZOrderedShapes[nIndex]->xShape); in Select()
704 xSelectionSupplier->select(uno::makeAny(xShapes)); in Select()
745 uno::Reference<drawing::XShapes> xShapes; in SelectAll() local
746 xShapes = new SvxShapeCollection(); in SelectAll()
750 std::for_each(maZOrderedShapes.begin(), maZOrderedShapes.end(), SelectShape(xShapes)); in SelectAll()
751 xSelectionSupplier->select(uno::makeAny(xShapes)); in SelectAll()
847 uno::Reference<drawing::XShapes> xShapes; in Deselect() local
848 xSelectionSupplier->getSelection() >>= xShapes; in Deselect()
849 if (xShapes.is()) in Deselect()
850 xShapes->remove(xShape); in Deselect()
854 xSelectionSupplier->select(uno::makeAny(xShapes)); in Deselect()
924 …hapes::FindSelectedShapesChanges(const uno::Reference<drawing::XShapes>& xShapes, sal_Bool /* bCom… in FindSelectedShapesChanges() argument
928 uno::Reference<container::XIndexAccess> xIndexAcc(xShapes, uno::UNO_QUERY); in FindSelectedShapesChanges()
1150 uno::Reference<drawing::XShapes> xShapes (xSelectionSupplier->getSelection(), uno::UNO_QUERY); in FillSelectionSupplier() local
1151 if (xShapes.is()) in FillSelectionSupplier()
1152 mnShapesSelected = xShapes->getCount(); in FillSelectionSupplier()