1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: swprtopt.hxx,v $
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 ************************************************************************/
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
48 MultiSelection aMulti
;
50 ULONG nMergeCnt
; // Anzahl der Serienbriefe
51 ULONG nMergeAct
; // Aktueller Serienbriefnr.
55 bPrintSelection
, // Markierung drucken
58 SwPrtOptions( const String
& rJobName
) :
61 aOffset( Point(0,0) ),
65 bPrintSelection (FALSE
),
69 const String
& MakeNextJobName(); // steht in vprint.cxx
70 const String
& GetJobName() const { return sJobName
; }
73 // seit neuestem (SV 223) kann der keinen mehr generieren
74 inline SwPrtOptions(const SwPrtOptions
& rNew
) {*this = rNew
;}
78 SwPrtOptions
& operator=(const SwPrintData
& rData
)
80 SwPrintData::operator=(rData
);
86 #endif //_SWPRTOPT_HXX