Update ooo320-m1
[ooovba.git] / binfilter / inc / bf_sw / swprtopt.hxx
blob5bb8a2149b94041f6ffb16cca0ac5bf0484af45a
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.5 $
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 #ifndef _SV_MULTISEL_HXX //autogen
35 #include <tools/multisel.hxx>
36 #endif
37 #ifndef _SW_PRINTDATA_HXX
38 #include <printdata.hxx>
39 #endif
40 namespace binfilter {
42 #define POSTITS_NONE 0
43 #define POSTITS_ONLY 1
44 #define POSTITS_ENDDOC 2
45 #define POSTITS_ENDPAGE 3
47 class SwPrtOptions : public SwPrintData
49 USHORT nJobNo;
50 String sJobName;
52 public:
53 SwPrtOptions( const String& rJobName ) : aOffset( Point(0,0) ),
54 nMergeCnt( 0 ), nMergeAct( 0 ), sJobName( rJobName ),
55 nJobNo( 1 ), bCollate(FALSE), bPrintSelection (FALSE),
56 bJobStartet(FALSE)
59 const String& GetJobName() const { return sJobName; }
61 #if defined(TCPP)
62 // seit neuestem (SV 223) kann der keinen mehr generieren
63 inline SwPrtOptions(const SwPrtOptions& rNew) {*this = rNew;}
64 #endif
66 MultiSelection aMulti;
67 Point aOffset;
68 ULONG nMergeCnt; // Anzahl der Serienbriefe
69 ULONG nMergeAct; // Aktueller Serienbriefnr.
70 USHORT nCopyCount;
72 BOOL bCollate,
73 bPrintSelection, // Markierung drucken
74 bJobStartet;
76 SwPrtOptions& operator=(const SwPrintData& rData)
78 SwPrintData::operator=(rData);
79 return *this;
84 } //namespace binfilter
85 #endif //_SWPRTOPT_HXX