LCOV - code coverage report
Current view: top level - libreoffice/sw/source/filter/ww8 - types.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 4 4 100.0 %
Date: 2012-12-27 Functions: 6 8 75.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 WW_TYPES
      21             : #define WW_TYPES
      22             : 
      23             : #include <vector>
      24             : 
      25             : namespace ww
      26             : {
      27       10993 :     class bytes : public std::vector<sal_uInt8>
      28             :     {
      29             :         public:
      30         211 :             const sal_uInt8* data() const { return empty() ? 0 : &front(); }
      31             :     };
      32             : 
      33             :     enum WordVersion {eWW2 = 2, eWW6 = 6, eWW7 = 7, eWW8 = 8};
      34      599273 :     inline bool IsSevenMinus(WordVersion eVer) { return eVer <= eWW7; }
      35       58357 :     inline bool IsEightPlus(WordVersion eVer) { return eVer >= eWW8; }
      36             : 
      37             :     /** For custom wrapping
      38             : 
      39             :         When you edit the wrap points of a contour in word, word uses a relative
      40             :         scale of 0 to 21600 where 21600 is apparently 100% of the graphic width
      41             :     */
      42             :     const int nWrap100Percent = 21600;
      43             : }
      44             : 
      45             : #endif
      46             : 
      47             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10