X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e4db172a3b318df9aff178eb6c5da149d56e0859..fa21f43888305a78c6fdc10d0b3d310b271f76f7:/src/palmos/window.cpp diff --git a/src/palmos/window.cpp b/src/palmos/window.cpp index f87ff65b7f..26f50b4135 100644 --- a/src/palmos/window.cpp +++ b/src/palmos/window.cpp @@ -44,6 +44,7 @@ #include "wx/statbox.h" #include "wx/intl.h" #include "wx/log.h" + #include "wx/textctrl.h" #endif #if wxUSE_OWNER_DRAWN && !defined(__WXUNIVERSAL__) @@ -74,10 +75,8 @@ #include "wx/spinctrl.h" #endif // wxUSE_SPINCTRL -#include "wx/textctrl.h" #include "wx/notebook.h" #include "wx/listctrl.h" -#include "wx/window.h" #include @@ -234,6 +233,16 @@ wxWindow *wxWindowPalm::FindItemByWinHandle(WXWINHANDLE handle, bool controlOnly return NULL; } +bool wxGetKeyState(wxKeyCode key) +{ + wxASSERT_MSG(key != WXK_LBUTTON && key != WXK_RBUTTON && key != + WXK_MBUTTON, wxT("can't use wxGetKeyState() for mouse buttons")); + + // TODO + + return false; +} + // ---------------------------------------------------------------------------- // constructors and such // ----------------------------------------------------------------------------