Branch data Line data Source code
1 : : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : : /*************************************************************************
3 : : *
4 : : * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 : : *
6 : : * Copyright 2000, 2010 Oracle and/or its affiliates.
7 : : *
8 : : * OpenOffice.org - a multi-platform office productivity suite
9 : : *
10 : : * This file is part of OpenOffice.org.
11 : : *
12 : : * OpenOffice.org is free software: you can redistribute it and/or modify
13 : : * it under the terms of the GNU Lesser General Public License version 3
14 : : * only, as published by the Free Software Foundation.
15 : : *
16 : : * OpenOffice.org is distributed in the hope that it will be useful,
17 : : * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 : : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 : : * GNU Lesser General Public License version 3 for more details
20 : : * (a copy is included in the LICENSE file that accompanied this code).
21 : : *
22 : : * You should have received a copy of the GNU Lesser General Public License
23 : : * version 3 along with OpenOffice.org. If not, see
24 : : * <http://www.openoffice.org/license.html>
25 : : * for a copy of the LGPLv3 License.
26 : : *
27 : : ************************************************************************/
28 : :
29 : : #ifndef SC_PRINTOPT_HXX
30 : : #define SC_PRINTOPT_HXX
31 : :
32 : : #include <svl/poolitem.hxx>
33 : : #include <unotools/configitem.hxx>
34 : : #include "scdllapi.h"
35 : :
36 : : class SC_DLLPUBLIC ScPrintOptions
37 : : {
38 : : private:
39 : : sal_Bool bSkipEmpty;
40 : : sal_Bool bAllSheets;
41 : :
42 : : public:
43 : : ScPrintOptions();
44 : : ScPrintOptions( const ScPrintOptions& rCpy );
45 : : ~ScPrintOptions();
46 : :
47 : 146 : sal_Bool GetSkipEmpty() const { return bSkipEmpty; }
48 : 5 : void SetSkipEmpty( sal_Bool bVal ) { bSkipEmpty = bVal; }
49 : 42 : sal_Bool GetAllSheets() const { return bAllSheets; }
50 : 5 : void SetAllSheets( sal_Bool bVal ) { bAllSheets = bVal; }
51 : :
52 : : void SetDefaults();
53 : :
54 : : const ScPrintOptions& operator= ( const ScPrintOptions& rCpy );
55 : : bool operator== ( const ScPrintOptions& rOpt ) const;
56 : : bool operator!= ( const ScPrintOptions& rOpt ) const;
57 : : };
58 : :
59 : : //==================================================================
60 : : // item for the dialog / options page
61 : : //==================================================================
62 : :
63 : : class SC_DLLPUBLIC ScTpPrintItem : public SfxPoolItem
64 : : {
65 : : public:
66 : : TYPEINFO();
67 : : ScTpPrintItem( sal_uInt16 nWhich,
68 : : const ScPrintOptions& rOpt );
69 : : ScTpPrintItem( const ScTpPrintItem& rItem );
70 : : ~ScTpPrintItem();
71 : :
72 : : virtual String GetValueText() const;
73 : : virtual int operator==( const SfxPoolItem& ) const;
74 : : virtual SfxPoolItem* Clone( SfxItemPool *pPool = 0 ) const;
75 : :
76 : 0 : const ScPrintOptions& GetPrintOptions() const { return theOptions; }
77 : :
78 : : private:
79 : : ScPrintOptions theOptions;
80 : : };
81 : :
82 : : //==================================================================
83 : : // config item
84 : : //==================================================================
85 : :
86 [ + - ][ - + ]: 4 : class ScPrintCfg : public ScPrintOptions, public utl::ConfigItem
87 : : {
88 : : com::sun::star::uno::Sequence<rtl::OUString> GetPropertyNames();
89 : :
90 : : public:
91 : : ScPrintCfg();
92 : :
93 : : void SetOptions( const ScPrintOptions& rNew );
94 : :
95 : : virtual void Commit();
96 : : virtual void Notify( const ::com::sun::star::uno::Sequence< rtl::OUString >& aPropertyNames );
97 : : };
98 : :
99 : : #endif
100 : :
101 : : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|