Implement the wxST_NO_AUTORESIZE style for wxStaticText.

Copyright 2007 Software 2000 Ltd.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47957 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Elliott
2007-08-08 04:34:15 +00:00
parent c59112bba5
commit e2b497f7a6

View File

@@ -82,6 +82,9 @@ void wxStaticText::SetLabel(const wxString& label)
[GetNSTextField() setStringValue:wxNSStringWithWxString(GetLabelText(label))];
NSRect oldFrameRect = [GetNSTextField() frame];
NSView *superview = [GetNSTextField() superview];
if(!(GetWindowStyle() & wxST_NO_AUTORESIZE))
{
wxLogTrace(wxTRACE_COCOA_Window_Size, wxT("wxStaticText::SetLabel Old Position: (%d,%d)"), GetPosition().x, GetPosition().y);
[GetNSTextField() sizeToFit];
NSRect newFrameRect = [GetNSTextField() frame];
@@ -95,9 +98,10 @@ void wxStaticText::SetLabel(const wxString& label)
[GetNSTextField() setFrame:newFrameRect];
// New origin (wx coords) should always match old origin
wxLogTrace(wxTRACE_COCOA_Window_Size, wxT("wxStaticText::SetLabel New Position: (%d,%d)"), GetPosition().x, GetPosition().y);
[superview setNeedsDisplayInRect:newFrameRect];
}
[[GetNSTextField() superview] setNeedsDisplayInRect:oldFrameRect];
[[GetNSTextField() superview] setNeedsDisplayInRect:newFrameRect];
[superview setNeedsDisplayInRect:oldFrameRect];
}
wxString wxStaticText::GetLabel() const