1 /************************************************************************* 2 * 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * Copyright 2000, 2010 Oracle and/or its affiliates. 6 * 7 * OpenOffice.org - a multi-platform office productivity suite 8 * 9 * This file is part of OpenOffice.org. 10 * 11 * OpenOffice.org is free software: you can redistribute it and/or modify 12 * it under the terms of the GNU Lesser General Public License version 3 13 * only, as published by the Free Software Foundation. 14 * 15 * OpenOffice.org is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU Lesser General Public License version 3 for more details 19 * (a copy is included in the LICENSE file that accompanied this code). 20 * 21 * You should have received a copy of the GNU Lesser General Public License 22 * version 3 along with OpenOffice.org. If not, see 23 * <http://www.openoffice.org/license.html> 24 * for a copy of the LGPLv3 License. 25 * 26 ************************************************************************/ 27 28 #ifndef SC_PRINTOPT_HXX 29 #define SC_PRINTOPT_HXX 30 31 #include <svl/poolitem.hxx> 32 #include <unotools/configitem.hxx> 33 #include "scdllapi.h" 34 35 class SC_DLLPUBLIC ScPrintOptions 36 { 37 private: 38 sal_Bool bSkipEmpty; 39 sal_Bool bAllSheets; 40 41 public: 42 ScPrintOptions(); 43 ScPrintOptions( const ScPrintOptions& rCpy ); 44 ~ScPrintOptions(); 45 46 sal_Bool GetSkipEmpty() const { return bSkipEmpty; } 47 void SetSkipEmpty( sal_Bool bVal ) { bSkipEmpty = bVal; } 48 sal_Bool GetAllSheets() const { return bAllSheets; } 49 void SetAllSheets( sal_Bool bVal ) { bAllSheets = bVal; } 50 51 void SetDefaults(); 52 53 const ScPrintOptions& operator= ( const ScPrintOptions& rCpy ); 54 int operator== ( const ScPrintOptions& rOpt ) const; 55 int operator!= ( const ScPrintOptions& rOpt ) const; 56 }; 57 58 //================================================================== 59 // item for the dialog / options page 60 //================================================================== 61 62 class SC_DLLPUBLIC ScTpPrintItem : public SfxPoolItem 63 { 64 public: 65 TYPEINFO(); 66 //UNUSED2008-05 ScTpPrintItem( sal_uInt16 nWhich ); 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 const ScPrintOptions& GetPrintOptions() const { return theOptions; } 77 78 private: 79 ScPrintOptions theOptions; 80 }; 81 82 //================================================================== 83 // config item 84 //================================================================== 85 86 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