Method
__init__
(self, title, items, flags=0, width=None, height=None, embedded=False, modal=False)
Source from the content-addressed store, hash-verified
| 1132 | # Search position chooser |
| 1133 | class SearchResultChooser(idaapi.Choose2): |
| 1134 | def __init__(self, title, items, flags=0, width=None, height=None, embedded=False, modal=False): |
| 1135 | Choose2.__init__( |
| 1136 | self, |
| 1137 | title, |
| 1138 | [["Address", idaapi.Choose2.CHCOL_HEX|40]], |
| 1139 | flags = flags, |
| 1140 | width = width, |
| 1141 | height = height, |
| 1142 | embedded = embedded) |
| 1143 | self.n = 0 |
| 1144 | self.items = items |
| 1145 | self.selcount = 0 |
| 1146 | self.modal = modal |
| 1147 | |
| 1148 | def OnClose(self): |
| 1149 | return |
Callers
nothing calls this directly
Tested by
no test coverage detected