X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/bdb5436554c910fe850db1470514ee83ded76db3..94500b32849a55cb4e07f3f4d6b095090522adac:/src/palmos/toplevel.cpp diff --git a/src/palmos/toplevel.cpp b/src/palmos/toplevel.cpp index 58fe1ddc46..8b02ac1fc4 100644 --- a/src/palmos/toplevel.cpp +++ b/src/palmos/toplevel.cpp @@ -40,9 +40,19 @@ #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 +#include + // ---------------------------------------------------------------------------- // globals // ---------------------------------------------------------------------------- @@ -53,6 +63,8 @@ extern const wxChar *wxCanvasClassName; // Pointer to the currently active frame for the form event handler. wxTopLevelWindowPalm* ActiveParentFrame; +static Boolean FrameFormHandleEvent(EventType *event); + // ============================================================================ // wxTopLevelWindowPalm implementation // ============================================================================ @@ -74,11 +86,6 @@ WXDWORD wxTopLevelWindowPalm::PalmGetStyle(long style, WXDWORD *exflags) const return 0; } -WXHWND wxTopLevelWindowPalm::PalmGetParent() const -{ - return NULL; -} - bool wxTopLevelWindowPalm::Create(wxWindow *parent, wxWindowID id, const wxString& title, @@ -98,12 +105,14 @@ bool wxTopLevelWindowPalm::Create(wxWindow *parent, if ( parent ) parent->AddChild(this); - m_windowId = id == wxID_ANY ? NewControlId() : id; + SetId( id == wxID_ANY ? NewControlId() : id ); WinConstraintsType constraints; memset(&constraints, 0, sizeof(WinConstraintsType)); + // position constraints.x_pos = ( pos.x == wxDefaultCoord ) ? winUndefConstraint : pos.x; constraints.y_pos = ( pos.y == wxDefaultCoord ) ? winUndefConstraint : pos.y; + // size constraints.x_min = winUndefConstraint; constraints.x_max = winMaxConstraint; constraints.x_pref = ( size.x == wxDefaultCoord ) ? winUndefConstraint : size.x; @@ -112,7 +121,7 @@ bool wxTopLevelWindowPalm::Create(wxWindow *parent, constraints.y_pref = ( size.y == wxDefaultCoord ) ? winUndefConstraint : size.y; FrameForm = FrmNewFormWithConstraints( - m_windowId, + GetId(), title.c_str(), winFlagBackBuffer, &constraints, @@ -126,9 +135,9 @@ bool wxTopLevelWindowPalm::Create(wxWindow *parent, if(FrameForm==NULL) return false; - FrmSetEventHandler(FrameForm,FrameFormHandleEvent); + FrmSetEventHandler((FormType *)FrameForm,FrameFormHandleEvent); - FrmSetActiveForm(FrameForm); + FrmSetActiveForm((FormType *)FrameForm); ActiveParentFrame=this; @@ -139,6 +148,18 @@ wxTopLevelWindowPalm::~wxTopLevelWindowPalm() { } +// --------------------------------------------------------------------------- +// implementation +// --------------------------------------------------------------------------- + +WXWINHANDLE wxTopLevelWindowPalm::GetWinHandle() const +{ + FormType *form = (FormType *)GetForm(); + if(form) + return FrmGetWindowHandle(form); + return NULL; +} + // ---------------------------------------------------------------------------- // wxTopLevelWindowPalm showing // ---------------------------------------------------------------------------- @@ -149,7 +170,7 @@ void wxTopLevelWindowPalm::DoShowWindow(int nShowCmd) bool wxTopLevelWindowPalm::Show(bool show) { - FrmDrawForm(FrameForm); + FrmDrawForm((FormType *)FrameForm); wxPaintEvent event(m_windowId); event.SetEventObject(this); @@ -184,6 +205,16 @@ void wxTopLevelWindowPalm::Restore() { } +void wxTopLevelWindowPalm::DoGetSize( int *width, int *height ) const +{ + RectangleType rect; + FrmGetFormBounds( (FormType *)GetForm() , &rect ); + if(width) + *width = rect.extent.x; + if(height) + *height = rect.extent.y; +} + // ---------------------------------------------------------------------------- // wxTopLevelWindowPalm fullscreen // ---------------------------------------------------------------------------- @@ -210,24 +241,96 @@ bool wxTopLevelWindowPalm::EnableCloseButton(bool enable) return false; } -FormType *wxTopLevelWindowPalm::GetForm() +WXFORMPTR wxTopLevelWindowPalm::GetForm() const { - return FrmGetActiveForm (); + return FrmGetActiveForm(); } -#ifndef __WXWINCE__ - bool wxTopLevelWindowPalm::SetShape(const wxRegion& region) { return false; } -#endif // !__WXWINCE__ - // ---------------------------------------------------------------------------- -// wxTopLevelWindow event handling +// wxTopLevelWindow native event handling // ---------------------------------------------------------------------------- +bool wxTopLevelWindowPalm::HandleControlSelect(WXEVENTPTR event) +{ + const EventType *palmEvent = (EventType *)event; + const int id = palmEvent->data.ctlSelect.controlID; + + wxWindow* win = FindWindowById(id,this); + if(win==NULL) + return false; + +#if wxUSE_BUTTON + wxButton* button = wxDynamicCast(win,wxButton); + if(button) + return button->SendClickEvent(); +#endif // wxUSE_BUTTON + +#if wxUSE_CHECKBOX + wxCheckBox* checkbox = wxDynamicCast(win,wxCheckBox); + if(checkbox) + return checkbox->SendClickEvent(); +#endif // wxUSE_CHECKBOX + +#if wxUSE_TOGGLEBTN + wxToggleButton* toggle = wxDynamicCast(win,wxToggleButton); + if(toggle) + return toggle->SendClickEvent(); +#endif // wxUSE_TOGGLEBTN + +#if wxUSE_RADIOBTN + wxRadioButton* radio = wxDynamicCast(win,wxRadioButton); + if(radio) + return radio->SendClickEvent(); +#endif // wxUSE_RADIOBTN + +#if wxUSE_DATEPICKCTRL + wxDatePickerCtrl* datepicker = wxDynamicCast(win,wxDatePickerCtrl); + if(datepicker) + return datepicker->SendClickEvent(); +#endif // wxUSE_DATEPICKCTRL + +#if wxUSE_SLIDER + wxSlider* slider = wxDynamicCast(win,wxSlider); + if(slider) + return slider->SendUpdatedEvent(); +#endif // wxUSE_SLIDER + + return false; +} + +bool wxTopLevelWindowPalm::HandleControlRepeat(WXEVENTPTR event) +{ + const EventType *palmEvent = (EventType *)event; + const int id = palmEvent->data.ctlRepeat.controlID; + + wxWindow* win = FindWindowById(id, this); + if(win==NULL) + return false; + +#if wxUSE_SLIDER + wxSlider* slider = wxDynamicCast(win,wxSlider); + if(slider) + return slider->SendScrollEvent(event); +#endif // wxUSE_SLIDER + + return false; +} + +bool wxTopLevelWindowPalm::HandleSize(WXEVENTPTR event) +{ + 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); +} + void wxTopLevelWindowPalm::OnActivate(wxActivateEvent& event) { } @@ -246,29 +349,35 @@ void wxTopLevelWindowPalm::OnActivate(wxActivateEvent& event) * finds a better solution, please let me know. My email address is * wbo@freeshell.org */ -static Boolean FrameFormHandleEvent(EventType* pEvent) +static Boolean FrameFormHandleEvent(EventType *event) { - wxFrame* frame = wxDynamicCast(ActiveParentFrame,wxFrame); - Boolean fHandled = false; - FormType* pForm; - WinHandle hWindow; - int ItemID=0; + // frame and tlw point to the same object but they are for convenience + // of calling proper structure withiout later dynamic typcasting + wxFrame* frame = wxDynamicCast(ActiveParentFrame,wxFrame); + wxTopLevelWindowPalm* tlw = ActiveParentFrame; + Boolean handled = false; - switch (pEvent->eType) { + switch (event->eType) { case ctlSelectEvent: + handled = tlw->HandleControlSelect(event); + break; + case ctlRepeatEvent: + handled = tlw->HandleControlRepeat(event); + break; + case winResizedEvent: + handled = tlw->HandleSize(event); break; #if wxUSE_MENUS_NATIVE case menuOpenEvent: - fHandled = frame->HandleMenuOpen(); + handled = frame->HandleMenuOpen(); break; case menuEvent: - ItemID = pEvent->data.menu.itemID; - fHandled = frame->HandleMenuSelect(ItemID); + handled = frame->HandleMenuSelect(event); break; #endif default: break; } - return fHandled; + return handled; }