LCOV - code coverage report
Current view: top level - svx/source/sdr/contact - displayinfo.cxx (source / functions) Hit Total Coverage
Test: commit 0e63ca4fde4e446f346e35849c756a30ca294aab Lines: 29 29 100.0 %
Date: 2014-04-11 Functions: 9 10 90.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             : #include <svx/sdr/contact/displayinfo.hxx>
      21             : 
      22             : 
      23             : 
      24             : namespace sdr
      25             : {
      26             :     namespace contact
      27             :     {
      28       35904 :         DisplayInfo::DisplayInfo()
      29             :         :   maProcessLayers(true), // init layer info with all bits set to draw everything on default
      30             :             maRedrawArea(),
      31             :             mbControlLayerProcessingActive(false),
      32             :             mbPageProcessingActive(true),
      33             :             mbGhostedDrawModeActive(false),
      34       35904 :             mbSubContentActive(false)
      35             :         {
      36       35904 :         }
      37             : 
      38       35904 :         DisplayInfo::~DisplayInfo()
      39             :         {
      40       35904 :         }
      41             : 
      42             :         // Access to LayerInfos (which layers to proccess)
      43       29886 :         void DisplayInfo::SetProcessLayers(const SetOfByte& rSet)
      44             :         {
      45       29886 :             maProcessLayers = rSet;
      46       29886 :         }
      47             : 
      48             :         // access to RedrawArea
      49       27918 :         void DisplayInfo::SetRedrawArea(const Region& rRegion)
      50             :         {
      51       27918 :             maRedrawArea = rRegion;
      52       27918 :         }
      53             : 
      54       26631 :         void DisplayInfo::SetControlLayerProcessingActive(bool bDoProcess)
      55             :         {
      56       26631 :             if((bool)mbControlLayerProcessingActive != bDoProcess)
      57             :             {
      58        9737 :                 mbControlLayerProcessingActive = bDoProcess;
      59             :             }
      60       26631 :         }
      61             : 
      62       27918 :         void DisplayInfo::SetPageProcessingActive(bool bDoProcess)
      63             :         {
      64       27918 :             if((bool)mbPageProcessingActive != bDoProcess)
      65             :             {
      66       26631 :                 mbPageProcessingActive = bDoProcess;
      67             :             }
      68       27918 :         }
      69             : 
      70       41460 :         void DisplayInfo::ClearGhostedDrawMode()
      71             :         {
      72       41460 :             mbGhostedDrawModeActive = false;
      73       41460 :         }
      74             : 
      75       37930 :         void DisplayInfo::SetGhostedDrawMode()
      76             :         {
      77       37930 :             mbGhostedDrawModeActive = true;
      78       37930 :         }
      79             : 
      80        1968 :         void DisplayInfo::SetSubContentActive(bool bNew)
      81             :         {
      82        1968 :             if((bool)mbSubContentActive != bNew)
      83             :             {
      84        1968 :                 mbSubContentActive = bNew;
      85             :             }
      86        1968 :         }
      87             : 
      88             :     } // end of namespace contact
      89             : } // end of namespace sdr
      90             : 
      91             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10