summaryrefslogtreecommitdiff
path: root/solenv/gdb/libreoffice/writerfilter.py
blob: 5b653217e239bff2f8b76b814e947979194bedf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
#
# This file is part of the LibreOffice project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#

from libreoffice.util import printing

class OOXMLPropertySetPrinter(object):
    '''Prints writerfilter::ooxml::OOXMLPropertySetImpl'''

    def __init__(self, typename, value):
        self.typename = typename
        self.value = value

    def to_string(self):
        return "%s" % (self.typename)

    def children(self):
        children = [ ( 'properties', self.value['mProperties'] ) ]
        return children.__iter__()

class OOXMLPropertyPrinter(object):
    '''Prints writerfilter::ooxml::OOXMLPropertyImpl'''

    def __init__(self, typename, value):
        self.typename = typename
        self.value = value

    def to_string(self):
        return "%s" % (self.typename)

    def children(self):
        children = [ ( 'id', self.value['mId'] ),
                     ( 'type', self.value['meType'] ),
                     ( 'value', self.value['mpValue'] ) ]
        return children.__iter__()

class OOXMLPropertySetValuePrinter(object):
    '''Prints writerfilter::ooxml::OOXMLPropertySetValue'''

    def __init__(self, typename, value):
        self.typename = typename
        self.value = value

    def to_string(self):
        return "%s" % (self.typename)

class OOXMLStringValuePrinter(object):
    '''Prints writerfilter::ooxml::OOXMLStringValue'''

    def __init__(self, typename, value):
        self.value = value

    def to_string(self):
        return "%s" % (self.value['mStr'])

class OOXMLIntegerValuePrinter(object):
    '''Prints writerfilter::ooxml::OOXMLIntegerValue'''

    def __init__(self, typename, value):
        self.value = value

    def to_string(self):
        return "%d" % (self.value['mnValue'])

printer = None

def build_pretty_printers():
    global printer

    printer = printing.Printer("libreoffice/writerfilter")
    printer.add('writerfilter::ooxml::OOXMLPropertyImpl', OOXMLPropertyPrinter)
    printer.add('writerfilter::ooxml::OOXMLPropertySetImpl', OOXMLPropertySetPrinter)
    printer.add('writerfilter::ooxml::OOXMLPropertySetValue', OOXMLPropertySetValuePrinter)
    printer.add('writerfilter::ooxml::OOXMLStringValue', OOXMLStringValuePrinter)
    printer.add('writerfilter::ooxml::OOXMLIntegerValue', OOXMLIntegerValuePrinter)
    printer.add('writerfilter::ooxml::OOXMLHexValue', OOXMLIntegerValuePrinter)

def register_pretty_printers(obj):
    printing.register_pretty_printer(printer, obj)

build_pretty_printers()

# vim:set shiftwidth=4 softtabstop=4 expandtab: