LCOV - code coverage report
Current view: top level - sc/source/filter/inc - rtfparse.hxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 0 5 0.0 %
Date: 2015-06-13 12:38:46 Functions: 0 4 0.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 INCLUDED_SC_SOURCE_FILTER_INC_RTFPARSE_HXX
      21             : #define INCLUDED_SC_SOURCE_FILTER_INC_RTFPARSE_HXX
      22             : 
      23             : #include "eeparser.hxx"
      24             : 
      25             : #include <boost/ptr_container/ptr_vector.hpp>
      26             : #include <o3tl/sorted_vector.hxx>
      27             : 
      28           0 : struct ScRTFCellDefault
      29             : {
      30             :     SfxItemSet          aItemSet;
      31             :     SCCOL               nCol;
      32             :     sal_uInt16          nTwips;         // rechter Rand der Zelle
      33             :     SCCOL               nColOverlap;    // MergeCell wenn >1, merged cells wenn 0
      34             : 
      35           0 :     ScRTFCellDefault( SfxItemPool* pPool )
      36             :         : aItemSet(*pPool)
      37             :         , nCol(0)
      38             :         , nTwips(0)
      39           0 :         , nColOverlap(1)
      40             :     {
      41           0 :     }
      42             : };
      43             : 
      44           0 : class ScRTFColTwips : public o3tl::sorted_vector<sal_uLong> {};
      45             : 
      46             : class EditEngine;
      47             : 
      48             : class ScRTFParser : public ScEEParser
      49             : {
      50             : private:
      51             :     typedef boost::ptr_vector<ScRTFCellDefault> DefaultList;
      52             : 
      53             :     DefaultList maDefaultList;
      54             :     size_t mnCurPos;
      55             : 
      56             :     ScRTFColTwips*      pColTwips;
      57             :     ScRTFCellDefault*   pInsDefault;
      58             :     ScRTFCellDefault*   pActDefault;
      59             :     ScRTFCellDefault*   pDefMerge;
      60             :     sal_uLong           nStartAdjust;
      61             :     sal_uInt16          nLastWidth;
      62             :     bool                bNewDef;
      63             : 
      64             :     DECL_LINK( RTFImportHdl, ImportInfo* );
      65             :     inline void         NextRow();
      66             :     void                EntryEnd( ScEEParseEntry*, const ESelection& );
      67             :     void                ProcToken( ImportInfo* );
      68             :     void                ColAdjust();
      69             :     bool                SeekTwips( sal_uInt16 nTwips, SCCOL* pCol );
      70             :     void                NewCellRow( ImportInfo* );
      71             : 
      72             : public:
      73             :                         ScRTFParser( EditEngine* );
      74             :     virtual             ~ScRTFParser();
      75             :     virtual sal_uLong       Read( SvStream&, const OUString& rBaseURL ) SAL_OVERRIDE;
      76             : };
      77             : 
      78             : #endif
      79             : 
      80             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11