bump product version to 6.4.0.3
[LibreOffice.git] / vcl / inc / unx / printerjob.hxx
blob9fe4a3db494500b7c3cf75cad0b8ca2184c6c4f0
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_VCL_INC_GENERIC_PRINTERJOB_HXX
21 #define INCLUDED_VCL_INC_GENERIC_PRINTERJOB_HXX
23 #include <vcl/jobdata.hxx>
24 #include <osl/file.hxx>
26 #include <vector>
28 namespace psp {
30 class PrinterGfx;
32 class PrinterJob
34 private:
35 OUString maSpoolDirName;
36 OUString maFileName; // empty: spool to command, else spool to named file
37 OUString maJobTitle;
38 int mnFileMode;
40 std::unique_ptr<osl::File> mpJobHeader;
41 std::unique_ptr<osl::File> mpJobTrailer;
43 std::vector< std::unique_ptr<osl::File> > maPageVector;
44 std::vector< std::unique_ptr<osl::File> > maHeaderVector;
46 JobData m_aDocumentJobData;
47 JobData m_aLastJobData;
48 PrinterGfx* m_pGraphics;
50 sal_uInt32 mnResolution;
52 sal_uInt32 mnWidthPt;
53 sal_uInt32 mnHeightPt;
54 sal_uInt32 mnMaxWidthPt;
55 sal_uInt32 mnMaxHeightPt;
57 int mnLandscapes;
58 int mnPortraits;
60 sal_uInt32 mnLMarginPt;
61 sal_uInt32 mnRMarginPt;
62 sal_uInt32 mnTMarginPt;
63 sal_uInt32 mnBMarginPt;
65 double mfXScale;
66 double mfYScale;
68 bool m_bQuickJob;
70 private:
71 std::unique_ptr<osl::File> CreateSpoolFile (const OUString& rName,
72 const OUString& rExtension);
73 void InitPaperSize (const JobData& rJobSetup);
75 bool writeFeatureList( osl::File* pFile, const JobData&, bool bDocumentSetup );
76 bool writeSetup( osl::File* pFile, const JobData& );
77 bool writePageSetup( osl::File* pFile, const JobData&, bool bWriteFeatures );
78 static void writeJobPatch( osl::File* File, const JobData& );
79 static void writeProlog (osl::File* pFile, const JobData& );
81 public: // for usage in PrinterGfx
82 sal_uInt32 GetResolution () const { return mnResolution; }
83 void GetScale (double &rXScale, double &rYScale) const;
84 sal_uInt16 GetDepth () const;
85 sal_uInt16 GetPostscriptLevel (const JobData *pJobData = nullptr) const;
86 bool IsColorPrinter () const;
88 osl::File* GetCurrentPageBody ();
90 const OUString& GetPrinterName() const { return m_aLastJobData.m_aPrinterName; }
92 public:
93 PrinterJob ();
94 ~PrinterJob ();
96 /* rFileName: if length is greater than 0 save resulting PostScript
97 * to named file.
98 * nMode: only meaningful when saving to file: if nonzero, try
99 * to impose the mode on the resulting file's inode; for nonexistent
100 * files use open, for existent files try a chmod
101 * rJobName: text to appear in the %%Title comment
102 * rAppName: text to appear in the %%Creator comment
103 * rSetupData: JobData that apply to this job
104 * pGraphics: the graphics used to print this job;
105 * this graphics must live until EndJob() has returned
106 * bIsQuickJob: the job was started as "direct print" meaning
107 * the quick command for spooling should be used instead
108 * of the normal command
110 bool StartJob (const OUString& rFileName,
111 int nMode,
112 const OUString& rJobName,
113 const OUString& rAppName,
114 const JobData& rSetupData,
115 PrinterGfx* pGraphics,
116 bool bIsQuickJob
118 bool EndJob ();
120 void StartPage (const JobData& rJobSetup);
121 void EndPage ();
124 } // namespace psp
126 #endif // INCLUDED_VCL_INC_GENERIC_PRINTERJOB_HXX
128 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */