MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / show_tooltip_popup

Function show_tooltip_popup

python/examples/custom_tooltip.py:40–44  ·  view source on GitHub ↗
(parent, pos)

Source from the content-addressed store, hash-verified

38 super().focusOutEvent(event)
39
40def show_tooltip_popup(parent, pos):
41 tooltip_popup = TooltipPopup(parent)
42 tooltip_popup.move(pos)
43 tooltip_popup.show()
44 parent.tooltip_popup = tooltip_popup # Keep a reference to the tooltip
45
46# Assuming this is within the context of an existing PySide6 application
47ctx = binaryninjaui.UIContext.allContexts()[0]

Callers 1

custom_tooltip.pyFile · 0.85

Calls 2

TooltipPopupClass · 0.85
showMethod · 0.80

Tested by

no test coverage detected