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

« back to all changes in this revision

Viewing changes to src/lib/WP3IndentGroup.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Rene Engelhard
  • Date: 2008-02-12 15:22:12 UTC
  • mfrom: (1.2.1 upstream) (10.1.5 gutsy)
  • Revision ID: james.westby@ubuntu.com-20080212152212-beh3l4ahg9b4o3lj
Tags: 0.8.14-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* libwpd
 
2
 * Copyright (C) 2007 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
 * MERCHANINDENTILITY 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 "WP3IndentGroup.h"
 
26
#include "WP3FileStructure.h"
 
27
#include "WP3Listener.h"
 
28
#include "libwpd_internal.h"
 
29
 
 
30
WP3IndentGroup::WP3IndentGroup(WPXInputStream *input, uint8_t groupID) :
 
31
        WP3FixedLengthGroup(groupID),
 
32
        m_subGroup(0),
 
33
        m_offset(0.0f)
 
34
{
 
35
        _read(input);
 
36
}
 
37
 
 
38
void WP3IndentGroup::_readContents(WPXInputStream *input)
 
39
{
 
40
        m_subGroup = readU8(input);
 
41
        m_offset = fixedPointToFloat(readU32(input, true));
 
42
}
 
43
 
 
44
void WP3IndentGroup::parse(WP3Listener *listener)
 
45
{
 
46
        switch (m_subGroup)
 
47
        {
 
48
        case WP3_INDENT_GROUP_LEFT_INDENT:
 
49
                listener->leftIndent(m_offset);
 
50
                break;
 
51
        case WP3_INDENT_GROUP_LEFT_RIGHT_INDENT:
 
52
                listener->leftRightIndent(m_offset);
 
53
                break;
 
54
        default:
 
55
                break;
 
56
        }
 
57
}