X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/324eeecb3cdc9522e136af6670443148772b412a..2f36e8dce5df017e609309190bc94fd45bad5293:/src/palmos/window.cpp diff --git a/src/palmos/window.cpp b/src/palmos/window.cpp index b46aad8784..8bc3991c8a 100644 --- a/src/palmos/window.cpp +++ b/src/palmos/window.cpp @@ -17,10 +17,6 @@ // headers // --------------------------------------------------------------------------- -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma implementation "window.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -85,6 +81,8 @@ #include "wx/listctrl.h" #include "wx/window.h" +#include + // --------------------------------------------------------------------------- // global variables // --------------------------------------------------------------------------- @@ -272,13 +270,13 @@ bool wxWindowPalm::Create(wxWindow *parent, return true; } -FormType *wxWindowPalm::GetFormPtr() +WXFORMPTR wxWindowPalm::GetFormPtr() { return FrameForm; } -void wxWindowPalm::SetFormPtr(FormType *FormPtr) +void wxWindowPalm::SetFormPtr(WXFORMPTR FormPtr) { - FrameForm=FormPtr; + FrameForm = FormPtr; } // --------------------------------------------------------------------------- @@ -442,16 +440,16 @@ void wxWindowPalm::Thaw() void wxWindowPalm::Refresh(bool eraseBack, const wxRect *rect) { - WinHandle handle = GetWinHandle(); + WinHandle handle = (WinHandle)GetWinHandle(); if(handle) { if(rect) { RectangleType dirtyRect; - dirtyRect.topLeft.x = rect->GetX(); - dirtyRect.topLeft.y = rect->GetY(); - dirtyRect.extent.x = rect->GetWidth(); - dirtyRect.extent.y = rect->GetHeight(); + dirtyRect.topLeft.x = rect->GetX() - 1; + dirtyRect.topLeft.y = rect->GetY() - 1; + dirtyRect.extent.x = rect->GetWidth() + 1; + dirtyRect.extent.y = rect->GetHeight() + 1; WinInvalidateRect(handle, &dirtyRect); } else @@ -510,6 +508,10 @@ void wxWindowPalm::DoGetClientSize(int *x, int *y) const void wxWindowPalm::DoGetPosition(int *x, int *y) const { + if(x) + *x = 0; + if(y) + *y = 0; } void wxWindowPalm::DoScreenToClient(int *x, int *y) const