Lines Matching refs:rArea

502 PrinterGfx::DrawPS1GrayImage (const PrinterBmp& rBitmap, const Rectangle& rArea)  in DrawPS1GrayImage()  argument
504 sal_uInt32 nWidth = rArea.GetWidth(); in DrawPS1GrayImage()
505 sal_uInt32 nHeight = rArea.GetHeight(); in DrawPS1GrayImage()
528 for (long nRow = rArea.Top(); nRow <= rArea.Bottom(); nRow++) in DrawPS1GrayImage()
530 for (long nColumn = rArea.Left(); nColumn <= rArea.Right(); nColumn++) in DrawPS1GrayImage()
549 PrinterGfx::writePS2ImageHeader (const Rectangle& rArea, psp::ImageType nType) in writePS2ImageHeader() argument
565 nChar += psp::getValueOf (rArea.GetWidth(), pImage + nChar); in writePS2ImageHeader()
567 nChar += psp::getValueOf (rArea.GetHeight(), pImage + nChar); in writePS2ImageHeader()
629 PrinterGfx::DrawPS2GrayImage (const PrinterBmp& rBitmap, const Rectangle& rArea) in DrawPS2GrayImage() argument
632 writePS2ImageHeader(rArea, psp::GrayScaleImage); in DrawPS2GrayImage()
637 for (long nRow = rArea.Top(); nRow <= rArea.Bottom(); nRow++) in DrawPS2GrayImage()
639 for (long nColumn = rArea.Left(); nColumn <= rArea.Right(); nColumn++) in DrawPS2GrayImage()
650 PrinterGfx::DrawPS2MonoImage (const PrinterBmp& rBitmap, const Rectangle& rArea) in DrawPS2MonoImage() argument
653 writePS2ImageHeader(rArea, psp::MonochromeImage); in DrawPS2MonoImage()
658 for (long nRow = rArea.Top(); nRow <= rArea.Bottom(); nRow++) in DrawPS2MonoImage()
664 for (long nColumn = rArea.Left(); nColumn <= rArea.Right(); nColumn++) in DrawPS2MonoImage()
685 PrinterGfx::DrawPS2PaletteImage (const PrinterBmp& rBitmap, const Rectangle& rArea) in DrawPS2PaletteImage() argument
688 writePS2ImageHeader(rArea, psp::PaletteImage); in DrawPS2PaletteImage()
693 for (long nRow = rArea.Top(); nRow <= rArea.Bottom(); nRow++) in DrawPS2PaletteImage()
695 for (long nColumn = rArea.Left(); nColumn <= rArea.Right(); nColumn++) in DrawPS2PaletteImage()
706 PrinterGfx::DrawPS2TrueColorImage (const PrinterBmp& rBitmap, const Rectangle& rArea) in DrawPS2TrueColorImage() argument
709 writePS2ImageHeader(rArea, psp::TrueColorImage); in DrawPS2TrueColorImage()
714 for (long nRow = rArea.Top(); nRow <= rArea.Bottom(); nRow++) in DrawPS2TrueColorImage()
716 for (long nColumn = rArea.Left(); nColumn <= rArea.Right(); nColumn++) in DrawPS2TrueColorImage()