]> git.saurik.com Git - wxWidgets.git/blame - src/univ/statusbr.cpp
Enable wxDVC on OS X Cocoa using the generic control.
[wxWidgets.git] / src / univ / statusbr.cpp
CommitLineData
71e03035 1/////////////////////////////////////////////////////////////////////////////
3304646d 2// Name: src/univ/statusbr.cpp
71e03035
VZ
3// Purpose: wxStatusBar implementation
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 14.10.01
7// RCS-ID: $Id$
8// Copyright: (c) 2000 SciTech Software, Inc. (www.scitechsoft.com)
65571936 9// Licence: wxWindows licence
71e03035
VZ
10/////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
71e03035
VZ
20#include "wx/wxprec.h"
21
22#ifdef __BORLANDC__
23 #pragma hdrstop
24#endif
25
26#if wxUSE_STATUSBAR
27
3304646d
WS
28#include "wx/statusbr.h"
29
71e03035 30#ifndef WX_PRECOMP
fe9fea7e
VS
31 #include "wx/settings.h"
32 #include "wx/dcclient.h"
1832043f 33 #include "wx/toplevel.h"
71e03035
VZ
34#endif
35
71e03035
VZ
36#include "wx/univ/renderer.h"
37
38// ============================================================================
39// implementation
40// ============================================================================
41
42BEGIN_EVENT_TABLE(wxStatusBarUniv, wxStatusBarBase)
43 EVT_SIZE(wxStatusBarUniv::OnSize)
44
45 WX_EVENT_TABLE_INPUT_CONSUMER(wxStatusBarUniv)
46END_EVENT_TABLE()
47
48WX_FORWARD_TO_INPUT_CONSUMER(wxStatusBarUniv)
49
50// ----------------------------------------------------------------------------
51// creation
52// ----------------------------------------------------------------------------
53
54void wxStatusBarUniv::Init()
55{
56}
57
58bool wxStatusBarUniv::Create(wxWindow *parent,
59 wxWindowID id,
60 long style,
61 const wxString& name)
62{
63 if ( !wxWindow::Create(parent, id,
64 wxDefaultPosition, wxDefaultSize,
65 style, name) )
66 {
a290fa5a 67 return false;
71e03035
VZ
68 }
69
70 SetFieldsCount(1);
b480f61b 71
71e03035
VZ
72 CreateInputHandler(wxINP_HANDLER_STATUSBAR);
73
74 SetSize(DoGetBestSize());
75
a290fa5a 76 return true;
71e03035
VZ
77}
78
79// ----------------------------------------------------------------------------
80// drawing
81// ----------------------------------------------------------------------------
82
83wxRect wxStatusBarUniv::GetTotalFieldRect(wxCoord *borderBetweenFields)
84{
71e03035
VZ
85 wxRect rect = GetClientRect();
86
87 // no, don't do this - the borders are meant to be inside this rect
cece1d88 88 // wxSize sizeBorders =
283c797c
VS
89 if ( borderBetweenFields )
90 *borderBetweenFields = m_renderer->GetStatusBarBorderBetweenFields();
71e03035
VZ
91 //rect.Deflate(sizeBorders.x, sizeBorders.y);
92
93 // recalc the field widths if needed
94 if ( m_widthsAbs.IsEmpty() )
95 {
96 // the total width for the fields doesn't include the borders between
97 // them
98 m_widthsAbs = CalculateAbsWidths(rect.width -
7b6fefbe 99 *borderBetweenFields*(m_panes.GetCount() - 1));
71e03035
VZ
100 }
101
102 return rect;
103}
104
105void wxStatusBarUniv::DoDraw(wxControlRenderer *renderer)
106{
107 // get the fields rect
108 wxCoord borderBetweenFields;
109 wxRect rect = GetTotalFieldRect(&borderBetweenFields);
110
111 // prepare the DC
112 wxDC& dc = renderer->GetDC();
686ca1b5
VS
113 dc.SetFont(GetFont());
114 dc.SetTextForeground(GetForegroundColour());
71e03035
VZ
115
116 // do draw the fields
b480f61b 117 int flags = IsEnabled() ? 0 : (int)wxCONTROL_DISABLED;
7b6fefbe 118 for ( int n = 0; n < (int)m_panes.GetCount(); n++ )
71e03035
VZ
119 {
120 rect.width = m_widthsAbs[n];
121
122 if ( IsExposed(rect) )
123 {
c60ba92d 124 wxTopLevelWindow *parentTLW = wxDynamicCast(GetParent(), wxTopLevelWindow);
5057e659 125
71e03035
VZ
126 // the size grip may be drawn only on the last field and only if we
127 // have the corresponding style and even then only if we really can
128 // resize this frame
7b6fefbe 129 if ( n == (int)m_panes.GetCount() - 1 &&
71e03035 130 HasFlag(wxST_SIZEGRIP) &&
c60ba92d
VS
131 GetParent()->HasFlag(wxRESIZE_BORDER) &&
132 parentTLW && !parentTLW->IsMaximized() )
71e03035 133 {
fb61f58a 134 flags |= wxCONTROL_SIZEGRIP;
71e03035
VZ
135 }
136
7b6fefbe 137 m_renderer->DrawStatusField(dc, rect, m_statusText[n], flags, m_panes[n].nStyle);
71e03035
VZ
138 }
139
140 rect.x += rect.width + borderBetweenFields;
141 }
142}
143
144void wxStatusBarUniv::RefreshField(int i)
145{
146 wxRect rect;
147 if ( GetFieldRect(i, rect) )
148 {
149 RefreshRect(rect);
150 }
151}
152
153// ----------------------------------------------------------------------------
154// fields text
155// ----------------------------------------------------------------------------
156
157void wxStatusBarUniv::SetStatusText(const wxString& text, int number)
158{
7b6fefbe 159 wxCHECK_RET( number >= 0 && (size_t)number < m_panes.GetCount(),
71e03035
VZ
160 _T("invalid status bar field index in SetStatusText()") );
161
162 if ( text == m_statusText[number] )
163 {
164 // nothing changed
165 return;
166 }
167
168 m_statusText[number] = text;
169
170 RefreshField(number);
171}
172
173wxString wxStatusBarUniv::GetStatusText(int number) const
174{
7b6fefbe 175 wxCHECK_MSG( number >= 0 && (size_t)number < m_panes.GetCount(), wxEmptyString,
71e03035
VZ
176 _T("invalid status bar field index") );
177
178 return m_statusText[number];
179}
180
181// ----------------------------------------------------------------------------
182// fields count/widths
183// ----------------------------------------------------------------------------
184
185void wxStatusBarUniv::SetFieldsCount(int number, const int *widths)
186{
71e03035 187 m_statusText.SetCount(number);
ca7497c2 188 wxStatusBarBase::SetFieldsCount(number, widths);
7b6fefbe 189
71e03035
VZ
190 m_widthsAbs.Empty();
191}
192
193void wxStatusBarUniv::SetStatusWidths(int n, const int widths[])
194{
195 wxStatusBarBase::SetStatusWidths(n, widths);
196
197 m_widthsAbs.Empty();
198}
199
200// ----------------------------------------------------------------------------
201// geometry
202// ----------------------------------------------------------------------------
203
204void wxStatusBarUniv::OnSize(wxSizeEvent& event)
205{
5057e659
VZ
206 // we don't need to refresh the fields whose width didn't change, so find
207 // the first field whose width did change and refresh starting from it
7b6fefbe
FM
208 size_t field;
209 if ( m_bSameWidthForAllPanes )
210 {
211 // hence all fields widths have changed
212 field = 0;
213 }
214 else
5057e659 215 {
7b6fefbe 216 for ( field = 0; field < m_panes.GetCount(); field++ )
5057e659 217 {
7b6fefbe 218 if ( m_panes[field].nWidth < 0 )
5057e659
VZ
219 {
220 // var width field
221 break;
222 }
223 }
224 }
71e03035 225
7b6fefbe 226 if ( field < m_panes.GetCount() )
5057e659
VZ
227 {
228 // call this before invalidating the old widths as we want to use them,
229 // not the new ones
230 wxRect rect = DoGetFieldRect(field);
231
232 // invalidate the widths, we'll have to recalc them
233 m_widthsAbs.Empty();
234
235 // refresh everything after the first invalid field
236 rect.y = 0;
237 rect.SetRight(event.GetSize().x);
238 rect.height = event.GetSize().y;
239 RefreshRect(rect);
240 }
71e03035
VZ
241
242 event.Skip();
243}
244
245bool wxStatusBarUniv::GetFieldRect(int n, wxRect& rect) const
246{
7b6fefbe 247 wxCHECK_MSG( n >= 0 && (size_t)n < m_panes.GetCount(), false,
71e03035
VZ
248 _T("invalid field index in GetFieldRect()") );
249
250 // this is a fix for a bug exhibited by the statbar sample: if
251 // GetFieldRect() is called from the derived class OnSize() handler, then
252 // our geometry info is wrong as our OnSize() didn't invalidate m_widthsAbs
253 // yet - so recalc it just in case
5057e659
VZ
254 wxConstCast(this, wxStatusBarUniv)->m_widthsAbs.Empty();
255
256 rect = DoGetFieldRect(n);
257
a290fa5a 258 return true;
5057e659
VZ
259}
260
261wxRect wxStatusBarUniv::DoGetFieldRect(int n) const
262{
71e03035 263 wxStatusBarUniv *self = wxConstCast(this, wxStatusBarUniv);
71e03035
VZ
264
265 wxCoord borderBetweenFields;
5057e659
VZ
266 wxRect rect = self->GetTotalFieldRect(&borderBetweenFields);
267
268 // it's the caller responsability to check this, if unsure - call
269 // GetFieldRect() instead
270 wxCHECK_MSG( !m_widthsAbs.IsEmpty(), rect,
271 _T("can't be called if we don't have the widths") );
272
71e03035
VZ
273 for ( int i = 0; i <= n; i++ )
274 {
275 rect.width = m_widthsAbs[i];
276
277 if ( i < n )
278 rect.x += rect.width + borderBetweenFields;
279 }
280
5057e659 281 return rect;
71e03035
VZ
282}
283
284wxCoord wxStatusBarUniv::GetHeight() const
285{
3083f142 286 return GetCharHeight() + 2*GetBorderY();
71e03035
VZ
287}
288
289wxSize wxStatusBarUniv::DoGetBestSize() const
290{
291 return wxSize(100, GetHeight());
292}
293
294void wxStatusBarUniv::DoSetSize(int x, int y,
295 int width, int WXUNUSED(height),
296 int sizeFlags)
297{
298 wxStatusBarBase::DoSetSize(x, y, width, GetHeight(), sizeFlags);
299}
300
301// ----------------------------------------------------------------------------
302// misc
303// ----------------------------------------------------------------------------
304
305void wxStatusBarUniv::SetMinHeight(int WXUNUSED(height))
306{
307 // nothing to do here, we don't support it - and why would we?
308}
309
310int wxStatusBarUniv::GetBorderX() const
311{
283c797c
VS
312 return m_renderer->GetStatusBarBorders().x +
313 m_renderer->GetStatusBarFieldMargins().x;
71e03035
VZ
314}
315
316int wxStatusBarUniv::GetBorderY() const
317{
283c797c
VS
318 return m_renderer->GetStatusBarBorders().y +
319 m_renderer->GetStatusBarFieldMargins().y;
71e03035
VZ
320}
321
322#endif // wxUSE_STATUSBAR