X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/cfc77ac09a13471b16acc028520da862b5debc0d..12346143b17b8682623f97a5cf14e44c0f8b8c73:/interface/wx/accel.h
diff --git a/interface/wx/accel.h b/interface/wx/accel.h
index 580d30033d..4dcc6fa3d2 100644
--- a/interface/wx/accel.h
+++ b/interface/wx/accel.h
@@ -108,12 +108,26 @@ public:
/**
Returns a textual representation of this accelerator.
- The returned string is of the form [Alt+][Ctrl+][Shift+]Key
+ The returned string is of the form [Alt+][Ctrl+][RawCtrl+][Shift+]Key
where the modifier keys are present only if the corresponding flag is
set.
*/
wxString ToString() const;
+ /**
+ Returns a textual representation of this accelerator which is
+ appropriate for saving in configuration files.
+
+ Unlike the string returned by ToString(), this one is never translated
+ so, while it's not suitable for showing to the user, it can be used to
+ uniquely identify the accelerator independently of the user language.
+
+ The returned string can still be parsed by FromString().
+
+ @since 2.9.4
+ */
+ wxString ToRawString() const;
+
/**
Parses the given string and sets the accelerator accordingly.