wxGetKeyState as per feature request :).

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24854 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ryan Norton
2003-12-14 23:35:21 +00:00
parent c10eeb63ba
commit 6ed892f3f2
5 changed files with 112 additions and 0 deletions

View File

@@ -80,6 +80,11 @@ WXDLLIMPEXP_BASE wxChar* copystring(const wxChar *s);
// Sound the bell
WXDLLIMPEXP_BASE void wxBell();
#if defined(__WXGTK__) || defined(__WXMSW__) || defined(__WXMAC__) || defined(__X__)
// Get the state of a key (true if pressed, false if not)
WXDLLIMPEXP_BASE bool wxGetKeyState(wxKeyCode key);
#endif
// Get OS description as a user-readable string
WXDLLIMPEXP_BASE wxString wxGetOsDescription();