コード例 #1
1
ファイル: selection.py プロジェクト: bitcraft/pyglet
 def fromXML(cls, element, parent):
     """Create the object from the XML element and attach it to the parent.
     """
     kw = loadxml.parseAttributes(element)
     kw['text'] = xml.sax.saxutils.unescape(element.text)
     obj = cls(parent, **kw)
     for child in element.getchildren():
         loadxml.getConstructor(element.tag)(child, obj)
     return obj
コード例 #2
0
 def fromXML(cls, element, parent):
     '''Create the object from the XML element and attach it to the parent.
     '''
     kw = loadxml.parseAttributes(element)
     kw['text'] = xml.sax.saxutils.unescape(element.text)
     obj = cls(parent, **kw)
     for child in element.getchildren():
         loadxml.getConstructor(element.tag)(child, obj)
     return obj
コード例 #3
0
 def fromXML(cls, element, parent):
     '''Create the object from the XML element and attach it to the parent.
     '''
     kw = loadxml.parseAttributes(element)
     items = []
     for child in element.getchildren():
         assert child.tag == 'option'
         text = xml.sax.saxutils.unescape(child.text)
         childkw = loadxml.parseAttributes(child)
         items.append((text, child.attrib.get('id'), childkw))
     return cls(parent, items, **kw)
コード例 #4
0
ファイル: selection.py プロジェクト: bitcraft/pyglet
 def fromXML(cls, element, parent):
     """Create the object from the XML element and attach it to the parent.
     """
     kw = loadxml.parseAttributes(element)
     items = list()
     for child in element.getchildren():
         assert child.tag == 'option'
         text = xml.sax.saxutils.unescape(child.text)
         childkw = loadxml.parseAttributes(child)
         items.append((text, child.attrib.get('id'), childkw))
     return cls(parent, items, **kw)
コード例 #5
0
ファイル: label.py プロジェクト: DatRollingStone/nwidget
 def fromXML(cls, element, parent):
     '''Create the object from the XML element and attach it to the parent.
     '''
     kw = loadxml.parseAttributes(element)
     children = element.getchildren()
     if children:
         text = ''.join(ElementTree.tostring(child) for child in children)
     else:
         text = ''
     text = element.text + text + element.tail
     obj = cls(parent, text, **kw)
     return obj
コード例 #6
0
 def fromXML(cls, element, parent):
     '''Create the object from the XML element and attach it to the parent.
     '''
     kw = loadxml.parseAttributes(element)
     children = element.getchildren()
     if children:
         text = ''.join(ElementTree.tostring(child) for child in children)
     else:
         text = ''
     text = element.text + text + element.tail
     obj = cls(parent, text, **kw)
     return obj
コード例 #7
0
    def fromXML(cls, element, parent):
        '''Create the object from the XML element and attach it to the parent.

        If scrollable then put all children loaded into a container frame.
        '''
        kw = loadxml.parseAttributes(element)
        obj = cls(parent, **kw)
        for child in element.getchildren():
            if obj.scrollable:
                loadxml.getConstructor(child.tag)(child, obj.contents)
            else:
                loadxml.getConstructor(child.tag)(child, obj)
        return obj
コード例 #8
0
ファイル: frame.py プロジェクト: DatRollingStone/nwidget
    def fromXML(cls, element, parent):
        '''Create the object from the XML element and attach it to the parent.

        If scrollable then put all children loaded into a container frame.
        '''
        kw = loadxml.parseAttributes(element)
        obj = cls(parent, **kw)
        for child in element.getchildren():
            if obj.scrollable:
                loadxml.getConstructor(child.tag)(child, obj.contents)
            else:
                loadxml.getConstructor(child.tag)(child, obj)
        return obj
コード例 #9
0
    def fromXML(cls, element, parent):
        '''Create the object from the XML element and attach it to the parent.

        Create tabs for <tab> child tags.
        '''
        kw = loadxml.parseAttributes(element)
        obj = cls(parent, **kw)
        for child in element.getchildren():
            assert child.tag == 'tab'
            kw = loadxml.parseAttributes(child)
            label = kw.pop('label')
            tab = obj.newTab(label, **kw)
            for content in child.getchildren():
                loadxml.getConstructor(content.tag)(content, tab)
        return obj
コード例 #10
0
ファイル: frame.py プロジェクト: DatRollingStone/nwidget
    def fromXML(cls, element, parent):
        '''Create the object from the XML element and attach it to the parent.

        Create tabs for <tab> child tags.
        '''
        kw = loadxml.parseAttributes(element)
        obj = cls(parent, **kw)
        for child in element.getchildren():
            assert child.tag == 'tab'
            kw = loadxml.parseAttributes(child)
            label = kw.pop('label')
            tab = obj.newTab(label, **kw)
            for content in child.getchildren():
                loadxml.getConstructor(content.tag)(content, tab)
        return obj
コード例 #11
0
ファイル: button.py プロジェクト: bitcraft/pyglet
 def fromXML(cls, element, parent):
     """Create the object from the XML element and attach it to the parent.
     """
     kw = loadxml.parseAttributes(element)
     if element.text:
         text = xml.sax.saxutils.unescape(element.text)
     else:
         text = None
     if 'image' in kw:
         kw['text'] = text
         obj = Button(parent, **kw)
     else:
         obj = TextButton(parent, text, **kw)
     for child in element.getchildren():
         loadxml.getConstructor(child.tag)(child, obj)
     return obj
コード例 #12
0
 def fromXML(cls, element, parent):
     """Create the object from the XML element and attach it to the parent.
     """
     kw = loadxml.parseAttributes(element)
     if element.text:
         text = xml.sax.saxutils.unescape(element.text)
     else:
         text = None
     if 'image' in kw:
         kw['text'] = text
         obj = Button(parent, **kw)
     else:
         obj = TextButton(parent, text, **kw)
     for child in element.getchildren():
         loadxml.getConstructor(child.tag)(child, obj)
     return obj
コード例 #13
0
    def fromXML(cls, element, parent):
        '''Create the object from the XML element and attach it to the parent.

        If scrollable then put all children loaded into a container frame.
        '''
        kw = loadxml.parseAttributes(element)
        obj = cls(parent, **kw)
        for child in element.getchildren():
            if child.tag == 'row':
                Row.fromXML(child, obj.contents)
            elif child.tag == 'heading':
                obj.heading = Heading.fromXML(child, obj)
                obj.heading.layout.layout()
            else:
                raise ValueError, 'unexpected tag %r' % child.tag
        obj.contents.layout.layout()
        return obj
コード例 #14
0
ファイル: table.py プロジェクト: DatRollingStone/nwidget
    def fromXML(cls, element, parent):
        '''Create the object from the XML element and attach it to the parent.

        If scrollable then put all children loaded into a container frame.
        '''
        kw = loadxml.parseAttributes(element)
        obj = cls(parent, **kw)
        for child in element.getchildren():
            if child.tag == 'row':
                Row.fromXML(child, obj.contents)
            elif child.tag == 'heading':
                obj.heading = Heading.fromXML(child, obj)
                obj.heading.layout.layout()
            else:
                raise ValueError, 'unexpected tag %r'%child.tag
        obj.contents.layout.layout()
        return obj