]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/stattext.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/stattext.cpp
3 // Purpose: wxStaticText
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "stattext.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
31 #include "wx/stattext.h"
32 #include "wx/msw/private.h"
35 IMPLEMENT_DYNAMIC_CLASS(wxStaticText
, wxControl
)
37 bool wxStaticText::Create(wxWindow
*parent
,
39 const wxString
& label
,
45 if ( !CreateControl(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
48 if ( !MSWCreateControl(wxT("STATIC"), label
, pos
, size
) )
54 WXDWORD
wxStaticText::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
56 WXDWORD msStyle
= wxControl::MSWGetStyle(style
, exstyle
);
58 // translate the alignment flags to the Windows ones
60 // note that both wxALIGN_LEFT and SS_LEFT are equal to 0 so we shouldn't
61 // test for them using & operator
62 if ( style
& wxALIGN_CENTRE
)
64 else if ( style
& wxALIGN_RIGHT
)
72 wxSize
wxStaticText::DoGetBestSize() const
74 wxString
text(wxGetWindowText(GetHWND()));
76 int widthTextMax
= 0, widthLine
,
77 heightTextTotal
= 0, heightLineDefault
= 0, heightLine
= 0;
79 bool lastWasAmpersand
= FALSE
;
82 for ( const wxChar
*pc
= text
; ; pc
++ )
84 if ( *pc
== wxT('\n') || *pc
== wxT('\0') )
88 // we can't use GetTextExtent - it will return 0 for both width
89 // and height and an empty line should count in height
91 if ( !heightLineDefault
)
92 heightLineDefault
= heightLine
;
93 if ( !heightLineDefault
)
94 GetTextExtent(_T("W"), NULL
, &heightLineDefault
);
96 heightTextTotal
+= heightLineDefault
;
100 GetTextExtent(curLine
, &widthLine
, &heightLine
);
101 if ( widthLine
> widthTextMax
)
102 widthTextMax
= widthLine
;
103 heightTextTotal
+= heightLine
;
106 if ( *pc
== wxT('\n') )
118 // we shouldn't take into account the '&' which just introduces the
119 // mnemonic characters and so are not shown on the screen -- except
120 // when it is preceded by another '&' in which case it stands for a
122 if ( *pc
== _T('&') )
124 if ( !lastWasAmpersand
)
126 lastWasAmpersand
= TRUE
;
128 // skip the statement adding pc to curLine below
132 // it is a literal ampersand
133 lastWasAmpersand
= FALSE
;
140 return wxSize(widthTextMax
, heightTextTotal
);
143 void wxStaticText::DoSetSize(int x
, int y
, int w
, int h
, int sizeFlags
)
145 // we need to refresh the window after changing its size as the standard
146 // control doesn't always update itself properly
147 wxStaticTextBase::DoSetSize(x
, y
, w
, h
, sizeFlags
);
152 void wxStaticText::SetLabel(const wxString
& label
)
154 wxStaticTextBase::SetLabel(label
);
156 // adjust the size of the window to fit to the label unless autoresizing is
158 if ( !(GetWindowStyle() & wxST_NO_AUTORESIZE
) )
160 DoSetSize(-1, -1, -1, -1, wxSIZE_AUTO_WIDTH
| wxSIZE_AUTO_HEIGHT
);
165 bool wxStaticText::SetFont(const wxFont
& font
)
167 bool ret
= wxControl::SetFont(font
);
169 // adjust the size of the window to fit to the label unless autoresizing is
171 if ( !(GetWindowStyle() & wxST_NO_AUTORESIZE
) )
173 DoSetSize(-1, -1, -1, -1, wxSIZE_AUTO_WIDTH
| wxSIZE_AUTO_HEIGHT
);
179 #endif // wxUSE_STATTEXT