mirror of
https://github.com/cemu-project/idapython.git
synced 2024-11-24 18:16:55 +01:00
21 lines
542 B
Python
21 lines
542 B
Python
|
|
#<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)
|
|
|
|
def Unbind(self):
|
|
return _idaapi.pyidag_unbind(self)
|
|
|
|
#</pycode(py_idaview)>
|