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

Function show_message_box

python/interaction.py:1422–1433  ·  view source on GitHub ↗

``show_message_box`` Displays a configurable message box in the UI, or prompts on the console as appropriate :param str title: Text title for the message box. :param str text: Text for the main body of the message box. :param MessageBoxButtonSet buttons: One of :py:class:`MessageBoxButtonSet`

(title, text, buttons=MessageBoxButtonSet.OKButtonSet, icon=MessageBoxIcon.InformationIcon)

Source from the content-addressed store, hash-verified

1420
1421
1422def show_message_box(title, text, buttons=MessageBoxButtonSet.OKButtonSet, icon=MessageBoxIcon.InformationIcon):
1423 """
1424 ``show_message_box`` Displays a configurable message box in the UI, or prompts on the console as appropriate
1425
1426 :param str title: Text title for the message box.
1427 :param str text: Text for the main body of the message box.
1428 :param MessageBoxButtonSet buttons: One of :py:class:`MessageBoxButtonSet`
1429 :param MessageBoxIcon icon: One of :py:class:`MessageBoxIcon`
1430 :return: Which button was selected
1431 :rtype: MessageBoxButtonResult
1432 """
1433 return core.BNShowMessageBox(title, text, buttons, icon)
1434
1435
1436def open_url(url):

Callers 3

save_svgFunction · 0.90
solveFunction · 0.90
load_from_fileMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected