X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/25466131acbbca2186d01fb852d61f50ba968fb4..cac09ce8b7f519ef9c9b414359716a472ba3ef4c:/src/palmos/window.cpp diff --git a/src/palmos/window.cpp b/src/palmos/window.cpp index 2839a44221..1298d9a5b1 100644 --- a/src/palmos/window.cpp +++ b/src/palmos/window.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: src/palmos/windows.cpp +// Name: src/palmos/window.cpp // Purpose: wxWindow // Author: William Osborne - minimal working wxPalmOS port // Modified by: Wlodzimierz ABX Skiba - more than minimal functionality @@ -46,14 +46,13 @@ #include "wx/log.h" #include "wx/textctrl.h" #include "wx/menuitem.h" + #include "wx/module.h" #endif #if wxUSE_OWNER_DRAWN && !defined(__WXUNIVERSAL__) #include "wx/ownerdrw.h" #endif -#include "wx/module.h" - #if wxUSE_DRAG_AND_DROP #include "wx/dnd.h" #endif @@ -77,16 +76,13 @@ #include "wx/notebook.h" #include "wx/listctrl.h" +#ifndef __WXUNIVERSAL__ #include // --------------------------------------------------------------------------- // global variables // --------------------------------------------------------------------------- -#if wxUSE_MENUS_NATIVE -wxMenu *wxCurrentPopupMenu = NULL; -#endif // wxUSE_MENUS_NATIVE - // --------------------------------------------------------------------------- // private functions // --------------------------------------------------------------------------- @@ -248,7 +244,7 @@ bool wxGetKeyState(wxKeyCode key) void wxWindowPalm::Init() { - m_handle = 0; + m_hWnd = 0; } // Destructor @@ -436,19 +432,12 @@ bool wxWindowPalm::Reparent(wxWindowBase *parent) return false; } -void wxWindowPalm::Freeze() -{ -} - -void wxWindowPalm::Thaw() -{ -} - void wxWindowPalm::Refresh(bool eraseBack, const wxRect *rect) { - WinHandle handle = (WinHandle)GetWinHandle(); + WinHandle handle = (WinHandle)GetHWND(); if(handle) { +#ifdef __WXPALMOS6__ if(rect) { RectangleType dirtyRect; @@ -462,6 +451,10 @@ void wxWindowPalm::Refresh(bool eraseBack, const wxRect *rect) { WinInvalidateWindow(handle); } +#else // __WXPALMOS5__ + WinSetActiveWindow (handle); +#endif + } } @@ -755,5 +748,5 @@ bool wxWindowPalm::UnregisterHotKey(int hotkeyId) { return false; } - +#endif // # __WXUNIVERSAL__ #endif // wxUSE_HOTKEY