]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_event.i
GetTmpDefaultItem
[wxWidgets.git] / wxPython / src / _event.i
index f2a5aab3555a41908be22965988300b7612c2b86..979fbf16049de7adcd1e937fedcf9b28a258f1fd 100644 (file)
@@ -1330,6 +1330,17 @@ function is only meaningfule in a Unicode build of wxPython.", "");
     }
     %pythoncode { GetUniChar = GetUnicodeKey }
 
+    %extend {
+        DocStr(
+            SetUnicodeKey,
+            "Set the Unicode value of the key event, but only if this is a Unicode
+build of wxPython.", "");
+        void SetUnicodeKey(int uniChar) {
+            %#if wxUSE_UNICODE
+                self->m_uniChar = uniChar;
+            %#endif
+        }
+    }
 
     DocDeclStr(
         wxUint32 , GetRawKeyCode() const,