LCOV - code coverage report
Current view: top level - sw/source/filter/ww8 - rtfexportfilter.hxx (source / functions) Hit Total Coverage
Test: commit 0e63ca4fde4e446f346e35849c756a30ca294aab Lines: 1 2 50.0 %
Date: 2014-04-11 Functions: 2 4 50.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_SW_SOURCE_FILTER_WW8_RTFEXPORTFILTER_HXX
      21             : #define INCLUDED_SW_SOURCE_FILTER_WW8_RTFEXPORTFILTER_HXX
      22             : 
      23             : #include <com/sun/star/document/XFilter.hpp>
      24             : #include <com/sun/star/document/XExporter.hpp>
      25             : #include <com/sun/star/uno/XComponentContext.hpp>
      26             : #include <cppuhelper/implbase2.hxx>
      27             : #include <shellio.hxx>
      28             : 
      29             : /// Dummy Writer implementation to be able to use the string format methods of the base class
      30         110 : class RtfWriter : public Writer
      31             : {
      32             : protected:
      33           0 :     sal_uLong WriteStream() SAL_OVERRIDE { return 0; }
      34             : };
      35             : 
      36             : /// The physical access to the RTF document (for writing).
      37             : class RtfExportFilter : public cppu::WeakImplHelper2
      38             : <
      39             :     com::sun::star::document::XFilter,
      40             :     com::sun::star::document::XExporter
      41             : >
      42             : {
      43             : protected:
      44             :     ::com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext > m_xCtx;
      45             :     ::com::sun::star::uno::Reference< ::com::sun::star::lang::XComponent > m_xSrcDoc;
      46             : public:
      47             :     RtfExportFilter( const ::com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext >& xCtx );
      48             :     virtual ~RtfExportFilter();
      49             : 
      50             :     // XFilter
      51             :     virtual sal_Bool SAL_CALL filter( const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& aDescriptor )
      52             :         throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
      53             :     virtual void SAL_CALL cancel(  )
      54             :         throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
      55             : 
      56             :     // XExporter
      57             :     virtual void SAL_CALL setSourceDocument( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XComponent >& xDoc )
      58             :         throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
      59             : 
      60             :     RtfWriter m_aWriter;
      61             : };
      62             : 
      63             : OUString RtfExport_getImplementationName();
      64             : ::com::sun::star::uno::Sequence< OUString > SAL_CALL RtfExport_getSupportedServiceNames()
      65             :     throw();
      66             : ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL RtfExport_createInstance(
      67             :                                                                         const ::com::sun::star::uno::Reference<
      68             :                                                                         com::sun::star::uno::XComponentContext > &xCtx)
      69             :     throw( ::com::sun::star::uno::Exception );
      70             : 
      71             : #define IMPL_NAME_RTFEXPORT "com.sun.star.comp.Writer.RtfExport"
      72             : 
      73             : #endif // INCLUDED_SW_SOURCE_FILTER_WW8_RTFEXPORTFILTER_HXX
      74             : 
      75             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10