removed @NULL,@true,@false tags from the function prototypes; fixed * and & displacing in the prototypes; changed @param as discussed on wx-dev; use @see instead of @sa; better indentation for @returns,@remarks,@see paragraphs; other misc fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52407 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2008-03-09 12:33:59 +00:00
parent 0aaf0255e4
commit 4cc4bfafe5
256 changed files with 8880 additions and 10701 deletions

View File

@@ -22,7 +22,7 @@ class wxJoystick : public wxObject
{
public:
/**
Constructor. @e joystick may be one of wxJOYSTICK1, wxJOYSTICK2, indicating the
Constructor. @a joystick may be one of wxJOYSTICK1, wxJOYSTICK2, indicating the
joystick
controller of interest.
*/
@@ -38,7 +38,7 @@ public:
Returns the state of the specified joystick button.
@param id
The button id to report, from 0 to GetNumberButtons() - 1
The button id to report, from 0 to GetNumberButtons() - 1
*/
int GetButtonState();
bool GetButtonState(unsigned id);
@@ -101,7 +101,7 @@ public:
Returns the position of the specified joystick axis.
@param axis
The joystick axis to report, from 0 to GetNumberAxes() - 1.
The joystick axis to report, from 0 to GetNumberAxes() - 1.
*/
wxPoint GetPosition();
int GetPosition(unsigned axis);
@@ -200,7 +200,7 @@ public:
/**
Returns @true if the joystick has a point of view control.
*/
#define bool HasPOV() /* implementation is private */
bool HasPOV();
/**
Returns @true if the joystick point-of-view supports discrete values (centered,
@@ -221,29 +221,29 @@ public:
/**
Returns @true if the joystick has a U axis.
*/
#define bool HasU() /* implementation is private */
bool HasU();
/**
Returns @true if the joystick has a V axis.
*/
#define bool HasV() /* implementation is private */
bool HasV();
/**
Returns @true if the joystick has a Z axis.
*/
#define bool HasZ() /* implementation is private */
bool HasZ();
/**
Returns @true if the joystick is functioning.
*/
#define bool IsOk() /* implementation is private */
bool IsOk();
/**
Releases the capture set by @b SetCapture.
@returns @true if the capture release succeeded.
@sa SetCapture(), wxJoystickEvent
@see SetCapture(), wxJoystickEvent
*/
bool ReleaseCapture();
@@ -251,16 +251,15 @@ public:
Sets the capture to direct joystick events to @e win.
@param win
The window that will receive joystick events.
The window that will receive joystick events.
@param pollingFreq
If zero, movement events are sent when above the
threshold. If greater than zero, events are received every pollingFreq
If zero, movement events are sent when above the
threshold. If greater than zero, events are received every pollingFreq
milliseconds.
@returns @true if the capture succeeded.
@sa ReleaseCapture(), wxJoystickEvent
@see ReleaseCapture(), wxJoystickEvent
*/
bool SetCapture(wxWindow* win, int pollingFreq = 0);