LibreOffice Module sw (master) 1
ww8glsy.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_WW8GLSY_HXX
21#define INCLUDED_SW_SOURCE_FILTER_WW8_WW8GLSY_HXX
22
23#include <memory>
24#include <sot/storage.hxx>
25
26#include <doc.hxx>
27#include "ww8scan.hxx"
28
29class SwTextBlocks;
30class SwNodeIndex;
31
32/*
33 * GlossaryFib takes the document fib and finds the glossary fib which may
34 * not exist. The glossary fib has the offsets into the autotext subdocument
35 * which is at the end of template .dot's
36 */
37class WW8GlossaryFib : public WW8Fib
38{
39public:
40 WW8GlossaryFib( SvStream& rStrm, sal_uInt8 nWantedVersion, const WW8Fib &rFib)
41 : WW8Fib(rStrm, nWantedVersion, FindGlossaryFibOffset(rFib)) {}
42 // fGlsy will indicate whether this has AutoText or not
43 bool IsGlossaryFib() const {
44 return m_fGlsy;
45 }
46private:
47 static sal_uInt32 FindGlossaryFibOffset(const WW8Fib &rFib);
48};
49
50/*
51 * Imports glossaries from word, given the document it gets the usual word
52 * doc information, then the glossary fib and uses the usual reader class to
53 * wrap the autotext into a star doc. Afterwards taking each section entry and
54 * making it a single star autotext entry.
55 *
56 * ToDo currently all autotext entries become resource hungry star autotext
57 * formatted text, need to use a flag in the ww8reader class to determine if
58 * an entry is formatted or not.
59 */
61{
62public:
64 bool Load( SwTextBlocks &rBlocks, bool bSaveRelFile );
65 std::shared_ptr<WW8GlossaryFib>& GetFib()
66 {
67 return m_xGlossary;
68 }
69 sal_uInt16 GetNoStrings() const
70 {
71 return m_nStrings;
72 }
73
74private:
75 std::shared_ptr<WW8GlossaryFib> m_xGlossary;
79 sal_uInt16 m_nStrings;
80
81 static bool MakeEntries(SwDoc *pD, SwTextBlocks &rBlocks, bool bSaveRelFile,
82 const std::vector<OUString>& rStrings,
83 const std::vector<ww::bytes>& rExtra);
84 static bool HasBareGraphicEnd(SwDoc *pD, SwNode const &rIdx);
85
86 WW8Glossary(const WW8Glossary&) = delete;
88};
89#endif
90
91/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Definition: doc.hxx:197
Marks a node in the document model.
Definition: ndindex.hxx:31
Base class of the Writer document model elements.
Definition: node.hxx:98
FIB - the File Information Block.
Definition: ww8scan.hxx:1106
bool m_fGlsy
Definition: ww8scan.hxx:1149
static sal_uInt32 FindGlossaryFibOffset(const WW8Fib &rFib)
Definition: ww8glsy.cxx:236
WW8GlossaryFib(SvStream &rStrm, sal_uInt8 nWantedVersion, const WW8Fib &rFib)
Definition: ww8glsy.hxx:40
bool IsGlossaryFib() const
Definition: ww8glsy.hxx:43
tools::SvRef< SotStorage > m_xStg
Definition: ww8glsy.hxx:78
WW8Glossary(tools::SvRef< SotStorageStream > &refStrm, sal_uInt8 nVersion, SotStorage *pStg)
Definition: ww8glsy.cxx:37
sal_uInt16 GetNoStrings() const
Definition: ww8glsy.hxx:69
static bool MakeEntries(SwDoc *pD, SwTextBlocks &rBlocks, bool bSaveRelFile, const std::vector< OUString > &rStrings, const std::vector< ww::bytes > &rExtra)
Definition: ww8glsy.cxx:82
tools::SvRef< SotStorageStream > & m_rStrm
Definition: ww8glsy.hxx:77
tools::SvRef< SotStorageStream > m_xTableStream
Definition: ww8glsy.hxx:76
bool Load(SwTextBlocks &rBlocks, bool bSaveRelFile)
Definition: ww8glsy.cxx:190
static bool HasBareGraphicEnd(SwDoc *pD, SwNode const &rIdx)
Definition: ww8glsy.cxx:59
std::shared_ptr< WW8GlossaryFib > m_xGlossary
Definition: ww8glsy.hxx:75
WW8Glossary & operator=(const WW8Glossary &)=delete
WW8Glossary(const WW8Glossary &)=delete
std::shared_ptr< WW8GlossaryFib > & GetFib()
Definition: ww8glsy.hxx:65
sal_uInt16 m_nStrings
Definition: ww8glsy.hxx:79
sal_Int16 nVersion
void SvStream & rStrm
unsigned char sal_uInt8