def __init__(self, outer, **kwargs):
     self.outer = outer
     Applier.__init__(self, **kwargs)
Esempio n. 2
0
 def __init__(self, **kwargs):
     # do not initialise element, here, to None, whatever you do.
     # there are circumstances where UIObject.__init__ is the last
     # thing that is done in derived classes, where self.setElement
     # will _already_ have been called.
     Applier.__init__(self, **kwargs)
Esempio n. 3
0
 def _getProps(self):
     return Applier._getProps() + self._props
Esempio n. 4
0
 def __init__(self, **kwargs):
     # do not initialise element, here, to None, whatever you do.
     # there are circumstances where UIObject.__init__ is the last
     # thing that is done in derived classes, where self.setElement
     # will _already_ have been called.
     Applier.__init__(self, **kwargs)
Esempio n. 5
0
 def _getProps(self):
     return Applier._getProps() + self._props
Esempio n. 6
0
 def __init__(self, outer, **kwargs):
     self.outer = outer
     Applier.__init__(self, **kwargs)