office-gobmx/sc/inc/printopt.hxx

102 lines
3.3 KiB
C++
Raw Normal View History

2000-09-18 11:07:07 -05:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2000-09-18 11:07:07 -05:00
*
* Copyright 2008 by Sun Microsystems, Inc.
2000-09-18 11:07:07 -05:00
*
* OpenOffice.org - a multi-platform office productivity suite
2000-09-18 11:07:07 -05:00
*
* $RCSfile: printopt.hxx,v $
* $Revision: 1.5.32.2 $
2000-09-18 11:07:07 -05:00
*
* This file is part of OpenOffice.org.
2000-09-18 11:07:07 -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
*
* 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
*
* 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
2001-05-29 13:46:58 -05:00
#include <svtools/poolitem.hxx>
#include <unotools/configitem.hxx>
#include "scdllapi.h"
2001-05-29 13:46:58 -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
//==================================================================
class SC_DLLPUBLIC ScTpPrintItem : public SfxPoolItem
2001-05-29 13:46:58 -05:00
{
public:
TYPEINFO();
//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();
};
2000-09-18 11:07:07 -05:00
#endif