X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4055ed8281971e3d35bf04177193c27043d42ed1..b4a5e7b6f19bcef7449c87d46ab46af1b4aaec6b:/src/palmos/button.cpp diff --git a/src/palmos/button.cpp b/src/palmos/button.cpp index 33edcfd45c..17baee2123 100644 --- a/src/palmos/button.cpp +++ b/src/palmos/button.cpp @@ -1,11 +1,11 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: palmos/button.cpp +// Name: src/palmos/button.cpp // Purpose: wxButton -// Author: William Osborne -// Modified by: +// Author: William Osborne - minimal working wxPalmOS port +// Modified by: Wlodzimierz ABX Skiba - native wxButton implementation // Created: 10/13/04 -// RCS-ID: $Id: -// Copyright: (c) William Osborne +// RCS-ID: $Id$ +// Copyright: (c) William Osborne, Wlodzimierz Skiba // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -38,10 +38,11 @@ #include "wx/bmpbuttn.h" #include "wx/settings.h" #include "wx/dcscreen.h" + #include "wx/frame.h" + #include "wx/dialog.h" + #include "wx/stockitem.h" #endif -#include "wx/palmos/private.h" - // ---------------------------------------------------------------------------- // macros // ---------------------------------------------------------------------------- @@ -128,39 +129,76 @@ bool wxButton::Create(wxWindow *parent, const wxValidator& validator, const wxString& name) { - return false; + // Default coordinates based on the knowledgebase recipe "Buttons" + wxSize palmSize(size.x==wxDefaultCoord?36:size.x, + size.y==wxDefaultCoord?12:size.y); + + // Default placement depends on dialog vs. frame type of parent + wxPoint palmPos(pos); + if((palmPos.x==wxDefaultCoord)||(palmPos.y==wxDefaultCoord)) + { + wxSize parentSize(parent->GetSize()); + wxWindow* parentTLW = parent; + while ( parentTLW && !parentTLW->IsTopLevel() ) + { + parentTLW = parentTLW->GetParent(); + } + + if(wxDynamicCast(parentTLW, wxFrame)!=NULL) + { + if(palmPos.x==wxDefaultCoord) + palmPos.x = 1; + if(palmPos.y==wxDefaultCoord) + palmPos.y = parentSize.y-palmSize.y; + } + else if(wxDynamicCast(parentTLW, wxDialog)!=NULL) + { + if(palmPos.x==wxDefaultCoord) + palmPos.x = 5; + if(palmPos.y==wxDefaultCoord) + palmPos.y = parentSize.y-palmSize.y-5; + } + else + { + // something seriously broken + return false; + } + } + + // take the stock label + wxString palmLabel = label; + if( palmLabel.empty() && wxIsStockID(id) ) + palmLabel = wxGetStockLabel(id); + + wxControl::PalmCreateControl(buttonCtl, parent, id, palmLabel, palmPos, palmSize); + return true; } wxButton::~wxButton() { } -// ---------------------------------------------------------------------------- -// flags -// ---------------------------------------------------------------------------- - -WXDWORD wxButton::MSWGetStyle(long style, WXDWORD *exstyle) const -{ - return 0; -} - // ---------------------------------------------------------------------------- // size management including autosizing // ---------------------------------------------------------------------------- wxSize wxButton::DoGetBestSize() const { - return wxSize(0,0); + return wxSize(36,12); } /* static */ wxSize wxButtonBase::GetDefaultSize() { - return wxSize(0,0); + return wxSize(36,12); } void wxButton::SetDefault() { + FormType* form = GetParentForm(); + if(form==NULL) + return; + FrmSetDefaultButtonID(form,GetId()); } void wxButton::SetTmpDefault() @@ -186,18 +224,9 @@ bool wxButton::SendClickEvent() return false; } -void wxButton::Command(wxCommandEvent & event) +void wxButton::Command(wxCommandEvent &event) { } -// ---------------------------------------------------------------------------- -// event/message handlers -// ---------------------------------------------------------------------------- - -bool wxButton::MSWCommand(WXUINT param, WXWORD WXUNUSED(id)) -{ - return false; -} - #endif // wxUSE_BUTTON