update dev300-m58
[ooovba.git] / sw / inc / swprtopt.hxx
blob0511fcbfbaff6a14666fe93093cb8386f89b4f14
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: swprtopt.hxx,v $
10 * $Revision: 1.6 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef _SWPRTOPT_HXX
32 #define _SWPRTOPT_HXX
34 #include <tools/multisel.hxx>
35 #include <printdata.hxx>
37 #define POSTITS_NONE 0
38 #define POSTITS_ONLY 1
39 #define POSTITS_ENDDOC 2
40 #define POSTITS_ENDPAGE 3
42 class SwPrtOptions : public SwPrintData
44 USHORT nJobNo;
45 String sJobName;
47 public:
48 MultiSelection aMulti;
49 Point aOffset;
50 ULONG nMergeCnt; // Anzahl der Serienbriefe
51 ULONG nMergeAct; // Aktueller Serienbriefnr.
52 USHORT nCopyCount;
54 BOOL bCollate,
55 bPrintSelection, // Markierung drucken
56 bJobStartet;
58 SwPrtOptions( const String& rJobName ) :
59 nJobNo( 1 ),
60 sJobName( rJobName ),
61 aOffset( Point(0,0) ),
62 nMergeCnt( 0 ),
63 nMergeAct( 0 ),
64 bCollate(FALSE),
65 bPrintSelection (FALSE),
66 bJobStartet(FALSE)
69 const String& MakeNextJobName(); // steht in vprint.cxx
70 const String& GetJobName() const { return sJobName; }
72 #if defined(TCPP)
73 // seit neuestem (SV 223) kann der keinen mehr generieren
74 inline SwPrtOptions(const SwPrtOptions& rNew) {*this = rNew;}
75 #endif
78 SwPrtOptions& operator=(const SwPrintData& rData)
80 SwPrintData::operator=(rData);
81 return *this;
86 #endif //_SWPRTOPT_HXX