~ubuntu-branches/ubuntu/trusty/libwpd/trusty

« back to all changes in this revision

Viewing changes to src/lib/WP3HeaderFooterGroup.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Rene Engelhard
  • Date: 2006-06-11 23:56:17 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20060611235617-ce504k38fuqe8twa
Tags: 0.8.5-2
* dpatch'ize 
* add patch from upstream fixing WP5 font handling regression

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* libwpd
 
2
 * Copyright (C) 2006 Fridrich Strba (fridrich.strba@bluewin.ch)
 
3
 *  
 
4
 * This library is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU Lesser General Public
 
6
 * License as published by the Free Software Foundation; either
 
7
 * version 2 of the License, or (at your option) any later version.
 
8
 *
 
9
 * This library is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
 * Library General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU Library General Public
 
15
 * License along with this library; if not, write to the Free Software
 
16
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 
17
 *
 
18
 * For further information visit http://libwpd.sourceforge.net
 
19
 */
 
20
 
 
21
/* "This product is not manufactured, approved, or supported by 
 
22
 * Corel Corporation or Corel Corporation Limited."
 
23
 */
 
24
 
 
25
#include "WP3HeaderFooterGroup.h"
 
26
#include "libwpd_internal.h"
 
27
#include "WP3FileStructure.h"
 
28
 
 
29
WP3HeaderFooterGroup::WP3HeaderFooterGroup(WPXInputStream *input) :
 
30
        WP3VariableLengthGroup(),
 
31
        m_subDocument(NULL)
 
32
{
 
33
        _read(input);
 
34
}
 
35
 
 
36
WP3HeaderFooterGroup::~WP3HeaderFooterGroup()
 
37
{
 
38
}
 
39
 
 
40
void WP3HeaderFooterGroup::_readContents(WPXInputStream *input)
 
41
{
 
42
        if (getSubGroup() <= WP3_HEADER_FOOTER_GROUP_FOOTER_B)  // omit watermarks for the while
 
43
        {
 
44
                input->seek(14, WPX_SEEK_CUR);
 
45
                uint16_t tmpSubDocumentLength = readU16(input, true);  // read first the old subdocument length
 
46
                input->seek(tmpSubDocumentLength, WPX_SEEK_CUR);  // and skip the old subdocument
 
47
                m_definition = readU8(input);
 
48
                input->seek(4, WPX_SEEK_CUR);
 
49
                tmpSubDocumentLength = readU16(input, true);
 
50
                m_subDocument = new WP3SubDocument(input, tmpSubDocumentLength);
 
51
        }
 
52
}
 
53
 
 
54
void WP3HeaderFooterGroup::parse(WP3Listener *listener)
 
55
{
 
56
        WPD_DEBUG_MSG(("WordPerfect: handling a HeaderFooter group\n"));
 
57
 
 
58
        if (getSubGroup() <= WP3_HEADER_FOOTER_GROUP_FOOTER_B)  // omit watermarks for the while
 
59
        {
 
60
                listener->headerFooterGroup(getSubGroup(), m_definition, m_subDocument);
 
61
        }
 
62
}