LCOV - code coverage report
Current view: top level - sd/source/ui/slidesorter/cache - SlsBitmapFactory.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 9 9 100.0 %
Date: 2012-08-25 Functions: 3 3 100.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 7 14 50.0 %

           Branch data     Line data    Source code
       1                 :            : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2                 :            : /*************************************************************************
       3                 :            :  *
       4                 :            :  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       5                 :            :  *
       6                 :            :  * Copyright 2000, 2010 Oracle and/or its affiliates.
       7                 :            :  *
       8                 :            :  * OpenOffice.org - a multi-platform office productivity suite
       9                 :            :  *
      10                 :            :  * This file is part of OpenOffice.org.
      11                 :            :  *
      12                 :            :  * OpenOffice.org is free software: you can redistribute it and/or modify
      13                 :            :  * it under the terms of the GNU Lesser General Public License version 3
      14                 :            :  * only, as published by the Free Software Foundation.
      15                 :            :  *
      16                 :            :  * OpenOffice.org is distributed in the hope that it will be useful,
      17                 :            :  * but WITHOUT ANY WARRANTY; without even the implied warranty of
      18                 :            :  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      19                 :            :  * GNU Lesser General Public License version 3 for more details
      20                 :            :  * (a copy is included in the LICENSE file that accompanied this code).
      21                 :            :  *
      22                 :            :  * You should have received a copy of the GNU Lesser General Public License
      23                 :            :  * version 3 along with OpenOffice.org.  If not, see
      24                 :            :  * <http://www.openoffice.org/license.html>
      25                 :            :  * for a copy of the LGPLv3 License.
      26                 :            :  *
      27                 :            :  ************************************************************************/
      28                 :            : 
      29                 :            : 
      30                 :            : #include "SlsBitmapFactory.hxx"
      31                 :            : 
      32                 :            : #include "PreviewRenderer.hxx"
      33                 :            : #include "view/SlideSorterView.hxx"
      34                 :            : #include "sdpage.hxx"
      35                 :            : #include "Window.hxx"
      36                 :            : #include <drawdoc.hxx>
      37                 :            : #include "DrawDocShell.hxx"
      38                 :            : #include <svx/svdtypes.hxx>
      39                 :            : #include <svx/svdpage.hxx>
      40                 :            : #include <vcl/bitmapex.hxx>
      41                 :            : #include <vcl/bmpacc.hxx>
      42                 :            : #include <vcl/pngwrite.hxx>
      43                 :            : 
      44                 :            : const static sal_Int32 gnSuperSampleFactor (2);
      45                 :            : const static bool gbAllowSuperSampling (false);
      46                 :            : 
      47                 :            : 
      48                 :            : namespace sd { namespace slidesorter { namespace view {
      49                 :            : class SlideSorterView;
      50                 :            : class PageObjectViewObjectContact;
      51                 :            : } } }
      52                 :            : 
      53                 :            : namespace sd { namespace slidesorter { namespace cache {
      54                 :            : 
      55                 :        126 : BitmapFactory::BitmapFactory (void)
      56                 :        126 :     : maRenderer(NULL, false)
      57                 :            : {
      58                 :        126 : }
      59                 :            : 
      60                 :            : 
      61                 :            : 
      62                 :            : 
      63                 :        126 : BitmapFactory::~BitmapFactory (void)
      64                 :            : {
      65                 :        126 : }
      66                 :            : 
      67                 :            : 
      68                 :            : 
      69                 :            : 
      70                 :        270 : Bitmap BitmapFactory::CreateBitmap (
      71                 :            :     const SdPage& rPage,
      72                 :            :     const Size& rPixelSize,
      73                 :            :     const bool bDoSuperSampling)
      74                 :            : {
      75                 :        270 :     Size aSize (rPixelSize);
      76                 :            :     if (bDoSuperSampling && gbAllowSuperSampling)
      77                 :            :     {
      78                 :            :         aSize.Width() *= gnSuperSampleFactor;
      79                 :            :         aSize.Height() *= gnSuperSampleFactor;
      80                 :            :     }
      81                 :            : 
      82                 :            :     Bitmap aPreview (maRenderer.RenderPage (
      83                 :            :         &rPage,
      84                 :            :         aSize,
      85                 :            :         String(),
      86                 :            :         true,
      87 [ +  - ][ +  - ]:        270 :         false).GetBitmapEx().GetBitmap());
         [ +  - ][ +  - ]
         [ +  - ][ +  - ]
                 [ +  - ]
      88                 :            :     if (bDoSuperSampling && gbAllowSuperSampling)
      89                 :            :     {
      90                 :            :         aPreview.Scale(rPixelSize, BMP_SCALE_BEST);
      91                 :            :     }
      92                 :            : 
      93                 :        270 :     return aPreview;
      94                 :            : }
      95                 :            : 
      96                 :            : 
      97                 :            : } } } // end of namespace ::sd::slidesorter::cache
      98                 :            : 
      99                 :            : 
     100                 :            : 
     101                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10