1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/univ/statusbr.cpp
3 // Purpose: wxStatusBar implementation
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2000 SciTech Software, Inc. (www.scitechsoft.com)
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #include "wx/wxprec.h"
28 #include "wx/statusbr.h"
31 #include "wx/settings.h"
32 #include "wx/dcclient.h"
33 #include "wx/toplevel.h"
36 #include "wx/univ/renderer.h"
38 // ============================================================================
40 // ============================================================================
42 BEGIN_EVENT_TABLE(wxStatusBarUniv
, wxStatusBarBase
)
43 EVT_SIZE(wxStatusBarUniv::OnSize
)
45 WX_EVENT_TABLE_INPUT_CONSUMER(wxStatusBarUniv
)
48 WX_FORWARD_TO_INPUT_CONSUMER(wxStatusBarUniv
)
50 // ----------------------------------------------------------------------------
52 // ----------------------------------------------------------------------------
54 void wxStatusBarUniv::Init()
58 bool wxStatusBarUniv::Create(wxWindow
*parent
,
63 if ( !wxWindow::Create(parent
, id
,
64 wxDefaultPosition
, wxDefaultSize
,
72 CreateInputHandler(wxINP_HANDLER_STATUSBAR
);
74 SetSize(DoGetBestSize());
79 // ----------------------------------------------------------------------------
81 // ----------------------------------------------------------------------------
83 wxRect
wxStatusBarUniv::GetTotalFieldRect(wxCoord
*borderBetweenFields
)
85 wxRect rect
= GetClientRect();
87 // no, don't do this - the borders are meant to be inside this rect
88 // wxSize sizeBorders =
89 if ( borderBetweenFields
)
90 *borderBetweenFields
= m_renderer
->GetStatusBarBorderBetweenFields();
91 //rect.Deflate(sizeBorders.x, sizeBorders.y);
93 // recalc the field widths if needed
94 if ( m_widthsAbs
.IsEmpty() )
96 // the total width for the fields doesn't include the borders between
98 m_widthsAbs
= CalculateAbsWidths(rect
.width
-
99 *borderBetweenFields
*(m_nFields
- 1));
105 void wxStatusBarUniv::DoDraw(wxControlRenderer
*renderer
)
107 // get the fields rect
108 wxCoord borderBetweenFields
;
109 wxRect rect
= GetTotalFieldRect(&borderBetweenFields
);
112 wxDC
& dc
= renderer
->GetDC();
113 dc
.SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
115 // do draw the fields
116 int flags
= IsEnabled() ? 0 : (int)wxCONTROL_DISABLED
;
117 for ( int n
= 0; n
< m_nFields
; n
++ )
119 rect
.width
= m_widthsAbs
[n
];
121 if ( IsExposed(rect
) )
123 wxTopLevelWindow
*parentTLW
= wxDynamicCast(GetParent(), wxTopLevelWindow
);
125 // the size grip may be drawn only on the last field and only if we
126 // have the corresponding style and even then only if we really can
128 if ( n
== m_nFields
- 1 &&
129 HasFlag(wxST_SIZEGRIP
) &&
130 GetParent()->HasFlag(wxRESIZE_BORDER
) &&
131 parentTLW
&& !parentTLW
->IsMaximized() )
133 flags
|= wxCONTROL_SIZEGRIP
;
138 style
= m_statusStyles
[n
];
141 m_renderer
->DrawStatusField(dc
, rect
, m_statusText
[n
], flags
, style
);
144 rect
.x
+= rect
.width
+ borderBetweenFields
;
148 void wxStatusBarUniv::RefreshField(int i
)
151 if ( GetFieldRect(i
, rect
) )
157 // ----------------------------------------------------------------------------
159 // ----------------------------------------------------------------------------
161 void wxStatusBarUniv::SetStatusText(const wxString
& text
, int number
)
163 wxCHECK_RET( number
>= 0 && number
< m_nFields
,
164 _T("invalid status bar field index in SetStatusText()") );
166 if ( text
== m_statusText
[number
] )
172 m_statusText
[number
] = text
;
174 RefreshField(number
);
177 wxString
wxStatusBarUniv::GetStatusText(int number
) const
179 wxCHECK_MSG( number
>= 0 && number
< m_nFields
, wxEmptyString
,
180 _T("invalid status bar field index") );
182 return m_statusText
[number
];
185 // ----------------------------------------------------------------------------
186 // fields count/widths
187 // ----------------------------------------------------------------------------
189 void wxStatusBarUniv::SetFieldsCount(int number
, const int *widths
)
191 m_statusText
.SetCount(number
);
192 wxStatusBarBase::SetFieldsCount(number
, widths
);
196 void wxStatusBarUniv::SetStatusWidths(int n
, const int widths
[])
198 wxStatusBarBase::SetStatusWidths(n
, widths
);
203 // ----------------------------------------------------------------------------
205 // ----------------------------------------------------------------------------
207 void wxStatusBarUniv::OnSize(wxSizeEvent
& event
)
209 // we don't need to refresh the fields whose width didn't change, so find
210 // the first field whose width did change and refresh starting from it
212 if ( m_statusWidths
)
214 for ( field
= 0; field
< m_nFields
; field
++ )
216 if ( m_statusWidths
[field
] < 0 )
223 else // all fields have the same width
225 // hence all fields widths have changed
229 if ( field
< m_nFields
)
231 // call this before invalidating the old widths as we want to use them,
233 wxRect rect
= DoGetFieldRect(field
);
235 // invalidate the widths, we'll have to recalc them
238 // refresh everything after the first invalid field
240 rect
.SetRight(event
.GetSize().x
);
241 rect
.height
= event
.GetSize().y
;
248 bool wxStatusBarUniv::GetFieldRect(int n
, wxRect
& rect
) const
250 wxCHECK_MSG( n
>= 0 && n
< m_nFields
, false,
251 _T("invalid field index in GetFieldRect()") );
253 // this is a fix for a bug exhibited by the statbar sample: if
254 // GetFieldRect() is called from the derived class OnSize() handler, then
255 // our geometry info is wrong as our OnSize() didn't invalidate m_widthsAbs
256 // yet - so recalc it just in case
257 wxConstCast(this, wxStatusBarUniv
)->m_widthsAbs
.Empty();
259 rect
= DoGetFieldRect(n
);
264 wxRect
wxStatusBarUniv::DoGetFieldRect(int n
) const
266 wxStatusBarUniv
*self
= wxConstCast(this, wxStatusBarUniv
);
268 wxCoord borderBetweenFields
;
269 wxRect rect
= self
->GetTotalFieldRect(&borderBetweenFields
);
271 // it's the caller responsability to check this, if unsure - call
272 // GetFieldRect() instead
273 wxCHECK_MSG( !m_widthsAbs
.IsEmpty(), rect
,
274 _T("can't be called if we don't have the widths") );
276 for ( int i
= 0; i
<= n
; i
++ )
278 rect
.width
= m_widthsAbs
[i
];
281 rect
.x
+= rect
.width
+ borderBetweenFields
;
287 wxCoord
wxStatusBarUniv::GetHeight() const
289 return GetCharHeight() + 2*GetBorderY();
292 wxSize
wxStatusBarUniv::DoGetBestSize() const
294 return wxSize(100, GetHeight());
297 void wxStatusBarUniv::DoSetSize(int x
, int y
,
298 int width
, int WXUNUSED(height
),
301 wxStatusBarBase::DoSetSize(x
, y
, width
, GetHeight(), sizeFlags
);
304 // ----------------------------------------------------------------------------
306 // ----------------------------------------------------------------------------
308 void wxStatusBarUniv::SetMinHeight(int WXUNUSED(height
))
310 // nothing to do here, we don't support it - and why would we?
313 int wxStatusBarUniv::GetBorderX() const
315 return m_renderer
->GetStatusBarBorders().x
+
316 m_renderer
->GetStatusBarFieldMargins().x
;
319 int wxStatusBarUniv::GetBorderY() const
321 return m_renderer
->GetStatusBarBorders().y
+
322 m_renderer
->GetStatusBarFieldMargins().y
;
325 #endif // wxUSE_STATUSBAR