[m_cocoaNSView release];
[GetNSButton() setBezelStyle:NSRoundedBezelStyle];
- [GetNSButton() setTitle:wxNSStringWithWxString(GetLabelText(label))];
+ CocoaSetLabelForObject(label, GetNSButton());
+
+ do
+ {
+ NSTextAlignment mode;
+ if ((style & wxBU_LEFT) && !(style & wxBU_RIGHT))
+ mode = NSLeftTextAlignment;
+ else if ((style & wxBU_RIGHT) && !(style & wxBU_LEFT))
+ mode = NSRightTextAlignment;
+ else
+ break;
+ [GetNSControl() setAlignment:mode];
+ } while(0);
+
[GetNSControl() sizeToFit];
if(m_parent)
void wxButton::SetLabel(const wxString& label)
{
- [GetNSButton() setTitle:wxNSStringWithWxString(GetLabelText(label))];
+ CocoaSetLabelForObject(label, GetNSButton());
}
wxSize wxButton::DoGetBestSize() const