LCOV - code coverage report
Current view: top level - sw/source/filter/ww8 - rtfexportfilter.hxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 1 2 50.0 %
Date: 2014-11-03 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         272 : 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             :     css::document::XFilter,
      40             :     css::document::XExporter
      41             :     >
      42             : {
      43             : protected:
      44             :     css::uno::Reference<css::uno::XComponentContext> m_xCtx;
      45             :     css::uno::Reference<css::lang::XComponent> m_xSrcDoc;
      46             : public:
      47             :     RtfExportFilter(const css::uno::Reference<css::uno::XComponentContext>& xCtx);
      48             :     virtual ~RtfExportFilter();
      49             : 
      50             :     // XFilter
      51             :     virtual sal_Bool SAL_CALL filter(const css::uno::Sequence<css::beans::PropertyValue>& aDescriptor) throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
      52             :     virtual void SAL_CALL cancel() throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
      53             : 
      54             :     // XExporter
      55             :     virtual void SAL_CALL setSourceDocument(const css::uno::Reference<css::lang::XComponent>& xDoc)
      56             :     throw(css::lang::IllegalArgumentException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
      57             : 
      58             :     RtfWriter m_aWriter;
      59             : };
      60             : 
      61             : OUString RtfExport_getImplementationName();
      62             : css::uno::Sequence<OUString> SAL_CALL RtfExport_getSupportedServiceNames() throw();
      63             : css::uno::Reference<css::uno::XInterface> SAL_CALL RtfExport_createInstance(const css::uno::Reference<css::uno::XComponentContext>& xCtx) throw(css::uno::Exception);
      64             : 
      65             : #define IMPL_NAME_RTFEXPORT "com.sun.star.comp.Writer.RtfExport"
      66             : 
      67             : #endif // INCLUDED_SW_SOURCE_FILTER_WW8_RTFEXPORTFILTER_HXX
      68             : 
      69             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10