]>
Commit | Line | Data |
---|---|---|
2bda0e17 | 1 | /////////////////////////////////////////////////////////////////////////////// |
936f6353 | 2 | // Name: src/msw/statusbar.cpp |
2bda0e17 KB |
3 | // Purpose: native implementation of wxStatusBar |
4 | // Author: Vadim Zeitlin | |
ed791986 | 5 | // Modified by: |
2bda0e17 KB |
6 | // Created: 04.04.98 |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> | |
65571936 | 9 | // Licence: wxWindows licence |
2bda0e17 KB |
10 | /////////////////////////////////////////////////////////////////////////////// |
11 | ||
edd608b1 VZ |
12 | // ============================================================================ |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
2bda0e17 KB |
20 | // for compilers that support precompilation, includes "wx.h". |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
88a7a4e1 WS |
27 | #if wxUSE_STATUSBAR && wxUSE_NATIVE_STATUSBAR |
28 | ||
29 | #include "wx/statusbr.h" | |
30 | ||
2bda0e17 | 31 | #ifndef WX_PRECOMP |
57bd4c60 | 32 | #include "wx/msw/wrapcctl.h" // include <commctrl.h> "properly" |
88a7a4e1 WS |
33 | #include "wx/frame.h" |
34 | #include "wx/settings.h" | |
35 | #include "wx/dcclient.h" | |
36 | #include "wx/intl.h" | |
e4db172a | 37 | #include "wx/log.h" |
cbbf47f3 | 38 | #include "wx/control.h" |
2bda0e17 KB |
39 | #endif |
40 | ||
42e69d6b | 41 | #include "wx/msw/private.h" |
6418ad5e | 42 | #include "wx/tooltip.h" |
42e69d6b | 43 | #include <windowsx.h> |
2bda0e17 | 44 | |
1feb5443 JG |
45 | #if wxUSE_UXTHEME |
46 | #include "wx/msw/uxtheme.h" | |
47 | #endif | |
48 | ||
edd608b1 VZ |
49 | // ---------------------------------------------------------------------------- |
50 | // constants | |
51 | // ---------------------------------------------------------------------------- | |
52 | ||
53 | namespace | |
54 | { | |
55 | ||
0cd15959 | 56 | // no idea for a default width, just choose something |
edd608b1 VZ |
57 | static const int DEFAULT_FIELD_WIDTH = 25; |
58 | ||
59 | } // anonymous namespace | |
0cd15959 | 60 | |
2bda0e17 KB |
61 | // ---------------------------------------------------------------------------- |
62 | // macros | |
63 | // ---------------------------------------------------------------------------- | |
64 | ||
65 | // windowsx.h and commctrl.h don't define those, so we do it here | |
66 | #define StatusBar_SetParts(h, n, w) SendMessage(h, SB_SETPARTS, (WPARAM)n, (LPARAM)w) | |
837e5743 | 67 | #define StatusBar_SetText(h, n, t) SendMessage(h, SB_SETTEXT, (WPARAM)n, (LPARAM)(LPCTSTR)t) |
2bda0e17 | 68 | #define StatusBar_GetTextLen(h, n) LOWORD(SendMessage(h, SB_GETTEXTLENGTH, (WPARAM)n, 0)) |
837e5743 | 69 | #define StatusBar_GetText(h, n, s) LOWORD(SendMessage(h, SB_GETTEXT, (WPARAM)n, (LPARAM)(LPTSTR)s)) |
2bda0e17 | 70 | |
2bda0e17 KB |
71 | // ============================================================================ |
72 | // implementation | |
73 | // ============================================================================ | |
74 | ||
75 | // ---------------------------------------------------------------------------- | |
936f6353 | 76 | // wxStatusBar class |
2bda0e17 KB |
77 | // ---------------------------------------------------------------------------- |
78 | ||
936f6353 | 79 | wxStatusBar::wxStatusBar() |
2bda0e17 | 80 | { |
b3d008db VZ |
81 | SetParent(NULL); |
82 | m_hWnd = 0; | |
83 | m_windowId = 0; | |
0cd15959 | 84 | m_pDC = NULL; |
2bda0e17 KB |
85 | } |
86 | ||
db6150d5 | 87 | WXDWORD wxStatusBar::MSWGetStyle(long style, WXDWORD *exstyle) const |
2bda0e17 | 88 | { |
db6150d5 | 89 | WXDWORD msStyle = wxStatusBarBase::MSWGetStyle(style, exstyle); |
b0766406 | 90 | |
9584818a | 91 | // wxSTB_SIZEGRIP is part of our default style but it doesn't make sense to |
d13b34d3 | 92 | // show size grip if this is the status bar of a non-resizable TLW so turn |
9584818a | 93 | // it off in such case |
db6150d5 VZ |
94 | wxWindow * const parent = GetParent(); |
95 | wxCHECK_MSG( parent, msStyle, wxS("Status bar must have a parent") ); | |
9584818a VZ |
96 | if ( parent->IsTopLevel() && !parent->HasFlag(wxRESIZE_BORDER) ) |
97 | style &= ~wxSTB_SIZEGRIP; | |
98 | ||
43b5058d VZ |
99 | // setting SBARS_SIZEGRIP is perfectly useless: it's always on by default |
100 | // (at least in the version of comctl32.dll I'm using), and the only way to | |
101 | // turn it off is to use CCS_TOP style - as we position the status bar | |
c4c178c1 | 102 | // manually anyhow (see DoMoveWindow), use CCS_TOP style if wxSTB_SIZEGRIP |
43b5058d | 103 | // is not given |
c4c178c1 | 104 | if ( !(style & wxSTB_SIZEGRIP) ) |
43b5058d | 105 | { |
dcd223d1 | 106 | msStyle |= CCS_TOP; |
43b5058d VZ |
107 | } |
108 | else | |
109 | { | |
4676948b | 110 | #ifndef __WXWINCE__ |
43b5058d VZ |
111 | // may be some versions of comctl32.dll do need it - anyhow, it won't |
112 | // do any harm | |
dcd223d1 | 113 | msStyle |= SBARS_SIZEGRIP; |
4676948b | 114 | #endif |
43b5058d | 115 | } |
ed791986 | 116 | |
db6150d5 VZ |
117 | return msStyle; |
118 | } | |
119 | ||
120 | bool wxStatusBar::Create(wxWindow *parent, | |
121 | wxWindowID id, | |
122 | long style, | |
123 | const wxString& name) | |
124 | { | |
125 | if ( !CreateControl(parent, id, wxDefaultPosition, wxDefaultSize, | |
126 | style, wxDefaultValidator, name) ) | |
127 | return false; | |
ed791986 | 128 | |
db6150d5 VZ |
129 | if ( !MSWCreateControl(STATUSCLASSNAME, wxString(), |
130 | wxDefaultPosition, wxDefaultSize) ) | |
57f4f925 | 131 | return false; |
2bda0e17 | 132 | |
c6e7d14f | 133 | SetFieldsCount(1); |
80255b7e | 134 | |
6cf68971 | 135 | // cache the DC instance used by DoUpdateStatusText: |
80255b7e FM |
136 | m_pDC = new wxClientDC(this); |
137 | ||
c10d3a54 VS |
138 | // we must refresh the frame size when the statusbar is created, because |
139 | // its client area might change | |
ecdc1183 VZ |
140 | // |
141 | // notice that we must post the event, not send it, as the frame doesn't | |
142 | // know that we're its status bar yet so laying it out right now wouldn't | |
143 | // work correctly, we need to wait until we return to the main loop | |
144 | PostSizeEventToParent(); | |
7d6d3bf3 | 145 | |
57f4f925 | 146 | return true; |
ed791986 | 147 | } |
2bda0e17 | 148 | |
936f6353 | 149 | wxStatusBar::~wxStatusBar() |
ed791986 | 150 | { |
6b5c56bd VS |
151 | // we must refresh the frame size when the statusbar is deleted but the |
152 | // frame is not - otherwise statusbar leaves a hole in the place it used to | |
153 | // occupy | |
ecdc1183 | 154 | PostSizeEventToParent(); |
80255b7e | 155 | |
421962be FM |
156 | // delete existing tooltips |
157 | for (size_t i=0; i<m_tooltips.size(); i++) | |
158 | { | |
5276b0a5 | 159 | wxDELETE(m_tooltips[i]); |
421962be FM |
160 | } |
161 | ||
80255b7e | 162 | wxDELETE(m_pDC); |
2bda0e17 KB |
163 | } |
164 | ||
0cd15959 FM |
165 | bool wxStatusBar::SetFont(const wxFont& font) |
166 | { | |
167 | if (!wxWindow::SetFont(font)) | |
168 | return false; | |
169 | ||
80255b7e | 170 | if (m_pDC) m_pDC->SetFont(font); |
0cd15959 FM |
171 | return true; |
172 | } | |
173 | ||
936f6353 | 174 | void wxStatusBar::SetFieldsCount(int nFields, const int *widths) |
2bda0e17 | 175 | { |
f6bcfd97 | 176 | // this is a Windows limitation |
6418ad5e | 177 | wxASSERT_MSG( (nFields > 0) && (nFields < 255), "too many fields" ); |
2bda0e17 | 178 | |
6418ad5e FM |
179 | // keep in synch also our m_tooltips array |
180 | ||
181 | // reset all current tooltips | |
182 | for (size_t i=0; i<m_tooltips.size(); i++) | |
183 | { | |
5276b0a5 | 184 | wxDELETE(m_tooltips[i]); |
6418ad5e FM |
185 | } |
186 | ||
187 | // shrink/expand the array: | |
796be923 VZ |
188 | m_tooltips.resize(nFields, NULL); |
189 | ||
190 | wxStatusBarBase::SetFieldsCount(nFields, widths); | |
191 | ||
192 | MSWUpdateFieldsWidths(); | |
2bda0e17 KB |
193 | } |
194 | ||
936f6353 | 195 | void wxStatusBar::SetStatusWidths(int n, const int widths[]) |
2bda0e17 | 196 | { |
498fd97d | 197 | wxStatusBarBase::SetStatusWidths(n, widths); |
2bda0e17 | 198 | |
6cf68971 | 199 | MSWUpdateFieldsWidths(); |
2bda0e17 KB |
200 | } |
201 | ||
6cf68971 | 202 | void wxStatusBar::MSWUpdateFieldsWidths() |
2bda0e17 | 203 | { |
7b6fefbe | 204 | if ( m_panes.IsEmpty() ) |
3175c712 VZ |
205 | return; |
206 | ||
edd608b1 VZ |
207 | const int count = m_panes.GetCount(); |
208 | ||
209 | const int extraWidth = MSWGetBorderWidth() + MSWGetMetrics().textMargin; | |
2bda0e17 | 210 | |
edd608b1 VZ |
211 | // compute the effectively available amount of space: |
212 | int widthAvailable = GetClientSize().x; // start with the entire width | |
213 | widthAvailable -= extraWidth*(count - 1); // extra space between fields | |
214 | widthAvailable -= MSWGetMetrics().textMargin; // and for the last field | |
2bda0e17 | 215 | |
8e76e931 VZ |
216 | // Deal with the grip: we shouldn't overflow onto the space occupied by it |
217 | // so the effectively available space is smaller. | |
218 | const int gripWidth = HasFlag(wxSTB_SIZEGRIP) ? MSWGetMetrics().gripWidth | |
219 | : 0; | |
220 | widthAvailable -= gripWidth; | |
6418ad5e FM |
221 | |
222 | // distribute the available space (client width) among the various fields: | |
223 | ||
edd608b1 | 224 | wxArrayInt widthsAbs = CalculateAbsWidths(widthAvailable); |
2bda0e17 | 225 | |
6418ad5e FM |
226 | |
227 | // update the field widths in the native control: | |
228 | ||
edd608b1 | 229 | int *pWidths = new int[count]; |
2bda0e17 | 230 | |
498fd97d | 231 | int nCurPos = 0; |
a496a72d VZ |
232 | int i; |
233 | for ( i = 0; i < count; i++ ) | |
6418ad5e | 234 | { |
498fd97d VZ |
235 | nCurPos += widthsAbs[i] + extraWidth; |
236 | pWidths[i] = nCurPos; | |
2bda0e17 | 237 | } |
2bda0e17 | 238 | |
8e76e931 VZ |
239 | // The total width of the panes passed to Windows must be equal to the |
240 | // total width available, including the grip. Otherwise we get an extra | |
241 | // separator line just before it. | |
242 | pWidths[count - 1] += gripWidth; | |
243 | ||
edd608b1 | 244 | if ( !StatusBar_SetParts(GetHwnd(), count, pWidths) ) |
43b2d5e7 | 245 | { |
6418ad5e | 246 | wxLogLastError("StatusBar_SetParts"); |
43b2d5e7 | 247 | } |
2bda0e17 | 248 | |
a496a72d VZ |
249 | // Now that all parts have been created, set their text. |
250 | for ( i = 0; i < count; i++ ) | |
251 | { | |
252 | DoUpdateStatusText(i); | |
253 | } | |
254 | ||
ed791986 | 255 | delete [] pWidths; |
2bda0e17 KB |
256 | } |
257 | ||
6cf68971 | 258 | void wxStatusBar::DoUpdateStatusText(int nField) |
0cd15959 FM |
259 | { |
260 | if (!m_pDC) | |
261 | return; | |
262 | ||
c2919ab3 VZ |
263 | // Get field style, if any |
264 | int style; | |
b31eaa5c | 265 | switch(m_panes[nField].GetStyle()) |
c2919ab3 | 266 | { |
7b6fefbe FM |
267 | case wxSB_RAISED: |
268 | style = SBT_POPOUT; | |
269 | break; | |
270 | case wxSB_FLAT: | |
271 | style = SBT_NOBORDERS; | |
272 | break; | |
273 | ||
274 | case wxSB_NORMAL: | |
275 | default: | |
c2919ab3 | 276 | style = 0; |
7b6fefbe FM |
277 | break; |
278 | } | |
c2919ab3 | 279 | |
0cd15959 FM |
280 | wxRect rc; |
281 | GetFieldRect(nField, rc); | |
282 | ||
edd608b1 | 283 | const int maxWidth = rc.GetWidth() - MSWGetMetrics().textMargin; |
0cd15959 | 284 | |
6418ad5e FM |
285 | wxString text = GetStatusText(nField); |
286 | ||
0cd15959 | 287 | // do we need to ellipsize this string? |
6418ad5e FM |
288 | wxEllipsizeMode ellmode = (wxEllipsizeMode)-1; |
289 | if (HasFlag(wxSTB_ELLIPSIZE_START)) ellmode = wxELLIPSIZE_START; | |
290 | else if (HasFlag(wxSTB_ELLIPSIZE_MIDDLE)) ellmode = wxELLIPSIZE_MIDDLE; | |
291 | else if (HasFlag(wxSTB_ELLIPSIZE_END)) ellmode = wxELLIPSIZE_END; | |
292 | ||
293 | if (ellmode == (wxEllipsizeMode)-1) | |
294 | { | |
295 | // if we have the wxSTB_SHOW_TIPS we must set the ellipsized flag even if | |
296 | // we don't ellipsize the text but just truncate it | |
297 | if (HasFlag(wxSTB_SHOW_TIPS)) | |
298 | SetEllipsizedFlag(nField, m_pDC->GetTextExtent(text).GetWidth() > maxWidth); | |
299 | } | |
300 | else | |
b3d008db | 301 | { |
43b2d5e7 | 302 | text = wxControl::Ellipsize(text, |
6418ad5e FM |
303 | *m_pDC, |
304 | ellmode, | |
305 | maxWidth, | |
355ce7ad | 306 | wxELLIPSIZE_FLAGS_EXPAND_TABS); |
43b2d5e7 VZ |
307 | |
308 | // update the ellipsization status for this pane; this is used later to | |
309 | // decide whether a tooltip should be shown or not for this pane | |
6418ad5e FM |
310 | // (if we have wxSTB_SHOW_TIPS) |
311 | SetEllipsizedFlag(nField, text != GetStatusText(nField)); | |
312 | } | |
313 | ||
43b2d5e7 | 314 | // Set the status text in the native control passing both field number and style. |
6418ad5e FM |
315 | // NOTE: MSDN library doesn't mention that nField and style have to be 'ORed' |
316 | if ( !StatusBar_SetText(GetHwnd(), nField | style, text.wx_str()) ) | |
43b2d5e7 | 317 | { |
6418ad5e | 318 | wxLogLastError("StatusBar_SetText"); |
43b2d5e7 | 319 | } |
6418ad5e FM |
320 | |
321 | if (HasFlag(wxSTB_SHOW_TIPS)) | |
322 | { | |
323 | wxASSERT(m_tooltips.size() == m_panes.GetCount()); | |
324 | ||
325 | if (m_tooltips[nField]) | |
326 | { | |
327 | if (GetField(nField).IsEllipsized()) | |
328 | { | |
329 | // update the rect of this tooltip: | |
330 | m_tooltips[nField]->SetRect(rc); | |
331 | ||
332 | // update also the text: | |
333 | m_tooltips[nField]->SetTip(GetStatusText(nField)); | |
334 | } | |
335 | else | |
336 | { | |
337 | // delete the tooltip associated with this pane; it's not needed anymore | |
5276b0a5 | 338 | wxDELETE(m_tooltips[nField]); |
6418ad5e FM |
339 | } |
340 | } | |
341 | else | |
342 | { | |
343 | // create a new tooltip for this pane if needed | |
344 | if (GetField(nField).IsEllipsized()) | |
345 | m_tooltips[nField] = new wxToolTip(this, nField, GetStatusText(nField), rc); | |
346 | //else: leave m_tooltips[nField]==NULL | |
347 | } | |
b3d008db | 348 | } |
2bda0e17 KB |
349 | } |
350 | ||
edd608b1 | 351 | wxStatusBar::MSWBorders wxStatusBar::MSWGetBorders() const |
ed791986 VZ |
352 | { |
353 | int aBorders[3]; | |
354 | SendMessage(GetHwnd(), SB_GETBORDERS, 0, (LPARAM)aBorders); | |
355 | ||
edd608b1 VZ |
356 | MSWBorders borders; |
357 | borders.horz = aBorders[0]; | |
358 | borders.vert = aBorders[1]; | |
359 | borders.between = aBorders[2]; | |
360 | return borders; | |
361 | } | |
362 | ||
363 | int wxStatusBar::GetBorderX() const | |
364 | { | |
365 | return MSWGetBorders().horz; | |
ed791986 VZ |
366 | } |
367 | ||
936f6353 | 368 | int wxStatusBar::GetBorderY() const |
ed791986 | 369 | { |
edd608b1 VZ |
370 | return MSWGetBorders().vert; |
371 | } | |
ed791986 | 372 | |
edd608b1 VZ |
373 | int wxStatusBar::MSWGetBorderWidth() const |
374 | { | |
375 | return MSWGetBorders().between; | |
376 | } | |
377 | ||
378 | /* static */ | |
379 | const wxStatusBar::MSWMetrics& wxStatusBar::MSWGetMetrics() | |
380 | { | |
917b0085 | 381 | static MSWMetrics s_metrics = { 0, 0 }; |
edd608b1 VZ |
382 | if ( !s_metrics.textMargin ) |
383 | { | |
384 | // Grip size should be self explanatory (the only problem with it is | |
385 | // that it's hard coded as we don't know how to find its size using | |
386 | // API) but the margin might merit an explanation: Windows offsets the | |
387 | // text drawn in status bar panes so we need to take this extra margin | |
388 | // into account to make sure the text drawn by user fits inside the | |
389 | // pane. Notice that it's not the value returned by SB_GETBORDERS | |
390 | // which, at least on this Windows 2003 system, returns {0, 2, 2} | |
391 | if ( wxUxThemeEngine::GetIfActive() ) | |
392 | { | |
393 | s_metrics.gripWidth = 20; | |
394 | s_metrics.textMargin = 8; | |
395 | } | |
396 | else // classic/unthemed look | |
397 | { | |
398 | s_metrics.gripWidth = 18; | |
399 | s_metrics.textMargin = 4; | |
400 | } | |
401 | } | |
402 | ||
403 | return s_metrics; | |
ed791986 VZ |
404 | } |
405 | ||
936f6353 | 406 | void wxStatusBar::SetMinHeight(int height) |
ed791986 | 407 | { |
d9fc8e99 VZ |
408 | // It looks like we need to count the border twice to really make the |
409 | // controls taking exactly height pixels fully fit in the status bar: | |
410 | // at least under Windows 7 the checkbox in the custom status bar of the | |
411 | // statbar sample gets truncated otherwise. | |
412 | height += 4*GetBorderY(); | |
413 | ||
414 | // We need to set the size and not the size to reflect the height because | |
415 | // wxFrame uses our size and not the minimal size as it assumes that the | |
416 | // size of a status bar never changes anyhow. | |
417 | SetSize(-1, height); | |
418 | ||
419 | SendMessage(GetHwnd(), SB_SETMINHEIGHT, height, 0); | |
ed791986 | 420 | |
6418ad5e | 421 | // we have to send a (dummy) WM_SIZE to redraw it now |
ed791986 VZ |
422 | SendMessage(GetHwnd(), WM_SIZE, 0, 0); |
423 | } | |
424 | ||
936f6353 | 425 | bool wxStatusBar::GetFieldRect(int i, wxRect& rect) const |
ed791986 | 426 | { |
a37d94d3 | 427 | wxCHECK_MSG( (i >= 0) && ((size_t)i < m_panes.GetCount()), false, |
6418ad5e | 428 | "invalid statusbar field index" ); |
ed791986 VZ |
429 | |
430 | RECT r; | |
431 | if ( !::SendMessage(GetHwnd(), SB_GETRECT, i, (LPARAM)&r) ) | |
43b2d5e7 | 432 | { |
6418ad5e | 433 | wxLogLastError("SendMessage(SB_GETRECT)"); |
43b2d5e7 | 434 | } |
ed791986 | 435 | |
1feb5443 | 436 | #if wxUSE_UXTHEME |
6418ad5e | 437 | wxUxThemeHandle theme(const_cast<wxStatusBar*>(this), L"Status"); |
1feb5443 JG |
438 | if ( theme ) |
439 | { | |
440 | // by default Windows has a 2 pixel border to the right of the left | |
441 | // divider (or it could be a bug) but it looks wrong so remove it | |
442 | if ( i != 0 ) | |
443 | { | |
444 | r.left -= 2; | |
445 | } | |
446 | ||
447 | wxUxThemeEngine::Get()->GetThemeBackgroundContentRect(theme, NULL, | |
448 | 1 /* SP_PANE */, 0, | |
449 | &r, &r); | |
450 | } | |
451 | #endif | |
452 | ||
ed791986 VZ |
453 | wxCopyRECTToRect(r, rect); |
454 | ||
57f4f925 | 455 | return true; |
ed791986 VZ |
456 | } |
457 | ||
936f6353 | 458 | wxSize wxStatusBar::DoGetBestSize() const |
c0ac3149 | 459 | { |
edd608b1 | 460 | const MSWBorders borders = MSWGetBorders(); |
c0ac3149 VZ |
461 | |
462 | // calculate width | |
463 | int width = 0; | |
a37d94d3 | 464 | for ( size_t i = 0; i < m_panes.GetCount(); ++i ) |
c0ac3149 | 465 | { |
7b6fefbe | 466 | int widthField = |
b31eaa5c | 467 | m_bSameWidthForAllPanes ? DEFAULT_FIELD_WIDTH : m_panes[i].GetWidth(); |
c0ac3149 VZ |
468 | if ( widthField >= 0 ) |
469 | { | |
e408d9ca | 470 | width += widthField; |
c0ac3149 VZ |
471 | } |
472 | else | |
473 | { | |
474 | // variable width field, its width is really a proportion | |
475 | // related to the other fields | |
476 | width += -widthField*DEFAULT_FIELD_WIDTH; | |
477 | } | |
478 | ||
479 | // add the space between fields | |
edd608b1 | 480 | width += borders.between; |
c0ac3149 VZ |
481 | } |
482 | ||
483 | if ( !width ) | |
484 | { | |
485 | // still need something even for an empty status bar | |
486 | width = 2*DEFAULT_FIELD_WIDTH; | |
487 | } | |
488 | ||
d9fc8e99 VZ |
489 | // calculate height: by default it should be just big enough to show text |
490 | // (see SetMinHeight() for the explanation of 4 factor) | |
491 | int height = GetCharHeight(); | |
492 | height += 4*borders.vert; | |
c0ac3149 VZ |
493 | |
494 | wxSize best(width, height); | |
495 | CacheBestSize(best); | |
496 | return best; | |
497 | } | |
498 | ||
936f6353 | 499 | void wxStatusBar::DoMoveWindow(int x, int y, int width, int height) |
2bda0e17 | 500 | { |
c07103f2 VZ |
501 | if ( GetParent()->IsSizeDeferred() ) |
502 | { | |
503 | wxWindowMSW::DoMoveWindow(x, y, width, height); | |
504 | } | |
505 | else | |
506 | { | |
507 | // parent pos/size isn't deferred so do it now but don't send | |
508 | // WM_WINDOWPOSCHANGING since we don't want to change pos/size later | |
dd28827a JG |
509 | // we must use SWP_NOCOPYBITS here otherwise it paints incorrectly |
510 | // if other windows are size deferred | |
c07103f2 | 511 | ::SetWindowPos(GetHwnd(), NULL, x, y, width, height, |
99cc862c | 512 | SWP_NOZORDER | SWP_NOOWNERZORDER | SWP_NOACTIVATE |
521bf4ff | 513 | #ifndef __WXWINCE__ |
99cc862c JS |
514 | | SWP_NOCOPYBITS | SWP_NOSENDCHANGING |
515 | #endif | |
516 | ); | |
c07103f2 | 517 | } |
43b5058d | 518 | |
57f4f925 | 519 | // we have to trigger wxSizeEvent if there are children window in status |
dafa4925 VS |
520 | // bar because GetFieldRect returned incorrect (not updated) values up to |
521 | // here, which almost certainly resulted in incorrectly redrawn statusbar | |
522 | if ( m_children.GetCount() > 0 ) | |
523 | { | |
524 | wxSizeEvent event(GetClientSize(), m_windowId); | |
525 | event.SetEventObject(this); | |
937013e0 | 526 | HandleWindowEvent(event); |
dafa4925 | 527 | } |
2bda0e17 KB |
528 | } |
529 | ||
936f6353 | 530 | void wxStatusBar::SetStatusStyles(int n, const int styles[]) |
c2919ab3 VZ |
531 | { |
532 | wxStatusBarBase::SetStatusStyles(n, styles); | |
533 | ||
a37d94d3 | 534 | if (n != (int)m_panes.GetCount()) |
c2919ab3 VZ |
535 | return; |
536 | ||
537 | for (int i = 0; i < n; i++) | |
538 | { | |
539 | int style; | |
540 | switch(styles[i]) | |
541 | { | |
542 | case wxSB_RAISED: | |
543 | style = SBT_POPOUT; | |
544 | break; | |
545 | case wxSB_FLAT: | |
546 | style = SBT_NOBORDERS; | |
547 | break; | |
548 | case wxSB_NORMAL: | |
549 | default: | |
550 | style = 0; | |
551 | break; | |
552 | } | |
6418ad5e | 553 | |
c2919ab3 | 554 | // The SB_SETTEXT message is both used to set the field's text as well as |
43b2d5e7 | 555 | // the fields' styles. |
6418ad5e | 556 | // NOTE: MSDN library doesn't mention that nField and style have to be 'ORed' |
c2919ab3 | 557 | wxString text = GetStatusText(i); |
e0a050e3 | 558 | if (!StatusBar_SetText(GetHwnd(), style | i, text.wx_str())) |
43b2d5e7 | 559 | { |
6418ad5e | 560 | wxLogLastError("StatusBar_SetText"); |
43b2d5e7 | 561 | } |
c2919ab3 VZ |
562 | } |
563 | } | |
564 | ||
c07103f2 | 565 | WXLRESULT |
936f6353 | 566 | wxStatusBar::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam) |
c07103f2 | 567 | { |
e78e8583 | 568 | #ifndef __WXWINCE__ |
c07103f2 VZ |
569 | if ( nMsg == WM_WINDOWPOSCHANGING ) |
570 | { | |
571 | WINDOWPOS *lpPos = (WINDOWPOS *)lParam; | |
572 | int x, y, w, h; | |
573 | GetPosition(&x, &y); | |
574 | GetSize(&w, &h); | |
575 | ||
4ce18ecb VZ |
576 | // we need real window coords and not wx client coords |
577 | AdjustForParentClientOrigin(x, y); | |
578 | ||
c07103f2 VZ |
579 | lpPos->x = x; |
580 | lpPos->y = y; | |
581 | lpPos->cx = w; | |
582 | lpPos->cy = h; | |
583 | ||
584 | return 0; | |
585 | } | |
e78e8583 | 586 | |
c07103f2 VZ |
587 | if ( nMsg == WM_NCLBUTTONDOWN ) |
588 | { | |
589 | // if hit-test is on gripper then send message to TLW to begin | |
590 | // resizing. It is possible to send this message to any window. | |
591 | if ( wParam == HTBOTTOMRIGHT ) | |
592 | { | |
593 | wxWindow *win; | |
594 | ||
595 | for ( win = GetParent(); win; win = win->GetParent() ) | |
596 | { | |
597 | if ( win->IsTopLevel() ) | |
598 | { | |
599 | SendMessage(GetHwndOf(win), WM_NCLBUTTONDOWN, | |
600 | wParam, lParam); | |
601 | ||
602 | return 0; | |
603 | } | |
604 | } | |
605 | } | |
606 | } | |
e78e8583 | 607 | #endif |
c07103f2 | 608 | |
208f99c3 | 609 | if ( nMsg == WM_SIZE ) |
0cd15959 | 610 | { |
208f99c3 VZ |
611 | MSWUpdateFieldsWidths(); |
612 | ||
613 | if ( HasFlag(wxSTB_ELLIPSIZE_START) || | |
614 | HasFlag(wxSTB_ELLIPSIZE_MIDDLE) || | |
615 | HasFlag(wxSTB_ELLIPSIZE_END) ) | |
616 | { | |
617 | for (int i=0; i<GetFieldsCount(); i++) | |
618 | { | |
619 | // re-set the field text, in case we need to ellipsize | |
620 | // (or de-ellipsize) some parts of it | |
621 | DoUpdateStatusText(i); | |
622 | } | |
623 | } | |
0cd15959 FM |
624 | } |
625 | ||
c07103f2 VZ |
626 | return wxStatusBarBase::MSWWindowProc(nMsg, wParam, lParam); |
627 | } | |
628 | ||
6418ad5e FM |
629 | #if wxUSE_TOOLTIPS |
630 | bool wxStatusBar::MSWProcessMessage(WXMSG* pMsg) | |
631 | { | |
632 | if ( HasFlag(wxSTB_SHOW_TIPS) ) | |
633 | { | |
634 | // for a tooltip to be shown, we need to relay mouse events to it; | |
635 | // this is typically done by wxWindowMSW::MSWProcessMessage but only | |
636 | // if wxWindow::m_tooltip pointer is non-NULL. | |
637 | // Since wxStatusBar has multiple tooltips for a single HWND, it keeps | |
638 | // wxWindow::m_tooltip == NULL and then relays mouse events here: | |
639 | MSG *msg = (MSG *)pMsg; | |
640 | if ( msg->message == WM_MOUSEMOVE ) | |
641 | wxToolTip::RelayEvent(pMsg); | |
642 | } | |
643 | ||
644 | return wxWindow::MSWProcessMessage(pMsg); | |
645 | } | |
646 | ||
778adf4c | 647 | bool wxStatusBar::MSWOnNotify(int WXUNUSED(idCtrl), WXLPARAM lParam, WXLPARAM* WXUNUSED(result)) |
6418ad5e FM |
648 | { |
649 | if ( HasFlag(wxSTB_SHOW_TIPS) ) | |
650 | { | |
651 | // see comment in wxStatusBar::MSWProcessMessage for more info; | |
652 | // basically we need to override wxWindow::MSWOnNotify because | |
653 | // we have wxWindow::m_tooltip always NULL but we still use tooltips... | |
654 | ||
655 | NMHDR* hdr = (NMHDR *)lParam; | |
656 | ||
657 | wxString str; | |
658 | if (hdr->idFrom < m_tooltips.size() && m_tooltips[hdr->idFrom]) | |
659 | str = m_tooltips[hdr->idFrom]->GetTip(); | |
660 | ||
661 | if ( HandleTooltipNotify(hdr->code, lParam, str)) | |
662 | { | |
663 | // processed | |
664 | return true; | |
665 | } | |
666 | } | |
667 | ||
668 | return false; | |
669 | } | |
670 | #endif // wxUSE_TOOLTIPS | |
671 | ||
a71d815b | 672 | #endif // wxUSE_STATUSBAR && wxUSE_NATIVE_STATUSBAR |