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

Method __init__

QtChart/ToolTip2.py:117–122  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

115class GraphicsProxyWidget(QGraphicsProxyWidget):
116
117 def __init__(self, *args, **kwargs):
118 super(GraphicsProxyWidget, self).__init__(*args, **kwargs)
119 self.setZValue(999)
120 self.tipWidget = ToolTipWidget()
121 self.setWidget(self.tipWidget)
122 self.hide()
123
124 def show(self, title, points, pos):
125 self.setGeometry(QRectF(pos, self.size()))

Callers

nothing calls this directly

Calls 3

setWidgetMethod · 0.80
ToolTipWidgetClass · 0.70
__init__Method · 0.45

Tested by

no test coverage detected