Lines Matching refs:rSh
61 SwWrtShell& rSh = GetShell(); in InsertURLButton() local
63 if (!rSh.HasDrawView()) in InsertURLButton()
64 rSh.MakeDrawView(); in InsertURLButton()
65 SdrView *pSdrView = rSh.GetDrawView(); in InsertURLButton()
72 Point aStartPos(rSh.GetCharRect().Pos() + Point(0, 1)); in InsertURLButton()
74 rSh.StartAction(); in InsertURLButton()
75 rSh.StartUndo( UNDO_UI_INSERT_URLBTN ); in InsertURLButton()
76 if (rSh.BeginCreate(OBJ_FM_BUTTON, FmFormInventor, aStartPos)) in InsertURLButton()
82 rSh.MoveCreate(aStartPos + aEndPos); in InsertURLButton()
83 rSh.EndCreate(SDRCREATE_FORCEEND); in InsertURLButton()
103 SfxMedium* pMedium = rSh.GetView().GetDocShell()->GetMedium(); in InsertURLButton()
130 if (rSh.IsObjSelected()) in InsertURLButton()
132 rSh.UnSelectFrm(); in InsertURLButton()
135 rSh.EndUndo( UNDO_UI_INSERT_URLBTN ); in InsertURLButton()
136 rSh.EndAction(); in InsertURLButton()