mirror of
https://github.com/pdewacht/brlaser
synced 2025-04-06 21:06:43 +02:00
Merge f277899eecf82fe898086e80999b5513f7c8d825 into 2a49e3287c70c254e7e3ac9dabe9d6a07218c3fa
This commit is contained in:
commit
a4923ed21d
@ -80,6 +80,10 @@ void job::write_page_header() {
|
||||
|
||||
if (page_params_.duplex) {
|
||||
fputs("\033&l2S", out_);
|
||||
} else if (page_params_.tumble) {
|
||||
fputs("\033&l1S", out_);
|
||||
} else {
|
||||
fputs("\033&l0S", out_);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -27,6 +27,7 @@ struct page_params {
|
||||
int num_copies;
|
||||
int resolution;
|
||||
bool duplex;
|
||||
bool tumble;
|
||||
bool economode;
|
||||
std::string sourcetray;
|
||||
std::string mediatype;
|
||||
@ -36,6 +37,7 @@ struct page_params {
|
||||
return num_copies == o.num_copies
|
||||
&& resolution == o.resolution
|
||||
&& duplex == o.duplex
|
||||
&& tumble == o.tumble
|
||||
&& economode == o.economode
|
||||
&& sourcetray == o.sourcetray
|
||||
&& mediatype == o.mediatype
|
||||
|
@ -111,6 +111,7 @@ page_params build_page_params(const cups_page_header2_t &header) {
|
||||
p.economode = header.cupsInteger[10];
|
||||
p.mediatype = header.MediaType;
|
||||
p.duplex = header.Duplex;
|
||||
p.tumble = header.Tumble;
|
||||
|
||||
if (header.MediaPosition < sources.size())
|
||||
p.sourcetray = sources[header.MediaPosition];
|
||||
|
@ -21,6 +21,7 @@
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <cstdint>
|
||||
#include <vector>
|
||||
|
||||
class tempfile {
|
||||
|
Loading…
x
Reference in New Issue
Block a user