LCOV - code coverage report
Current view: top level - usr/local/src/libreoffice/drawinglayer/source/processor2d - processor2dtools.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 9 9 100.0 %
Date: 2013-07-09 Functions: 4 4 100.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /*
       2             :  * This file is part of the LibreOffice project.
       3             :  *
       4             :  * This Source Code Form is subject to the terms of the Mozilla Public
       5             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       6             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       7             :  *
       8             :  * This file incorporates work covered by the following license notice:
       9             :  *
      10             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      11             :  *   contributor license agreements. See the NOTICE file distributed
      12             :  *   with this work for additional information regarding copyright
      13             :  *   ownership. The ASF licenses this file to you under the Apache
      14             :  *   License, Version 2.0 (the "License"); you may not use this file
      15             :  *   except in compliance with the License. You may obtain a copy of
      16             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      17             :  */
      18             : #include <drawinglayer/processor2d/processor2dtools.hxx>
      19             : #include "vclpixelprocessor2d.hxx"
      20             : #include "vclmetafileprocessor2d.hxx"
      21             : 
      22             : //////////////////////////////////////////////////////////////////////////////
      23             : 
      24             : using namespace com::sun::star;
      25             : 
      26             : //////////////////////////////////////////////////////////////////////////////
      27             : 
      28             : namespace drawinglayer
      29             : {
      30             :     namespace processor2d
      31             :     {
      32        5734 :         BaseProcessor2D* createPixelProcessor2DFromOutputDevice(
      33             :             OutputDevice& rTargetOutDev,
      34             :             const drawinglayer::geometry::ViewInformation2D& rViewInformation2D)
      35             :         {
      36             :             // create Pixel Vcl-Processor
      37        5734 :             return new VclPixelProcessor2D(rViewInformation2D, rTargetOutDev);
      38             :         }
      39             : 
      40        4745 :         BaseProcessor2D* createProcessor2DFromOutputDevice(
      41             :             OutputDevice& rTargetOutDev,
      42             :             const drawinglayer::geometry::ViewInformation2D& rViewInformation2D)
      43             :         {
      44        4745 :             const GDIMetaFile* pMetaFile = rTargetOutDev.GetConnectMetaFile();
      45        4745 :             const bool bOutputToRecordingMetaFile(pMetaFile && pMetaFile->IsRecord() && !pMetaFile->IsPause());
      46             : 
      47        4745 :             if(bOutputToRecordingMetaFile)
      48             :             {
      49             :                 // create MetaFile Vcl-Processor and process
      50          35 :                 return new VclMetafileProcessor2D(rViewInformation2D, rTargetOutDev);
      51             :             }
      52             :             else
      53             :             {
      54             :                 // create Pixel Vcl-Processor
      55             :                 return createPixelProcessor2DFromOutputDevice(
      56             :                     rTargetOutDev,
      57        4710 :                     rViewInformation2D);
      58             :             }
      59             :         }
      60             :     } // end of namespace processor2d
      61         408 : } // end of namespace drawinglayer
      62             : 
      63             : //////////////////////////////////////////////////////////////////////////////

Generated by: LCOV version 1.10