Version 6.1.0.2, tag libreoffice-6.1.0.2
[LibreOffice.git] / sc / inc / printopt.hxx
blob23bf35796247f1152a8899471b8e7a32f16e5f75
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_SC_INC_PRINTOPT_HXX
21 #define INCLUDED_SC_INC_PRINTOPT_HXX
23 #include <svl/poolitem.hxx>
24 #include <unotools/configitem.hxx>
25 #include "scdllapi.h"
27 class SC_DLLPUBLIC ScPrintOptions
29 private:
30 bool bSkipEmpty;
31 bool bAllSheets;
32 bool bForceBreaks;
34 public:
35 ScPrintOptions();
36 ~ScPrintOptions();
38 bool GetSkipEmpty() const { return bSkipEmpty; }
39 void SetSkipEmpty( bool bVal ) { bSkipEmpty = bVal; }
40 bool GetAllSheets() const { return bAllSheets; }
41 void SetAllSheets( bool bVal ) { bAllSheets = bVal; }
42 bool GetForceBreaks() const { return bForceBreaks; }
43 void SetForceBreaks( bool bVal ) { bForceBreaks = bVal; }
45 void SetDefaults();
47 bool operator== ( const ScPrintOptions& rOpt ) const;
50 // item for the dialog / options page
52 class SC_DLLPUBLIC ScTpPrintItem : public SfxPoolItem
54 public:
55 ScTpPrintItem( const ScPrintOptions& rOpt );
56 virtual ~ScTpPrintItem() override;
58 virtual bool operator==( const SfxPoolItem& ) const override;
59 virtual SfxPoolItem* Clone( SfxItemPool *pPool = nullptr ) const override;
61 const ScPrintOptions& GetPrintOptions() const { return theOptions; }
63 private:
64 ScPrintOptions theOptions;
67 // config item
69 class ScPrintCfg : public ScPrintOptions, public utl::ConfigItem
71 private:
72 static css::uno::Sequence<OUString> GetPropertyNames();
74 virtual void ImplCommit() override;
76 public:
77 ScPrintCfg();
79 void SetOptions( const ScPrintOptions& rNew );
81 virtual void Notify( const css::uno::Sequence< OUString >& aPropertyNames ) override;
84 #endif
86 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */