Lines Matching refs:xAnnotation
572 extern void createAnnotation( Reference< XAnnotation >& xAnnotation, SdPage* pPage );
573 …n* CreateUndoInsertOrRemoveAnnotation( const Reference< XAnnotation >& xAnnotation, bool bInsert );
576 …nnotation( ::com::sun::star::uno::Reference< ::com::sun::star::office::XAnnotation >& xAnnotation ) in createAnnotation() argument
578 sd::createAnnotation( xAnnotation, this ); in createAnnotation()
581 void SdPage::addAnnotation( const Reference< XAnnotation >& xAnnotation, int nIndex ) in addAnnotation() argument
585 maAnnotations.push_back( xAnnotation ); in addAnnotation()
589 maAnnotations.insert( maAnnotations.begin() + nIndex, xAnnotation ); in addAnnotation()
594 SdrUndoAction* pAction = CreateUndoInsertOrRemoveAnnotation( xAnnotation, true ); in addAnnotation()
604 Reference< XInterface > xSource( xAnnotation, UNO_QUERY ); in addAnnotation()
609 void SdPage::removeAnnotation( const Reference< XAnnotation >& xAnnotation ) in removeAnnotation() argument
613 SdrUndoAction* pAction = CreateUndoInsertOrRemoveAnnotation( xAnnotation, false ); in removeAnnotation()
618 …tationVector::iterator iter = std::find( maAnnotations.begin(), maAnnotations.end(), xAnnotation ); in removeAnnotation()
625 Reference< XInterface > xSource( xAnnotation, UNO_QUERY ); in removeAnnotation()