X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/88a7a4e10ed18f81a576dcd866cfbf02bf404c00..e7c80f9e052d3d50b3d7780b21e55d8c5586cdea:/src/os2/window.cpp?ds=sidebyside diff --git a/src/os2/window.cpp b/src/os2/window.cpp index d49aaf21a1..2727640fb4 100644 --- a/src/os2/window.cpp +++ b/src/os2/window.cpp @@ -14,11 +14,12 @@ // #include "wx/wxprec.h" +#include "wx/window.h" + #ifndef WX_PRECOMP #define INCL_DOS #define INCL_PM #include - #include "wx/window.h" #include "wx/accel.h" #include "wx/menu.h" #include "wx/dc.h" @@ -44,6 +45,7 @@ #include "wx/toolbar.h" #include "wx/settings.h" #include "wx/intl.h" + #include "wx/log.h" #include #endif @@ -56,7 +58,6 @@ #endif #include "wx/menuitem.h" -#include "wx/log.h" #include "wx/os2/private.h" @@ -72,8 +73,6 @@ #include "wx/caret.h" #endif // wxUSE_CARET -#include "wx/log.h" - #include "wx/textctrl.h" @@ -4496,6 +4495,18 @@ int wxCharCodeWXToOS2( int nId, return nKeySym; } // end of wxCharCodeWXToOS2 + +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; +} + + wxWindow* wxGetActiveWindow() { HWND hWnd = ::WinQueryActiveWindow(HWND_DESKTOP);