]> git.saurik.com Git - wxWidgets.git/blame - wxPython/wx/py/wxd/Accelerators.py
doc tweaks, typo fixed, etc.
[wxWidgets.git] / wxPython / wx / py / wxd / Accelerators.py
CommitLineData
1e4a197e
RD
1"""Decorator classes for documentation and shell scripting.
2"""
3
4__author__ = "Patrick K. O'Brien <pobrien@orbtech.com>"
5__cvsid__ = "$Id$"
6__revision__ = "$Revision$"[11:-2]
7
8
9# These are not the real wxPython classes. These are Python versions
10# for documentation purposes. They are also used to apply docstrings
11# to the real wxPython classes, which are SWIG-generated wrappers for
12# C-language classes.
13
14
15from Base import Object
16import Parameters as wx
17
18
19class AcceleratorEntry:
20 """"""
21
22 def __init__(self):
23 """"""
24 pass
25
26 def __del__(self):
27 """"""
28 pass
29
30 def GetCommand(self):
31 """"""
32 pass
33
34 def GetFlags(self):
35 """"""
36 pass
37
38 def GetKeyCode(self):
39 """"""
40 pass
41
42 def Set(self):
43 """"""
44 pass
45
46
47class AcceleratorTable(Object):
48 """"""
49
50 def __init__(self):
51 """"""
52 pass
53
54 def __del__(self):
55 """"""
56 pass
57
58