X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c8cae94c72c219a41789a115a142c5e7d5defd1a..f43c777175378ceed28d67a6e8a0330f0a4adbd5:/src/cocoa/button.mm diff --git a/src/cocoa/button.mm b/src/cocoa/button.mm index aa8472a8d7..74a927eb32 100644 --- a/src/cocoa/button.mm +++ b/src/cocoa/button.mm @@ -16,6 +16,8 @@ #include "wx/log.h" #endif +#include "wx/cocoa/autorelease.h" + #import #include "wx/cocoa/string.h" @@ -29,13 +31,13 @@ bool wxButton::Create(wxWindow *parent, wxWindowID winid, const wxSize& size, long style, const wxValidator& validator, const wxString& name) { + wxAutoNSAutoreleasePool pool; wxLogDebug("Creating control with id=%d",winid); if(!CreateControl(parent,winid,pos,size,style,validator,name)) return false; wxLogDebug("Created control with id=%d",GetId()); - NSRect cocoaRect = NSMakeRect(10,10,20,20); m_cocoaNSView = NULL; - SetNSButton([[NSButton alloc] initWithFrame: cocoaRect]); + SetNSButton([[NSButton alloc] initWithFrame: MakeDefaultNSRect(size)]); // NOTE: YES we want to release this (to match the alloc). // DoAddChild(this) will retain us again since addSubView doesn't. [m_cocoaNSView release]; @@ -46,14 +48,14 @@ bool wxButton::Create(wxWindow *parent, wxWindowID winid, if(m_parent) m_parent->CocoaAddChild(this); + SetInitialFrameRect(pos,size); return true; } wxButton::~wxButton() { - CocoaRemoveFromParent(); - SetNSButton(NULL); + DisassociateNSButton(m_cocoaNSView); } void wxButton::Cocoa_wxNSButtonAction(void) @@ -64,3 +66,19 @@ void wxButton::Cocoa_wxNSButtonAction(void) Command(event); } +wxString wxButton::GetLabel() const +{ + return wxString([[GetNSButton() title] lossyCString]); +} + +void wxButton::SetLabel(const wxString& label) +{ + [GetNSButton() setTitle:wxNSStringWithWxString(label)]; +} + +wxSize wxButtonBase::GetDefaultSize() +{ + // FIXME: stub + return wxDefaultSize; +} +