comparison src/tools/common/template_xmlui.py @ 2419:c38c54c47e16

frontends (xmlui): added an attribute to ignore some widgets (and their label) in create
author Goffi <goffi@goffi.org>
date Sun, 05 Nov 2017 13:53:28 +0100
parents 8b37a62336c3
children 49884c579266
comparison
equal deleted inserted replaced
2418:69f979adb1d7 2419:c38c54c47e16
143 return iter(self.children) 143 return iter(self.children)
144 144
145 def _xmluiAppend(self, widget): 145 def _xmluiAppend(self, widget):
146 self.children.append(widget) 146 self.children.append(widget)
147 147
148 def _xmluiRemove(self, widget):
149 self.children.remove(widget)
150
148 151
149 class VerticalContainer(xmlui.VerticalContainer, Container): 152 class VerticalContainer(xmlui.VerticalContainer, Container):
150 type = u'vertical' 153 type = u'vertical'
151 154
152 155