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:
@@ -82,22 +82,26 @@ void wxStaticText::SetLabel(const wxString& label)
|
|||||||
[GetNSTextField() setStringValue:wxNSStringWithWxString(GetLabelText(label))];
|
[GetNSTextField() setStringValue:wxNSStringWithWxString(GetLabelText(label))];
|
||||||
NSRect oldFrameRect = [GetNSTextField() frame];
|
NSRect oldFrameRect = [GetNSTextField() frame];
|
||||||
NSView *superview = [GetNSTextField() superview];
|
NSView *superview = [GetNSTextField() superview];
|
||||||
wxLogTrace(wxTRACE_COCOA_Window_Size, wxT("wxStaticText::SetLabel Old Position: (%d,%d)"), GetPosition().x, GetPosition().y);
|
|
||||||
[GetNSTextField() sizeToFit];
|
|
||||||
NSRect newFrameRect = [GetNSTextField() frame];
|
|
||||||
// Ensure new size is an integer so GetSize returns valid data
|
|
||||||
newFrameRect.size.height = ceil(newFrameRect.size.height);
|
|
||||||
newFrameRect.size.width = ceil(newFrameRect.size.width);
|
|
||||||
if(![superview isFlipped])
|
|
||||||
{
|
|
||||||
newFrameRect.origin.y = oldFrameRect.origin.y + oldFrameRect.size.height - newFrameRect.size.height;
|
|
||||||
}
|
|
||||||
[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);
|
|
||||||
|
|
||||||
[[GetNSTextField() superview] setNeedsDisplayInRect:oldFrameRect];
|
if(!(GetWindowStyle() & wxST_NO_AUTORESIZE))
|
||||||
[[GetNSTextField() superview] setNeedsDisplayInRect:newFrameRect];
|
{
|
||||||
|
wxLogTrace(wxTRACE_COCOA_Window_Size, wxT("wxStaticText::SetLabel Old Position: (%d,%d)"), GetPosition().x, GetPosition().y);
|
||||||
|
[GetNSTextField() sizeToFit];
|
||||||
|
NSRect newFrameRect = [GetNSTextField() frame];
|
||||||
|
// Ensure new size is an integer so GetSize returns valid data
|
||||||
|
newFrameRect.size.height = ceil(newFrameRect.size.height);
|
||||||
|
newFrameRect.size.width = ceil(newFrameRect.size.width);
|
||||||
|
if(![superview isFlipped])
|
||||||
|
{
|
||||||
|
newFrameRect.origin.y = oldFrameRect.origin.y + oldFrameRect.size.height - newFrameRect.size.height;
|
||||||
|
}
|
||||||
|
[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];
|
||||||
|
}
|
||||||
|
|
||||||
|
[superview setNeedsDisplayInRect:oldFrameRect];
|
||||||
}
|
}
|
||||||
|
|
||||||
wxString wxStaticText::GetLabel() const
|
wxString wxStaticText::GetLabel() const
|
||||||
|
Reference in New Issue
Block a user