Lines Matching refs:rMPS
988 const MultiPageSetup& rMPS( mpImplData->maMultiPage ); in getFilteredPageFile() local
989 int nSubPages = rMPS.nRows * rMPS.nColumns; in getFilteredPageFile()
1004 rMPS.nLeftMargin == 0 && rMPS.nRightMargin == 0 && in getFilteredPageFile()
1005 rMPS.nTopMargin == 0 && rMPS.nBottomMargin == 0 ) in getFilteredPageFile()
1035 aMPArea.Width() -= rMPS.nLeftMargin + rMPS.nRightMargin; in getFilteredPageFile()
1036 aMPArea.Width() += rMPS.nHorizontalSpacing; in getFilteredPageFile()
1037 aMPArea.Height() -= rMPS.nTopMargin + rMPS.nBottomMargin; in getFilteredPageFile()
1038 aMPArea.Height() += rMPS.nVerticalSpacing; in getFilteredPageFile()
1041 long nAdvX = aMPArea.Width() / rMPS.nColumns; in getFilteredPageFile()
1042 long nAdvY = aMPArea.Height() / rMPS.nRows; in getFilteredPageFile()
1045 Size aSubPageSize( nAdvX - rMPS.nHorizontalSpacing, nAdvY - rMPS.nVerticalSpacing ); in getFilteredPageFile()
1056 int nPage = (i_nFilteredPage * nSubPages + nSubPage) / rMPS.nRepeat; in getFilteredPageFile()
1069 switch( rMPS.nOrder ) in getFilteredPageFile()
1072 nCellX = (nSubPage % rMPS.nColumns); in getFilteredPageFile()
1073 nCellY = (nSubPage / rMPS.nColumns); in getFilteredPageFile()
1076 nCellX = (nSubPage / rMPS.nRows); in getFilteredPageFile()
1077 nCellY = (nSubPage % rMPS.nRows); in getFilteredPageFile()
1080 nCellX = rMPS.nColumns - 1 - (nSubPage % rMPS.nColumns); in getFilteredPageFile()
1081 nCellY = (nSubPage / rMPS.nColumns); in getFilteredPageFile()
1084 nCellX = rMPS.nColumns - 1 - (nSubPage / rMPS.nRows); in getFilteredPageFile()
1085 nCellY = (nSubPage % rMPS.nRows); in getFilteredPageFile()
1098 long nX = rMPS.nLeftMargin + nOffX + nAdvX * nCellX; in getFilteredPageFile()
1099 long nY = rMPS.nTopMargin + nOffY + nAdvY * nCellY; in getFilteredPageFile()
1108 appendSubPage( o_rMtf, aSubPageRect, aPageFile, rMPS.bDrawBorder ); in getFilteredPageFile()