Version 6.1.0.2, tag libreoffice-6.1.0.2
[LibreOffice.git] / sc / inc / progress.hxx
blob68cda2341bfbb6848b068ffdedfc84470e3de460
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
20 #ifndef INCLUDED_SC_INC_PROGRESS_HXX
21 #define INCLUDED_SC_INC_PROGRESS_HXX
23 #include <rtl/ustring.hxx>
24 #include <sfx2/progress.hxx>
25 #include "scdllapi.h"
27 class ScDocument;
30 * #i102566
31 * Drawing a progress bar update is not cheap, so if we draw it on every
32 * percentage change of 200 calculations we get one progress draw per 2
33 * calculations which is slower than doing the calculations themselves. So as a
34 * rough guide only do an update per MIN_NO_CODES_PER_PROGRESS_UPDATE
35 * calculations
37 #define MIN_NO_CODES_PER_PROGRESS_UPDATE 100
39 class SC_DLLPUBLIC ScProgress
41 private:
42 static SfxProgress* pGlobalProgress;
43 static sal_uLong nGlobalRange;
44 static sal_uLong nGlobalPercent;
45 static ScProgress* pInterpretProgress;
46 static ScProgress* pOldInterpretProgress;
47 static sal_uLong nInterpretProgress;
48 static bool bAllowInterpretProgress;
49 static ScDocument* pInterpretDoc;
50 static bool bIdleWasEnabled;
51 bool bEnabled;
53 std::unique_ptr<SfxProgress> pProgress;
55 ScProgress( const ScProgress& ) = delete;
56 ScProgress& operator=( const ScProgress& ) = delete;
58 static void CalcGlobalPercent( sal_uLong nVal )
60 nGlobalPercent = nGlobalRange ?
61 nVal * 100 / nGlobalRange : 0;
64 public:
65 static void CreateInterpretProgress( ScDocument* pDoc,
66 bool bWait = true );
67 static ScProgress* GetInterpretProgress() { return pInterpretProgress; }
68 static void DeleteInterpretProgress();
70 ScProgress( SfxObjectShell* pObjSh,
71 const OUString& rText,
72 sal_uLong nRange,
73 bool bWait );
74 ~ScProgress();
76 #ifdef SC_PROGRESS_CXX
77 /// for DummyInterpret only, never use otherwise!!!
78 ScProgress();
79 #endif
81 void SetStateText( sal_uLong nVal, const OUString &rVal )
83 if ( pProgress )
85 CalcGlobalPercent( nVal );
86 pProgress->SetStateText( nVal, rVal );
89 void SetState( sal_uLong nVal, sal_uLong nNewRange = 0 )
91 if ( pProgress )
93 if ( nNewRange )
94 nGlobalRange = nNewRange;
95 CalcGlobalPercent( nVal );
96 pProgress->SetState( nVal, nNewRange );
99 void SetStateCountDown( sal_uLong nVal )
101 if ( pProgress )
103 CalcGlobalPercent( nGlobalRange - nVal );
104 pProgress->SetState( nGlobalRange - nVal );
107 void SetStateOnPercent( sal_uLong nVal )
108 { /// only if percentage increased
109 if ( nGlobalRange && (nVal * 100 /
110 nGlobalRange) > nGlobalPercent )
111 SetState( nVal );
113 void SetStateCountDownOnPercent( sal_uLong nVal )
114 { /// only if percentage increased
115 if ( nGlobalRange &&
116 ((nGlobalRange - nVal) * 100 /
117 nGlobalRange) > nGlobalPercent )
118 SetStateCountDown( nVal );
120 sal_uLong GetState()
122 if ( pProgress )
123 return pProgress->GetState();
124 return 0;
126 bool Enabled() const { return bEnabled; }
127 void Disable() { bEnabled = false; }
128 void Enable() { bEnabled = true; }
131 #endif
133 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */