MCPcopy Index your code
hub / github.com/PyQt5/PyQt / __init__

Method __init__

QProgressBar/MetroCircleProgress.py:57–64  ·  view source on GitHub ↗
(self, *args, radius=5, color=QColor(24, 189, 155),
                 backgroundColor=QColor(Qt.transparent), **kwargs)

Source from the content-addressed store, hash-verified

55 BackgroundColor = QColor(Qt.transparent) # 背景颜色
56
57 def __init__(self, *args, radius=5, color=QColor(24, 189, 155),
58 backgroundColor=QColor(Qt.transparent), **kwargs):
59 super(MetroCircleProgress, self).__init__(*args, **kwargs)
60 self.Radius = radius
61 self.Color = color
62 self.BackgroundColor = backgroundColor
63 self._items = []
64 self._initAnimations()
65
66 @pyqtProperty(int)
67 def radius(self) -> int:

Callers

nothing calls this directly

Calls 2

_initAnimationsMethod · 0.95
__init__Method · 0.45

Tested by

no test coverage detected