cemu-idapython/pywraps/py_idaview.py

21 lines
542 B
Python
Raw Normal View History

#<pycode(py_idaview)>
class IDAViewWrapper(CustomIDAMemo):
"""This class wraps access to native IDA views. See kernwin.hpp file"""
def __init__(self, title):
"""
Constructs the IDAViewWrapper object around the view
whose title is 'title'.
@param title: The title of the existing IDA view. E.g., 'IDA View-A'
"""
self._title = title
def Bind(self):
return _idaapi.pyidag_bind(self)
2015-02-08 03:59:53 +01:00
def Unbind(self):
return _idaapi.pyidag_unbind(self)
#</pycode(py_idaview)>