X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/88a7a4e10ed18f81a576dcd866cfbf02bf404c00..3903f408241aedc3b2f5e24349d0ac939ba9164c:/src/palmos/window.cpp diff --git a/src/palmos/window.cpp b/src/palmos/window.cpp index 39f2c7019b..2839a44221 100644 --- a/src/palmos/window.cpp +++ b/src/palmos/window.cpp @@ -24,8 +24,9 @@ #pragma hdrstop #endif +#include "wx/window.h" + #ifndef WX_PRECOMP - #include "wx/window.h" #include "wx/accel.h" #include "wx/menu.h" #include "wx/dc.h" @@ -42,6 +43,9 @@ #include "wx/settings.h" #include "wx/statbox.h" #include "wx/intl.h" + #include "wx/log.h" + #include "wx/textctrl.h" + #include "wx/menuitem.h" #endif #if wxUSE_OWNER_DRAWN && !defined(__WXUNIVERSAL__) @@ -58,9 +62,6 @@ #include "wx/access.h" #endif -#include "wx/menuitem.h" -#include "wx/log.h" - #if wxUSE_TOOLTIPS #include "wx/tooltip.h" #endif @@ -73,12 +74,8 @@ #include "wx/spinctrl.h" #endif // wxUSE_SPINCTRL -#include "wx/log.h" - -#include "wx/textctrl.h" #include "wx/notebook.h" #include "wx/listctrl.h" -#include "wx/window.h" #include @@ -235,6 +232,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 // ----------------------------------------------------------------------------