1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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_SALPRN_HXX
21 #define INCLUDED_VCL_INC_SALPRN_HXX
23 #include <vcl/prntypes.hxx>
24 #include <vcl/dllapi.h>
26 #include "salptype.hxx"
33 namespace vcl
{ class PrinterController
; }
34 namespace weld
{ class Window
; }
36 struct VCL_PLUGIN_PUBLIC SalPrinterQueueInfo
38 OUString maPrinterName
;
42 PrintQueueFlags mnStatus
;
44 std::unique_ptr
<OUString
> mpPortName
; // only used by Windows backend
46 SalPrinterQueueInfo();
47 ~SalPrinterQueueInfo();
50 class VCL_PLUGIN_PUBLIC SalInfoPrinter
53 std::vector
< PaperInfo
> m_aPaperFormats
; // all printer supported formats
54 bool m_bPapersInit
; // set to true after InitPaperFormats
56 SalInfoPrinter() : m_bPapersInit( false ) {}
57 virtual ~SalInfoPrinter();
59 // SalGraphics or NULL, but two Graphics for all SalFrames
61 virtual SalGraphics
* AcquireGraphics() = 0;
62 virtual void ReleaseGraphics( SalGraphics
* pGraphics
) = 0;
64 virtual bool Setup(weld::Window
* pFrame
, ImplJobSetup
* pSetupData
) = 0;
65 // This function set the driver data and
66 // set the new indepen data in pSetupData
67 virtual bool SetPrinterData( ImplJobSetup
* pSetupData
) = 0;
68 // This function merged the indepen driver data
69 // and set the new indepen data in pSetupData
70 // Only the data must changed, where the bit
72 virtual bool SetData( JobSetFlags nFlags
, ImplJobSetup
* pSetupData
) = 0;
74 virtual void GetPageInfo( const ImplJobSetup
* pSetupData
,
75 long& rOutWidth
, long& rOutHeight
,
77 Size
& rPaperSize
) = 0;
78 virtual sal_uInt32
GetCapabilities( const ImplJobSetup
* pSetupData
, PrinterCapType nType
) = 0;
79 virtual sal_uInt16
GetPaperBinCount( const ImplJobSetup
* pSetupData
) = 0;
80 virtual OUString
GetPaperBinName( const ImplJobSetup
* pSetupData
, sal_uInt16 nPaperBin
) = 0;
81 // fills m_aPaperFormats and sets m_bPapersInit to true
82 virtual void InitPaperFormats( const ImplJobSetup
* pSetupData
) = 0;
83 // returns angle that a landscape page will be turned counterclockwise wrt to portrait
84 virtual int GetLandscapeAngle( const ImplJobSetup
* pSetupData
) = 0;
87 class VCL_PLUGIN_PUBLIC SalPrinter
91 virtual ~SalPrinter();
93 virtual bool StartJob( const OUString
* pFileName
,
94 const OUString
& rJobName
,
95 const OUString
& rAppName
,
99 ImplJobSetup
* pSetupData
) = 0;
101 // implement for pull model print systems only,
102 // default implementations (see salvtables.cxx) just returns false
103 virtual bool StartJob( const OUString
* pFileName
,
104 const OUString
& rJobName
,
105 const OUString
& rAppName
,
106 ImplJobSetup
* pSetupData
,
107 vcl::PrinterController
& rController
);
109 virtual bool EndJob() = 0;
110 virtual SalGraphics
* StartPage( ImplJobSetup
* pSetupData
, bool bNewJobData
) = 0;
111 virtual void EndPage() = 0;
112 virtual SalPrinterError
GetErrorCode() { return SalPrinterError::NONE
; }
116 #endif // INCLUDED_VCL_INC_SALPRN_HXX
118 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */