]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_functions.i
wxGTK now uses gtk_init_check so wxPython can raise an exception if
[wxWidgets.git] / wxPython / src / _functions.i
index 1d85f1a864d2e61685af6583e20d7f38c8570024..88a1d05b6bd87546069b0e1b78ed3815e137344a 100644 (file)
 
 //---------------------------------------------------------------------------
 
-%{
-    DECLARE_DEF_STRING(FileSelectorPromptStr);
-    DECLARE_DEF_STRING(FileSelectorDefaultWildcardStr);
-    DECLARE_DEF_STRING(DirSelectorPromptStr);
-%}
+MAKE_CONST_WXSTRING(FileSelectorPromptStr);
+MAKE_CONST_WXSTRING(FileSelectorDefaultWildcardStr);
+MAKE_CONST_WXSTRING(DirSelectorPromptStr);
 
 //---------------------------------------------------------------------------
 %newgroup;
@@ -54,7 +52,7 @@ long wxGetFreeMemory();
 #else
 %inline %{
     long wxGetFreeMemory()
-        { PyErr_SetNone(PyExc_NotImplementedError); return 0; }
+        { wxPyRaiseNotImplemented(); return 0; }
 %}
 #endif
 
@@ -211,6 +209,13 @@ wxWindow* wxGetTopLevelParent(wxWindow *win);
 
 
 
+
+// Get the state of a key (true if pressed, false if not)
+// This is generally most useful getting the state of
+// the modifier or toggle keys.
+bool wxGetKeyState(wxKeyCode key);
+
+
 //---------------------------------------------------------------------------
 
 #if defined(__WXMSW__) || defined(__WXMAC__)