LibreOffice Module sw (master) 1
rtfexportfilter.hxx
Go to the documentation of this file.
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/lang/XServiceInfo.hpp>
27#include <shellio.hxx>
28
29namespace com::sun::star::uno
30{
31class XComponentContext;
32}
33
35class RtfWriter : public Writer
36{
37protected:
38 ErrCode WriteStream() override { return ERRCODE_NONE; }
39};
40
42class RtfExportFilter final
43 : public cppu::WeakImplHelper<css::document::XFilter, css::document::XExporter,
44 css::lang::XServiceInfo>
45{
46 css::uno::Reference<css::uno::XComponentContext> m_xCtx;
47 css::uno::Reference<css::lang::XComponent> m_xSrcDoc;
49
50public:
51 explicit RtfExportFilter(css::uno::Reference<css::uno::XComponentContext> xCtx);
52 ~RtfExportFilter() override;
53
54 // XFilter
55 sal_Bool SAL_CALL
56 filter(const css::uno::Sequence<css::beans::PropertyValue>& aDescriptor) override;
57 void SAL_CALL cancel() override;
58
59 // XExporter
60 void SAL_CALL
61 setSourceDocument(const css::uno::Reference<css::lang::XComponent>& xDoc) override;
62
63 OUString SAL_CALL getImplementationName() override;
64 sal_Bool SAL_CALL supportsService(OUString const& ServiceName) override;
65 css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override;
66
67 Writer& GetWriter() { return m_aWriter; }
68};
69
70#endif // INCLUDED_SW_SOURCE_FILTER_WW8_RTFEXPORTFILTER_HXX
71
72/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
The physical access to the RTF document (for writing).
RtfExportFilter(css::uno::Reference< css::uno::XComponentContext > xCtx)
Writer & GetWriter()
sal_Bool SAL_CALL supportsService(OUString const &ServiceName) override
OUString SAL_CALL getImplementationName() override
void SAL_CALL setSourceDocument(const css::uno::Reference< css::lang::XComponent > &xDoc) override
~RtfExportFilter() override
css::uno::Reference< css::uno::XComponentContext > m_xCtx
sal_Bool SAL_CALL filter(const css::uno::Sequence< css::beans::PropertyValue > &aDescriptor) override
void SAL_CALL cancel() override
css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override
css::uno::Reference< css::lang::XComponent > m_xSrcDoc
Dummy Writer implementation to be able to use the string format methods of the base class.
ErrCode WriteStream() override
#define ERRCODE_NONE
unsigned char sal_Bool