LCOV - code coverage report
Current view: top level - libreoffice/sc/inc - progress.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 11 42 26.2 %
Date: 2012-12-27 Functions: 5 9 55.6 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       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/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      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 .
      18             :  */
      19             : 
      20             : #ifndef SC_PROGRESS_HXX
      21             : #define SC_PROGRESS_HXX
      22             : 
      23             : #include <sfx2/progress.hxx>
      24             : #include "scdllapi.h"
      25             : 
      26             : class ScDocument;
      27             : 
      28             : /*
      29             :  * #i102566
      30             :  * Drawing a progress bar update is not cheap, so if we draw it on every
      31             :  * percentage change of 200 calculations we get one progress draw per 2
      32             :  * calculations which is slower than doing the calculations themselves. So as a
      33             :  * rough guide only do an update per MIN_NO_CODES_PER_PROGRESS_UPDATE
      34             :  * calculations
      35             :  */
      36             : #define MIN_NO_CODES_PER_PROGRESS_UPDATE 100
      37             : 
      38             : 
      39             : class SC_DLLPUBLIC ScProgress
      40             : {
      41             : private:
      42             :     static  SfxProgress*    pGlobalProgress;
      43             :     static  sal_uLong           nGlobalRange;
      44             :     static  sal_uLong           nGlobalPercent;
      45             :     static  sal_Bool            bGlobalNoUserBreak;
      46             :     static  ScProgress*     pInterpretProgress;
      47             :     static  ScProgress*     pOldInterpretProgress;
      48             :     static  sal_uLong           nInterpretProgress;
      49             :     static  sal_Bool            bAllowInterpretProgress;
      50             :     static  ScDocument*     pInterpretDoc;
      51             :     static  sal_Bool            bIdleWasDisabled;
      52             : 
      53             :             SfxProgress*    pProgress;
      54             : 
      55             :                             // not implemented
      56             :                             ScProgress( const ScProgress& );
      57             :             ScProgress&     operator=( const ScProgress& );
      58             : 
      59           0 :     static  void            CalcGlobalPercent( sal_uLong nVal )
      60             :                                 {
      61             :                                     nGlobalPercent = nGlobalRange ?
      62           0 :                                         nVal * 100 / nGlobalRange : 0;
      63           0 :                                 }
      64             : 
      65             : public:
      66             :     static  SfxProgress*    GetGlobalSfxProgress() { return pGlobalProgress; }
      67          47 :     static  sal_Bool            IsUserBreak() { return !bGlobalNoUserBreak; }
      68             :     static  void            CreateInterpretProgress( ScDocument* pDoc,
      69             :                                                     sal_Bool bWait = sal_True );
      70        3010 :     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; }
      75             : 
      76             :                             ScProgress( SfxObjectShell* pObjSh,
      77             :                                          const String& rText,
      78             :                                          sal_uLong nRange, sal_Bool bAllDocs = false,
      79             :                                          sal_Bool bWait = sal_True );
      80             :                             ~ScProgress();
      81             : 
      82             : #ifdef SC_PROGRESS_CXX
      83             :                             // for DummyInterpret only, never use otherwise!!!
      84             :                             ScProgress();
      85             : #endif
      86             :                             // might be NULL!
      87             :             SfxProgress*    GetSfxProgress() const { return pProgress; }
      88             : 
      89           0 :             sal_Bool            SetStateText( sal_uLong nVal, const String &rVal, sal_uLong nNewRange = 0 )
      90             :                                 {
      91           0 :                                     if ( pProgress )
      92             :                                     {
      93           0 :                                         if ( nNewRange )
      94           0 :                                             nGlobalRange = nNewRange;
      95           0 :                                         CalcGlobalPercent( nVal );
      96           0 :                                         if ( !pProgress->SetStateText( nVal, rVal, nNewRange ) )
      97           0 :                                             bGlobalNoUserBreak = false;
      98           0 :                                         return bGlobalNoUserBreak;
      99             :                                     }
     100           0 :                                     return sal_True;
     101             :                                 }
     102        2860 :             sal_Bool            SetState( sal_uLong nVal, sal_uLong nNewRange = 0 )
     103             :                                 {
     104        2860 :                                     if ( pProgress )
     105             :                                     {
     106           0 :                                         if ( nNewRange )
     107           0 :                                             nGlobalRange = nNewRange;
     108           0 :                                         CalcGlobalPercent( nVal );
     109           0 :                                         if ( !pProgress->SetState( nVal, nNewRange ) )
     110           0 :                                             bGlobalNoUserBreak = false;
     111           0 :                                         return bGlobalNoUserBreak;
     112             :                                     }
     113        2860 :                                     return sal_True;
     114             :                                 }
     115           0 :             sal_Bool            SetStateCountDown( sal_uLong nVal )
     116             :                                 {
     117           0 :                                     if ( pProgress )
     118             :                                     {
     119           0 :                                         CalcGlobalPercent( nGlobalRange - nVal );
     120           0 :                                         if ( !pProgress->SetState( nGlobalRange - nVal ) )
     121           0 :                                             bGlobalNoUserBreak = false;
     122           0 :                                         return bGlobalNoUserBreak;
     123             :                                     }
     124           0 :                                     return sal_True;
     125             :                                 }
     126          78 :             sal_Bool            SetStateOnPercent( sal_uLong nVal )
     127             :                                 {   // only if percentage increased
     128          78 :                                     if ( nGlobalRange && (nVal * 100 /
     129             :                                             nGlobalRange) > nGlobalPercent )
     130           0 :                                         return SetState( nVal );
     131          78 :                                     return sal_True;
     132             :                                 }
     133        3369 :             sal_Bool            SetStateCountDownOnPercent( sal_uLong nVal )
     134             :                                 {   // only if percentage increased
     135        3369 :                                     if ( nGlobalRange &&
     136             :                                             ((nGlobalRange - nVal) * 100 /
     137             :                                             nGlobalRange) > nGlobalPercent )
     138           0 :                                         return SetStateCountDown( nVal );
     139        3369 :                                     return sal_True;
     140             :                                 }
     141           0 :             sal_uLong           GetState()
     142             :                                 {
     143           0 :                                     if ( pProgress )
     144           0 :                                         return pProgress->GetState();
     145           0 :                                     return 0;
     146             :                                 }
     147             : };
     148             : 
     149             : 
     150             : #endif
     151             : 
     152             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10