merged tag ooo/OOO330_m14
[LibreOffice.git] / sc / inc / inputopt.hxx
blob62e258b765000cda063ad6510d8e768e75e07fbe
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * This file is part of OpenOffice.org.
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.
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).
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.
26 ************************************************************************/
28 #ifndef SC_INPUTOPT_HXX
29 #define SC_INPUTOPT_HXX
32 #include <unotools/configitem.hxx>
33 #include <tools/solar.h>
35 class SvStream;
38 class ScInputOptions
40 private:
41 USHORT nMoveDir; // enum ScDirection
42 BOOL bMoveSelection;
43 BOOL bEnterEdit;
44 BOOL bExtendFormat;
45 BOOL bRangeFinder;
46 BOOL bExpandRefs;
47 BOOL bMarkHeader;
48 BOOL bUseTabCol;
49 BOOL bTextWysiwyg;
50 BOOL bReplCellsWarn;
52 public:
53 ScInputOptions();
54 ScInputOptions( const ScInputOptions& rCpy );
55 ~ScInputOptions();
57 void SetDefaults();
59 void SetMoveDir(USHORT nNew) { nMoveDir = nNew; }
60 USHORT GetMoveDir() const { return nMoveDir; }
61 void SetMoveSelection(BOOL bSet) { bMoveSelection = bSet; }
62 BOOL GetMoveSelection() const { return bMoveSelection; }
63 void SetEnterEdit(BOOL bSet) { bEnterEdit = bSet; }
64 BOOL GetEnterEdit() const { return bEnterEdit; }
65 void SetExtendFormat(BOOL bSet) { bExtendFormat = bSet; }
66 BOOL GetExtendFormat() const { return bExtendFormat; }
67 void SetRangeFinder(BOOL bSet) { bRangeFinder = bSet; }
68 BOOL GetRangeFinder() const { return bRangeFinder; }
69 void SetExpandRefs(BOOL bSet) { bExpandRefs = bSet; }
70 BOOL GetExpandRefs() const { return bExpandRefs; }
71 void SetMarkHeader(BOOL bSet) { bMarkHeader = bSet; }
72 BOOL GetMarkHeader() const { return bMarkHeader; }
73 void SetUseTabCol(BOOL bSet) { bUseTabCol = bSet; }
74 BOOL GetUseTabCol() const { return bUseTabCol; }
75 void SetTextWysiwyg(BOOL bSet) { bTextWysiwyg = bSet; }
76 BOOL GetTextWysiwyg() const { return bTextWysiwyg; }
77 void SetReplaceCellsWarn(BOOL bSet) { bReplCellsWarn = bSet; }
78 BOOL GetReplaceCellsWarn() const { return bReplCellsWarn; }
80 const ScInputOptions& operator= ( const ScInputOptions& rOpt );
84 //==================================================================
85 // CfgItem fuer Eingabe-Optionen
86 //==================================================================
88 class ScInputCfg : public ScInputOptions,
89 public utl::ConfigItem
91 com::sun::star::uno::Sequence<rtl::OUString> GetPropertyNames();
93 public:
94 ScInputCfg();
96 void SetOptions( const ScInputOptions& rNew );
97 void OptionsChanged(); // after direct access to SetOptions base class
99 virtual void Notify( const com::sun::star::uno::Sequence<rtl::OUString>& aPropertyNames );
100 virtual void Commit();
104 #endif