]>
Commit | Line | Data |
---|---|---|
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 | ||
15 | from Base import Object | |
16 | import Parameters as wx | |
17 | ||
18 | ||
19 | class Joystick(Object): | |
20 | """""" | |
21 | ||
22 | def GetButtonState(self): | |
23 | """""" | |
24 | pass | |
25 | ||
26 | def GetManufacturerId(self): | |
27 | """""" | |
28 | pass | |
29 | ||
30 | def GetMaxAxes(self): | |
31 | """""" | |
32 | pass | |
33 | ||
34 | def GetMaxButtons(self): | |
35 | """""" | |
36 | pass | |
37 | ||
38 | def GetMovementThreshold(self): | |
39 | """""" | |
40 | pass | |
41 | ||
42 | def GetNumberAxes(self): | |
43 | """""" | |
44 | pass | |
45 | ||
46 | def GetNumberButtons(self): | |
47 | """""" | |
48 | pass | |
49 | ||
50 | def GetNumberJoysticks(self): | |
51 | """""" | |
52 | pass | |
53 | ||
54 | def GetPOVCTSPosition(self): | |
55 | """""" | |
56 | pass | |
57 | ||
58 | def GetPOVPosition(self): | |
59 | """""" | |
60 | pass | |
61 | ||
62 | def GetPollingMax(self): | |
63 | """""" | |
64 | pass | |
65 | ||
66 | def GetPollingMin(self): | |
67 | """""" | |
68 | pass | |
69 | ||
70 | def GetPosition(self): | |
71 | """""" | |
72 | pass | |
73 | ||
74 | def GetProductId(self): | |
75 | """""" | |
76 | pass | |
77 | ||
78 | def GetProductName(self): | |
79 | """""" | |
80 | pass | |
81 | ||
82 | def GetRudderMax(self): | |
83 | """""" | |
84 | pass | |
85 | ||
86 | def GetRudderMin(self): | |
87 | """""" | |
88 | pass | |
89 | ||
90 | def GetRudderPosition(self): | |
91 | """""" | |
92 | pass | |
93 | ||
94 | def GetUMax(self): | |
95 | """""" | |
96 | pass | |
97 | ||
98 | def GetUMin(self): | |
99 | """""" | |
100 | pass | |
101 | ||
102 | def GetUPosition(self): | |
103 | """""" | |
104 | pass | |
105 | ||
106 | def GetVMax(self): | |
107 | """""" | |
108 | pass | |
109 | ||
110 | def GetVMin(self): | |
111 | """""" | |
112 | pass | |
113 | ||
114 | def GetVPosition(self): | |
115 | """""" | |
116 | pass | |
117 | ||
118 | def GetXMax(self): | |
119 | """""" | |
120 | pass | |
121 | ||
122 | def GetXMin(self): | |
123 | """""" | |
124 | pass | |
125 | ||
126 | def GetYMax(self): | |
127 | """""" | |
128 | pass | |
129 | ||
130 | def GetYMin(self): | |
131 | """""" | |
132 | pass | |
133 | ||
134 | def GetZMax(self): | |
135 | """""" | |
136 | pass | |
137 | ||
138 | def GetZMin(self): | |
139 | """""" | |
140 | pass | |
141 | ||
142 | def GetZPosition(self): | |
143 | """""" | |
144 | pass | |
145 | ||
146 | def HasPOV(self): | |
147 | """""" | |
148 | pass | |
149 | ||
150 | def HasPOV4Dir(self): | |
151 | """""" | |
152 | pass | |
153 | ||
154 | def HasPOVCTS(self): | |
155 | """""" | |
156 | pass | |
157 | ||
158 | def HasRudder(self): | |
159 | """""" | |
160 | pass | |
161 | ||
162 | def HasU(self): | |
163 | """""" | |
164 | pass | |
165 | ||
166 | def HasV(self): | |
167 | """""" | |
168 | pass | |
169 | ||
170 | def HasZ(self): | |
171 | """""" | |
172 | pass | |
173 | ||
174 | def IsOk(self): | |
175 | """""" | |
176 | pass | |
177 | ||
178 | def ReleaseCapture(self): | |
179 | """""" | |
180 | pass | |
181 | ||
182 | def SetCapture(self): | |
183 | """""" | |
184 | pass | |
185 | ||
186 | def SetMovementThreshold(self): | |
187 | """""" | |
188 | pass | |
189 | ||
190 | def __del__(self): | |
191 | """""" | |
192 | pass | |
193 | ||
194 | def __init__(self): | |
195 | """""" | |
196 | pass | |
197 |