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>
41 USHORT nMoveDir
; // enum ScDirection
54 ScInputOptions( const ScInputOptions
& rCpy
);
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();
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();