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