/* -*- 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/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #pragma once #include #include #include #include "scdllapi.h" class ScDocument; /* * #i102566 * Drawing a progress bar update is not cheap, so if we draw it on every * percentage change of 200 calculations we get one progress draw per 2 * calculations which is slower than doing the calculations themselves. So as a * rough guide only do an update per MIN_NO_CODES_PER_PROGRESS_UPDATE * calculations */ #define MIN_NO_CODES_PER_PROGRESS_UPDATE 100 class SC_DLLPUBLIC ScProgress { private: static SfxProgress* pGlobalProgress; static sal_uInt64 nGlobalRange; static sal_uInt64 nGlobalPercent; static ScProgress* pInterpretProgress; static sal_uInt64 nInterpretProgress; static ScDocument* pInterpretDoc; static bool bIdleWasEnabled; bool bEnabled; std::unique_ptr pProgress; ScProgress( const ScProgress& ) = delete; ScProgress& operator=( const ScProgress& ) = delete; static void CalcGlobalPercent( sal_uInt64 nVal ) { nGlobalPercent = nGlobalRange ? nVal * 100 / nGlobalRange : 0; } public: static void CreateInterpretProgress( ScDocument* pDoc, bool bWait = true ); static ScProgress* GetInterpretProgress() { return pInterpretProgress; } static void DeleteInterpretProgress(); ScProgress( SfxObjectShell* pObjSh, const OUString& rText, sal_uInt64 nRange, bool bWait ); ~ScProgress(); #ifdef SC_PROGRESS_CXX /// for DummyInterpret only, never use otherwise!!! ScProgress(); #endif void SetState( sal_uInt64 nVal, sal_uInt64 nNewRange = 0 ) { if ( pProgress ) { if ( nNewRange ) nGlobalRange = nNewRange; CalcGlobalPercent( nVal ); pProgress->SetState( nVal, nNewRange ); } } void SetStateCountDown( sal_uInt64 nVal ) { if ( pProgress ) { CalcGlobalPercent( nGlobalRange - nVal ); pProgress->SetState( nGlobalRange - nVal ); } } void SetStateOnPercent( sal_uInt64 nVal ) { /// only if percentage increased if ( nGlobalRange && (nVal * 100 / nGlobalRange) > nGlobalPercent ) SetState( nVal ); } void SetStateCountDownOnPercent( sal_uInt64 nVal ) { /// only if percentage increased if ( nGlobalRange && ((nGlobalRange - nVal) * 100 / nGlobalRange) > nGlobalPercent ) SetStateCountDown( nVal ); } sal_uInt64 GetState() const { if ( pProgress ) return pProgress->GetState(); return 0; } bool Enabled() const { return bEnabled; } void Disable() { bEnabled = false; } void Enable() { bEnabled = true; } }; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ istro/collabora/lof-4.3 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2015-11-10loplugin:nullptr (automatic rewrite)Stephan Bergmann
2015-10-12Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY codeStephan Bergmann
2015-08-23oox: tdf#88206 replace cppu::WeakImplHelper* etc.Takeshi Abe
2015-05-18oox: these ctors can be explicitMiklos Vajna
2015-03-19loplugin:constantfunction: ooxNoel Grandin
2014-12-19remove operator>> and operator<< methodsNoel Grandin
2014-12-12remove operator>> and operator<< methodsNoel Grandin
2014-09-19Remove unused XFastTokenHandler functionsMatúš Kukan
2014-06-25remove whitespacesMarkus Mohrhard
2014-03-27Second batch of adding SAL_OVERRIDE to overriding function declarationsStephan Bergmann
2014-03-24fdo#76222 oox: add support for MSO 2007 SP2 encrypted documentsTomaž Vajngerl
2014-02-26cppuhelper: retrofit std::exception into overriding exception specsStephan Bergmann
2014-01-01workaround rather maddening endian-specific template bustageCaolán McNamara
2013-12-19css.xml.sax service ctor clean-upStephan Bergmann
2013-12-17No need for implbase1.hxx to include XComponentContext.hppStephan Bergmann
2013-09-15Save should encrypt OOXML document if it was loaded encrypted.Tomaž Vajngerl
2013-08-24Forgotten one SAL_CALL in AgileDocumentHandlerTomaž Vajngerl
2013-08-24and also add SAL_CALL to AgileTokenHandlerTomaž Vajngerl
2013-08-24Encryption: and add exceptions to methods that need itTomaž Vajngerl
2013-08-24fdo#35422 Support to open encrypted Office 2010 and 2013 formatsTomaž Vajngerl