diff options
author | Kurt Zenker <kz@openoffice.org> | 2007-12-12 13:55:42 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2007-12-12 13:55:42 +0000 |
commit | 0930391a2b78e2aa2e542dc1dc047635f651c46b (patch) | |
tree | ee597274a2d13472b1a265f82f629c22e4e208fd /psprint | |
parent | 4dacae86abd9e447d589bf2cc14d19b03fc180e8 (diff) |
INTEGRATION: CWS kprinter (1.9.104); FILE MERGED
2007/11/12 13:27:30 pl 1.9.104.1: #i83505# implement external print dialog on a queue
Diffstat (limited to 'psprint')
-rw-r--r-- | psprint/inc/psprint/printerjob.hxx | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/psprint/inc/psprint/printerjob.hxx b/psprint/inc/psprint/printerjob.hxx index d09433964548..f1d72542a5ab 100644 --- a/psprint/inc/psprint/printerjob.hxx +++ b/psprint/inc/psprint/printerjob.hxx @@ -4,9 +4,9 @@ * * $RCSfile: printerjob.hxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: hr $ $Date: 2006-06-19 10:23:13 $ + * last change: $Author: kz $ $Date: 2007-12-12 14:55:42 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -90,6 +90,7 @@ private: // private data double mfYScale; sal_Int32 mnErrorCode; + bool m_bQuickJob; private: // private methods @@ -132,13 +133,17 @@ public: * rSetupData: JobData that apply to this job * pGraphics: the graphics used to print this job; * this graphics must live until End/AbortJob has returned + * bIsQuickJob: the job was started as "direct print" meaning + * the quick command for spooling should be used instead + * of the normal command */ sal_Bool StartJob (const rtl::OUString& rFileName, int nMode, const rtl::OUString& rJobName, const rtl::OUString& rAppName, const JobData& rSetupData, - PrinterGfx* pGraphics + PrinterGfx* pGraphics, + bool bIsQuickJob ); sal_Bool EndJob (); |