X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..a130bb4e758c8423694265ac29554a1901fa3d27:/src/palmos/window.cpp diff --git a/src/palmos/window.cpp b/src/palmos/window.cpp index 8bc3991c8a..fdcf02cf3f 100644 --- a/src/palmos/window.cpp +++ b/src/palmos/window.cpp @@ -24,10 +24,10 @@ #pragma hdrstop #endif +#include "wx/window.h" + #ifndef WX_PRECOMP - #include "wx/window.h" #include "wx/accel.h" - #include "wx/setup.h" #include "wx/menu.h" #include "wx/dc.h" #include "wx/dcclient.h" @@ -42,6 +42,8 @@ #include "wx/msgdlg.h" #include "wx/settings.h" #include "wx/statbox.h" + #include "wx/intl.h" + #include "wx/log.h" #endif #if wxUSE_OWNER_DRAWN && !defined(__WXUNIVERSAL__) @@ -59,7 +61,6 @@ #endif #include "wx/menuitem.h" -#include "wx/log.h" #if wxUSE_TOOLTIPS #include "wx/tooltip.h" @@ -73,13 +74,9 @@ #include "wx/spinctrl.h" #endif // wxUSE_SPINCTRL -#include "wx/intl.h" -#include "wx/log.h" - #include "wx/textctrl.h" #include "wx/notebook.h" #include "wx/listctrl.h" -#include "wx/window.h" #include @@ -236,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 // ---------------------------------------------------------------------------- @@ -317,11 +324,11 @@ void wxWindowPalm::Lower() { } -void wxWindowPalm::SetTitle( const wxString& title) +void wxWindowPalm::SetLabel( const wxString& WXUNUSED(label)) { } -wxString wxWindowPalm::GetTitle() const +wxString wxWindowPalm::GetLabel() const { return wxEmptyString; } @@ -751,5 +758,3 @@ bool wxWindowPalm::UnregisterHotKey(int hotkeyId) } #endif // wxUSE_HOTKEY - -