Home | Trees | Index | Help |
|
---|
Package wx :: Class AcceleratorEntry |
|
object
--+
|
AcceleratorEntry
A class used to define items in an wx.AcceleratorTable
. wxPython
programs can choose to use wx.AcceleratorEntry objects, but using a
list of 3-tuple of integers (flags, keyCode, cmdID) usually works just
as well. See __init__
for of the tuple values.
See Also:
Method Summary | |
---|---|
AcceleratorEntry |
|
__del__(self)
| |
__repr__(self)
| |
int |
Get the AcceleratorEntry's command ID. |
int |
Get the AcceleratorEntry's flags. |
int |
Get the AcceleratorEntry's keycode. |
(Re)set the attributes of a wx.AcceleratorEntry. | |
Inherited from object | |
x.__delattr__('name') <==> del x.name | |
x.__getattribute__('name') <==> x.name | |
Return hash(x)... | |
Return a new object with type S, a subtype of T... | |
helper for pickle | |
helper for pickle | |
x.__setattr__('name', value) <==> x.name = value | |
Return str(x)... |
Method Details |
---|
__init__(self,
flags=0,
keyCode=0,
cmdID=0)
|
GetCommand(self)Get the AcceleratorEntry's command ID.
|
GetFlags(self)Get the AcceleratorEntry's flags.
|
GetKeyCode(self)Get the AcceleratorEntry's keycode.
|
Set(self, flags, keyCode, cmd)(Re)set the attributes of a wx.AcceleratorEntry.
:see
|
Home | Trees | Index | Help |
|
---|
Generated by Epydoc 2.1.20050511.rpd on Sat Jun 16 16:50:16 2007 | http://epydoc.sf.net |