LCOV - code coverage report
Current view: top level - svx/source/sdr/primitive2d - sdrprimitivetools.cxx (source / functions) Hit Total Coverage
Test: commit 0e63ca4fde4e446f346e35849c756a30ca294aab Lines: 27 27 100.0 %
Date: 2014-04-11 Functions: 1 1 100.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/primitive2d/sdrprimitivetools.hxx>
      21             : #include <vcl/bmpacc.hxx>
      22             : #include <osl/mutex.hxx>
      23             : #include <vcl/lazydelete.hxx>
      24             : 
      25             : 
      26             : // helper methods
      27             : 
      28             : namespace drawinglayer
      29             : {
      30             :     namespace primitive2d
      31             :     {
      32         328 :         BitmapEx createDefaultCross_3x3(const basegfx::BColor& rBColor)
      33             :         {
      34         328 :             static vcl::DeleteOnDeinit< BitmapEx > aRetVal(0);
      35         328 :             static basegfx::BColor aColor;
      36         328 :             static ::osl::Mutex aMutex;
      37             : 
      38         328 :             ::osl::MutexGuard aGuard(aMutex);
      39             : 
      40         328 :             if(!aRetVal.get() || rBColor != aColor)
      41             :             {
      42             :                 // copy values
      43           9 :                 aColor = rBColor;
      44             : 
      45             :                 // create bitmap
      46           9 :                 Bitmap aContent(Size(3, 3), 24);
      47          18 :                 Bitmap aMask(Size(3, 3), 1);
      48           9 :                 BitmapWriteAccess* pWContent = aContent.AcquireWriteAccess();
      49           9 :                 BitmapWriteAccess* pWMask = aMask.AcquireWriteAccess();
      50             :                 OSL_ENSURE(pWContent && pWMask, "No WriteAccess to bitmap (!)");
      51           9 :                 const Color aVCLColor(aColor);
      52          18 :                 const BitmapColor aPixColor(aVCLColor);
      53          18 :                 const BitmapColor aMaskColor(0x01);
      54             : 
      55             :                 // Y,X unusual order (!)
      56           9 :                 pWContent->SetPixel(0, 1, aPixColor);
      57           9 :                 pWContent->SetPixel(1, 0, aPixColor);
      58           9 :                 pWContent->SetPixel(1, 1, aPixColor);
      59           9 :                 pWContent->SetPixel(1, 2, aPixColor);
      60           9 :                 pWContent->SetPixel(2, 1, aPixColor);
      61             : 
      62           9 :                 pWMask->SetPixel(0, 0, aMaskColor);
      63           9 :                 pWMask->SetPixel(0, 2, aMaskColor);
      64           9 :                 pWMask->SetPixel(2, 0, aMaskColor);
      65           9 :                 pWMask->SetPixel(2, 2, aMaskColor);
      66             : 
      67           9 :                 aContent.ReleaseAccess(pWContent);
      68           9 :                 aMask.ReleaseAccess(pWMask);
      69             : 
      70             :                 // create and exchange at aRetVal
      71          18 :                 delete aRetVal.set(new BitmapEx(aContent, aMask));
      72             :             }
      73             : 
      74         328 :             return aRetVal.get() ? *aRetVal.get() : BitmapEx();
      75             :         }
      76             :     } // end of namespace primitive2d
      77             : } // end of namespace drawinglayer
      78             : 
      79             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10