]> git.saurik.com Git - wxWidgets.git/blame - src/msw/tooltip.cpp
Fix search for item by text in wxMSW wxListCtrl.
[wxWidgets.git] / src / msw / tooltip.cpp
CommitLineData
3a19e16d 1///////////////////////////////////////////////////////////////////////////////
623d5f80 2// Name: src/msw/tooltip.cpp
3a19e16d
VZ
3// Purpose: wxToolTip class implementation for MSW
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 31.01.99
7// RCS-ID: $Id$
8// Copyright: (c) 1999 Vadim Zeitlin
65571936 9// Licence: wxWindows licence
3a19e16d
VZ
10///////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
20#include "wx/wxprec.h"
21
22#ifdef __BORLANDC__
23 #pragma hdrstop
24#endif
25
cb1a1dc9
VZ
26#if wxUSE_TOOLTIPS
27
3a19e16d 28#include "wx/tooltip.h"
623d5f80
WS
29
30#ifndef WX_PRECOMP
57bd4c60 31 #include "wx/msw/wrapcctl.h" // include <commctrl.h> "properly"
623d5f80
WS
32 #include "wx/app.h"
33 #include "wx/control.h"
623d5f80
WS
34#endif
35
543a9921 36#include "wx/tokenzr.h"
0ce0f1e9 37#include "wx/vector.h"
3a19e16d
VZ
38#include "wx/msw/private.h"
39
7709915e
VZ
40#ifndef TTTOOLINFO_V1_SIZE
41 #define TTTOOLINFO_V1_SIZE 0x28
42#endif
43
3be7ca64
VZ
44#ifndef TTF_TRANSPARENT
45 #define TTF_TRANSPARENT 0x0100
46#endif
47
f048e32f
VZ
48// VZ: normally, the trick with subclassing the tooltip control and processing
49// TTM_WINDOWFROMPOINT should work but, somehow, it doesn't. I leave the
50// code here for now (but it's not compiled) in case we need it later.
51//
8614c467
VZ
52// For now I use an ugly workaround and process TTN_NEEDTEXT directly in
53// radio button wnd proc - fixing TTM_WINDOWFROMPOINT code would be nice
54// because it would then work for all controls, not only radioboxes but for
55// now I don't understand what's wrong with it...
56#define wxUSE_TTM_WINDOWFROMPOINT 0
f048e32f 57
086c94af
VZ
58// ----------------------------------------------------------------------------
59// global variables
60// ----------------------------------------------------------------------------
61
62// the tooltip parent window
f048e32f
VZ
63WXHWND wxToolTip::ms_hwndTT = (WXHWND)NULL;
64
be8b4385
VZ
65// new tooltip maximum width, default value is set on first call to wxToolTip::Add()
66int wxToolTip::ms_maxWidth = 0;
67
f048e32f
VZ
68#if wxUSE_TTM_WINDOWFROMPOINT
69
70// the tooltip window proc
71static WNDPROC gs_wndprocToolTip = (WNDPROC)NULL;
72
73#endif // wxUSE_TTM_WINDOWFROMPOINT
066f302c 74
3a19e16d
VZ
75// ----------------------------------------------------------------------------
76// private classes
77// ----------------------------------------------------------------------------
78
0ce0f1e9
VZ
79// This is simply a wrapper for vector<HWND> but defined as a class to hide the
80// details from the public header.
81class wxToolTipOtherWindows : public wxVector<WXHWND>
82{
83};
84
bb448552 85// a wrapper around TOOLINFO Win32 structure
26b83329 86#ifdef __VISUALC__
11c7d5b6 87 #pragma warning( disable : 4097 ) // we inherit from a typedef - so what?
26b83329 88#endif
bb448552 89
3a19e16d
VZ
90class wxToolInfo : public TOOLINFO
91{
92public:
6418ad5e 93 wxToolInfo(HWND hwndOwner, unsigned int id, const wxRect& rc)
3a19e16d
VZ
94 {
95 // initialize all members
96 ::ZeroMemory(this, sizeof(TOOLINFO));
97
bb448552 98 // the structure TOOLINFO has been extended with a 4 byte field in
7709915e
VZ
99 // version 4.70 of comctl32.dll and another one in 5.01 but we don't
100 // use these extended fields so use the old struct size to ensure that
101 // the tooltips work on old (Windows 95) systems too
102 cbSize = TTTOOLINFO_V1_SIZE;
bb448552 103
2b5f62a0 104 hwnd = hwndOwner;
6418ad5e
FM
105
106 if (rc.IsEmpty())
107 {
108 uFlags = TTF_IDISHWND;
109 uId = (UINT_PTR)hwndOwner;
110 }
111 else
112 {
113 // this tooltip must be shown only if the mouse hovers a specific rect
114 // of the hwnd parameter!
03647350
VZ
115 rect.left = rc.GetLeft();
116 rect.right = rc.GetRight();
117 rect.top = rc.GetTop();
118 rect.bottom = rc.GetBottom();
6418ad5e
FM
119
120 // note that not setting TTF_IDISHWND from the uFlags member means that the
121 // ti.uId field should not contain the HWND but rather as MSDN says an
122 // "Application-defined identifier of the tool"; this is used internally by
123 // Windows to distinguish the different tooltips attached to the same window
124 uId = id;
125 }
7709915e 126
613db756
VZ
127 // we use TTF_TRANSPARENT to fix a problem which arises at least with
128 // the text controls but may presumably happen with other controls
129 // which display the tooltip at mouse position: it can start flashing
130 // then as the control gets "focus lost" events and dismisses the
131 // tooltip which then reappears because mouse remains hovering over the
132 // control, see SF patch 1821229
133 if ( wxApp::GetComCtl32Version() >= 470 )
134 {
135 uFlags |= TTF_TRANSPARENT;
136 }
3a19e16d
VZ
137 }
138};
bb448552 139
26b83329
VZ
140#ifdef __VISUALC__
141 #pragma warning( default : 4097 )
142#endif
3a19e16d
VZ
143
144// ----------------------------------------------------------------------------
145// private functions
146// ----------------------------------------------------------------------------
147
0c5405b7
VZ
148// send a message to the tooltip control if it exists
149//
150// NB: wParam is always 0 for the TTM_XXX messages we use
151static inline LRESULT SendTooltipMessage(WXHWND hwnd, UINT msg, void *lParam)
3a19e16d 152{
0c5405b7 153 return hwnd ? ::SendMessage((HWND)hwnd, msg, 0, (LPARAM)lParam) : 0;
3a19e16d
VZ
154}
155
16f6dfd8 156// send a message to all existing tooltip controls
0c5405b7
VZ
157static inline void
158SendTooltipMessageToAll(WXHWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
16f6dfd8 159{
0c5405b7
VZ
160 if ( hwnd )
161 ::SendMessage((HWND)hwnd, msg, wParam, lParam);
16f6dfd8
VZ
162}
163
3a19e16d
VZ
164// ============================================================================
165// implementation
166// ============================================================================
167
f048e32f
VZ
168#if wxUSE_TTM_WINDOWFROMPOINT
169
3a19e16d 170// ----------------------------------------------------------------------------
f048e32f 171// window proc for our tooltip control
3a19e16d
VZ
172// ----------------------------------------------------------------------------
173
f048e32f
VZ
174LRESULT APIENTRY wxToolTipWndProc(HWND hwndTT,
175 UINT msg,
176 WPARAM wParam,
177 LPARAM lParam)
178{
179 if ( msg == TTM_WINDOWFROMPOINT )
180 {
181 LPPOINT ppt = (LPPOINT)lParam;
8614c467 182
3103e8a9 183 // the window on which event occurred
f048e32f
VZ
184 HWND hwnd = ::WindowFromPoint(*ppt);
185
8614c467
VZ
186 OutputDebugString("TTM_WINDOWFROMPOINT: ");
187 OutputDebugString(wxString::Format("0x%08x => ", hwnd));
188
77ffb593 189 // return a HWND corresponding to a wxWindow because only wxWidgets are
f048e32f 190 // associated with tooltips using TTM_ADDTOOL
8614c467 191 wxWindow *win = wxGetWindowFromHWND((WXHWND)hwnd);
f048e32f 192
8614c467 193 if ( win )
f048e32f 194 {
8614c467
VZ
195 hwnd = GetHwndOf(win);
196 OutputDebugString(wxString::Format("0x%08x\r\n", hwnd));
197
198#if 0
f048e32f
VZ
199 // modify the point too!
200 RECT rect;
201 GetWindowRect(hwnd, &rect);
202
8614c467
VZ
203 ppt->x = (rect.right - rect.left) / 2;
204 ppt->y = (rect.bottom - rect.top) / 2;
205#endif // 0
f048e32f
VZ
206 return (LRESULT)hwnd;
207 }
8614c467
VZ
208 else
209 {
210 OutputDebugString("no window\r\n");
211 }
f048e32f
VZ
212 }
213
8caa4ed1 214 return ::CallWindowProc(CASTWNDPROC gs_wndprocToolTip, hwndTT, msg, wParam, lParam);
f048e32f
VZ
215}
216
217#endif // wxUSE_TTM_WINDOWFROMPOINT
218
219// ----------------------------------------------------------------------------
220// static functions
221// ----------------------------------------------------------------------------
066f302c 222
16f6dfd8
VZ
223void wxToolTip::Enable(bool flag)
224{
a7d8506b
JS
225 // Make sure the tooltip has been created
226 (void) GetToolTipCtrl();
227
f048e32f 228 SendTooltipMessageToAll(ms_hwndTT, TTM_ACTIVATE, flag, 0);
16f6dfd8
VZ
229}
230
231void wxToolTip::SetDelay(long milliseconds)
232{
a7d8506b
JS
233 // Make sure the tooltip has been created
234 (void) GetToolTipCtrl();
235
f048e32f
VZ
236 SendTooltipMessageToAll(ms_hwndTT, TTM_SETDELAYTIME,
237 TTDT_INITIAL, milliseconds);
16f6dfd8
VZ
238}
239
becac1ef
VZ
240void wxToolTip::SetAutoPop(long milliseconds)
241{
242 SendTooltipMessageToAll(ms_hwndTT, TTM_SETDELAYTIME,
243 TTDT_AUTOPOP, milliseconds);
244}
245
246void wxToolTip::SetReshow(long milliseconds)
247{
248 SendTooltipMessageToAll(ms_hwndTT, TTM_SETDELAYTIME,
249 TTDT_RESHOW, milliseconds);
250}
251
be8b4385
VZ
252void wxToolTip::SetMaxWidth(int width)
253{
9a83f860 254 wxASSERT_MSG( width == -1 || width >= 0, wxT("invalid width value") );
be8b4385
VZ
255
256 ms_maxWidth = width;
257}
258
16f6dfd8
VZ
259// ---------------------------------------------------------------------------
260// implementation helpers
261// ---------------------------------------------------------------------------
262
3a19e16d 263// create the tooltip ctrl for our parent frame if it doesn't exist yet
4453b38d 264/* static */
3a19e16d
VZ
265WXHWND wxToolTip::GetToolTipCtrl()
266{
f048e32f 267 if ( !ms_hwndTT )
3a19e16d 268 {
978af864
VZ
269 WXDWORD exflags = 0;
270 if ( wxTheApp->GetLayoutDirection() == wxLayout_RightToLeft )
271 {
272 exflags |= WS_EX_LAYOUTRTL;
273 }
274
c5d7205c
VZ
275 // we want to show the tooltips always (even when the window is not
276 // active) and we don't want to strip "&"s from them
978af864
VZ
277 ms_hwndTT = (WXHWND)::CreateWindowEx(exflags,
278 TOOLTIPS_CLASS,
279 (LPCTSTR)NULL,
280 TTS_ALWAYSTIP | TTS_NOPREFIX,
281 CW_USEDEFAULT, CW_USEDEFAULT,
282 CW_USEDEFAULT, CW_USEDEFAULT,
283 NULL, (HMENU)NULL,
284 wxGetInstance(),
285 NULL);
f048e32f 286 if ( ms_hwndTT )
086c94af 287 {
f048e32f
VZ
288 HWND hwnd = (HWND)ms_hwndTT;
289 SetWindowPos(hwnd, HWND_TOPMOST, 0, 0, 0, 0,
086c94af 290 SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);
28195455 291
f048e32f
VZ
292#if wxUSE_TTM_WINDOWFROMPOINT
293 // subclass the newly created control
975b6bcf 294 gs_wndprocToolTip = wxSetWindowProc(hwnd, wxToolTipWndProc);
f048e32f
VZ
295#endif // wxUSE_TTM_WINDOWFROMPOINT
296 }
3a19e16d
VZ
297 }
298
f048e32f 299 return ms_hwndTT;
3a19e16d
VZ
300}
301
4453b38d 302/* static */
3a19e16d
VZ
303void wxToolTip::RelayEvent(WXMSG *msg)
304{
0c5405b7 305 (void)SendTooltipMessage(GetToolTipCtrl(), TTM_RELAYEVENT, msg);
3a19e16d
VZ
306}
307
3a19e16d
VZ
308// ----------------------------------------------------------------------------
309// ctor & dtor
310// ----------------------------------------------------------------------------
311
b342f8f0
RD
312IMPLEMENT_ABSTRACT_CLASS(wxToolTip, wxObject)
313
3a19e16d
VZ
314wxToolTip::wxToolTip(const wxString &tip)
315 : m_text(tip)
316{
317 m_window = NULL;
0ce0f1e9 318 m_others = NULL;
6418ad5e
FM
319
320 // make sure m_rect.IsEmpty() == true
321 m_rect.SetWidth(0);
322 m_rect.SetHeight(0);
323
324 // since m_rect is not valid, m_id is ignored by wxToolInfo ctor...
325 m_id = 0;
326}
327
328wxToolTip::wxToolTip(wxWindow* win, unsigned int id, const wxString &tip, const wxRect& rc)
329 : m_text(tip), m_rect(rc), m_id(id)
330{
331 m_window = NULL;
0ce0f1e9 332 m_others = NULL;
6418ad5e
FM
333
334 SetWindow(win);
3a19e16d
VZ
335}
336
337wxToolTip::~wxToolTip()
338{
d8909578 339 // the tooltip has to be removed before deleting. Otherwise, if it is visible
623d5f80
WS
340 // while being deleted, there will be a delay before it goes away.
341 Remove();
0ce0f1e9
VZ
342
343 delete m_others;
3a19e16d
VZ
344}
345
346// ----------------------------------------------------------------------------
347// others
348// ----------------------------------------------------------------------------
349
6418ad5e
FM
350/* static */
351void wxToolTip::Remove(WXHWND hWnd, unsigned int id, const wxRect& rc)
0c5405b7 352{
6418ad5e
FM
353 wxToolInfo ti((HWND)hWnd, id, rc);
354
0c5405b7
VZ
355 (void)SendTooltipMessage(GetToolTipCtrl(), TTM_DELTOOL, &ti);
356}
357
0ce0f1e9 358void wxToolTip::DoRemove(WXHWND hWnd)
3a19e16d 359{
a48cf5e2 360 if ( m_window && hWnd == m_window->GetHWND() )
0ce0f1e9
VZ
361 {
362 // Remove the tooltip from the main window.
363 Remove(hWnd, m_id, m_rect);
364 }
365 else
3a19e16d 366 {
0ce0f1e9
VZ
367 // Not really sure what to pass to remove in this case...
368 Remove(hWnd, 0, wxRect());
3a19e16d
VZ
369 }
370}
371
0ce0f1e9
VZ
372void wxToolTip::Remove()
373{
374 DoForAllWindows(&wxToolTip::DoRemove);
375}
376
f048e32f 377void wxToolTip::Add(WXHWND hWnd)
0ce0f1e9
VZ
378{
379 if ( !m_others )
380 m_others = new wxToolTipOtherWindows;
381
382 m_others->push_back(hWnd);
383
384 DoAddOtherWindow(hWnd);
385}
386
387void wxToolTip::DoAddOtherWindow(WXHWND hWnd)
f048e32f
VZ
388{
389 HWND hwnd = (HWND)hWnd;
390
6418ad5e 391 wxToolInfo ti(hwnd, m_id, m_rect);
f048e32f 392
2b5f62a0
VZ
393 // another possibility would be to specify LPSTR_TEXTCALLBACK here as we
394 // store the tooltip text ourselves anyhow, and provide it in response to
395 // TTN_NEEDTEXT (sent via WM_NOTIFY), but then we would be limited to 79
396 // character tooltips as this is the size of the szText buffer in
397 // NMTTDISPINFO struct -- and setting the tooltip here we can have tooltips
398 // of any length
f048e32f 399 ti.hwnd = hwnd;
8c4209f7 400 ti.lpszText = const_cast<wxChar *>(m_text.wx_str());
f048e32f 401
0c5405b7 402 if ( !SendTooltipMessage(GetToolTipCtrl(), TTM_ADDTOOL, &ti) )
f048e32f 403 {
9a83f860 404 wxLogDebug(wxT("Failed to create the tooltip '%s'"), m_text.c_str());
8c4209f7
VZ
405
406 return;
f048e32f 407 }
8c4209f7 408
5b59df83 409#ifdef TTM_SETMAXTIPWIDTH
8c4209f7
VZ
410 if ( wxApp::GetComCtl32Version() >= 470 )
411 {
412 // use TTM_SETMAXTIPWIDTH to make tooltip multiline using the
413 // extent of its first line as max value
414 HFONT hfont = (HFONT)
415 SendTooltipMessage(GetToolTipCtrl(), WM_GETFONT, 0);
0c5405b7 416
8c4209f7
VZ
417 if ( !hfont )
418 {
419 hfont = (HFONT)GetStockObject(DEFAULT_GUI_FONT);
be8b4385
VZ
420 if ( !hfont )
421 {
8c4209f7 422 wxLogLastError(wxT("GetStockObject(DEFAULT_GUI_FONT)"));
be8b4385 423 }
8c4209f7 424 }
8614c467 425
8c4209f7
VZ
426 MemoryHDC hdc;
427 if ( !hdc )
428 {
429 wxLogLastError(wxT("CreateCompatibleDC(NULL)"));
430 }
8614c467 431
8c4209f7
VZ
432 if ( !SelectObject(hdc, hfont) )
433 {
434 wxLogLastError(wxT("SelectObject(hfont)"));
435 }
8614c467 436
8c4209f7
VZ
437 // find the width of the widest line
438 int maxWidth = 0;
9a83f860 439 wxStringTokenizer tokenizer(m_text, wxT("\n"));
8c4209f7
VZ
440 while ( tokenizer.HasMoreTokens() )
441 {
442 const wxString token = tokenizer.GetNextToken();
be8b4385 443
8c4209f7
VZ
444 SIZE sz;
445 if ( !::GetTextExtentPoint32(hdc, token.wx_str(),
446 token.length(), &sz) )
447 {
448 wxLogLastError(wxT("GetTextExtentPoint32"));
8614c467 449 }
be8b4385 450
8c4209f7
VZ
451 if ( sz.cx > maxWidth )
452 maxWidth = sz.cx;
453 }
454
455 // limit size to ms_maxWidth, if set
456 if ( ms_maxWidth == 0 )
457 {
458 // this is more or less arbitrary but seems to work well
459 static const int DEFAULT_MAX_WIDTH = 400;
8614c467 460
8c4209f7 461 ms_maxWidth = wxGetClientDisplayRect().width / 2;
be8b4385 462
8c4209f7
VZ
463 if ( ms_maxWidth > DEFAULT_MAX_WIDTH )
464 ms_maxWidth = DEFAULT_MAX_WIDTH;
465 }
be8b4385 466
8c4209f7
VZ
467 if ( ms_maxWidth != -1 && maxWidth > ms_maxWidth )
468 maxWidth = ms_maxWidth;
be8b4385 469
8c4209f7
VZ
470 // only set a new width if it is bigger than the current setting:
471 // otherwise adding a tooltip with shorter line(s) than a previous
472 // one would result in breaking the longer lines unnecessarily as
473 // all our tooltips share the same maximal width
474 if ( maxWidth > SendTooltipMessage(GetToolTipCtrl(),
475 TTM_GETMAXTIPWIDTH, 0) )
476 {
477 SendTooltipMessage(GetToolTipCtrl(), TTM_SETMAXTIPWIDTH,
478 wxUIntToPtr(maxWidth));
be8b4385 479 }
8c4209f7
VZ
480 }
481 else
be8b4385 482#endif // TTM_SETMAXTIPWIDTH
8c4209f7
VZ
483 {
484 // replace the '\n's with spaces because otherwise they appear as
485 // unprintable characters in the tooltip string
9a83f860 486 m_text.Replace(wxT("\n"), wxT(" "));
8c4209f7 487 ti.lpszText = const_cast<wxChar *>(m_text.wx_str());
be8b4385 488
8c4209f7
VZ
489 if ( !SendTooltipMessage(GetToolTipCtrl(), TTM_ADDTOOL, &ti) )
490 {
9a83f860 491 wxLogDebug(wxT("Failed to create the tooltip '%s'"), m_text.c_str());
8614c467
VZ
492 }
493 }
f048e32f
VZ
494}
495
3a19e16d
VZ
496void wxToolTip::SetWindow(wxWindow *win)
497{
498 Remove();
499
500 m_window = win;
501
f048e32f 502 // add the window itself
3a19e16d
VZ
503 if ( m_window )
504 {
f048e32f
VZ
505 Add(m_window->GetHWND());
506 }
d4e5272b 507#if !defined(__WXUNIVERSAL__)
d6b9cc87 508 // and all of its subcontrols (e.g. radio buttons in a radiobox) as well
f048e32f
VZ
509 wxControl *control = wxDynamicCast(m_window, wxControl);
510 if ( control )
511 {
bf25c88b 512 const wxArrayLong& subcontrols = control->GetSubcontrols();
8614c467 513 size_t count = subcontrols.GetCount();
f048e32f 514 for ( size_t n = 0; n < count; n++ )
3a19e16d 515 {
8614c467 516 int id = subcontrols[n];
f048e32f 517 HWND hwnd = GetDlgItem(GetHwndOf(m_window), id);
8614c467 518 if ( !hwnd )
f048e32f 519 {
0ce0f1e9 520 // maybe it's a child of parent of the control, in fact?
8614c467 521 // (radiobuttons are subcontrols, i.e. children of the radiobox
77ffb593 522 // for wxWidgets but are its siblings at Windows level)
8614c467 523 hwnd = GetDlgItem(GetHwndOf(m_window->GetParent()), id);
f048e32f 524 }
8614c467
VZ
525
526 // must have it by now!
9a83f860 527 wxASSERT_MSG( hwnd, wxT("no hwnd for subcontrol?") );
8614c467
VZ
528
529 Add((WXHWND)hwnd);
3a19e16d
VZ
530 }
531 }
d4e5272b 532#endif // !defined(__WXUNIVERSAL__)
3a19e16d
VZ
533}
534
6418ad5e
FM
535void wxToolTip::SetRect(const wxRect& rc)
536{
537 m_rect = rc;
538
539 if ( m_window )
540 {
541 wxToolInfo ti(GetHwndOf(m_window), m_id, m_rect);
542 (void)SendTooltipMessage(GetToolTipCtrl(), TTM_NEWTOOLRECT, &ti);
543 }
544}
545
3a19e16d
VZ
546void wxToolTip::SetTip(const wxString& tip)
547{
548 m_text = tip;
549
0ce0f1e9
VZ
550 DoForAllWindows(&wxToolTip::DoSetTip);
551}
552
553void wxToolTip::DoSetTip(WXHWND hWnd)
554{
555 // update the tip text shown by the control
556 wxToolInfo ti((HWND)hWnd, m_id, m_rect);
557
558 // for some reason, changing the tooltip text directly results in
559 // repaint of the controls under it, see #10520 -- but this doesn't
560 // happen if we reset it first
561 ti.lpszText = const_cast<wxChar *>(wxT(""));
562 (void)SendTooltipMessage(GetToolTipCtrl(), TTM_UPDATETIPTEXT, &ti);
563
564 ti.lpszText = const_cast<wxChar *>(m_text.wx_str());
565 (void)SendTooltipMessage(GetToolTipCtrl(), TTM_UPDATETIPTEXT, &ti);
566}
567
568void wxToolTip::DoForAllWindows(void (wxToolTip::*func)(WXHWND))
569{
a48cf5e2 570 if ( m_window )
3a19e16d 571 {
a48cf5e2 572 (this->*func)(m_window->GetHWND());
0ce0f1e9 573 }
3a19e16d 574
0ce0f1e9
VZ
575 if ( m_others )
576 {
577 for ( wxToolTipOtherWindows::const_iterator it = m_others->begin();
578 it != m_others->end();
579 ++it )
580 {
581 (this->*func)(*it);
582 }
3a19e16d
VZ
583 }
584}
cb1a1dc9
VZ
585
586#endif // wxUSE_TOOLTIPS