def __init__(self, brown_object, color, thickness, pattern,
join_style, cap_style):
"""
Args:
brown_object (Pen): The object this interface belongs to.
color (Color):
thickness (Unit):
pattern (PenPattern):
join_style (PenJoinStyle):
cap_style (PenCapStyle):
"""
super().__init__(brown_object)
self.qt_object = QtGui.QPen()
self.thickness = thickness
self.color = color
self.pattern = pattern
self.join_style = join_style
self.cap_style = cap_style
######## PUBLIC PROPERTIES ########
评论列表
文章目录