X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/20bc5ad8dd419d0d3e524079f8fdbe3d8c14231f..d90443b8a2099cf0e8e5fec31571d0ba1c0818a9:/src/palmos/toplevel.cpp diff --git a/src/palmos/toplevel.cpp b/src/palmos/toplevel.cpp index 8b02ac1fc4..643d0dcc55 100644 --- a/src/palmos/toplevel.cpp +++ b/src/palmos/toplevel.cpp @@ -17,10 +17,6 @@ // headers // ---------------------------------------------------------------------------- -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma implementation "toplevel.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -28,26 +24,27 @@ #pragma hdrstop #endif +#include "wx/toplevel.h" + #ifndef WX_PRECOMP #include "wx/app.h" - #include "wx/toplevel.h" #include "wx/dialog.h" #include "wx/string.h" #include "wx/log.h" #include "wx/intl.h" #include "wx/frame.h" #include "wx/containr.h" // wxSetFocusToChild() + #include "wx/button.h" + #include "wx/checkbox.h" + #include "wx/radiobut.h" + #include "wx/slider.h" + #include "wx/module.h" #endif //WX_PRECOMP -#include "wx/module.h" #include "wx/display.h" // controls for sending select event -#include "wx/button.h" -#include "wx/checkbox.h" -#include "wx/radiobut.h" #include "wx/tglbtn.h" -#include "wx/slider.h" #include "wx/datectrl.h" #include @@ -95,18 +92,21 @@ bool wxTopLevelWindowPalm::Create(wxWindow *parent, const wxString& name) { // this is a check for limitation mentioned before FrameFormHandleEvent() code - if(wxTopLevelWindows.GetCount()>0) + if(wxTopLevelWindows.GetCount() > 0) { return false; + } ActiveParentFrame=NULL; wxTopLevelWindows.Append(this); - if ( parent ) + if ( parent ) { parent->AddChild(this); + } SetId( id == wxID_ANY ? NewControlId() : id ); +#ifdef __WXPALMOS6__ WinConstraintsType constraints; memset(&constraints, 0, sizeof(WinConstraintsType)); // position @@ -119,7 +119,6 @@ bool wxTopLevelWindowPalm::Create(wxWindow *parent, constraints.y_min = winUndefConstraint; constraints.y_max = winMaxConstraint; constraints.y_pref = ( size.y == wxDefaultCoord ) ? winUndefConstraint : size.y; - FrameForm = FrmNewFormWithConstraints( GetId(), title.c_str(), @@ -131,11 +130,22 @@ bool wxTopLevelWindowPalm::Create(wxWindow *parent, NULL, 0 ); - - if(FrameForm==NULL) +#else // __WXPALMOS5__ +#define winUndefConstraint 0xFFFF +#define winMaxConstraint 288 + // FormType *FrmNewForm (UInt16 formID, const Char *titleStrP, Coord x, Coord y, Coord width, Coord height, + // Boolean modal, UInt16 defaultButton, UInt16 helpRscID, UInt16 menuRscID); + FrameForm = FrmNewForm (GetId(), title.c_str(), + (( pos.x == wxDefaultCoord ) ? winUndefConstraint : pos.x), + (( pos.y == wxDefaultCoord ) ? winUndefConstraint : pos.y), + winMaxConstraint, winMaxConstraint, + false, 0, 0, 0); +#endif + if(NULL == FrameForm) { return false; + } - FrmSetEventHandler((FormType *)FrameForm,FrameFormHandleEvent); + FrmSetEventHandler((FormType *)FrameForm, FrameFormHandleEvent); FrmSetActiveForm((FormType *)FrameForm); @@ -170,11 +180,14 @@ void wxTopLevelWindowPalm::DoShowWindow(int nShowCmd) bool wxTopLevelWindowPalm::Show(bool show) { + if (true != show) { + return true; + } FrmDrawForm((FormType *)FrameForm); wxPaintEvent event(m_windowId); event.SetEventObject(this); - GetEventHandler()->ProcessEvent(event); + HandleWindowEvent(event); return true; } @@ -228,8 +241,13 @@ bool wxTopLevelWindowPalm::ShowFullScreen(bool show, long style) // wxTopLevelWindowPalm misc // ---------------------------------------------------------------------------- -void wxTopLevelWindowPalm::SetIcon(const wxIcon& icon) +void wxTopLevelWindowPalm::SetTitle( const wxString& WXUNUSED(title)) +{ +} + +wxString wxTopLevelWindowPalm::GetTitle() const { + return wxEmptyString; } void wxTopLevelWindowPalm::SetIcons(const wxIconBundle& icons) @@ -323,12 +341,17 @@ bool wxTopLevelWindowPalm::HandleControlRepeat(WXEVENTPTR event) bool wxTopLevelWindowPalm::HandleSize(WXEVENTPTR event) { +#ifdef __WXPALMOS6__ const EventType *palmEvent = (EventType *)event; wxSize newSize(palmEvent->data.winResized.newBounds.extent.x, palmEvent->data.winResized.newBounds.extent.y); wxSizeEvent eventWx(newSize,GetId()); eventWx.SetEventObject(this); - return GetEventHandler()->ProcessEvent(eventWx); + return HandleWindowEvent(eventWx); +#else // __WXPALMOS5__ + return false; +#endif + } void wxTopLevelWindowPalm::OnActivate(wxActivateEvent& event) @@ -364,9 +387,11 @@ static Boolean FrameFormHandleEvent(EventType *event) case ctlRepeatEvent: handled = tlw->HandleControlRepeat(event); break; +#ifdef __WXPALMOS6__ case winResizedEvent: handled = tlw->HandleSize(event); break; +#endif // __WXPALMOS6__ #if wxUSE_MENUS_NATIVE case menuOpenEvent: handled = frame->HandleMenuOpen();