Module pywraps :: Class UI_Hooks
[frames] | no frames]

Class UI_Hooks

object --+
         |
        UI_Hooks

Instance Methods
 
hook(self)
Creates an UI hook
 
unhook(self)
Removes the UI hook
 
preprocess(self, name)
IDA ui is about to handle a user command
 
postprocess(self)
An ida ui command has been handled

Inherited from object: __delattr__, __getattribute__, __hash__, __init__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __str__

Properties

Inherited from object: __class__

Method Details

hook(self)

 

Creates an UI hook

Returns:
Boolean true on success

unhook(self)

 

Removes the UI hook

Returns:
Boolean true on success

preprocess(self, name)

 

IDA ui is about to handle a user command

Parameters:
  • name - ui command name (these names can be looked up in ida[tg]ui.cfg)
Returns:
0-ok, nonzero - a plugin has handled the command

postprocess(self)

 

An ida ui command has been handled

Returns:
Ignored