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 .
20 #ifndef INCLUDED_SC_INC_PROGRESS_HXX
21 #define INCLUDED_SC_INC_PROGRESS_HXX
23 #include <rtl/ustring.hxx>
24 #include <sfx2/progress.hxx>
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
37 #define MIN_NO_CODES_PER_PROGRESS_UPDATE 100
39 class SC_DLLPUBLIC ScProgress
42 static SfxProgress
* pGlobalProgress
;
43 static sal_uLong nGlobalRange
;
44 static sal_uLong nGlobalPercent
;
45 static bool bGlobalNoUserBreak
;
46 static ScProgress
* pInterpretProgress
;
47 static ScProgress
* pOldInterpretProgress
;
48 static sal_uLong nInterpretProgress
;
49 static bool bAllowInterpretProgress
;
50 static ScDocument
* pInterpretDoc
;
51 static bool bIdleWasEnabled
;
54 SfxProgress
* pProgress
;
56 ScProgress( const ScProgress
& ) SAL_DELETED_FUNCTION
;
57 ScProgress
& operator=( const ScProgress
& ) SAL_DELETED_FUNCTION
;
59 static void CalcGlobalPercent( sal_uLong nVal
)
61 nGlobalPercent
= nGlobalRange
?
62 nVal
* 100 / nGlobalRange
: 0;
66 static SfxProgress
* GetGlobalSfxProgress() { return pGlobalProgress
; }
67 static bool IsUserBreak() { return !bGlobalNoUserBreak
; }
68 static void CreateInterpretProgress( ScDocument
* pDoc
,
70 static ScProgress
* GetInterpretProgress() { return pInterpretProgress
; }
71 static void DeleteInterpretProgress();
72 static sal_uLong
GetInterpretCount() { return nInterpretProgress
; }
73 static sal_uLong
GetGlobalRange() { return nGlobalRange
; }
74 static sal_uLong
GetGlobalPercent() { return nGlobalPercent
; }
76 ScProgress( SfxObjectShell
* pObjSh
,
77 const OUString
& rText
,
78 sal_uLong nRange
, bool bAllDocs
= false,
82 #ifdef SC_PROGRESS_CXX
83 /// for DummyInterpret only, never use otherwise!!!
87 SfxProgress
* GetSfxProgress() const { return pProgress
; }
89 bool SetStateText( sal_uLong nVal
, const OUString
&rVal
, sal_uLong nNewRange
= 0 )
94 nGlobalRange
= nNewRange
;
95 CalcGlobalPercent( nVal
);
96 if ( !pProgress
->SetStateText( nVal
, rVal
, nNewRange
) )
97 bGlobalNoUserBreak
= false;
98 return bGlobalNoUserBreak
;
102 bool SetState( sal_uLong nVal
, sal_uLong nNewRange
= 0 )
107 nGlobalRange
= nNewRange
;
108 CalcGlobalPercent( nVal
);
109 if ( !pProgress
->SetState( nVal
, nNewRange
) )
110 bGlobalNoUserBreak
= false;
111 return bGlobalNoUserBreak
;
115 bool SetStateCountDown( sal_uLong nVal
)
119 CalcGlobalPercent( nGlobalRange
- nVal
);
120 if ( !pProgress
->SetState( nGlobalRange
- nVal
) )
121 bGlobalNoUserBreak
= false;
122 return bGlobalNoUserBreak
;
126 bool SetStateOnPercent( sal_uLong nVal
)
127 { /// only if percentage increased
128 if ( nGlobalRange
&& (nVal
* 100 /
129 nGlobalRange
) > nGlobalPercent
)
130 return SetState( nVal
);
133 bool SetStateCountDownOnPercent( sal_uLong nVal
)
134 { /// only if percentage increased
136 ((nGlobalRange
- nVal
) * 100 /
137 nGlobalRange
) > nGlobalPercent
)
138 return SetStateCountDown( nVal
);
144 return pProgress
->GetState();
147 bool Enabled() const { return bEnabled
; }
148 void Disable() { bEnabled
= false; }
149 void Enable() { bEnabled
= true; }
154 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */