Lines Matching refs:pView

135 	SdrView* pView = pParent->GetView();  in KeyInput()  local
145 if ( pView->IsAction() ) in KeyInput()
147 pView->BrkAction(); in KeyInput()
150 else if ( pView->AreObjectsMarked() ) in KeyInput()
152 const SdrHdlList& rHdlList = pView->GetHdlList(); in KeyInput()
157 pView->UnmarkAll(); in KeyInput()
168 if ( !pView->MarkNextObj( !aCode.IsShift() ) ) in KeyInput()
171 pView->UnmarkAllObj(); in KeyInput()
172 pView->MarkNextObj( !aCode.IsShift() ); in KeyInput()
175 if ( pView->AreObjectsMarked() ) in KeyInput()
176 pView->MakeVisible( pView->GetAllMarkedRect(), *pWindow ); in KeyInput()
183 const SdrHdlList& rHdlList = pView->GetHdlList(); in KeyInput()
192 pView->MakeVisible( aVisRect, *pWindow ); in KeyInput()
232 if ( pView->AreObjectsMarked() && !aCode.IsMod1() ) in KeyInput()
248 const SdrHdlList& rHdlList = pView->GetHdlList(); in KeyInput()
254 if ( pView->IsMoveAllowed() ) in KeyInput()
257 const Rectangle& rWorkArea = pView->GetWorkArea(); in KeyInput()
261 Rectangle aMarkRect( pView->GetMarkedObjRect() ); in KeyInput()
282 pView->MoveAllMarked( Size( nX, nY ) ); in KeyInput()
283 pView->MakeVisible( pView->GetAllMarkedRect(), *pWindow ); in KeyInput()
294 const SdrDragStat& rDragStat = pView->GetDragStat(); in KeyInput()
297 pView->BegDragObj( aStartPoint, 0, pHdl, 0 ); in KeyInput()
299 if ( pView->IsDragObj() ) in KeyInput()
302 sal_Bool bWasSnapEnabled = pView->IsSnapEnabled(); in KeyInput()
308 pView->SetSnapEnabled( sal_False ); in KeyInput()
310 pView->MovAction( aEndPoint ); in KeyInput()
311 pView->EndDragObj(); in KeyInput()
317 pView->SetSnapEnabled( bWasSnapEnabled ); in KeyInput()
322 pView->MakeVisible( aVisRect, *pWindow ); in KeyInput()
381 SdrView* pView = pParent->GetView(); in MouseButtonDown() local
383 pView->SetActualWin( pWindow ); in MouseButtonDown()
393 SdrHdl* pHdl = pView->PickHandle(aPos); in MouseButtonDown()
396 if ( pHdl!=NULL || pView->IsMarkedHit(aPos, nHitLog) ) in MouseButtonDown()
397 pView->BegDragObj(aPos, (OutputDevice*) NULL, pHdl, nDrgLog); in MouseButtonDown()
398 else if ( pView->AreObjectsMarked() ) in MouseButtonDown()
399 pView->UnmarkAll(); in MouseButtonDown()
402 if ( !pView->IsAction() ) in MouseButtonDown()
403 pView->BegCreateObj(aPos); in MouseButtonDown()
408 if ( pView->IsMarkedHit(aPos, nHitLog) && pParent->GetMode() != DLGED_READONLY ) in MouseButtonDown()
421 SdrView* pView = pParent->GetView(); in MouseButtonUp() local
423 pView->SetActualWin( pWindow ); in MouseButtonUp()
428 if ( pView->IsCreateObj() ) in MouseButtonUp()
430 pView->EndCreateObj(SDRCREATE_FORCEEND); in MouseButtonUp()
432 if ( !pView->AreObjectsMarked() ) in MouseButtonUp()
436 pView->MarkObj(aPos, nHitLog); in MouseButtonUp()
439 if( pView->AreObjectsMarked() ) in MouseButtonUp()
446 if ( pView->IsDragObj() ) in MouseButtonUp()
447 pView->EndDragObj( rMEvt.IsMod1() ); in MouseButtonUp()
456 SdrView* pView = pParent->GetView(); in MouseMove() local
458 pView->SetActualWin( pWindow ); in MouseMove()
463 if ( pView->IsAction() ) in MouseMove()
466 pView->MovAction(aPos); in MouseMove()
469 pWindow->SetPointer( pView->GetPreferedPointer( aPos, pWindow, nHitLog ) ); in MouseMove()
493 SdrView* pView = pParent->GetView(); in MouseButtonDown() local
495 pView->SetActualWin( pWindow ); in MouseButtonDown()
503 SdrHdl* pHdl = pView->PickHandle(aMDPos); in MouseButtonDown()
508 if ( pHdl!=NULL || pView->IsMarkedHit(aMDPos, nHitLog) ) in MouseButtonDown()
510 pView->BegDragObj(aMDPos, (OutputDevice*) NULL, pHdl, nDrgLog); in MouseButtonDown()
516 pView->UnmarkAll(); in MouseButtonDown()
519 if( pView->PickObj( aMDPos, nHitLog, pObj, pPV ) ) in MouseButtonDown()
528 if ( pView->MarkObj(aMDPos, nHitLog) ) in MouseButtonDown()
531 pHdl=pView->PickHandle(aMDPos); in MouseButtonDown()
532 pView->BegDragObj(aMDPos, (OutputDevice*) NULL, pHdl, nDrgLog); in MouseButtonDown()
537 pView->BegMarkObj(aMDPos); in MouseButtonDown()
545 if ( pView->IsMarkedHit(aMDPos, nHitLog) && pParent->GetMode() != DLGED_READONLY ) in MouseButtonDown()
559 SdrView* pView = pParent->GetView(); in MouseButtonUp() local
561 pView->SetActualWin( pWindow ); in MouseButtonUp()
568 if ( pView->IsDragObj() ) in MouseButtonUp()
571 pView->EndDragObj( rMEvt.IsMod1() ); in MouseButtonUp()
572 pView->ForceMarkedToAnotherPage(); in MouseButtonUp()
575 if (pView->IsAction() ) in MouseButtonUp()
577 pView->EndAction(); in MouseButtonUp()
602 pWindow->SetPointer( pView->GetPreferedPointer( aPnt, pWindow, nHitLog ) ); in MouseButtonUp()
612 SdrView* pView = pParent->GetView(); in MouseMove() local
614 pView->SetActualWin( pWindow ); in MouseMove()
619 if ( pView->IsAction() ) in MouseMove()
625 pView->MovAction(aPnt_); in MouseMove()
628 pWindow->SetPointer( pView->GetPreferedPointer( aPnt, pWindow, nHitLog ) ); in MouseMove()