BeagleWksText.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; c-default-style: "k&r"; indent-tabs-mode: nil; tab-width: 2; c-basic-offset: 2 -*- */
2
3/* libmwaw
4* Version: MPL 2.0 / LGPLv2+
5*
6* The contents of this file are subject to the Mozilla Public License Version
7* 2.0 (the "License"); you may not use this file except in compliance with
8* the License or as specified alternatively below. You may obtain a copy of
9* the License at http://www.mozilla.org/MPL/
10*
11* Software distributed under the License is distributed on an "AS IS" basis,
12* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13* for the specific language governing rights and limitations under the
14* License.
15*
16* Major Contributor(s):
17* Copyright (C) 2002 William Lachance (wrlach@gmail.com)
18* Copyright (C) 2002,2004 Marc Maurer (uwog@uwog.net)
19* Copyright (C) 2004-2006 Fridrich Strba (fridrich.strba@bluewin.ch)
20* Copyright (C) 2006, 2007 Andrew Ziem
21* Copyright (C) 2011, 2012 Alonso Laurent (alonso@loria.fr)
22*
23*
24* All Rights Reserved.
25*
26* For minor contributions see the git repository.
27*
28* Alternatively, the contents of this file may be used under the terms of
29* the GNU Lesser General Public License Version 2 or later (the "LGPLv2+"),
30* in which case the provisions of the LGPLv2+ are applicable
31* instead of those above.
32*/
33
34/*
35 * Text parser to BeagleWorks document
36 *
37 */
38#ifndef BEAGLE_WKS_TEXT
39# define BEAGLE_WKS_TEXT
40
41#include "libmwaw_internal.hxx"
42#include "MWAWDebug.hxx"
43
45{
46struct Font;
47struct Section;
48struct State;
49
50class SubDocument;
51}
52
53class BeagleWksParser;
55
62{
63 friend class BeagleWksParser;
65public:
67 explicit BeagleWksText(BeagleWksParser &parser);
69 virtual ~BeagleWksText();
70
72 int version() const;
73
75 int numPages() const;
76
77protected:
79 bool createZones(MWAWEntry &entry);
81 bool sendMainText();
83 void flushExtra();
84
85 //
86 // intermediate level
87 //
88
90 void countPages();
92 std::shared_ptr<MWAWSubDocument> getHeader(int page, int &numSimillar);
94 std::shared_ptr<MWAWSubDocument> getFooter(int page, int &numSimillar);
96 void updatePageSpanList(std::vector<MWAWPageSpan> &spanList);
98 bool sendText(MWAWEntry const &entry);
100 bool sendHF(int hfId, int sectId);
104 bool readFont(BeagleWksTextInternal::Font &font, long endPos);
106 bool readParagraph(MWAWParagraph &para, long endPos, bool inSection=false);
108 bool readSection(MWAWEntry const &entry, BeagleWksTextInternal::Section &section);
109private:
110 BeagleWksText(BeagleWksText const &orig) = delete;
111 BeagleWksText &operator=(BeagleWksText const &orig) = delete;
112
113protected:
114 //
115 // data
116 //
119
121 std::shared_ptr<BeagleWksTextInternal::State> m_state;
123 std::shared_ptr<BeagleWksStructManager> m_structureManager;
124
127};
128#endif
129// vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab:
the main class to read a BeagleWorks file
Definition: BeagleWksParser.hxx:60
the main class to read the structure shared between different BeagleWorks files
Definition: BeagleWksStructManager.hxx:57
Internal: the subdocument of a BeagleWksText.
Definition: BeagleWksText.cxx:298
the main class to read the text part of BeagleWorks Text file
Definition: BeagleWksText.hxx:62
std::shared_ptr< MWAWSubDocument > getHeader(int page, int &numSimillar)
return an header subdocument
Definition: BeagleWksText.cxx:393
BeagleWksParser * m_mainParser
the main parser;
Definition: BeagleWksText.hxx:126
int version() const
returns the file version
Definition: BeagleWksText.cxx:372
MWAWParserStatePtr m_parserState
the parser state
Definition: BeagleWksText.hxx:118
virtual ~BeagleWksText()
destructor
Definition: BeagleWksText.cxx:368
std::shared_ptr< BeagleWksStructManager > m_structureManager
the structure manager
Definition: BeagleWksText.hxx:123
MWAWFont getFont(BeagleWksTextInternal::Font const &ft) const
returns the font
Definition: BeagleWksText.cxx:386
void flushExtra()
sends the data which have not yet been sent to the listener
Definition: BeagleWksText.cxx:648
void updatePageSpanList(std::vector< MWAWPageSpan > &spanList)
update the page span list
bool readFont(BeagleWksTextInternal::Font &font, long endPos)
try to read a font properties
Definition: BeagleWksText.cxx:909
bool sendMainText()
send a main zone
Definition: BeagleWksText.cxx:623
BeagleWksText(BeagleWksText const &orig)=delete
BeagleWksText & operator=(BeagleWksText const &orig)=delete
bool readParagraph(MWAWParagraph &para, long endPos, bool inSection=false)
try to read a paragraph knowing end pos
Definition: BeagleWksText.cxx:944
bool readSection(MWAWEntry const &entry, BeagleWksTextInternal::Section &section)
try to read a section
Definition: BeagleWksText.cxx:1049
bool sendText(MWAWEntry const &entry)
try to send a text zone
Definition: BeagleWksText.cxx:668
std::shared_ptr< MWAWSubDocument > getFooter(int page, int &numSimillar)
return a footer subdocument
Definition: BeagleWksText.cxx:420
std::shared_ptr< BeagleWksTextInternal::State > m_state
the state
Definition: BeagleWksText.hxx:121
bool sendHF(int hfId, int sectId)
try to send a header/footer id
Definition: BeagleWksText.cxx:628
int numPages() const
returns the number of pages
Definition: BeagleWksText.cxx:379
bool createZones(MWAWEntry &entry)
try to create the text zones
Definition: BeagleWksText.cxx:454
void countPages()
update the number of pages and the number of page by section
Definition: BeagleWksText.cxx:547
basic class to store an entry in a file This contained :
Definition: MWAWEntry.hxx:47
Class to store font.
Definition: MWAWFont.hxx:44
class to store the paragraph properties
Definition: MWAWParagraph.hxx:85
std::shared_ptr< MWAWParserState > MWAWParserStatePtr
a smart pointer of MWAWParserState
Definition: libmwaw_internal.hxx:557
Internal: the structures of a BeagleWksText.
Definition: BeagleWksText.cxx:61
Internal: a class used to store the font data of a BeagleWksText.
Definition: BeagleWksText.cxx:64
Internal: a class used to store the section data of a BeagleWksText.
Definition: BeagleWksText.cxx:178

Generated on Thu Jan 19 2023 00:00:00 for libmwaw by doxygen 1.9.6