Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 : #ifndef _SV_JOBSET_HXX
21 : #define _SV_JOBSET_HXX
22 :
23 : #include <tools/solar.h>
24 : #include <vcl/dllapi.h>
25 : #include <vcl/prntypes.hxx>
26 :
27 : namespace rtl
28 : {
29 : class OUString;
30 : }
31 :
32 : class SvStream;
33 : struct ImplJobSetup;
34 :
35 : // ------------
36 : // - JobSetup -
37 : // ------------
38 :
39 : class VCL_DLLPUBLIC JobSetup
40 : {
41 : friend class Printer;
42 :
43 : private:
44 : ImplJobSetup* mpData;
45 :
46 : public:
47 : SAL_DLLPRIVATE ImplJobSetup* ImplGetData();
48 : SAL_DLLPRIVATE ImplJobSetup* ImplGetConstData();
49 : SAL_DLLPRIVATE const ImplJobSetup* ImplGetConstData() const;
50 :
51 : public:
52 : JobSetup();
53 : JobSetup( const JobSetup& rJob );
54 : ~JobSetup();
55 :
56 : rtl::OUString GetPrinterName() const;
57 : rtl::OUString GetDriverName() const;
58 :
59 : /* Get/SetValue are used to read/store additional
60 : * Parameters in the job setup that may be used
61 : * by the printer driver. One possible use are phone
62 : * numbers for faxes (which disguise as printers)
63 : */
64 : void SetValue( const rtl::OUString& rKey, const rtl::OUString& rValue );
65 :
66 : JobSetup& operator=( const JobSetup& rJob );
67 :
68 : sal_Bool operator==( const JobSetup& rJobSetup ) const;
69 0 : sal_Bool operator!=( const JobSetup& rJobSetup ) const
70 0 : { return !(JobSetup::operator==( rJobSetup )); }
71 :
72 : friend VCL_DLLPUBLIC SvStream& operator>>( SvStream& rIStream, JobSetup& rJobSetup );
73 : friend VCL_DLLPUBLIC SvStream& operator<<( SvStream& rOStream, const JobSetup& rJobSetup );
74 : };
75 :
76 : #endif // _SV_JOBSET_HXX
77 :
78 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|