Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/security/nss/cmd/pk12util/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 655 B image not shown  

Quelle  scopetools.cxx   Sprache: unbekannt

 
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */


#include <o3tl/deleter.hxx>
#include <scopetools.hxx>
#include <document.hxx>
#include <column.hxx>

namespace sc {

AutoCalcSwitch::AutoCalcSwitch(ScDocument& rDoc, bool bAutoCalc) :
    mrDoc(rDoc), mbOldValue(rDoc.GetAutoCalc())
{
    mrDoc.SetAutoCalc(bAutoCalc);
}

AutoCalcSwitch::~AutoCalcSwitch()
{
    mrDoc.SetAutoCalc(mbOldValue);
}

ExpandRefsSwitch::ExpandRefsSwitch(ScDocument& rDoc, bool bExpandRefs) :
    mrDoc(rDoc), mbOldValue(rDoc.IsExpandRefs())
{
    mrDoc.SetExpandRefs(bExpandRefs);
}

ExpandRefsSwitch::~ExpandRefsSwitch()
{
    mrDoc.SetExpandRefs(mbOldValue);
}

UndoSwitch::UndoSwitch(ScDocument& rDoc, bool bUndo) :
    mrDoc(rDoc), mbOldValue(rDoc.IsUndoEnabled())
{
    mrDoc.EnableUndo(bUndo);
}

UndoSwitch::~UndoSwitch()
{
    mrDoc.EnableUndo(mbOldValue);
}

IdleSwitch::IdleSwitch(ScDocument& rDoc, bool bEnableIdle) :
    mrDoc(rDoc), mbOldValue(rDoc.IsIdleEnabled())
{
    mrDoc.EnableIdle(bEnableIdle);
}

IdleSwitch::~IdleSwitch()
{
    mrDoc.EnableIdle(mbOldValue);
}

DelayFormulaGroupingSwitch::DelayFormulaGroupingSwitch(ScDocument& rDoc, bool delay) :
    mrDoc(rDoc), mbOldValue(rDoc.IsDelayedFormulaGrouping())
{
    mrDoc.DelayFormulaGrouping(delay);
}

DelayFormulaGroupingSwitch::~DelayFormulaGroupingSwitch() COVERITY_NOEXCEPT_FALSE
{
    mrDoc.DelayFormulaGrouping(mbOldValue);
}

void DelayFormulaGroupingSwitch::reset()
{
    mrDoc.DelayFormulaGrouping(mbOldValue);
}

DelayStartListeningFormulaCells::DelayStartListeningFormulaCells(ScColumn& column, bool delay)
    : mColumn(column), mbOldValue(column.GetDoc().IsEnabledDelayStartListeningFormulaCells(&column))
{
    column.GetDoc().EnableDelayStartListeningFormulaCells(&column, delay);
}

DelayStartListeningFormulaCells::DelayStartListeningFormulaCells(ScColumn& column)
    : mColumn(column), mbOldValue(column.GetDoc().IsEnabledDelayStartListeningFormulaCells(&column))
{
}

void DelayStartListeningFormulaCells::ImplDestroy()
{
    mColumn.GetDoc().EnableDelayStartListeningFormulaCells(&mColumn, mbOldValue);
}

DelayStartListeningFormulaCells::~DelayStartListeningFormulaCells()
{
    suppress_fun_call_w_exception(ImplDestroy());
}

void DelayStartListeningFormulaCells::set()
{
    mColumn.GetDoc().EnableDelayStartListeningFormulaCells(&mColumn, true);
}

DelayDeletingBroadcasters::DelayDeletingBroadcasters(ScDocument& doc)
    : mDoc( doc )
    , mOldValue( mDoc.IsDelayedDeletingBroadcasters())
{
    mDoc.EnableDelayDeletingBroadcasters( true );
}

DelayDeletingBroadcasters::~DelayDeletingBroadcasters()
{
    suppress_fun_call_w_exception(mDoc.EnableDelayDeletingBroadcasters(mOldValue));
}

}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Messung V0.5 in Prozent
C=94 H=97 G=95

[zur Elbe Produktseite wechseln0.19QuellennavigatorsAnalyse erneut starten2026-06-05]