LibreOffice Module sw (master) 1
wrt_fn.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#ifndef INCLUDED_SW_SOURCE_FILTER_INC_WRT_FN_HXX
20#define INCLUDED_SW_SOURCE_FILTER_INC_WRT_FN_HXX
21#include <hintids.hxx>
22
23// some forward declarations
24class SwNode;
25class SwContentNode;
26class Writer;
27class SfxPoolItem;
28class SfxItemSet;
29class SwHTMLWriter;
30
31/* function pointers to the attribute-write functions */
32typedef SwHTMLWriter& (*FnAttrOut)( SwHTMLWriter&, const SfxPoolItem& );
34
37 bool bDeep );
38
39/* function pointers to the node-write functions */
40
42{
48};
49
50typedef Writer& (*FnNodeOut)( Writer&, SwContentNode& );
52
53Writer& Out( const SwNodeFnTab, SwNode&, Writer & rWrt );
54
55#endif // INCLUDED_SW_SOURCE_FILTER_INC_WRT_FN_HXX
56
57/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Base class of the Writer document model elements.
Definition: node.hxx:98
constexpr sal_uInt16 POOLATTR_BEGIN(HINT_BEGIN)
constexpr sal_uInt16 POOLATTR_END(RES_UNKNOWNATR_END)
SwHTMLWriter & Out(const SwAttrFnTab, const SfxPoolItem &, SwHTMLWriter &)
Definition: wrt_fn.cxx:31
Writer &(* FnNodeOut)(Writer &, SwContentNode &)
Definition: wrt_fn.hxx:50
FnAttrOut SwAttrFnTab[POOLATTR_END - POOLATTR_BEGIN]
Definition: wrt_fn.hxx:33
FnNodeOut SwNodeFnTab[RES_NODE_END - RES_NODE_BEGIN]
Definition: wrt_fn.hxx:51
SwHTMLWriter &(* FnAttrOut)(SwHTMLWriter &, const SfxPoolItem &)
Definition: wrt_fn.hxx:32
RES_NODE
Definition: wrt_fn.hxx:42
@ RES_OLENODE
Definition: wrt_fn.hxx:46
@ RES_TXTNODE
Definition: wrt_fn.hxx:44
@ RES_GRFNODE
Definition: wrt_fn.hxx:45
@ RES_NODE_BEGIN
Definition: wrt_fn.hxx:43
@ RES_NODE_END
Definition: wrt_fn.hxx:47
SwHTMLWriter & Out_SfxItemSet(const SwAttrFnTab, SwHTMLWriter &, const SfxItemSet &, bool bDeep)
Definition: wrt_fn.cxx:42