]> git.saurik.com Git - wxWidgets.git/blame - src/generic/statusbr.cpp
Cleaning of sources (Univ related files). -1/TRUE/FALSE/wxIDY_ANY/wxDefaultCoord...
[wxWidgets.git] / src / generic / statusbr.cpp
CommitLineData
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$
6aa89a22 8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
c801d85f
KB
10/////////////////////////////////////////////////////////////////////////////
11
14f355c2 12#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
c801d85f
KB
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
2b5f62a0
VZ
32#ifdef __WXGTK20__
33#include "wx/gtk/private.h"
34#include "wx/gtk/win_gtk.h"
35#endif
36
412e4edf 37#include "wx/statusbr.h"
c801d85f 38
84f68c21
VZ
39// we only have to do it here when we use wxStatusBarGeneric in addition to the
40// standard wxStatusBar class, if wxStatusBarGeneric is the same as
41// wxStatusBar, then the corresponding IMPLEMENT_DYNAMIC_CLASS is already in
42// common/statbar.cpp
43#if defined(__WXMAC__) || \
44 (defined(wxUSE_NATIVE_STATUSBAR) && wxUSE_NATIVE_STATUSBAR)
b64a8473 45 #include "wx/generic/statusbr.h"
c801d85f 46
b64a8473
VZ
47 IMPLEMENT_DYNAMIC_CLASS(wxStatusBarGeneric, wxWindow)
48#endif // wxUSE_NATIVE_STATUSBAR
ed791986 49
ed791986
VZ
50BEGIN_EVENT_TABLE(wxStatusBarGeneric, wxWindow)
51 EVT_PAINT(wxStatusBarGeneric::OnPaint)
2b5f62a0
VZ
52 EVT_LEFT_DOWN(wxStatusBarGeneric::OnLeftDown)
53 EVT_RIGHT_DOWN(wxStatusBarGeneric::OnRightDown)
ed791986 54 EVT_SYS_COLOUR_CHANGED(wxStatusBarGeneric::OnSysColourChanged)
c801d85f 55END_EVENT_TABLE()
c801d85f
KB
56
57// Default status border dimensions
58#define wxTHICK_LINE_BORDER 2
59#define wxTHICK_LINE_WIDTH 1
60
390015c0 61void wxStatusBarGeneric::Init()
c801d85f 62{
c801d85f
KB
63 m_borderX = wxTHICK_LINE_BORDER;
64 m_borderY = wxTHICK_LINE_BORDER;
65}
66
ed791986 67wxStatusBarGeneric::~wxStatusBarGeneric()
c801d85f 68{
390015c0
VZ
69 // VZ: what is this for? please comment...
70#ifdef __WXMSW__
71 SetFont(wxNullFont);
72#endif // MSW
c801d85f
KB
73}
74
ed791986 75bool wxStatusBarGeneric::Create(wxWindow *parent,
76880b87
RL
76 wxWindowID id,
77 long style,
78 const wxString& name)
c801d85f 79{
390015c0
VZ
80 if ( !wxWindow::Create(parent, id,
81 wxDefaultPosition, wxDefaultSize,
82 style | wxTAB_TRAVERSAL, name) )
ca65c044 83 return false;
c801d85f 84
f90566f5 85 // The status bar should have a themed background
ca65c044 86 SetThemeEnabled( true );
f90566f5 87
c801d85f 88 // Don't wish this to be found as a child
7c74e7fe 89#ifndef __WXMAC__
c0ed460c 90 parent->GetChildren().DeleteObject(this);
7c74e7fe 91#endif
c801d85f 92 InitColours();
1ca21594
VS
93
94#ifdef __WXPM__
95 SetFont(*wxSMALL_FONT);
96#endif
c801d85f 97
71e03035
VZ
98 // Set the height according to the font and the border size
99 wxClientDC dc(this);
100 dc.SetFont(GetFont());
101
102 wxCoord y;
103 dc.GetTextExtent(_T("X"), NULL, &y );
104
105 int height = (int)( (11*y)/10 + 2*GetBorderY());
106
422d0ff0 107 SetSize(wxDefaultCoord, wxDefaultCoord, wxDefaultCoord, height);
71e03035 108
8aa2cea1
RD
109 SetFieldsCount(1);
110
ca65c044 111 return true;
c801d85f
KB
112}
113
595a9493
RD
114
115wxSize wxStatusBarGeneric::DoGetBestSize() const
116{
117 int width, height;
118
119 // best width is the width of the parent
120 GetParent()->GetClientSize(&width, NULL);
121
122 // best height is as calculated above in Create
123 wxClientDC dc((wxWindow*)this);
124 dc.SetFont(GetFont());
125 wxCoord y;
126 dc.GetTextExtent(_T("X"), NULL, &y );
127 height = (int)( (11*y)/10 + 2*GetBorderY());
128
129 return wxSize(width, height);
ca65c044 130}
595a9493 131
cc56206f 132void wxStatusBarGeneric::SetFieldsCount(int number, const int *widths)
c801d85f 133{
390015c0 134 wxASSERT_MSG( number >= 0, _T("negative number of fields in wxStatusBar?") );
76880b87 135
893f25f2
JS
136 int i;
137 for(i = m_nFields; i < number; ++i)
76880b87
RL
138 m_statusStrings.Add( wxEmptyString );
139
893f25f2 140 for (i = m_nFields - 1; i >= number; --i)
390015c0 141 m_statusStrings.RemoveAt(i);
76880b87 142
c2919ab3 143 wxStatusBarBase::SetFieldsCount(number, widths);
76880b87
RL
144
145 wxASSERT_MSG( m_nFields == (int)m_statusStrings.GetCount(),
146 _T("This really should never happen, can we do away with m_nFields here?") );
c801d85f
KB
147}
148
ed791986 149void wxStatusBarGeneric::SetStatusText(const wxString& text, int number)
c801d85f 150{
633d67bb
VZ
151 wxCHECK_RET( (number >= 0) && (number < m_nFields),
152 _T("invalid status bar field index") );
c801d85f 153
87ff599d
JS
154 wxString oldText = m_statusStrings[number];
155 if (oldText != text)
156 {
157 m_statusStrings[number] = text;
c801d85f 158
87ff599d
JS
159 wxRect rect;
160 GetFieldRect(number, rect);
e715f4e7 161
ca65c044 162 Refresh( true, &rect );
87ff599d 163 }
c801d85f
KB
164}
165
ed791986 166wxString wxStatusBarGeneric::GetStatusText(int n) const
c801d85f 167{
ed791986
VZ
168 wxCHECK_MSG( (n >= 0) && (n < m_nFields), wxEmptyString,
169 _T("invalid status bar field index") );
170
c801d85f
KB
171 return m_statusStrings[n];
172}
173
ed791986 174void wxStatusBarGeneric::SetStatusWidths(int n, const int widths_field[])
c801d85f 175{
633d67bb
VZ
176 // only set status widths, when n == number of statuswindows
177 wxCHECK_RET( n == m_nFields, _T("status bar field count mismatch") );
178
179 // delete the old widths in any case - this function may be used to reset
180 // the widths to the default (all equal)
1f361cdd
MB
181 // MBN: this is incompatible with at least wxMSW and wxMAC and not
182 // documented, but let's keep it for now
183 ReinitWidths();
633d67bb 184
390015c0
VZ
185 // forget the old cached pixel widths
186 m_widthsAbs.Empty();
187
633d67bb
VZ
188 if ( !widths_field )
189 {
190 // not an error, see the comment above
f8a4fa4c 191 Refresh();
633d67bb
VZ
192 return;
193 }
194
1f361cdd 195 wxStatusBarBase::SetStatusWidths(n, widths_field);
c801d85f
KB
196}
197
ed791986 198void wxStatusBarGeneric::OnPaint(wxPaintEvent& WXUNUSED(event) )
c801d85f 199{
2b5f62a0 200 wxPaintDC dc(this);
c801d85f 201
2b5f62a0
VZ
202#ifdef __WXGTK20__
203 // Draw grip first
204 if (HasFlag( wxST_SIZEGRIP ))
205 {
206 int width, height;
207 GetClientSize(&width, &height);
8aa2cea1 208
2b5f62a0
VZ
209 gtk_paint_resize_grip( m_widget->style,
210 GTK_PIZZA(m_wxwindow)->bin_window,
211 (GtkStateType) GTK_WIDGET_STATE (m_widget),
212 NULL,
213 m_widget,
214 "statusbar",
215 GDK_WINDOW_EDGE_SOUTH_EAST,
216 width-height-2, 1, height-2, height-3 );
8aa2cea1 217
2b5f62a0
VZ
218 }
219#endif
5b3ed311 220
2b5f62a0
VZ
221 if (GetFont().Ok())
222 dc.SetFont(GetFont());
8aa2cea1 223
c801d85f
KB
224 dc.SetBackgroundMode(wxTRANSPARENT);
225
28be2e8a 226#ifdef __WXPM__
2b5f62a0 227 wxColour vColor;
b34590eb 228
e715f4e7 229 vColor = wxSystemSettings::GetColour(wxSYS_COLOUR_MENUBAR);
b34590eb 230 ::WinFillRect(dc.m_hPS, &dc.m_vRclPaint, vColor.GetPixel());
28be2e8a
DW
231#endif
232
2b5f62a0
VZ
233 for (int i = 0; i < m_nFields; i ++)
234 DrawField(dc, i);
c801d85f
KB
235}
236
ed791986 237void wxStatusBarGeneric::DrawFieldText(wxDC& dc, int i)
c801d85f
KB
238{
239 int leftMargin = 2;
240
16e93305 241 wxRect rect;
c801d85f
KB
242 GetFieldRect(i, rect);
243
244 wxString text(GetStatusText(i));
245
246 long x, y;
247
248 dc.GetTextExtent(text, &x, &y);
249
250 int xpos = rect.x + leftMargin;
251 int ypos = (int) (((rect.height - y) / 2 ) + rect.y + 0.5) ;
ed791986 252
7c74e7fe 253#if defined( __WXGTK__ ) || defined(__WXMAC__)
92976ab6
RR
254 xpos++;
255 ypos++;
256#endif
c801d85f
KB
257
258 dc.SetClippingRegion(rect.x, rect.y, rect.width, rect.height);
259
260 dc.DrawText(text, xpos, ypos);
261
262 dc.DestroyClippingRegion();
263}
264
ed791986 265void wxStatusBarGeneric::DrawField(wxDC& dc, int i)
c801d85f 266{
2b5f62a0
VZ
267 wxRect rect;
268 GetFieldRect(i, rect);
c801d85f 269
c2919ab3
VZ
270 int style = wxSB_NORMAL;
271 if (m_statusStyles)
272 style = m_statusStyles[i];
c801d85f 273
c2919ab3
VZ
274 if (style != wxSB_FLAT)
275 {
276 // Draw border
277 // For wxSB_NORMAL:
278 // Have grey background, plus 3-d border -
279 // One black rectangle.
280 // Inside this, left and top sides - dark grey. Bottom and right -
281 // white.
282 // Reverse it for wxSB_RAISED
283
284 dc.SetPen((style == wxSB_RAISED) ? m_mediumShadowPen : m_hilightPen);
285
286 #ifndef __WXPM__
287
288 // Right and bottom lines
289 dc.DrawLine(rect.x + rect.width, rect.y,
290 rect.x + rect.width, rect.y + rect.height);
291 dc.DrawLine(rect.x + rect.width, rect.y + rect.height,
292 rect.x, rect.y + rect.height);
293
294 dc.SetPen((style == wxSB_RAISED) ? m_hilightPen : m_mediumShadowPen);
295
296 // Left and top lines
297 dc.DrawLine(rect.x, rect.y + rect.height,
298 rect.x, rect.y);
299 dc.DrawLine(rect.x, rect.y,
300 rect.x + rect.width, rect.y);
301 #else
302
303 dc.DrawLine(rect.x + rect.width, rect.height + 2,
304 rect.x, rect.height + 2);
305 dc.DrawLine(rect.x + rect.width, rect.y,
306 rect.x + rect.width, rect.y + rect.height);
307
308 dc.SetPen((style == wxSB_RAISED) ? m_hilightPen : m_mediumShadowPen);
309 dc.DrawLine(rect.x, rect.y,
310 rect.x + rect.width, rect.y);
311 dc.DrawLine(rect.x, rect.y + rect.height,
312 rect.x, rect.y);
b34590eb
DW
313
314#endif
c2919ab3 315 }
c801d85f 316
f51f94ea 317 DrawFieldText(dc, i);
c801d85f
KB
318}
319
320 // Get the position and size of the field's internal bounding rectangle
ed791986 321bool wxStatusBarGeneric::GetFieldRect(int n, wxRect& rect) const
c801d85f 322{
ca65c044 323 wxCHECK_MSG( (n >= 0) && (n < m_nFields), false,
390015c0 324 _T("invalid status bar field index") );
c801d85f 325
390015c0
VZ
326 // FIXME: workarounds for OS/2 bugs have nothing to do here (VZ)
327 int width, height;
28be2e8a 328#ifdef __WXPM__
390015c0 329 GetSize(&width, &height);
28be2e8a 330#else
390015c0 331 GetClientSize(&width, &height);
28be2e8a 332#endif
c801d85f 333
2b5f62a0
VZ
334 // we cache m_widthsAbs between calls and recompute it if client
335 // width has changed (or when it is initially empty)
336 if ( m_widthsAbs.IsEmpty() || (m_lastClientWidth != width) )
c801d85f 337 {
390015c0
VZ
338 wxConstCast(this, wxStatusBarGeneric)->
339 m_widthsAbs = CalculateAbsWidths(width);
2b5f62a0
VZ
340 // remember last width for which we have recomputed the widths in pixels
341 wxConstCast(this, wxStatusBarGeneric)->
342 m_lastClientWidth = width;
c801d85f 343 }
c801d85f 344
390015c0
VZ
345 rect.x = 0;
346 for ( int i = 0; i < n; i++ )
347 {
348 rect.x += m_widthsAbs[i];
c801d85f 349 }
c801d85f 350
390015c0
VZ
351 rect.x += m_borderX;
352 rect.y = m_borderY;
c801d85f 353
390015c0
VZ
354 rect.width = m_widthsAbs[n] - 2*m_borderX;
355 rect.height = height - 2*m_borderY;
c801d85f 356
ca65c044 357 return true;
c801d85f
KB
358}
359
360// Initialize colours
ed791986 361void wxStatusBarGeneric::InitColours()
c801d85f
KB
362{
363 // Shadow colours
44c44c82 364#if defined(__WIN95__) || defined(__WXMAC__)
a756f210 365 wxColour mediumShadowColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DSHADOW));
c801d85f
KB
366 m_mediumShadowPen = wxPen(mediumShadowColour, 1, wxSOLID);
367
a756f210 368 wxColour hilightColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DHILIGHT));
c801d85f 369 m_hilightPen = wxPen(hilightColour, 1, wxSOLID);
b34590eb 370#elif defined(__WXPM__)
e715f4e7 371 m_mediumShadowPen = wxPen(wxColour(127, 127, 127), 1, wxSOLID);
b34590eb 372 m_hilightPen = wxPen("WHITE", 1, wxSOLID);
dd7d1435
DW
373
374 wxColour vColour;
375
5e5390dd 376 vColour.Set(wxString("LIGHT GREY"));
dd7d1435 377 SetBackgroundColour(vColour);
5e5390dd 378 vColour.Set(wxString("BLACK"));
dd7d1435 379 SetForegroundColour(vColour);
c801d85f
KB
380#else
381 m_mediumShadowPen = wxPen("GREY", 1, wxSOLID);
382 m_hilightPen = wxPen("WHITE", 1, wxSOLID);
383#endif
c801d85f
KB
384}
385
386// Responds to colour changes, and passes event on to children.
ed791986 387void wxStatusBarGeneric::OnSysColourChanged(wxSysColourChangedEvent& event)
c801d85f
KB
388{
389 InitColours();
c801d85f
KB
390
391 // Propagate the event to the non-top-level children
392 wxWindow::OnSysColourChanged(event);
393}
394
ed791986
VZ
395void wxStatusBarGeneric::SetMinHeight(int height)
396{
397 // check that this min height is not less than minimal height for the
398 // current font
399 wxClientDC dc(this);
400 wxCoord y;
2b5f62a0 401 dc.GetTextExtent( wxT("X"), NULL, &y );
ed791986
VZ
402
403 if ( height > (11*y)/10 )
404 {
422d0ff0 405 SetSize(wxDefaultCoord, wxDefaultCoord, wxDefaultCoord, height + 2*m_borderY);
ed791986
VZ
406 }
407}
408
2b5f62a0 409void wxStatusBarGeneric::OnLeftDown(wxMouseEvent& event)
390015c0 410{
2b5f62a0
VZ
411#ifdef __WXGTK20__
412 int width, height;
413 GetClientSize(&width, &height);
8aa2cea1 414
2b5f62a0
VZ
415 if (HasFlag( wxST_SIZEGRIP ) && (event.GetX() > width-height))
416 {
417 GtkWidget *ancestor = gtk_widget_get_toplevel( m_widget );
418
419 if (!GTK_IS_WINDOW (ancestor))
420 return;
390015c0 421
2b5f62a0
VZ
422 GdkWindow *source = GTK_PIZZA(m_wxwindow)->bin_window;
423
424 int org_x = 0;
425 int org_y = 0;
426 gdk_window_get_origin( source, &org_x, &org_y );
427
428 gtk_window_begin_resize_drag (GTK_WINDOW (ancestor),
429 GDK_WINDOW_EDGE_SOUTH_EAST,
430 1,
8aa2cea1
RD
431 org_x + event.GetX(),
432 org_y + event.GetY(),
2b5f62a0
VZ
433 0);
434 }
435 else
436 {
ca65c044 437 event.Skip( true );
2b5f62a0
VZ
438 }
439#else
ca65c044 440 event.Skip( true );
2b5f62a0
VZ
441#endif
442}
443
444void wxStatusBarGeneric::OnRightDown(wxMouseEvent& event)
445{
446#ifdef __WXGTK20__
447 int width, height;
448 GetClientSize(&width, &height);
8aa2cea1 449
2b5f62a0
VZ
450 if (HasFlag( wxST_SIZEGRIP ) && (event.GetX() > width-height))
451 {
452 GtkWidget *ancestor = gtk_widget_get_toplevel( m_widget );
453
454 if (!GTK_IS_WINDOW (ancestor))
455 return;
456
457 GdkWindow *source = GTK_PIZZA(m_wxwindow)->bin_window;
458
459 int org_x = 0;
460 int org_y = 0;
461 gdk_window_get_origin( source, &org_x, &org_y );
8aa2cea1 462
2b5f62a0
VZ
463 gtk_window_begin_move_drag (GTK_WINDOW (ancestor),
464 2,
8aa2cea1
RD
465 org_x + event.GetX(),
466 org_y + event.GetY(),
2b5f62a0
VZ
467 0);
468 }
469 else
470 {
ca65c044 471 event.Skip( true );
2b5f62a0
VZ
472 }
473#else
ca65c044 474 event.Skip( true );
2b5f62a0 475#endif
390015c0
VZ
476}
477
1e6feb95 478#endif // wxUSE_STATUSBAR
76880b87 479