Lines Matching refs:pView

87             pView           ( NULL )  in GraphCtrl()
117 pView ( NULL ) in GraphCtrl()
140 delete pView; in ~GraphCtrl()
162 delete pView; in SetWinStyle()
163 pView = NULL; in SetWinStyle()
186 delete pView; in InitSdrModel()
204 pView = new GraphCtrlView( pModel, this ); in InitSdrModel()
205 pView->SetWorkArea( Rectangle( Point(), aGraphSize ) ); in InitSdrModel()
206 pView->EnableExtendedMouseEventDispatcher( sal_True ); in InitSdrModel()
207 pView->ShowSdrPage(pView->GetModel()->GetPage(0)); in InitSdrModel()
209 pView->SetFrameDragSingles( sal_True ); in InitSdrModel()
210 pView->SetMarkedPointsSmooth( SDRPATHSMOOTH_SYMMETRIC ); in InitSdrModel()
211 pView->SetEditMode( sal_True ); in InitSdrModel()
214 pView->SetPagePaintingAllowed(false); in InitSdrModel()
215 pView->SetBufferedOutputAllowed(true); in InitSdrModel()
216 pView->SetBufferedOverlayAllowed(true); in InitSdrModel()
220 mpAccContext->setModelAndView (pModel, pView); in InitSdrModel()
330 SdrPaintWindow* pPaintWindow = pView->BeginCompleteRedraw(this); in Paint()
343 pView->DoCompleteRedraw(*pPaintWindow, aRepaintRegion); in Paint()
344 pView->EndCompleteRedraw(*pPaintWindow, true); in Paint()
410 pView->DeleteMarked(); in KeyInput()
412 if( !pView->AreObjectsMarked() ) in KeyInput()
422 if ( pView->IsAction() ) in KeyInput()
424 pView->BrkAction(); in KeyInput()
426 else if ( pView->AreObjectsMarked() ) in KeyInput()
428 const SdrHdlList& rHdlList = pView->GetHdlList(); in KeyInput()
458 if ( ! pView->MarkNextObj( bForward )) in KeyInput()
462 pView->UnmarkAllObj(); in KeyInput()
463 pView->MarkNextObj (bForward); in KeyInput()
470 const SdrHdlList& rHdlList = pView->GetHdlList(); in KeyInput()
487 pView->UnmarkAllObj(); in KeyInput()
488 pView->MarkNextObj(sal_False); in KeyInput()
499 pView->UnmarkAllObj(); in KeyInput()
500 pView->MarkNextObj(sal_True); in KeyInput()
540 if (pView->AreObjectsMarked() && !aCode.IsMod1() ) in KeyInput()
557 const SdrHdlList& rHdlList = pView->GetHdlList(); in KeyInput()
563 const Rectangle& rWorkArea = pView->GetWorkArea(); in KeyInput()
567 Rectangle aMarkRect(pView->GetMarkedObjRect()); in KeyInput()
597 pView->MoveAllMarked(Size(nX, nY)); in KeyInput()
608 const SdrDragStat& rDragStat = pView->GetDragStat(); in KeyInput()
611 pView->BegDragObj(aStartPoint, 0, pHdl, 0); in KeyInput()
613 if(pView->IsDragObj()) in KeyInput()
616 sal_Bool bWasSnapEnabled = pView->IsSnapEnabled(); in KeyInput()
622 pView->SetSnapEnabled(sal_False); in KeyInput()
624 pView->MovAction(aEndPoint); in KeyInput()
625 pView->EndDragObj(); in KeyInput()
631 pView->SetSnapEnabled(bWasSnapEnabled); in KeyInput()
643 const SdrHdlList& rHdlList = pView->GetHdlList(); in KeyInput()
654 if(pView->IsPointMarked(pHdl)) in KeyInput()
658 pView->UnmarkPoint(*pHdl); in KeyInput()
665 pView->UnmarkAllPoints(); in KeyInput()
668 pView->MarkPoint(*pHdl); in KeyInput()
724 if ( !Rectangle( Point(), aGraphSize ).IsInside( aLogPt ) && !pView->IsEditMode() ) in MouseButtonDown()
734 SdrHitKind eHit = pView->PickAnything( rMEvt, SDRMOUSEBUTTONDOWN, aVEvt ); in MouseButtonDown()
737 pView->BegInsObjPoint( aLogPt, rMEvt.IsMod1()); in MouseButtonDown()
739 pView->MouseButtonDown( rMEvt, this ); in MouseButtonDown()
742 pView->MouseButtonDown( rMEvt, this ); in MouseButtonDown()
745 SdrObject* pCreateObj = pView->GetCreateObj(); in MouseButtonDown()
751 SetPointer( pView->GetPreferedPointer( aLogPt, this ) ); in MouseButtonDown()
770 pView->MouseMove( rMEvt, this ); in MouseMove()
773 !pView->PickHandle( aLogPos ) && in MouseMove()
774 !pView->IsInsObjPoint() ) in MouseMove()
779 SetPointer( pView->GetPreferedPointer( aLogPos, this ) ); in MouseMove()
806 if ( pView->IsInsObjPoint() ) in MouseButtonUp()
807 pView->EndInsObjPoint( SDRCREATE_FORCEEND ); in MouseButtonUp()
809 pView->MouseButtonUp( rMEvt, this ); in MouseButtonUp()
812 SetPointer( pView->GetPreferedPointer( PixelToLogic( rMEvt.GetPosPixel() ), this ) ); in MouseButtonUp()
831 const SdrMarkList& rMarkList = pView->GetMarkedObjectList(); in GetSelectedSdrObject()
852 pView->SetEditMode( bEditMode ); in SetEditMode()
854 pView->SetCurrentObj( sal::static_int_cast< sal_uInt16 >( eObjKind ) ); in SetEditMode()
872 pView->SetFrameDragSingles( nPolyEdit == 0 ); in SetPolyEditMode()
890 pView->SetEditMode( bEditMode ); in SetObjKind()
892 pView->SetCurrentObj( sal::static_int_cast< sal_uInt16 >( eObjKind ) ); in SetObjKind()
945 if( pView && in CreateAccessible()