]> git.saurik.com Git - wxWidgets.git/commitdiff
Added a SetFont method that behaves like SetLabel does with respect to
authorRobin Dunn <robin@alldunn.com>
Tue, 20 Feb 2001 06:10:38 +0000 (06:10 +0000)
committerRobin Dunn <robin@alldunn.com>
Tue, 20 Feb 2001 06:10:38 +0000 (06:10 +0000)
wxST_NO_AUTORESIZE.

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

include/wx/msw/stattext.h
src/msw/stattext.cpp

index fd0f63d801d9057a7b49d562b78719e4e824d3ce..ca5fd0c0e26a0dd521a068e87e0c8c8d261232bb 100644 (file)
@@ -46,6 +46,7 @@ public:
 
     // accessors
     void SetLabel(const wxString& label);
+    bool SetFont( const wxFont &font );
 
     // overriden base class virtuals
     virtual bool AcceptsFocus() const { return FALSE; }
index 82b2a21745f6b264a6a6d79d535e56f1a1012d5e..c4a61fd1131c917044e064d2e6608ab25860af49 100644 (file)
@@ -86,7 +86,7 @@ bool wxStaticText::Create(wxWindow *parent, wxWindowID id,
 
   SubclassWin(m_hWnd);
 
-  SetFont(parent->GetFont());
+  wxControl::SetFont(parent->GetFont());
   SetSize(x, y, width, height);
 
   return TRUE;
@@ -148,6 +148,22 @@ void wxStaticText::SetLabel(const wxString& label)
     }
 }
 
+
+bool wxStaticText::SetFont(const wxFont& font)
+{
+    bool ret = wxControl::SetFont(font);
+
+    // adjust the size of the window to fit to the label unless autoresizing is
+    // disabled
+    if ( !(GetWindowStyle() & wxST_NO_AUTORESIZE) )
+    {
+        DoSetSize(-1, -1, -1, -1, wxSIZE_AUTO_WIDTH | wxSIZE_AUTO_HEIGHT);
+    }
+
+    return ret;
+}
+
+
 long wxStaticText::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam)
 {
   // Ensure that static items get messages. Some controls don't like this