cemu-idapython/examples/ex_custview.py

187 lines
5.3 KiB
Python
Raw Normal View History

2010-03-22 15:19:43 +01:00
# -----------------------------------------------------------------------
# This is an example illustrating how to use customview in Python
# (c) Hex-Rays
#
import idaapi
import idc
from idaapi import simplecustviewer_t
#<pycode(py_custviewerex1)>
2010-03-22 15:19:43 +01:00
# -----------------------------------------------------------------------
class mycv_t(simplecustviewer_t):
2010-03-22 15:19:43 +01:00
def Create(self, sn=None):
# Form the title
title = "Simple custom view test"
if sn:
title += " %d" % sn
2010-06-28 14:36:40 +02:00
# Create the customviewer
if not simplecustviewer_t.Create(self, title):
2010-03-22 15:19:43 +01:00
return False
self.menu_hello = self.AddPopupMenu("Hello")
self.menu_world = self.AddPopupMenu("World")
2010-03-22 15:19:43 +01:00
for i in xrange(0, 100):
self.AddLine("Line %d" % i)
2010-06-28 14:36:40 +02:00
# self.Jump(0)
2010-03-22 15:19:43 +01:00
return True
def OnClick(self, shift):
"""
User clicked in the view
@param shift: Shift flag
@return Boolean. True if you handled the event
"""
print "OnClick, shift=%d" % shift
return True
def OnDblClick(self, shift):
"""
User dbl-clicked in the view
@param shift: Shift flag
@return Boolean. True if you handled the event
"""
word = self.GetCurrentWord()
if not word: word = "<None>"
print "OnDblClick, shift=%d, current word=%s" % (shift, word)
2010-03-22 15:19:43 +01:00
return True
def OnCursorPosChanged(self):
"""
Cursor position changed.
@return Nothing
"""
print "OnCurposChanged"
def OnClose(self):
"""
The view is closing. Use this event to cleanup.
@return Nothing
"""
print "OnClose " + self.title
def OnKeydown(self, vkey, shift):
"""
User pressed a key
@param vkey: Virtual key code
@param shift: Shift flag
@return Boolean. True if you handled the event
"""
print "OnKeydown, vk=%d shift=%d" % (vkey, shift)
# ESCAPE?
if vkey == 27:
self.Close()
2010-06-28 14:36:40 +02:00
# VK_DELETE
2010-03-22 15:19:43 +01:00
elif vkey == 46:
n = self.GetLineNo()
if n is not None:
self.DelLine(n)
self.Refresh()
print "Deleted line %d" % n
2010-03-22 15:19:43 +01:00
# Goto?
elif vkey == ord('G'):
n = self.GetLineNo()
if n is not None:
v = idc.AskLong(self.GetLineNo(), "Where to go?")
if v:
self.Jump(v, 0, 5)
2010-03-22 15:19:43 +01:00
elif vkey == ord('R'):
print "refreshing...."
self.Refresh()
elif vkey == ord('C'):
print "refreshing current line..."
self.RefreshCurrent()
elif vkey == ord('A'):
s = idc.AskStr("NewLine%d" % self.Count(), "Append new line")
self.AddLine(s)
self.Refresh()
elif vkey == ord('X'):
print "Clearing all lines"
self.ClearLines()
self.Refresh()
elif vkey == ord('I'):
n = self.GetLineNo()
s = idc.AskStr("InsertedLine%d" % n, "Insert new line")
self.InsertLine(n, s)
self.Refresh()
elif vkey == ord('E'):
l = self.GetCurrentLine(notags=1)
if not l:
return False
n = self.GetLineNo()
print "curline=<%s>" % l
l = l + idaapi.COLSTR("*", idaapi.SCOLOR_VOIDOP)
self.EditLine(n, l)
self.RefreshCurrent()
print "Edited line %d" % n
else:
return False
return True
def OnPopup(self):
"""
Context menu popup is about to be shown. Create items dynamically if you wish
@return Boolean. True if you handled the event
"""
print "OnPopup"
def OnHint(self, lineno):
"""
Hint requested for the given line number.
@param lineno: The line number (zero based)
@return:
2010-06-28 14:36:40 +02:00
- tuple(number of important lines, hint string)
2010-03-22 15:19:43 +01:00
- None: if no hint available
"""
2010-06-28 14:36:40 +02:00
return (1, "OnHint, line=%d" % lineno)
2010-03-22 15:19:43 +01:00
def OnPopupMenu(self, menu_id):
"""
A context (or popup) menu item was executed.
@param menu_id: ID previously registered with AddPopupMenu()
2010-03-22 15:19:43 +01:00
@return: Boolean
"""
print "OnPopupMenu, menu_id=%d" % menu_id
if menu_id == self.menu_hello:
print "Hello"
elif menu_id == self.menu_world:
print "World"
else:
# Unhandled
return False
2010-03-22 15:19:43 +01:00
return True
# -----------------------------------------------------------------------
try:
# created already?
mycv
print "Already created, will close it..."
mycv.Close()
del mycv
except:
pass
def show_win():
x = mycv_t()
if not x.Create():
print "Failed to create!"
return None
x.Show()
return x
mycv = show_win()
if not mycv:
del mycv
def make_many(n):
L = []
2010-03-22 15:19:43 +01:00
for i in xrange(1, n+1):
v = mycv_t()
if not v.Create(i):
2010-03-22 15:19:43 +01:00
break
v.Show()
L.append(v)
return L
2010-03-22 15:19:43 +01:00
#</pycode(py_custviewerex1)>