Lines Matching refs:pSdrView

97     SdrView *pSdrView = m_pSh->GetDrawView();  in MouseButtonDown()  local
101 pSdrView->SetOrtho(doConstructOrthogonal() ? !rMEvt.IsShift() : rMEvt.IsShift()); in MouseButtonDown()
102 pSdrView->SetAngleSnapEnabled(rMEvt.IsShift()); in MouseButtonDown()
106 pSdrView->SetCreate1stPointAsCenter(sal_True); in MouseButtonDown()
107 pSdrView->SetResizeAtCenter(sal_True); in MouseButtonDown()
111 pSdrView->SetCreate1stPointAsCenter(sal_False); in MouseButtonDown()
112 pSdrView->SetResizeAtCenter(sal_False); in MouseButtonDown()
116 SdrHitKind eHit = pSdrView->PickAnything(rMEvt, SDRMOUSEBUTTONDOWN, aVEvt); in MouseButtonDown()
135 else if (!pSdrView->IsAction()) in MouseButtonDown()
150 bReturn = pSdrView->BegDragObj(m_aStartPos, (OutputDevice*) NULL, aVEvt.pHdl); in MouseButtonDown()
159 bReturn = pSdrView->BegInsObjPoint(m_aStartPos, rMEvt.IsMod1()); in MouseButtonDown()
168 pSdrView->UnmarkAllPoints(); in MouseButtonDown()
170 bReturn = pSdrView->BegMarkPoints(m_aStartPos); in MouseButtonDown()
185 if (pSdrView->HasMarkablePoints() && (!pSdrView->IsPointMarked(*aVEvt.pHdl) || rMEvt.IsShift())) in MouseButtonDown()
191 pSdrView->UnmarkAllPoints(); in MouseButtonDown()
192 pHdl = pSdrView->PickHandle(m_aStartPos); in MouseButtonDown()
196 if (pSdrView->IsPointMarked(*aVEvt.pHdl)) in MouseButtonDown()
198 bReturn = pSdrView->UnmarkPoint(*aVEvt.pHdl); in MouseButtonDown()
203 pHdl = pSdrView->PickHandle(m_aStartPos); in MouseButtonDown()
210 pSdrView->MarkPoint(*pHdl); in MouseButtonDown()
223 if (pSdrView->HasMarkablePoints()) in MouseButtonDown()
224 pSdrView->UnmarkAllPoints(); in MouseButtonDown()
237 if (!pSdrView->HasMarkablePoints()) in MouseButtonDown()
248 pSdrView->UnmarkAllPoints(); in MouseButtonDown()
273 SdrView *pSdrView = m_pSh->GetDrawView(); in MouseMove() local
277 if (IsCreateObj() && !m_pWin->IsDrawSelMode() && pSdrView->IsCreateObj()) in MouseMove()
281 pSdrView->SetOrtho(doConstructOrthogonal() ? !rMEvt.IsShift() : rMEvt.IsShift()); in MouseMove()
282 pSdrView->SetAngleSnapEnabled(rMEvt.IsShift()); in MouseMove()
287 else if (pSdrView->IsAction() || pSdrView->IsInsObjPoint() || pSdrView->IsMarkPoints()) in MouseMove()
374 SdrView *pSdrView = m_pSh->GetDrawView(); in MouseButtonUp() local
376 if (!pSdrView->HasMarkablePoints()) in MouseButtonUp()
428 if ( pSdrView->IsAction() ) in MouseButtonUp()
430 if ( pSdrView->IsInsObjPoint() ) in MouseButtonUp()
431 bReturn = pSdrView->EndInsObjPoint(SDRCREATE_FORCEEND); in MouseButtonUp()
432 else if (pSdrView->IsMarkPoints() ) in MouseButtonUp()
433 bReturn = pSdrView->EndMarkPoints(); in MouseButtonUp()
436 pSdrView->EndAction(); in MouseButtonUp()
448 pSdrView->UnmarkAllPoints(); in MouseButtonUp()
502 SdrView *pSdrView = m_pSh->GetDrawView(); in Activate() local
504 pSdrView->SetCurrentObj( static_cast< sal_uInt16 >(m_pWin->GetSdrDrawMode()) ); in Activate()
505 pSdrView->SetEditMode(sal_False); in Activate()
520 SdrView *pSdrView = m_pSh->GetDrawView(); in Deactivate() local
521 pSdrView->SetOrtho(sal_False); in Deactivate()
522 pSdrView->SetAngleSnapEnabled(sal_False); in Deactivate()
581 SdrView *pSdrView = m_pSh->GetDrawView(); in KeyInput() local
583 if (!pSdrView->IsTextEdit()) in KeyInput()
613 if (pSdrView->AreObjectsMarked() && rKEvt.GetKeyCode().IsMod2()) in KeyInput()
618 pSdrView->MoveAllMarked(Size(nX, nY)); in KeyInput()
660 SdrView *pSdrView = m_pSh->GetDrawView(); in SetDrawPointer() local
663 const Pointer aPointTyp = pSdrView->GetPreferedPointer(aPnt, m_pSh->GetOut()); in SetDrawPointer()