1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
21 #include <address.hxx>
22 #include <sal/types.h>
23 #include <i18nlangtag/lang.h>
31 class ScChangeViewSettings
;
35 enum class SvtScriptType
: sal_uInt8
;
36 enum class TransliterationFlags
;
39 enum class ScUpdateMode
{ All
, Marks
};
41 class SC_DLLPUBLIC ScViewUtil
44 static void ExecuteCharMap(const SvxFontItem
& rOldFont
, const ScTabViewShell
& rShell
);
46 static bool IsActionShown( const ScChangeAction
& rAction
,
47 const ScChangeViewSettings
& rSettings
,
48 ScDocument
& rDocument
);
50 static void PutItemScript( SfxItemSet
& rShellSet
, const SfxItemSet
& rCoreSet
,
51 sal_uInt16 nWhichId
, SvtScriptType nScript
);
53 static LanguageType
GetEffLanguage( ScDocument
& rDoc
, const ScAddress
& rPos
);
55 static TransliterationFlags
GetTransliterationType( sal_uInt16 nSlotID
);
57 static bool HasFiltered( const ScRange
& rRange
, const ScDocument
& rDoc
);
58 /** Fit a range to cover nRows number of unfiltered rows.
59 @return <TRUE/> if the resulting range covers nRows unfiltered rows. */
60 static bool FitToUnfilteredRows( ScRange
& rRange
, const ScDocument
& rDoc
, size_t nRows
);
61 static void UnmarkFiltered( ScMarkData
& rMark
, const ScDocument
& rDoc
);
63 static void HideDisabledSlot( SfxItemSet
& rSet
, SfxBindings
& rBindings
, sal_uInt16 nSlotId
);
65 /** Returns true, if the passed view shell is in full screen mode. */
66 static bool IsFullScreen( const SfxViewShell
& rViewShell
);
67 /** Enters or leaves full screen mode at the passed view shell. */
68 static void SetFullScreen( const SfxViewShell
& rViewShell
, bool bSet
);
83 ScUpdateRect( SCCOL nX1
, SCROW nY1
, SCCOL nX2
, SCROW nY2
);
84 void SetNew( SCCOL nX1
, SCROW nY1
, SCCOL nX2
, SCROW nY2
);
85 bool GetDiff( SCCOL
& rX1
, SCROW
& rY1
, SCCOL
& rX2
, SCROW
& rY2
);
88 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */