Lines Matching refs:xAnnotation
588 extern void createAnnotation( Reference< XAnnotation >& xAnnotation, SdPage* pPage );
589 …n* CreateUndoInsertOrRemoveAnnotation( const Reference< XAnnotation >& xAnnotation, bool bInsert );
592 …nnotation( ::com::sun::star::uno::Reference< ::com::sun::star::office::XAnnotation >& xAnnotation ) in createAnnotation() argument
594 sd::createAnnotation( xAnnotation, this ); in createAnnotation()
597 void SdPage::addAnnotation( const Reference< XAnnotation >& xAnnotation, int nIndex ) in addAnnotation() argument
601 maAnnotations.push_back( xAnnotation ); in addAnnotation()
605 maAnnotations.insert( maAnnotations.begin() + nIndex, xAnnotation ); in addAnnotation()
610 SdrUndoAction* pAction = CreateUndoInsertOrRemoveAnnotation( xAnnotation, true ); in addAnnotation()
620 Reference< XInterface > xSource( xAnnotation, UNO_QUERY ); in addAnnotation()
625 void SdPage::removeAnnotation( const Reference< XAnnotation >& xAnnotation ) in removeAnnotation() argument
629 SdrUndoAction* pAction = CreateUndoInsertOrRemoveAnnotation( xAnnotation, false ); in removeAnnotation()
634 …tationVector::iterator iter = std::find( maAnnotations.begin(), maAnnotations.end(), xAnnotation ); in removeAnnotation()
641 Reference< XInterface > xSource( xAnnotation, UNO_QUERY ); in removeAnnotation()