Lines Matching refs:pDlgEdView

177 	SdrPageView*    pPgView = pDlgEdView->GetSdrPageView();  in UnmarkDialog()
179 sal_Bool bWasMarked = pDlgEdView->IsObjMarked( pDlgObj ); in UnmarkDialog()
182 pDlgEdView->MarkObj( pDlgObj, pPgView, sal_True ); in UnmarkDialog()
192 SdrPageView* pPgView = pDlgEdView->GetSdrPageView(); in RemarkDialog()
194 sal_Bool bWasMarked = pDlgEdView->IsObjMarked( pDlgObj ); in RemarkDialog()
197 pDlgEdView->MarkObj( pDlgObj, pPgView, sal_False ); in RemarkDialog()
209 ,pDlgEdView(NULL) in DlgEditor()
270 delete pDlgEdView; in ~DlgEditor()
291 pDlgEdView = new DlgEdView( pDlgEdModel, pWindow_, this ); in SetWindow()
292 pDlgEdView->ShowSdrPage(pDlgEdView->GetModel()->GetPage(0)); in SetWindow()
293pDlgEdView->SetLayerVisible( UniString::CreateFromAscii( RTL_CONSTASCII_STRINGPARAM( "HiddenLayer"… in SetWindow()
294 pDlgEdView->SetMoveSnapOnlyTopLeft( sal_True ); in SetWindow()
295 pDlgEdView->SetWorkArea( Rectangle( Point( 0, 0 ), pDlgEdPage->GetSize() ) ); in SetWindow()
297 pDlgEdView->SetGridCoarse( aGridSize ); in SetWindow()
298 pDlgEdView->SetSnapGridWidth(Fraction(aGridSize.Width(), 1), Fraction(aGridSize.Height(), 1)); in SetWindow()
299 pDlgEdView->SetGridSnap( bGridSnap ); in SetWindow()
300 pDlgEdView->SetGridVisible( bGridVisible ); in SetWindow()
301 pDlgEdView->SetDragStripes( sal_False ); in SetWindow()
303 pDlgEdView->SetDesignMode( sal_True ); in SetWindow()
472 SdrPageView* pPgView = pDlgEdView->GetSdrPageView(); in ResetDialog()
473 sal_Bool bWasMarked = pDlgEdView->IsObjMarked( pOldDlgEdForm ); in ResetDialog()
474 pDlgEdView->UnmarkAll(); in ResetDialog()
479 pDlgEdView->MarkObj( pDlgEdForm, pPgView, sal_False ); in ResetDialog()
547 if( !pDlgEdView ) in IMPL_LINK()
574 Size aGridSize_(long(pDlgEdView->GetSnapGridWidthX()), long(pDlgEdView->GetSnapGridWidthY())); in IMPL_LINK()
620 SdrPageView* pPgView = pDlgEdView->GetSdrPageView(); in IMPL_LINK()
702 if( pDlgEdView ) in SetInsertObj()
703 pDlgEdView->SetCurrentObj( eActObj, DlgInventor ); in SetInsertObj()
718 …SdrObject* pObj = SdrObjFactory::MakeNewObject( pDlgEdView->GetCurrentObjInventor(), pDlgEdView->G… in CreateDefaultObject()
734 SdrPageView* pPageView = pDlgEdView->GetSdrPageView(); in CreateDefaultObject()
735 pDlgEdView->InsertObjectAtView( pDlgEdObj, *pPageView); in CreateDefaultObject()
771 if( !pDlgEdView->AreObjectsMarked() ) in Copy()
775 pDlgEdView->BrkAction(); in Copy()
796 sal_uLong nMark = pDlgEdView->GetMarkedObjectList().GetMarkCount(); in Copy()
799 SdrObject* pObj = pDlgEdView->GetMarkedObjectList().GetMark(i)->GetMarkedSdrObj(); in Copy()
929 pDlgEdView->BrkAction(); in Paste()
932 pDlgEdView->UnmarkAll(); in Paste()
1095 SdrPageView* pPgView = pDlgEdView->GetSdrPageView(); in Paste()
1096 pDlgEdView->MarkObj( pCtrlObj, pPgView, sal_False, sal_True); in Paste()
1100 Point aMarkCenter = (pDlgEdView->GetMarkedObjRect()).Center(); in Paste()
1104pDlgEdView->MoveMarkedObj( aSize ); // update of control model properties (position + size) i… in Paste()
1105 pDlgEdView->MarkListHasChanged(); in Paste()
1119 if( !pDlgEdView->AreObjectsMarked() ) in Delete()
1123 sal_uLong nMark = pDlgEdView->GetMarkedObjectList().GetMarkCount(); in Delete()
1127 SdrObject* pObj = pDlgEdView->GetMarkedObjectList().GetMark(i)->GetMarkedSdrObj(); in Delete()
1164 pDlgEdView->BrkAction(); in Delete()
1167 pDlgEdView->DeleteMarked(); in Delete()
1296 if( pDlgEdView ) in Print()
1394 DBG_ASSERT( pDlgEdView, "DlgEditor::AdjustPageSize: no view!" ); in AdjustPageSize()
1395 if ( pDlgEdView ) in AdjustPageSize()
1396 pDlgEdView->SetWorkArea( Rectangle( Point( 0, 0 ), aNewPageSize ) ); in AdjustPageSize()