A complete list of events in wxPython can be retrieved using the following code:

import wx

for x in dir(wx):
  if x.startswith('EVT_'):
      print x

(from http://assistedsilicon.blogspot.com/2007/10/what-are-all-wxpython-events.html)

Here is a complete list (taken from wxPython 2.8.7.1):

ListOfEvents (last edited 2010-01-15 09:52:46 by DanielCarrera)