]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/stattext.cpp
da9906d9881f95fa5d42527de4c3c2b930f0b68f
1 /////////////////////////////////////////////////////////////////////////////
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"
29 #include "wx/stattext.h"
30 #include "wx/msw/private.h"
33 #if !USE_SHARED_LIBRARY
34 IMPLEMENT_DYNAMIC_CLASS(wxStaticText
, wxControl
)
37 bool wxStaticText::Create(wxWindow
*parent
, wxWindowID id
,
38 const wxString
& label
,
45 if (parent
) parent
->AddChild(this);
47 SetBackgroundColour(parent
->GetBackgroundColour()) ;
48 SetForegroundColour(parent
->GetForegroundColour()) ;
51 m_windowId
= (int)NewControlId();
60 m_windowStyle
= style
;
62 long msStyle
= WS_CHILD
|WS_VISIBLE
;
63 if (m_windowStyle
& wxALIGN_CENTRE
)
65 else if (m_windowStyle
& wxALIGN_RIGHT
)
70 // Even with extended styles, need to combine with WS_BORDER
71 // for them to look right.
72 if ( wxStyleHasBorder(m_windowStyle
) )
75 m_hWnd
= (WXHWND
)::CreateWindowEx(MakeExtendedStyle(m_windowStyle
), _T("STATIC"), (const wxChar
*)label
,
77 0, 0, 0, 0, (HWND
) parent
->GetHWND(), (HMENU
)m_windowId
,
78 wxGetInstance(), NULL
);
80 wxCHECK_MSG( m_hWnd
, FALSE
, _T("Failed to create static ctrl") );
84 if (!(GetParent()->GetWindowStyleFlag() & wxUSER_COLOURS))
85 Ctl3dSubclassCtl(static_item);
91 SetFont(parent
->GetFont());
92 SetSize(x
, y
, width
, height
);
97 void wxStaticText::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
99 int currentX
, currentY
;
100 GetPosition(¤tX
, ¤tY
);
105 if (x
== -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
107 if (y
== -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
110 AdjustForParentClientOrigin(x1
, y1
, sizeFlags
);
112 int actualWidth
= width
;
113 int actualHeight
= height
;
115 wxString
text(wxGetWindowText(GetHWND()));
117 int widthTextMax
= 0, widthLine
,
118 heightTextTotal
= 0, heightLine
;
121 for ( const char *pc
= text
; ; pc
++ ) {
122 if ( *pc
== '\n' || *pc
== '\0' ) {
123 GetTextExtent(curLine
, &widthLine
, &heightLine
);
124 if ( widthLine
> widthTextMax
)
125 widthTextMax
= widthLine
;
126 heightTextTotal
+= heightLine
;
144 // If we're prepared to use the existing width, then...
145 if (width
== -1 && ((sizeFlags
& wxSIZE_AUTO_WIDTH
) != wxSIZE_AUTO_WIDTH
))
149 else if (width
== -1)
151 actualWidth
= widthTextMax
;
154 // If we're prepared to use the existing height, then...
155 if (height
== -1 && ((sizeFlags
& wxSIZE_AUTO_HEIGHT
) != wxSIZE_AUTO_HEIGHT
))
159 else if (height
== -1)
161 actualHeight
= heightTextTotal
;
164 MoveWindow(GetHwnd(), x1
, y1
, actualWidth
, actualHeight
, TRUE
);
167 void wxStaticText::SetLabel(const wxString
& label
)
169 SetWindowText(GetHwnd(), label
);
171 DoSetSize(-1, -1, -1, -1, wxSIZE_AUTO_WIDTH
| wxSIZE_AUTO_HEIGHT
);
174 WXHBRUSH
wxStaticText::OnCtlColor(WXHDC pDC
, WXHWND pWnd
, WXUINT nCtlColor
,
175 WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
181 HBRUSH hbrush = Ctl3dCtlColorEx(message, wParam, lParam);
183 if (hbrush != (HBRUSH) 0)
186 return (HBRUSH)MSWDefWindowProc(message, wParam, lParam);
191 if (GetParent()->GetTransparentBackground())
192 SetBkMode((HDC
) pDC
, TRANSPARENT
);
194 SetBkMode((HDC
) pDC
, OPAQUE
);
196 ::SetBkColor((HDC
) pDC
, RGB(GetBackgroundColour().Red(), GetBackgroundColour().Green(), GetBackgroundColour().Blue()));
197 ::SetTextColor((HDC
) pDC
, RGB(GetForegroundColour().Red(), GetForegroundColour().Green(), GetForegroundColour().Blue()));
199 wxBrush
*backgroundBrush
= wxTheBrushList
->FindOrCreateBrush(GetBackgroundColour(), wxSOLID
);
201 // Note that this will be cleaned up in wxApp::OnIdle, if backgroundBrush
202 // has a zero usage count.
203 // backgroundBrush->RealizeResource();
204 return (WXHBRUSH
) backgroundBrush
->GetResourceHandle();
207 long wxStaticText::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
209 // Ensure that static items get messages. Some controls don't like this
210 // message to be intercepted (e.g. RichEdit), hence the tests.
211 if (nMsg
== WM_NCHITTEST
)
212 return (long)HTCLIENT
;
214 return wxWindow::MSWWindowProc(nMsg
, wParam
, lParam
);