~ubuntu-branches/ubuntu/saucy/libwpd/saucy

« back to all changes in this revision

Viewing changes to src/lib/WP6EOLGroup.h

  • Committer: Package Import Robot
  • Author(s): Rene Engelhard
  • Date: 2011-11-29 23:31:13 UTC
  • mfrom: (1.2.5)
  • Revision ID: package-import@ubuntu.com-20111129233113-xdtwca9h0y6wdxst
Tags: 0.9.4-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
1
2
/* libwpd
2
3
 * Copyright (C) 2002 William Lachance (wrlach@gmail.com)
3
4
 * Copyright (C) 2002 Marc Maurer (uwog@uwog.net)
4
 
 *  
 
5
 *
5
6
 * This library is free software; you can redistribute it and/or
6
7
 * modify it under the terms of the GNU Lesser General Public
7
8
 * License as published by the Free Software Foundation; either
19
20
 * For further information visit http://libwpd.sourceforge.net
20
21
 */
21
22
 
22
 
/* "This product is not manufactured, approved, or supported by 
 
23
/* "This product is not manufactured, approved, or supported by
23
24
 * Corel Corporation or Corel Corporation Limited."
24
25
 */
25
26
 
31
32
class WP6EOLGroup : public WP6VariableLengthGroup
32
33
{
33
34
public:
34
 
        WP6EOLGroup(WPXInputStream *input, WPXEncryption *encryption);  
 
35
        WP6EOLGroup(WPXInputStream *input, WPXEncryption *encryption);
35
36
        ~WP6EOLGroup();
36
37
        void _readContents(WPXInputStream *input, WPXEncryption *encryption);
37
38
        void parse(WP6Listener *listener);
38
39
 
39
 
 private:
40
 
        WP6EOLGroup(const WP6EOLGroup&);
41
 
        WP6EOLGroup& operator=(const WP6EOLGroup&);
 
40
private:
 
41
        WP6EOLGroup(const WP6EOLGroup &);
 
42
        WP6EOLGroup &operator=(const WP6EOLGroup &);
42
43
        uint8_t m_colSpan, m_rowSpan;
43
44
        bool m_boundFromAbove;
44
45
 
45
 
        bool m_useCellAttributes, m_useCellJustification;
 
46
        bool m_useCellAttributes, m_useCellJustification;
46
47
        bool m_ignoreInCalculations, m_cellIsLocked;
47
48
        uint32_t m_cellAttributes;
48
49
        uint8_t m_cellJustification;
49
50
        WPXVerticalAlignment m_cellVerticalAlign;
50
 
 
 
51
 
51
52
        // cell forground and background color
52
 
        RGBSColor * m_cellFgColor;
53
 
        RGBSColor * m_cellBgColor;
54
 
        RGBSColor * m_cellBorderColor;
55
 
 
 
53
        RGBSColor *m_cellFgColor;
 
54
        RGBSColor *m_cellBgColor;
 
55
        RGBSColor *m_cellBorderColor;
 
56
 
56
57
        uint8_t m_cellBorders;
57
58
        bool m_isHeaderRow;
58
59
        bool m_isMinimumHeight;
62
63
};
63
64
 
64
65
#endif /* WP6EOLGROUP_H */
 
66
/* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */