Lines Matching refs:rWrtShell

349 void SwFormatClipboard::Copy( SwWrtShell& rWrtShell, SfxItemPool& rPool, bool bPersistentCopy )  in Copy()  argument
354 int nSelectionType = rWrtShell.GetSelectionType(); in Copy()
357 rWrtShell.StartAction(); in Copy()
358 rWrtShell.Push(); in Copy()
361 SwPaM* pCrsr = rWrtShell.GetCrsr(); in Copy()
375 rWrtShell.KillPams(); in Copy()
376 pCrsr = rWrtShell.GetCrsr(); in Copy()
384 if( !bHasSelection && rWrtShell.IsInRightToLeftText() ) in Copy()
387 if( !( !bHasSelection && rWrtShell.IsEndPara() ) ) in Copy()
394 rWrtShell.GetFlyFrmAttr(*pItemSet); in Copy()
397 rWrtShell.GetCurAttr(*pItemSet); in Copy()
400 if( nSelectionType & nsSelectionType::SEL_TXT && rWrtShell.GetNumRuleAtCurrCrsrPos() ) in Copy()
402 SfxBoolItem aStart(FN_NUMBER_NEWSTART, rWrtShell.IsNumRuleStart()); in Copy()
404 SfxUInt16Item aStartAt(FN_NUMBER_NEWSTART_AT, rWrtShell.GetNodeNumStart()); in Copy()
411 SdrView* pDrawView = rWrtShell.GetDrawView(); in Copy()
429 lcl_getTableAttributes( *m_pTableItemSet, rWrtShell ); in Copy()
437 SwFmt* pFmt = rWrtShell.GetCurCharFmt(); in Copy()
441 pFmt = rWrtShell.GetCurTxtFmtColl(); in Copy()
445 rWrtShell.Pop(sal_False); in Copy()
446 rWrtShell.EndAction(); in Copy()
484 void SwFormatClipboard::Paste( SwWrtShell& rWrtShell, SfxStyleSheetBasePool* pPool in Paste() argument
487 int nSelectionType = rWrtShell.GetSelectionType(); in Paste()
495 rWrtShell.StartAction(); in Paste()
496 rWrtShell.StartUndo(UNDO_INSATTR); in Paste()
512 rWrtShell.SetAttrItem( aFmt, nFlags ); in Paste()
522 rWrtShell.SetTxtFmtColl( pStyle->GetCollection() ); in Paste()
531 SdrView* pDrawView = rWrtShell.GetDrawView(); in Paste()
550 rWrtShell.SetFlyFrmAttr(*pTemplateItemSet); in Paste()
553 rWrtShell.SetAttrSet(*pTemplateItemSet); in Paste()
556 … if( nSelectionType & nsSelectionType::SEL_TXT && rWrtShell.GetNumRuleAtCurrCrsrPos() ) in Paste()
568 rWrtShell.SetNumRuleStart(bStart); in Paste()
569 rWrtShell.SetNodeNumStart(nNumStart); in Paste()
574 rWrtShell.SetNodeNumStart(nNumStart); in Paste()
575 rWrtShell.SetNumRuleStart(sal_False); in Paste()
585 lcl_setTableAttributes( *m_pTableItemSet, rWrtShell ); in Paste()
587 rWrtShell.EndUndo(UNDO_INSATTR); in Paste()
588 rWrtShell.EndAction(); in Paste()