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__)
def _repr_attrs(self): attrs = dict(self.__super._repr_attrs(), valign=simplify_valign(self.valign_type, self.valign_amount), height=simplify_height(self.height_type, self.height_amount), top=self.top, bottom=self.bottom, min_height=self.min_height) return remove_defaults(attrs, Filler.__init__)
def _repr_attrs(self): attrs = dict(self.__super._repr_attrs(), edit_pos=self._edit_pos) return remove_defaults(attrs, Edit.__init__)
def _repr_attrs(self): attrs = dict(self.__super._repr_attrs(), align=self._align_mode, wrap=self._wrap_mode) return remove_defaults(attrs, Text.__init__)