LibreOffice Module sc (master) 1
inputopt.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#pragma once
21
23
25{
26private:
27 sal_uInt16 nMoveDir; // enum ScDirection
40
41public:
43
44 void SetMoveDir(sal_uInt16 nNew) { nMoveDir = nNew; }
45 sal_uInt16 GetMoveDir() const { return nMoveDir; }
46 void SetMoveSelection(bool bSet) { bMoveSelection = bSet; }
47 bool GetMoveSelection() const { return bMoveSelection; }
48 void SetEnterEdit(bool bSet) { bEnterEdit = bSet; }
49 bool GetEnterEdit() const { return bEnterEdit; }
50 void SetExtendFormat(bool bSet) { bExtendFormat = bSet; }
51 bool GetExtendFormat() const { return bExtendFormat; }
52 void SetRangeFinder(bool bSet) { bRangeFinder = bSet; }
53 bool GetRangeFinder() const { return bRangeFinder; }
54 void SetExpandRefs(bool bSet) { bExpandRefs = bSet; }
55 bool GetExpandRefs() const { return bExpandRefs; }
56 void SetSortRefUpdate(bool bSet) { mbSortRefUpdate = bSet; }
57 bool GetSortRefUpdate() const { return mbSortRefUpdate; }
58 void SetMarkHeader(bool bSet) { bMarkHeader = bSet; }
59 bool GetMarkHeader() const { return bMarkHeader; }
60 void SetUseTabCol(bool bSet) { bUseTabCol = bSet; }
61 bool GetUseTabCol() const { return bUseTabCol; }
62 void SetTextWysiwyg(bool bSet) { bTextWysiwyg = bSet; }
63 bool GetTextWysiwyg() const { return bTextWysiwyg; }
64 void SetReplaceCellsWarn(bool bSet) { bReplCellsWarn = bSet; }
65 bool GetReplaceCellsWarn() const { return bReplCellsWarn; }
66 void SetLegacyCellSelection(bool bSet) { bLegacyCellSelection = bSet; }
68 void SetEnterPasteMode(bool bSet) { bEnterPasteMode = bSet; }
69 bool GetEnterPasteMode() const { return bEnterPasteMode; }
70};
71
72// CfgItem for input options
73
74class ScInputCfg final : private ScInputOptions,
75 public utl::ConfigItem
76{
77 static css::uno::Sequence<OUString> GetPropertyNames();
78 void ReadCfg();
79 virtual void ImplCommit() override;
80
81public:
82 ScInputCfg();
83
84 const ScInputOptions& GetOptions() const { return *this; }
85 void SetOptions( const ScInputOptions& rNew );
86
87 virtual void Notify( const css::uno::Sequence<OUString>& aPropertyNames ) override;
88};
89
90/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
const ScInputOptions & GetOptions() const
Definition: inputopt.hxx:84
virtual void ImplCommit() override
Definition: inputopt.cxx:124
void ReadCfg()
Definition: inputopt.cxx:90
void SetOptions(const ScInputOptions &rNew)
Definition: inputopt.cxx:150
virtual void Notify(const css::uno::Sequence< OUString > &aPropertyNames) override
Definition: inputopt.cxx:145
static css::uno::Sequence< OUString > GetPropertyNames()
Definition: inputopt.cxx:66
void SetTextWysiwyg(bool bSet)
Definition: inputopt.hxx:62
sal_uInt16 GetMoveDir() const
Definition: inputopt.hxx:45
void SetExpandRefs(bool bSet)
Definition: inputopt.hxx:54
bool bMoveSelection
Definition: inputopt.hxx:28
bool bExtendFormat
Definition: inputopt.hxx:30
void SetEnterEdit(bool bSet)
Definition: inputopt.hxx:48
void SetExtendFormat(bool bSet)
Definition: inputopt.hxx:50
bool GetUseTabCol() const
Definition: inputopt.hxx:61
void SetMarkHeader(bool bSet)
Definition: inputopt.hxx:58
sal_uInt16 nMoveDir
Definition: inputopt.hxx:27
void SetMoveDir(sal_uInt16 nNew)
Definition: inputopt.hxx:44
bool GetTextWysiwyg() const
Definition: inputopt.hxx:63
bool GetSortRefUpdate() const
Definition: inputopt.hxx:57
bool bExpandRefs
Definition: inputopt.hxx:32
void SetRangeFinder(bool bSet)
Definition: inputopt.hxx:52
bool bEnterPasteMode
Definition: inputopt.hxx:39
bool GetMarkHeader() const
Definition: inputopt.hxx:59
void SetUseTabCol(bool bSet)
Definition: inputopt.hxx:60
bool bRangeFinder
Definition: inputopt.hxx:31
void SetReplaceCellsWarn(bool bSet)
Definition: inputopt.hxx:64
bool bMarkHeader
Definition: inputopt.hxx:34
void SetMoveSelection(bool bSet)
Definition: inputopt.hxx:46
bool GetEnterEdit() const
Definition: inputopt.hxx:49
bool GetReplaceCellsWarn() const
Definition: inputopt.hxx:65
bool bTextWysiwyg
Definition: inputopt.hxx:36
void SetSortRefUpdate(bool bSet)
Definition: inputopt.hxx:56
bool bReplCellsWarn
Definition: inputopt.hxx:37
bool bLegacyCellSelection
Definition: inputopt.hxx:38
bool GetLegacyCellSelection() const
Definition: inputopt.hxx:67
void SetEnterPasteMode(bool bSet)
Definition: inputopt.hxx:68
bool GetExtendFormat() const
Definition: inputopt.hxx:51
bool GetRangeFinder() const
Definition: inputopt.hxx:53
void SetLegacyCellSelection(bool bSet)
Definition: inputopt.hxx:66
bool GetExpandRefs() const
Definition: inputopt.hxx:55
bool GetEnterPasteMode() const
Definition: inputopt.hxx:69
bool mbSortRefUpdate
Definition: inputopt.hxx:33
bool GetMoveSelection() const
Definition: inputopt.hxx:47