Searched refs:pageHeight (Results 1 - 6 of 6) sorted by relevance

/haiku/src/add-ons/print/drivers/pcl6/
H A DRasterizer.cpp21 Rasterizer::SetBitmap(int x, int y, BBitmap* bitmap, int pageHeight) argument
35 if (y + height > pageHeight) {
36 height = pageHeight - y;
H A DRasterizer.h30 int pageHeight);
/haiku/headers/libs/print/libprint/
H A DMarginView.h68 mv = new MarginView(viewSizeRect, pageWidth, pageHeight);
73 mv = new MarginView(viewSizeRect, pageWidth, pageHeight
80 mv-SetPageSize( pageWidth, pageHeight );
87 msg->AddFloat("height", pageHeight);
92 mv-SetPageSize( pageHeight, pageWidth );
151 void SetPageSize(float pageWidth, float pageHeight);
173 int32 pageHeight = 0,
184 void SetPageSize(float pageWidth, float pageHeight);
/haiku/src/libs/print/libprint/
H A DMarginView.cpp90 PageView::SetPageSize(float pageWidth, float pageHeight) argument
93 fPageHeight = pageHeight;
114 float pageHeight = totalWidth * fPageHeight / fPageWidth; local
115 if (pageHeight > totalHeight) {
116 pageHeight = totalHeight;
123 offset.y = static_cast<int>((totalHeight - pageHeight) / 2);
127 BRect r = BRect(0, 0, pageWidth, pageHeight);
136 r.top += (fMargins.top / fPageHeight) * pageHeight;
138 r.bottom -= (fMargins.bottom / fPageHeight) * pageHeight;
148 * @param pageHeight, floa
153 MarginView(int32 pageWidth, int32 pageHeight, BRect margins, MarginUnit units) argument
279 SetPageSize(float pageWidth, float pageHeight) argument
[all...]
/haiku/src/add-ons/print/drivers/gutenprint/
H A DGPDriver.cpp247 int pageHeight = GetPageHeight(); local
249 if (y + height > pageHeight)
250 height = pageHeight - y;
286 if (y >= pageHeight) {
/haiku/src/add-ons/print/drivers/pcl5/
H A DPCL5.cpp108 int pageHeight = GetPageHeight(); local
110 if (y + height > pageHeight)
111 height = pageHeight - y;
202 if (y >= pageHeight) {

Completed in 78 milliseconds