1 /////////////////////////////////////////////////////////////////////////////
2 // Name: generic/statusbr.cpp
3 // Purpose: wxStatusBarGeneric class implementation
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
13 #pragma implementation "statusbr.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
28 #include "wx/settings.h"
29 #include "wx/dcclient.h"
33 #include "wx/gtk/private.h"
34 #include "wx/gtk/win_gtk.h"
37 #include "wx/statusbr.h"
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
43 #if defined(__WXMAC__) || \
44 (defined(wxUSE_NATIVE_STATUSBAR) && wxUSE_NATIVE_STATUSBAR)
45 #include "wx/generic/statusbr.h"
47 IMPLEMENT_DYNAMIC_CLASS(wxStatusBarGeneric
, wxWindow
)
48 #endif // wxUSE_NATIVE_STATUSBAR
50 BEGIN_EVENT_TABLE(wxStatusBarGeneric
, wxWindow
)
51 EVT_PAINT(wxStatusBarGeneric::OnPaint
)
52 EVT_LEFT_DOWN(wxStatusBarGeneric::OnLeftDown
)
53 EVT_RIGHT_DOWN(wxStatusBarGeneric::OnRightDown
)
54 EVT_SYS_COLOUR_CHANGED(wxStatusBarGeneric::OnSysColourChanged
)
57 // Default status border dimensions
58 #define wxTHICK_LINE_BORDER 2
59 #define wxTHICK_LINE_WIDTH 1
61 void wxStatusBarGeneric::Init()
63 m_borderX
= wxTHICK_LINE_BORDER
;
64 m_borderY
= wxTHICK_LINE_BORDER
;
67 wxStatusBarGeneric::~wxStatusBarGeneric()
69 // VZ: what is this for? please comment...
71 // JACS: commenting out since it causes an assert
72 // and there seems no reason for it.
73 // SetFont(wxNullFont);
77 bool wxStatusBarGeneric::Create(wxWindow
*parent
,
82 if ( !wxWindow::Create(parent
, id
,
83 wxDefaultPosition
, wxDefaultSize
,
84 style
| wxTAB_TRAVERSAL
, name
) )
87 // The status bar should have a themed background
88 SetThemeEnabled( true );
90 // Don't wish this to be found as a child
91 // JACS: this is not true for the Windows native version,
92 // so why should it be true here? This control can be used
93 // as a child of an arbitrary window, not just for frames.
96 // parent->GetChildren().DeleteObject(this);
101 SetFont(*wxSMALL_FONT
);
104 // Set the height according to the font and the border size
106 dc
.SetFont(GetFont());
109 dc
.GetTextExtent(_T("X"), NULL
, &y
);
111 int height
= (int)( (11*y
)/10 + 2*GetBorderY());
113 SetSize(wxDefaultCoord
, wxDefaultCoord
, wxDefaultCoord
, height
);
121 wxSize
wxStatusBarGeneric::DoGetBestSize() const
125 // best width is the width of the parent
126 GetParent()->GetClientSize(&width
, NULL
);
128 // best height is as calculated above in Create
129 wxClientDC
dc((wxWindow
*)this);
130 dc
.SetFont(GetFont());
132 dc
.GetTextExtent(_T("X"), NULL
, &y
);
133 height
= (int)( (11*y
)/10 + 2*GetBorderY());
135 return wxSize(width
, height
);
138 void wxStatusBarGeneric::SetFieldsCount(int number
, const int *widths
)
140 wxASSERT_MSG( number
>= 0, _T("negative number of fields in wxStatusBar?") );
143 for(i
= m_nFields
; i
< number
; ++i
)
144 m_statusStrings
.Add( wxEmptyString
);
146 for (i
= m_nFields
- 1; i
>= number
; --i
)
147 m_statusStrings
.RemoveAt(i
);
149 // forget the old cached pixel widths
152 wxStatusBarBase::SetFieldsCount(number
, widths
);
154 wxASSERT_MSG( m_nFields
== (int)m_statusStrings
.GetCount(),
155 _T("This really should never happen, can we do away with m_nFields here?") );
158 void wxStatusBarGeneric::SetStatusText(const wxString
& text
, int number
)
160 wxCHECK_RET( (number
>= 0) && (number
< m_nFields
),
161 _T("invalid status bar field index") );
163 wxString oldText
= m_statusStrings
[number
];
166 m_statusStrings
[number
] = text
;
169 GetFieldRect(number
, rect
);
171 Refresh( true, &rect
);
175 wxString
wxStatusBarGeneric::GetStatusText(int n
) const
177 wxCHECK_MSG( (n
>= 0) && (n
< m_nFields
), wxEmptyString
,
178 _T("invalid status bar field index") );
180 return m_statusStrings
[n
];
183 void wxStatusBarGeneric::SetStatusWidths(int n
, const int widths_field
[])
185 // only set status widths, when n == number of statuswindows
186 wxCHECK_RET( n
== m_nFields
, _T("status bar field count mismatch") );
188 // delete the old widths in any case - this function may be used to reset
189 // the widths to the default (all equal)
190 // MBN: this is incompatible with at least wxMSW and wxMAC and not
191 // documented, but let's keep it for now
194 // forget the old cached pixel widths
199 // not an error, see the comment above
204 wxStatusBarBase::SetStatusWidths(n
, widths_field
);
207 void wxStatusBarGeneric::OnPaint(wxPaintEvent
& WXUNUSED(event
) )
213 if (HasFlag( wxST_SIZEGRIP
))
216 GetClientSize(&width
, &height
);
218 gtk_paint_resize_grip( m_widget
->style
,
219 GTK_PIZZA(m_wxwindow
)->bin_window
,
220 (GtkStateType
) GTK_WIDGET_STATE (m_widget
),
224 GDK_WINDOW_EDGE_SOUTH_EAST
,
225 width
-height
-2, 1, height
-2, height
-3 );
231 dc
.SetFont(GetFont());
233 dc
.SetBackgroundMode(wxTRANSPARENT
);
238 vColor
= wxSystemSettings::GetColour(wxSYS_COLOUR_MENUBAR
);
239 ::WinFillRect(dc
.m_hPS
, &dc
.m_vRclPaint
, vColor
.GetPixel());
242 for (int i
= 0; i
< m_nFields
; i
++)
246 void wxStatusBarGeneric::DrawFieldText(wxDC
& dc
, int i
)
251 GetFieldRect(i
, rect
);
253 wxString
text(GetStatusText(i
));
257 dc
.GetTextExtent(text
, &x
, &y
);
259 int xpos
= rect
.x
+ leftMargin
;
260 int ypos
= (int) (((rect
.height
- y
) / 2 ) + rect
.y
+ 0.5) ;
262 #if defined( __WXGTK__ ) || defined(__WXMAC__)
267 dc
.SetClippingRegion(rect
.x
, rect
.y
, rect
.width
, rect
.height
);
269 dc
.DrawText(text
, xpos
, ypos
);
271 dc
.DestroyClippingRegion();
274 void wxStatusBarGeneric::DrawField(wxDC
& dc
, int i
)
277 GetFieldRect(i
, rect
);
279 int style
= wxSB_NORMAL
;
281 style
= m_statusStyles
[i
];
283 if (style
!= wxSB_FLAT
)
287 // Have grey background, plus 3-d border -
288 // One black rectangle.
289 // Inside this, left and top sides - dark grey. Bottom and right -
291 // Reverse it for wxSB_RAISED
293 dc
.SetPen((style
== wxSB_RAISED
) ? m_mediumShadowPen
: m_hilightPen
);
297 // Right and bottom lines
298 dc
.DrawLine(rect
.x
+ rect
.width
, rect
.y
,
299 rect
.x
+ rect
.width
, rect
.y
+ rect
.height
);
300 dc
.DrawLine(rect
.x
+ rect
.width
, rect
.y
+ rect
.height
,
301 rect
.x
, rect
.y
+ rect
.height
);
303 dc
.SetPen((style
== wxSB_RAISED
) ? m_hilightPen
: m_mediumShadowPen
);
305 // Left and top lines
306 dc
.DrawLine(rect
.x
, rect
.y
+ rect
.height
,
308 dc
.DrawLine(rect
.x
, rect
.y
,
309 rect
.x
+ rect
.width
, rect
.y
);
312 dc
.DrawLine(rect
.x
+ rect
.width
, rect
.height
+ 2,
313 rect
.x
, rect
.height
+ 2);
314 dc
.DrawLine(rect
.x
+ rect
.width
, rect
.y
,
315 rect
.x
+ rect
.width
, rect
.y
+ rect
.height
);
317 dc
.SetPen((style
== wxSB_RAISED
) ? m_hilightPen
: m_mediumShadowPen
);
318 dc
.DrawLine(rect
.x
, rect
.y
,
319 rect
.x
+ rect
.width
, rect
.y
);
320 dc
.DrawLine(rect
.x
, rect
.y
+ rect
.height
,
326 DrawFieldText(dc
, i
);
329 // Get the position and size of the field's internal bounding rectangle
330 bool wxStatusBarGeneric::GetFieldRect(int n
, wxRect
& rect
) const
332 wxCHECK_MSG( (n
>= 0) && (n
< m_nFields
), false,
333 _T("invalid status bar field index") );
335 // FIXME: workarounds for OS/2 bugs have nothing to do here (VZ)
338 GetSize(&width
, &height
);
340 GetClientSize(&width
, &height
);
343 // we cache m_widthsAbs between calls and recompute it if client
344 // width has changed (or when it is initially empty)
345 if ( m_widthsAbs
.IsEmpty() || (m_lastClientWidth
!= width
) )
347 wxConstCast(this, wxStatusBarGeneric
)->
348 m_widthsAbs
= CalculateAbsWidths(width
);
349 // remember last width for which we have recomputed the widths in pixels
350 wxConstCast(this, wxStatusBarGeneric
)->
351 m_lastClientWidth
= width
;
355 for ( int i
= 0; i
< n
; i
++ )
357 rect
.x
+= m_widthsAbs
[i
];
363 rect
.width
= m_widthsAbs
[n
] - 2*m_borderX
;
364 rect
.height
= height
- 2*m_borderY
;
369 // Initialize colours
370 void wxStatusBarGeneric::InitColours()
373 #if defined(__WIN95__) || defined(__WXMAC__)
374 wxColour
mediumShadowColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DSHADOW
));
375 m_mediumShadowPen
= wxPen(mediumShadowColour
, 1, wxSOLID
);
377 wxColour
hilightColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DHILIGHT
));
378 m_hilightPen
= wxPen(hilightColour
, 1, wxSOLID
);
379 #elif defined(__WXPM__)
380 m_mediumShadowPen
= wxPen(wxColour(127, 127, 127), 1, wxSOLID
);
381 m_hilightPen
= wxPen("WHITE", 1, wxSOLID
);
385 vColour
.Set(wxString("LIGHT GREY"));
386 SetBackgroundColour(vColour
);
387 vColour
.Set(wxString("BLACK"));
388 SetForegroundColour(vColour
);
390 m_mediumShadowPen
= wxPen("GREY", 1, wxSOLID
);
391 m_hilightPen
= wxPen("WHITE", 1, wxSOLID
);
395 // Responds to colour changes, and passes event on to children.
396 void wxStatusBarGeneric::OnSysColourChanged(wxSysColourChangedEvent
& event
)
400 // Propagate the event to the non-top-level children
401 wxWindow::OnSysColourChanged(event
);
404 void wxStatusBarGeneric::SetMinHeight(int height
)
406 // check that this min height is not less than minimal height for the
410 dc
.GetTextExtent( wxT("X"), NULL
, &y
);
412 if ( height
> (11*y
)/10 )
414 SetSize(wxDefaultCoord
, wxDefaultCoord
, wxDefaultCoord
, height
+ 2*m_borderY
);
418 void wxStatusBarGeneric::OnLeftDown(wxMouseEvent
& event
)
422 GetClientSize(&width
, &height
);
424 if (HasFlag( wxST_SIZEGRIP
) && (event
.GetX() > width
-height
))
426 GtkWidget
*ancestor
= gtk_widget_get_toplevel( m_widget
);
428 if (!GTK_IS_WINDOW (ancestor
))
431 GdkWindow
*source
= GTK_PIZZA(m_wxwindow
)->bin_window
;
435 gdk_window_get_origin( source
, &org_x
, &org_y
);
437 gtk_window_begin_resize_drag (GTK_WINDOW (ancestor
),
438 GDK_WINDOW_EDGE_SOUTH_EAST
,
440 org_x
+ event
.GetX(),
441 org_y
+ event
.GetY(),
453 void wxStatusBarGeneric::OnRightDown(wxMouseEvent
& event
)
457 GetClientSize(&width
, &height
);
459 if (HasFlag( wxST_SIZEGRIP
) && (event
.GetX() > width
-height
))
461 GtkWidget
*ancestor
= gtk_widget_get_toplevel( m_widget
);
463 if (!GTK_IS_WINDOW (ancestor
))
466 GdkWindow
*source
= GTK_PIZZA(m_wxwindow
)->bin_window
;
470 gdk_window_get_origin( source
, &org_x
, &org_y
);
472 gtk_window_begin_move_drag (GTK_WINDOW (ancestor
),
474 org_x
+ event
.GetX(),
475 org_y
+ event
.GetY(),
487 #endif // wxUSE_STATUSBAR