MCPcopy Create free account
hub / github.com/CheckPointSW/Karta / messageBox

Method messageBox

src/disassembler/IDA/ida_api.py:662–673  ·  view source on GitHub ↗

Pop a MessageBox to the user, with the given text. Blocks until closed. Note: This function contains some of Karta's UI logic Args: text (str): text to be written to the UI message box

(self, text)

Source from the content-addressed store, hash-verified

660
661 # Overridden base function
662 def messageBox(self, text):
663 """Pop a MessageBox to the user, with the given text. Blocks until closed.
664
665 Note:
666 This function contains some of Karta's UI logic
667
668 Args:
669 text (str): text to be written to the UI message box
670 """
671 m = MessageBox(text)
672 m.Compile()
673 m.Execute()
674
675 # Overridden base function
676 def configForm(self):

Callers 2

pluginMainFunction · 0.45
identifyLibrariesFunction · 0.45

Calls 1

MessageBoxClass · 0.85

Tested by

no test coverage detected