LCOV - code coverage report
Current view: top level - include/filter/msfilter - svxmsbas.hxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 4 4 100.0 %
Date: 2015-06-13 12:38:46 Functions: 2 2 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             : #ifndef INCLUDED_FILTER_MSFILTER_SVXMSBAS_HXX
      21             : #define INCLUDED_FILTER_MSFILTER_SVXMSBAS_HXX
      22             : 
      23             : #include <tools/solar.h>
      24             : #include <filter/msfilter/msfilterdllapi.h>
      25             : 
      26             : #include <map>
      27             : #include <unordered_map>
      28             : 
      29             : class SfxObjectShell;
      30             : class SotStorage;
      31             : 
      32             : /* Construct with the root storage of the MS document, with bImportCode
      33             :  * set the visual basic code will be imported into the stardocument when Import
      34             :  * is called, with bCopyStorage set, the visual basic storage tree will be
      35             :  * copied completely into staroffice, so that any future export to a msoffice
      36             :  * format will retain the vba code, allowing a lossless roundtrip from
      37             :  * msoffice to staroffice and back.
      38             :  *
      39             :  * Setting bAsComment to true in Import will import the visual basic as a
      40             :  * starbasic comment. Which is currently necessary, as vb is not valid sb.
      41             :  *
      42             :  * Setting bStripped will remove the "Attribute" lines from the vb, msoffice
      43             :  * does this itself when it shows the vb code in the vbeditor, so this is
      44             :  * probably what the user expects to see when viewing the code
      45             :  */
      46             : 
      47             : 
      48             : 
      49          20 : class MSFILTER_DLLPUBLIC SvxImportMSVBasic
      50             : {
      51             : public:
      52          20 :     SvxImportMSVBasic( SfxObjectShell &rDocS, SotStorage &rRoot )
      53          20 :         :   xRoot(&rRoot), rDocSh(rDocS)
      54          20 :         {}
      55             :     // only for the export - copy or delete the saved VBA-macro-storage
      56             :     // form the ObjectShell
      57             :     // - returns a warning code if a modified basic exist, in all other
      58             :     //   cases return ERRCODE_NONE.
      59             :     sal_uLong SaveOrDelMSVBAStorage( bool bSaveInto, const OUString& rStorageName );
      60             : 
      61             :     // check if the MS-VBA-Storage exist in the RootStorage of the DocShell.
      62             :     // If it exist, then return the WarningId for losing the information.
      63             :     static sal_uLong GetSaveWarningOfMSVBAStorage( SfxObjectShell &rDocS );
      64             : 
      65             :     static OUString GetMSBasicStorageName();
      66             : private:
      67             :     tools::SvRef<SotStorage> xRoot;
      68             :     SfxObjectShell &rDocSh;
      69             : };
      70             : 
      71             : #endif
      72             : 
      73             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11