LCOV - code coverage report
Current view: top level - usr/local/src/libreoffice/sc/source/ui/inc - editable.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 1 2 50.0 %
Date: 2013-07-09 Functions: 1 2 50.0 %
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_EDITABLE_HXX
      21             : #define SC_EDITABLE_HXX
      22             : 
      23             : #include "address.hxx"
      24             : #include <tools/solar.h>
      25             : 
      26             : class ScDocument;
      27             : class ScViewFunc;
      28             : class ScMarkData;
      29             : class ScRange;
      30             : 
      31             : 
      32             : class ScEditableTester
      33             : {
      34             :     bool mbIsEditable;
      35             :     bool mbOnlyMatrix;
      36             : 
      37             : public:
      38             :             ScEditableTester();
      39             : 
      40             :             // calls TestBlock
      41             :             ScEditableTester( ScDocument* pDoc, SCTAB nTab,
      42             :                         SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW nEndRow );
      43             : 
      44             :             // calls TestSelectedBlock
      45             :             ScEditableTester( ScDocument* pDoc,
      46             :                         SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW nEndRow,
      47             :                         const ScMarkData& rMark );
      48             : 
      49             :             // calls TestRange
      50             :             ScEditableTester( ScDocument* pDoc, const ScRange& rRange );
      51             : 
      52             :             // calls TestSelection
      53             :             ScEditableTester( ScDocument* pDoc, const ScMarkData& rMark );
      54             : 
      55             :             // calls TestView
      56             :             ScEditableTester( ScViewFunc* pView );
      57             : 
      58             :             // Several calls to the Test... methods check if *all* of the ranges
      59             :             // are editable. For several independent checks, Reset() has to be used.
      60             :     void    TestBlock( ScDocument* pDoc, SCTAB nTab,
      61             :                         SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW nEndRow );
      62             :     void    TestSelectedBlock( ScDocument* pDoc,
      63             :                         SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW nEndRow,
      64             :                         const ScMarkData& rMark );
      65             :     void    TestRange( ScDocument* pDoc, const ScRange& rRange );
      66             :     void    TestSelection( ScDocument* pDoc, const ScMarkData& rMark );
      67             :     void    TestView( ScViewFunc* pView );
      68             : 
      69        2317 :     bool IsEditable() const { return mbIsEditable; }
      70           0 :     bool IsFormatEditable() const { return mbIsEditable || mbOnlyMatrix; }
      71             :     sal_uInt16  GetMessageId() const;
      72             : };
      73             : 
      74             : #endif
      75             : 
      76             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10