]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
ed791986 VZ |
2 | // Name: generic/statusbr.cpp |
3 | // Purpose: wxStatusBarGeneric class implementation | |
c801d85f KB |
4 | // Author: Julian Smart |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart and Markus Holzem | |
ed791986 | 9 | // Licence: wxWindows license |
c801d85f KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifdef __GNUG__ | |
13 | #pragma implementation "statusbr.h" | |
14 | #endif | |
15 | ||
16 | // For compilers that support precompilation, includes "wx.h". | |
17 | #include "wx/wxprec.h" | |
18 | ||
19 | #ifdef __BORLANDC__ | |
20 | #pragma hdrstop | |
21 | #endif | |
22 | ||
1e6feb95 | 23 | #if wxUSE_STATUSBAR |
ed791986 | 24 | |
c801d85f KB |
25 | #ifndef WX_PRECOMP |
26 | #include "wx/setup.h" | |
27 | #include "wx/frame.h" | |
28 | #include "wx/settings.h" | |
29 | #include "wx/dcclient.h" | |
30 | #endif | |
31 | ||
412e4edf | 32 | #include "wx/statusbr.h" |
c801d85f | 33 | |
84f68c21 VZ |
34 | // we only have to do it here when we use wxStatusBarGeneric in addition to the |
35 | // standard wxStatusBar class, if wxStatusBarGeneric is the same as | |
36 | // wxStatusBar, then the corresponding IMPLEMENT_DYNAMIC_CLASS is already in | |
37 | // common/statbar.cpp | |
38 | #if defined(__WXMAC__) || \ | |
39 | (defined(wxUSE_NATIVE_STATUSBAR) && wxUSE_NATIVE_STATUSBAR) | |
b64a8473 | 40 | #include "wx/generic/statusbr.h" |
c801d85f | 41 | |
b64a8473 VZ |
42 | IMPLEMENT_DYNAMIC_CLASS(wxStatusBarGeneric, wxWindow) |
43 | #endif // wxUSE_NATIVE_STATUSBAR | |
ed791986 | 44 | |
ed791986 VZ |
45 | BEGIN_EVENT_TABLE(wxStatusBarGeneric, wxWindow) |
46 | EVT_PAINT(wxStatusBarGeneric::OnPaint) | |
47 | EVT_SYS_COLOUR_CHANGED(wxStatusBarGeneric::OnSysColourChanged) | |
c801d85f | 48 | END_EVENT_TABLE() |
c801d85f KB |
49 | |
50 | // Default status border dimensions | |
51 | #define wxTHICK_LINE_BORDER 2 | |
52 | #define wxTHICK_LINE_WIDTH 1 | |
53 | ||
ed791986 | 54 | wxStatusBarGeneric::wxStatusBarGeneric() |
c801d85f | 55 | { |
c801d85f KB |
56 | m_borderX = wxTHICK_LINE_BORDER; |
57 | m_borderY = wxTHICK_LINE_BORDER; | |
58 | } | |
59 | ||
ed791986 | 60 | wxStatusBarGeneric::~wxStatusBarGeneric() |
c801d85f | 61 | { |
f51f94ea VZ |
62 | # ifdef __WXMSW__ |
63 | SetFont(wxNullFont); | |
64 | # endif // MSW | |
c801d85f KB |
65 | } |
66 | ||
ed791986 | 67 | bool wxStatusBarGeneric::Create(wxWindow *parent, |
76880b87 RL |
68 | wxWindowID id, |
69 | long style, | |
70 | const wxString& name) | |
c801d85f | 71 | { |
76880b87 RL |
72 | // If create is ever meant to be re-entrant over the life of |
73 | // an object we should: | |
74 | // m_statusStrings.Empty(); | |
75 | ||
c801d85f KB |
76 | m_borderX = wxTHICK_LINE_BORDER; |
77 | m_borderY = wxTHICK_LINE_BORDER; | |
78 | ||
ed791986 VZ |
79 | bool success = wxWindow::Create(parent, id, |
80 | wxDefaultPosition, wxDefaultSize, | |
81 | style | wxTAB_TRAVERSAL, name); | |
c801d85f | 82 | |
f90566f5 RR |
83 | // The status bar should have a themed background |
84 | SetThemeEnabled( TRUE ); | |
85 | ||
c801d85f | 86 | // Don't wish this to be found as a child |
7c74e7fe | 87 | #ifndef __WXMAC__ |
c0ed460c | 88 | parent->GetChildren().DeleteObject(this); |
7c74e7fe | 89 | #endif |
c801d85f KB |
90 | InitColours(); |
91 | ||
92 | SetFont(m_defaultStatusBarFont); | |
93 | ||
71e03035 VZ |
94 | // Set the height according to the font and the border size |
95 | wxClientDC dc(this); | |
96 | dc.SetFont(GetFont()); | |
97 | ||
98 | wxCoord y; | |
99 | dc.GetTextExtent(_T("X"), NULL, &y ); | |
100 | ||
101 | int height = (int)( (11*y)/10 + 2*GetBorderY()); | |
102 | ||
103 | SetSize(-1, -1, -1, height); | |
104 | ||
c801d85f KB |
105 | return success; |
106 | } | |
107 | ||
cc56206f | 108 | void wxStatusBarGeneric::SetFieldsCount(int number, const int *widths) |
c801d85f | 109 | { |
76880b87 RL |
110 | wxASSERT_MSG( number >= 0, |
111 | _T("Yes, number should be a size_t and less than no fields is silly.") ); | |
c801d85f | 112 | |
76880b87 RL |
113 | // if( number > m_nFields ) |
114 | ||
893f25f2 JS |
115 | int i; |
116 | for(i = m_nFields; i < number; ++i) | |
76880b87 RL |
117 | m_statusStrings.Add( wxEmptyString ); |
118 | ||
119 | // if( number < m_nFields ) | |
120 | ||
893f25f2 | 121 | for (i = m_nFields - 1; i >= number; --i) |
76880b87 RL |
122 | m_statusStrings.Remove(i); |
123 | ||
124 | m_nFields = number; | |
125 | ||
126 | wxASSERT_MSG( m_nFields == (int)m_statusStrings.GetCount(), | |
127 | _T("This really should never happen, can we do away with m_nFields here?") ); | |
c801d85f | 128 | |
633d67bb | 129 | SetStatusWidths(number, widths); |
c801d85f KB |
130 | } |
131 | ||
ed791986 | 132 | void wxStatusBarGeneric::SetStatusText(const wxString& text, int number) |
c801d85f | 133 | { |
633d67bb VZ |
134 | wxCHECK_RET( (number >= 0) && (number < m_nFields), |
135 | _T("invalid status bar field index") ); | |
c801d85f | 136 | |
633d67bb | 137 | m_statusStrings[number] = text; |
c801d85f | 138 | |
f8a4fa4c VZ |
139 | wxRect rect; |
140 | GetFieldRect(number, rect); | |
e715f4e7 | 141 | |
f90566f5 | 142 | Refresh( TRUE, &rect ); |
c801d85f KB |
143 | } |
144 | ||
ed791986 | 145 | wxString wxStatusBarGeneric::GetStatusText(int n) const |
c801d85f | 146 | { |
ed791986 VZ |
147 | wxCHECK_MSG( (n >= 0) && (n < m_nFields), wxEmptyString, |
148 | _T("invalid status bar field index") ); | |
149 | ||
c801d85f KB |
150 | return m_statusStrings[n]; |
151 | } | |
152 | ||
ed791986 | 153 | void wxStatusBarGeneric::SetStatusWidths(int n, const int widths_field[]) |
c801d85f | 154 | { |
633d67bb VZ |
155 | // only set status widths, when n == number of statuswindows |
156 | wxCHECK_RET( n == m_nFields, _T("status bar field count mismatch") ); | |
157 | ||
158 | // delete the old widths in any case - this function may be used to reset | |
159 | // the widths to the default (all equal) | |
1f361cdd MB |
160 | // MBN: this is incompatible with at least wxMSW and wxMAC and not |
161 | // documented, but let's keep it for now | |
162 | ReinitWidths(); | |
633d67bb VZ |
163 | |
164 | if ( !widths_field ) | |
165 | { | |
166 | // not an error, see the comment above | |
f8a4fa4c | 167 | Refresh(); |
633d67bb VZ |
168 | return; |
169 | } | |
170 | ||
1f361cdd | 171 | wxStatusBarBase::SetStatusWidths(n, widths_field); |
c801d85f KB |
172 | } |
173 | ||
ed791986 | 174 | void wxStatusBarGeneric::OnPaint(wxPaintEvent& WXUNUSED(event) ) |
c801d85f KB |
175 | { |
176 | wxPaintDC dc(this); | |
177 | ||
5b3ed311 | 178 | |
c801d85f | 179 | int i; |
c0ed460c JS |
180 | if ( GetFont().Ok() ) |
181 | dc.SetFont(GetFont()); | |
c801d85f KB |
182 | dc.SetBackgroundMode(wxTRANSPARENT); |
183 | ||
28be2e8a | 184 | #ifdef __WXPM__ |
b34590eb DW |
185 | wxColour vColor; |
186 | ||
e715f4e7 | 187 | vColor = wxSystemSettings::GetColour(wxSYS_COLOUR_MENUBAR); |
b34590eb | 188 | ::WinFillRect(dc.m_hPS, &dc.m_vRclPaint, vColor.GetPixel()); |
28be2e8a DW |
189 | #endif |
190 | ||
c801d85f | 191 | for ( i = 0; i < m_nFields; i ++ ) |
f51f94ea | 192 | DrawField(dc, i); |
e97f20a0 | 193 | |
28be2e8a DW |
194 | #ifdef __WXMSW__ |
195 | dc.SetFont(wxNullFont); | |
196 | #endif // MSW | |
c801d85f KB |
197 | } |
198 | ||
ed791986 | 199 | void wxStatusBarGeneric::DrawFieldText(wxDC& dc, int i) |
c801d85f KB |
200 | { |
201 | int leftMargin = 2; | |
202 | ||
16e93305 | 203 | wxRect rect; |
c801d85f KB |
204 | GetFieldRect(i, rect); |
205 | ||
206 | wxString text(GetStatusText(i)); | |
207 | ||
208 | long x, y; | |
209 | ||
210 | dc.GetTextExtent(text, &x, &y); | |
211 | ||
212 | int xpos = rect.x + leftMargin; | |
213 | int ypos = (int) (((rect.height - y) / 2 ) + rect.y + 0.5) ; | |
ed791986 | 214 | |
7c74e7fe | 215 | #if defined( __WXGTK__ ) || defined(__WXMAC__) |
92976ab6 RR |
216 | xpos++; |
217 | ypos++; | |
218 | #endif | |
c801d85f KB |
219 | |
220 | dc.SetClippingRegion(rect.x, rect.y, rect.width, rect.height); | |
221 | ||
222 | dc.DrawText(text, xpos, ypos); | |
223 | ||
224 | dc.DestroyClippingRegion(); | |
225 | } | |
226 | ||
ed791986 | 227 | void wxStatusBarGeneric::DrawField(wxDC& dc, int i) |
c801d85f | 228 | { |
16e93305 | 229 | wxRect rect; |
c801d85f KB |
230 | GetFieldRect(i, rect); |
231 | ||
232 | // Draw border | |
233 | // Have grey background, plus 3-d border - | |
234 | // One black rectangle. | |
235 | // Inside this, left and top sides - dark grey. Bottom and right - | |
236 | // white. | |
237 | ||
f51f94ea | 238 | dc.SetPen(m_hilightPen); |
c801d85f | 239 | |
b34590eb DW |
240 | #ifndef __WXPM__ |
241 | ||
c801d85f KB |
242 | // Right and bottom white lines |
243 | dc.DrawLine(rect.x + rect.width, rect.y, | |
244 | rect.x + rect.width, rect.y + rect.height); | |
245 | dc.DrawLine(rect.x + rect.width, rect.y + rect.height, | |
f51f94ea | 246 | rect.x, rect.y + rect.height); |
c801d85f | 247 | |
f51f94ea | 248 | dc.SetPen(m_mediumShadowPen); |
c801d85f KB |
249 | |
250 | // Left and top grey lines | |
251 | dc.DrawLine(rect.x, rect.y + rect.height, | |
f51f94ea | 252 | rect.x, rect.y); |
c801d85f | 253 | dc.DrawLine(rect.x, rect.y, |
f51f94ea | 254 | rect.x + rect.width, rect.y); |
b34590eb | 255 | #else |
e715f4e7 DW |
256 | |
257 | dc.DrawLine(rect.x + rect.width, rect.height + 2, | |
258 | rect.x, rect.height + 2); | |
702c190d | 259 | dc.DrawLine(rect.x + rect.width, rect.y, |
e715f4e7 DW |
260 | rect.x + rect.width, rect.y + rect.height); |
261 | ||
b34590eb | 262 | dc.SetPen(m_mediumShadowPen); |
e715f4e7 DW |
263 | dc.DrawLine(rect.x, rect.y, |
264 | rect.x + rect.width, rect.y); | |
265 | dc.DrawLine(rect.x, rect.y + rect.height, | |
266 | rect.x, rect.y); | |
b34590eb DW |
267 | |
268 | #endif | |
c801d85f | 269 | |
f51f94ea | 270 | DrawFieldText(dc, i); |
c801d85f KB |
271 | } |
272 | ||
273 | // Get the position and size of the field's internal bounding rectangle | |
ed791986 | 274 | bool wxStatusBarGeneric::GetFieldRect(int n, wxRect& rect) const |
c801d85f | 275 | { |
ed791986 VZ |
276 | wxCHECK_MSG( (n >= 0) && (n < m_nFields), FALSE, |
277 | _T("invalid status bar field index") ); | |
c801d85f KB |
278 | |
279 | int width, height; | |
28be2e8a DW |
280 | #ifdef __WXPM__ |
281 | GetSize(&width, &height); | |
282 | #else | |
c801d85f | 283 | GetClientSize(&width, &height); |
28be2e8a | 284 | #endif |
c801d85f KB |
285 | |
286 | int i; | |
287 | int sum_of_nonvar = 0; | |
288 | int num_of_var = 0; | |
289 | bool do_same_width = FALSE; | |
290 | ||
291 | int fieldWidth = 0; | |
292 | int fieldPosition = 0; | |
293 | ||
294 | if (m_statusWidths) | |
295 | { | |
296 | // if sum(not variable Windows) > c_width - (20 points per variable_window) | |
297 | // then do_same_width = TRUE; | |
298 | for (i = 0; i < m_nFields; i++) | |
299 | { | |
300 | if (m_statusWidths[i] > 0) sum_of_nonvar += m_statusWidths[i]; | |
301 | else num_of_var++; | |
302 | } | |
303 | if (sum_of_nonvar > (width - 20*num_of_var)) do_same_width = TRUE; | |
304 | } | |
305 | else do_same_width = TRUE; | |
306 | if (do_same_width) | |
307 | { | |
308 | for (i = 0; i < m_nFields; i++) | |
309 | { | |
310 | fieldWidth = (int)(width/m_nFields); | |
f51f94ea VZ |
311 | fieldPosition = i*fieldWidth; |
312 | if ( i == n ) | |
313 | break; | |
c801d85f KB |
314 | } |
315 | } | |
316 | else // no_same_width | |
317 | { | |
318 | int *tempwidth = new int[m_nFields]; | |
319 | int temppos = 0; | |
320 | for (i = 0; i < m_nFields; i++) | |
321 | { | |
322 | if (m_statusWidths[i] > 0) tempwidth[i] = m_statusWidths[i]; | |
323 | else tempwidth[i] = (width - sum_of_nonvar) / num_of_var; | |
324 | } | |
325 | for (i = 0; i < m_nFields; i++) | |
326 | { | |
f51f94ea VZ |
327 | fieldWidth = tempwidth[i]; |
328 | fieldPosition = temppos; | |
c801d85f | 329 | |
f51f94ea | 330 | temppos += tempwidth[i]; |
c801d85f | 331 | |
f51f94ea VZ |
332 | if ( i == n ) |
333 | break; | |
c801d85f KB |
334 | } |
335 | delete [] tempwidth; | |
336 | } | |
337 | ||
338 | rect.x = fieldPosition + wxTHICK_LINE_BORDER; | |
f51f94ea | 339 | rect.y = wxTHICK_LINE_BORDER; |
c801d85f | 340 | |
f51f94ea VZ |
341 | rect.width = fieldWidth - 2 * wxTHICK_LINE_BORDER ; |
342 | rect.height = height - 2 * wxTHICK_LINE_BORDER ; | |
c801d85f | 343 | |
f51f94ea | 344 | return TRUE; |
c801d85f KB |
345 | } |
346 | ||
347 | // Initialize colours | |
ed791986 | 348 | void wxStatusBarGeneric::InitColours() |
c801d85f KB |
349 | { |
350 | // Shadow colours | |
5b3ed311 | 351 | #if defined(__WIN95__) |
a756f210 | 352 | wxColour mediumShadowColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DSHADOW)); |
c801d85f KB |
353 | m_mediumShadowPen = wxPen(mediumShadowColour, 1, wxSOLID); |
354 | ||
a756f210 | 355 | wxColour hilightColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DHILIGHT)); |
c801d85f | 356 | m_hilightPen = wxPen(hilightColour, 1, wxSOLID); |
b34590eb | 357 | #elif defined(__WXPM__) |
e715f4e7 | 358 | m_mediumShadowPen = wxPen(wxColour(127, 127, 127), 1, wxSOLID); |
b34590eb | 359 | m_hilightPen = wxPen("WHITE", 1, wxSOLID); |
dd7d1435 DW |
360 | |
361 | wxColour vColour; | |
362 | ||
5e5390dd | 363 | vColour.Set(wxString("LIGHT GREY")); |
dd7d1435 | 364 | SetBackgroundColour(vColour); |
5e5390dd | 365 | vColour.Set(wxString("BLACK")); |
dd7d1435 DW |
366 | SetForegroundColour(vColour); |
367 | m_defaultStatusBarFont = *wxSMALL_FONT; | |
c801d85f KB |
368 | #else |
369 | m_mediumShadowPen = wxPen("GREY", 1, wxSOLID); | |
370 | m_hilightPen = wxPen("WHITE", 1, wxSOLID); | |
371 | #endif | |
372 | ||
dd7d1435 | 373 | #ifndef __WXPM__ |
a756f210 VS |
374 | m_defaultStatusBarFont = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT); |
375 | SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE)); | |
dd7d1435 | 376 | #endif |
c801d85f KB |
377 | } |
378 | ||
379 | // Responds to colour changes, and passes event on to children. | |
ed791986 | 380 | void wxStatusBarGeneric::OnSysColourChanged(wxSysColourChangedEvent& event) |
c801d85f KB |
381 | { |
382 | InitColours(); | |
383 | Refresh(); | |
384 | ||
385 | // Propagate the event to the non-top-level children | |
386 | wxWindow::OnSysColourChanged(event); | |
387 | } | |
388 | ||
ed791986 VZ |
389 | void wxStatusBarGeneric::SetMinHeight(int height) |
390 | { | |
391 | // check that this min height is not less than minimal height for the | |
392 | // current font | |
393 | wxClientDC dc(this); | |
394 | wxCoord y; | |
395 | dc.GetTextExtent( _T("X"), NULL, &y ); | |
396 | ||
397 | if ( height > (11*y)/10 ) | |
398 | { | |
399 | SetSize(-1, -1, -1, height + 2*m_borderY); | |
400 | } | |
401 | } | |
402 | ||
1e6feb95 | 403 | #endif // wxUSE_STATUSBAR |
76880b87 RL |
404 | |
405 | // vi:sts=4:sw=4:et |