Lines Matching refs:mrModel
86 SvxUnoDrawingModel& mrModel; member in SvxUnoDrawPagesAccess
610 : mrModel(rMyModel) in SvxUnoDrawPagesAccess()
626 if( mrModel.mpDoc ) in getCount()
627 nCount = mrModel.mpDoc->GetPageCount(); in getCount()
639 if( mrModel.mpDoc ) in getByIndex()
641 if( (Index < 0) || (Index >= mrModel.mpDoc->GetPageCount() ) ) in getByIndex()
644 SdrPage* pPage = mrModel.mpDoc->GetPage( (sal_uInt16)Index ); in getByIndex()
651 if( PTR_CAST( FmFormModel, mrModel.mpDoc ) ) in getByIndex()
691 if( mrModel.mpDoc ) in insertNewByIndex()
695 if( PTR_CAST( FmFormModel, mrModel.mpDoc ) ) in insertNewByIndex()
696 pPage = new FmFormPage(*(FmFormModel*)mrModel.mpDoc, NULL); in insertNewByIndex()
698 pPage = new SdrPage(*mrModel.mpDoc); in insertNewByIndex()
700 mrModel.mpDoc->InsertPage( pPage, (sal_uInt16)nIndex ); in insertNewByIndex()
712 sal_uInt16 nPageCount = mrModel.mpDoc->GetPageCount(); in remove()
723 mrModel.mpDoc->DeletePage( nPage ); in remove()