2000-09-18 11:07:07 -05:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 12:45:13 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 12:45:13 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 12:45:13 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 12:45:13 -05:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 12:45:13 -05:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 12:45:13 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#ifndef SC_PRINTOPT_HXX
|
|
|
|
#define SC_PRINTOPT_HXX
|
|
|
|
|
2009-10-15 17:05:16 -05:00
|
|
|
#include <svl/poolitem.hxx>
|
2001-05-29 13:46:58 -05:00
|
|
|
#include <unotools/configitem.hxx>
|
2004-08-23 03:25:29 -05:00
|
|
|
#include "scdllapi.h"
|
2001-05-29 13:46:58 -05:00
|
|
|
|
2004-08-23 03:25:29 -05:00
|
|
|
class SC_DLLPUBLIC ScPrintOptions
|
2001-05-29 13:46:58 -05:00
|
|
|
{
|
|
|
|
private:
|
|
|
|
BOOL bSkipEmpty;
|
|
|
|
BOOL bAllSheets;
|
|
|
|
|
|
|
|
public:
|
|
|
|
ScPrintOptions();
|
|
|
|
ScPrintOptions( const ScPrintOptions& rCpy );
|
|
|
|
~ScPrintOptions();
|
|
|
|
|
|
|
|
BOOL GetSkipEmpty() const { return bSkipEmpty; }
|
|
|
|
void SetSkipEmpty( BOOL bVal ) { bSkipEmpty = bVal; }
|
|
|
|
BOOL GetAllSheets() const { return bAllSheets; }
|
|
|
|
void SetAllSheets( BOOL bVal ) { bAllSheets = bVal; }
|
|
|
|
|
|
|
|
void SetDefaults();
|
|
|
|
|
|
|
|
const ScPrintOptions& operator= ( const ScPrintOptions& rCpy );
|
|
|
|
int operator== ( const ScPrintOptions& rOpt ) const;
|
|
|
|
int operator!= ( const ScPrintOptions& rOpt ) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
//==================================================================
|
|
|
|
// item for the dialog / options page
|
|
|
|
//==================================================================
|
|
|
|
|
2004-08-23 03:25:29 -05:00
|
|
|
class SC_DLLPUBLIC ScTpPrintItem : public SfxPoolItem
|
2001-05-29 13:46:58 -05:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
TYPEINFO();
|
2008-09-30 00:48:28 -05:00
|
|
|
//UNUSED2008-05 ScTpPrintItem( USHORT nWhich );
|
2001-05-29 13:46:58 -05:00
|
|
|
ScTpPrintItem( USHORT nWhich,
|
|
|
|
const ScPrintOptions& rOpt );
|
|
|
|
ScTpPrintItem( const ScTpPrintItem& rItem );
|
|
|
|
~ScTpPrintItem();
|
|
|
|
|
|
|
|
virtual String GetValueText() const;
|
|
|
|
virtual int operator==( const SfxPoolItem& ) const;
|
|
|
|
virtual SfxPoolItem* Clone( SfxItemPool *pPool = 0 ) const;
|
|
|
|
|
|
|
|
const ScPrintOptions& GetPrintOptions() const { return theOptions; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
ScPrintOptions theOptions;
|
|
|
|
};
|
|
|
|
|
|
|
|
//==================================================================
|
|
|
|
// config item
|
|
|
|
//==================================================================
|
|
|
|
|
|
|
|
class ScPrintCfg : public ScPrintOptions, public utl::ConfigItem
|
|
|
|
{
|
|
|
|
com::sun::star::uno::Sequence<rtl::OUString> GetPropertyNames();
|
|
|
|
|
|
|
|
public:
|
|
|
|
ScPrintCfg();
|
|
|
|
|
|
|
|
void SetOptions( const ScPrintOptions& rNew );
|
2000-09-18 11:07:07 -05:00
|
|
|
|
2001-05-29 13:46:58 -05:00
|
|
|
virtual void Commit();
|
2009-10-15 17:05:16 -05:00
|
|
|
virtual void Notify( const ::com::sun::star::uno::Sequence< rtl::OUString >& aPropertyNames );
|
2001-05-29 13:46:58 -05:00
|
|
|
};
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
#endif
|