X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d4624460ec905603942263255a2e5d1c98b066ff..c29c95fe24973b94fd724db767193171ca7c513d:/interface/wx/accel.h?ds=sidebyside
diff --git a/interface/wx/accel.h b/interface/wx/accel.h
index e7d60861a5..974731fab6 100644
--- a/interface/wx/accel.h
+++ b/interface/wx/accel.h
@@ -3,7 +3,7 @@
// Purpose: interface of wxAccelerator* classes
// Author: wxWidgets team
// RCS-ID: $Id$
-// Licence: wxWindows license
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
@@ -34,7 +34,7 @@ enum wxAcceleratorEntryFlags
(see wxAcceleratorTable).
@library{wxcore}
- @category{misc}
+ @category{data}
@see wxAcceleratorTable, wxWindow::SetAcceleratorTable
*/
@@ -103,10 +103,11 @@ public:
bool IsOk() const;
/**
- Returns a wxString for this accelerator.
+ Returns a textual representation of this accelerator.
- This function formats it using the @c "flags-keycode" format
- where @c flags maybe a hyphen-separed list of @c "shift|alt|ctrl".
+ The returned string is of the form [Alt+][Ctrl+][Shift+]Key
+ where the modifier keys are present only if the corresponding flag is
+ set.
*/
wxString ToString() const;
@@ -114,7 +115,14 @@ public:
Parses the given string and sets the accelerator accordingly.
@param str
- Should be a string in the form "flags-keycode"
+ This string may be either in the same format as returned by
+ ToString(), i.e. contain the accelerator itself only, or have the
+ format of a full menu item text with i.e. Label TAB
+ Accelerator
. In the latter case, the part of the string
+ before the TAB is ignored. Notice that the latter format is only
+ supported for the compatibility with the previous wxWidgets
+ versions and the new code should pass only the accelerator string
+ itself to this function.
@return @true if the given string correctly initialized this object
(i.e. if IsOk() returns true after this call)
@@ -157,7 +165,7 @@ public:
'OK'.
@library{wxcore}
- @category{misc}
+ @category{data}
@stdobjects
::wxNullAcceleratorTable
@@ -179,6 +187,13 @@ public:
Number of accelerator entries.
@param entries
The array of entries.
+
+ @beginWxPerlOnly
+ The wxPerl constructor accepts a list of either
+ Wx::AcceleratorEntry objects or references to 3-element arrays
+ [flags, keyCode, cmd] , like the parameters of
+ Wx::AcceleratorEntry::new.
+ @endWxPerlOnly
*/
wxAcceleratorTable(int n, const wxAcceleratorEntry entries[]);