#include "wx/notebook.h"
#include "wx/listctrl.h"
+#ifndef __WXUNIVERSAL__
#include <Window.h>
// ---------------------------------------------------------------------------
// global variables
// ---------------------------------------------------------------------------
-#if wxUSE_MENUS_NATIVE
-wxMenu *wxCurrentPopupMenu = NULL;
-#endif // wxUSE_MENUS_NATIVE
-
// ---------------------------------------------------------------------------
// private functions
// ---------------------------------------------------------------------------
void wxWindowPalm::Init()
{
- m_handle = 0;
+ m_hWnd = 0;
}
// Destructor
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;
{
WinInvalidateWindow(handle);
}
+#else // __WXPALMOS5__
+ WinSetActiveWindow (handle);
+#endif
+
}
}
{
return false;
}
-
+#endif // # __WXUNIVERSAL__
#endif // wxUSE_HOTKEY