]> git.saurik.com Git - wxWidgets.git/commitdiff
Implement the wxST_NO_AUTORESIZE style for wxStaticText.
authorDavid Elliott <dfe@tgwbd.org>
Wed, 8 Aug 2007 04:34:15 +0000 (04:34 +0000)
committerDavid Elliott <dfe@tgwbd.org>
Wed, 8 Aug 2007 04:34:15 +0000 (04:34 +0000)
Copyright 2007 Software 2000 Ltd.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47957 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/cocoa/stattext.mm

index 6470799b585ba26af5d343c6a87ef2b10f317d1f..d9b5dc5075322e483358ce16d7b98124b35860dd 100644 (file)
@@ -82,22 +82,26 @@ void wxStaticText::SetLabel(const wxString& label)
     [GetNSTextField() setStringValue:wxNSStringWithWxString(GetLabelText(label))];
     NSRect oldFrameRect = [GetNSTextField() frame];
     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])
+
+    if(!(GetWindowStyle() & wxST_NO_AUTORESIZE))
     {
-        newFrameRect.origin.y = oldFrameRect.origin.y + oldFrameRect.size.height - newFrameRect.size.height;
+        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];
     }
-    [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];
-    [[GetNSTextField() superview] setNeedsDisplayInRect:newFrameRect];
+    [superview setNeedsDisplayInRect:oldFrameRect];
 }
 
 wxString wxStaticText::GetLabel() const