Beispiel #1
0
 def _repr_attrs(self):
     attrs = dict(self.__super._repr_attrs(),
                  align=self.align,
                  width=self.width,
                  left=self.left,
                  right=self.right,
                  min_width=self.min_width)
     return remove_defaults(attrs, Padding.__init__)
Beispiel #2
0
 def _repr_attrs(self):
     attrs = dict(self.__super._repr_attrs(),
         align=self.align,
         width=self.width,
         left=self.left,
         right=self.right,
         min_width=self.min_width)
     return remove_defaults(attrs, Padding.__init__)
Beispiel #3
0
 def _repr_attrs(self):
     attrs = dict(self.__super._repr_attrs(),
         edit_pos=self._edit_pos,
         caption=self._caption)
     return remove_defaults(attrs, Edit.__init__)
Beispiel #4
0
 def _repr_attrs(self):
     attrs = dict(self.__super._repr_attrs(),
         align=self._align_mode, 
         wrap=self._wrap_mode)
     return remove_defaults(attrs, Text.__init__)
Beispiel #5
0
 def _repr_attrs(self):
     attrs = dict(self.__super._repr_attrs(),
                  edit_pos=self._edit_pos,
                  caption=self._caption)
     return remove_defaults(attrs, Edit.__init__)
Beispiel #6
0
 def _repr_attrs(self):
     attrs = dict(self.__super._repr_attrs(),
                  align=self._align_mode,
                  wrap=self._wrap_mode)
     return remove_defaults(attrs, Text.__init__)