]>
Commit | Line | Data |
---|---|---|
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" | |
34 | #include "wx/combobox.h" | |
35 | #endif | |
36 | ||
543a9921 | 37 | #include "wx/tokenzr.h" |
3a19e16d VZ |
38 | #include "wx/msw/private.h" |
39 | ||
f048e32f VZ |
40 | // VZ: normally, the trick with subclassing the tooltip control and processing |
41 | // TTM_WINDOWFROMPOINT should work but, somehow, it doesn't. I leave the | |
42 | // code here for now (but it's not compiled) in case we need it later. | |
43 | // | |
8614c467 VZ |
44 | // For now I use an ugly workaround and process TTN_NEEDTEXT directly in |
45 | // radio button wnd proc - fixing TTM_WINDOWFROMPOINT code would be nice | |
46 | // because it would then work for all controls, not only radioboxes but for | |
47 | // now I don't understand what's wrong with it... | |
48 | #define wxUSE_TTM_WINDOWFROMPOINT 0 | |
f048e32f | 49 | |
086c94af VZ |
50 | // ---------------------------------------------------------------------------- |
51 | // global variables | |
52 | // ---------------------------------------------------------------------------- | |
53 | ||
54 | // the tooltip parent window | |
f048e32f VZ |
55 | WXHWND wxToolTip::ms_hwndTT = (WXHWND)NULL; |
56 | ||
57 | #if wxUSE_TTM_WINDOWFROMPOINT | |
58 | ||
59 | // the tooltip window proc | |
60 | static WNDPROC gs_wndprocToolTip = (WNDPROC)NULL; | |
61 | ||
62 | #endif // wxUSE_TTM_WINDOWFROMPOINT | |
066f302c | 63 | |
3a19e16d VZ |
64 | // ---------------------------------------------------------------------------- |
65 | // private classes | |
66 | // ---------------------------------------------------------------------------- | |
67 | ||
bb448552 | 68 | // a wrapper around TOOLINFO Win32 structure |
26b83329 | 69 | #ifdef __VISUALC__ |
11c7d5b6 | 70 | #pragma warning( disable : 4097 ) // we inherit from a typedef - so what? |
26b83329 | 71 | #endif |
bb448552 | 72 | |
3a19e16d VZ |
73 | class wxToolInfo : public TOOLINFO |
74 | { | |
75 | public: | |
2b5f62a0 | 76 | wxToolInfo(HWND hwndOwner) |
3a19e16d VZ |
77 | { |
78 | // initialize all members | |
79 | ::ZeroMemory(this, sizeof(TOOLINFO)); | |
80 | ||
bb448552 VZ |
81 | // the structure TOOLINFO has been extended with a 4 byte field in |
82 | // version 4.70 of comctl32.dll and if we compile on a newer machine | |
83 | // but run on one with the old version of comctl32, nothing will work | |
84 | // because the library will detect that we rely on a more recent | |
85 | // version of it. So we always use the old size - if we ever start | |
86 | // using our lParam member, we'd have to check for comctl32 version | |
87 | // during run-time | |
8614c467 | 88 | #if _WIN32_IE >= 0x0300 |
bb448552 VZ |
89 | cbSize = sizeof(TOOLINFO) - sizeof(LPARAM); |
90 | #else // old headers | |
3a19e16d | 91 | cbSize = sizeof(TOOLINFO); |
bb448552 VZ |
92 | #endif // compile-time comctl32.dll version |
93 | ||
2b5f62a0 | 94 | hwnd = hwndOwner; |
3a19e16d | 95 | uFlags = TTF_IDISHWND; |
2b5f62a0 | 96 | uId = (UINT)hwndOwner; |
3a19e16d VZ |
97 | } |
98 | }; | |
bb448552 | 99 | |
26b83329 VZ |
100 | #ifdef __VISUALC__ |
101 | #pragma warning( default : 4097 ) | |
102 | #endif | |
3a19e16d VZ |
103 | |
104 | // ---------------------------------------------------------------------------- | |
105 | // private functions | |
106 | // ---------------------------------------------------------------------------- | |
107 | ||
0c5405b7 VZ |
108 | // send a message to the tooltip control if it exists |
109 | // | |
110 | // NB: wParam is always 0 for the TTM_XXX messages we use | |
111 | static inline LRESULT SendTooltipMessage(WXHWND hwnd, UINT msg, void *lParam) | |
3a19e16d | 112 | { |
0c5405b7 | 113 | return hwnd ? ::SendMessage((HWND)hwnd, msg, 0, (LPARAM)lParam) : 0; |
3a19e16d VZ |
114 | } |
115 | ||
16f6dfd8 | 116 | // send a message to all existing tooltip controls |
0c5405b7 VZ |
117 | static inline void |
118 | SendTooltipMessageToAll(WXHWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) | |
16f6dfd8 | 119 | { |
0c5405b7 VZ |
120 | if ( hwnd ) |
121 | ::SendMessage((HWND)hwnd, msg, wParam, lParam); | |
16f6dfd8 VZ |
122 | } |
123 | ||
3a19e16d VZ |
124 | // ============================================================================ |
125 | // implementation | |
126 | // ============================================================================ | |
127 | ||
f048e32f VZ |
128 | #if wxUSE_TTM_WINDOWFROMPOINT |
129 | ||
3a19e16d | 130 | // ---------------------------------------------------------------------------- |
f048e32f | 131 | // window proc for our tooltip control |
3a19e16d VZ |
132 | // ---------------------------------------------------------------------------- |
133 | ||
f048e32f VZ |
134 | LRESULT APIENTRY wxToolTipWndProc(HWND hwndTT, |
135 | UINT msg, | |
136 | WPARAM wParam, | |
137 | LPARAM lParam) | |
138 | { | |
139 | if ( msg == TTM_WINDOWFROMPOINT ) | |
140 | { | |
141 | LPPOINT ppt = (LPPOINT)lParam; | |
8614c467 | 142 | |
3103e8a9 | 143 | // the window on which event occurred |
f048e32f VZ |
144 | HWND hwnd = ::WindowFromPoint(*ppt); |
145 | ||
8614c467 VZ |
146 | OutputDebugString("TTM_WINDOWFROMPOINT: "); |
147 | OutputDebugString(wxString::Format("0x%08x => ", hwnd)); | |
148 | ||
77ffb593 | 149 | // return a HWND corresponding to a wxWindow because only wxWidgets are |
f048e32f | 150 | // associated with tooltips using TTM_ADDTOOL |
8614c467 | 151 | wxWindow *win = wxGetWindowFromHWND((WXHWND)hwnd); |
f048e32f | 152 | |
8614c467 | 153 | if ( win ) |
f048e32f | 154 | { |
8614c467 VZ |
155 | hwnd = GetHwndOf(win); |
156 | OutputDebugString(wxString::Format("0x%08x\r\n", hwnd)); | |
157 | ||
158 | #if 0 | |
f048e32f VZ |
159 | // modify the point too! |
160 | RECT rect; | |
161 | GetWindowRect(hwnd, &rect); | |
162 | ||
8614c467 VZ |
163 | ppt->x = (rect.right - rect.left) / 2; |
164 | ppt->y = (rect.bottom - rect.top) / 2; | |
165 | #endif // 0 | |
f048e32f VZ |
166 | return (LRESULT)hwnd; |
167 | } | |
8614c467 VZ |
168 | else |
169 | { | |
170 | OutputDebugString("no window\r\n"); | |
171 | } | |
f048e32f VZ |
172 | } |
173 | ||
8caa4ed1 | 174 | return ::CallWindowProc(CASTWNDPROC gs_wndprocToolTip, hwndTT, msg, wParam, lParam); |
f048e32f VZ |
175 | } |
176 | ||
177 | #endif // wxUSE_TTM_WINDOWFROMPOINT | |
178 | ||
179 | // ---------------------------------------------------------------------------- | |
180 | // static functions | |
181 | // ---------------------------------------------------------------------------- | |
066f302c | 182 | |
16f6dfd8 VZ |
183 | void wxToolTip::Enable(bool flag) |
184 | { | |
f048e32f | 185 | SendTooltipMessageToAll(ms_hwndTT, TTM_ACTIVATE, flag, 0); |
16f6dfd8 VZ |
186 | } |
187 | ||
188 | void wxToolTip::SetDelay(long milliseconds) | |
189 | { | |
f048e32f VZ |
190 | SendTooltipMessageToAll(ms_hwndTT, TTM_SETDELAYTIME, |
191 | TTDT_INITIAL, milliseconds); | |
16f6dfd8 VZ |
192 | } |
193 | ||
becac1ef VZ |
194 | void wxToolTip::SetAutoPop(long milliseconds) |
195 | { | |
196 | SendTooltipMessageToAll(ms_hwndTT, TTM_SETDELAYTIME, | |
197 | TTDT_AUTOPOP, milliseconds); | |
198 | } | |
199 | ||
200 | void wxToolTip::SetReshow(long milliseconds) | |
201 | { | |
202 | SendTooltipMessageToAll(ms_hwndTT, TTM_SETDELAYTIME, | |
203 | TTDT_RESHOW, milliseconds); | |
204 | } | |
205 | ||
16f6dfd8 VZ |
206 | // --------------------------------------------------------------------------- |
207 | // implementation helpers | |
208 | // --------------------------------------------------------------------------- | |
209 | ||
3a19e16d | 210 | // create the tooltip ctrl for our parent frame if it doesn't exist yet |
4453b38d | 211 | /* static */ |
3a19e16d VZ |
212 | WXHWND wxToolTip::GetToolTipCtrl() |
213 | { | |
f048e32f | 214 | if ( !ms_hwndTT ) |
3a19e16d | 215 | { |
978af864 VZ |
216 | WXDWORD exflags = 0; |
217 | if ( wxTheApp->GetLayoutDirection() == wxLayout_RightToLeft ) | |
218 | { | |
219 | exflags |= WS_EX_LAYOUTRTL; | |
220 | } | |
221 | ||
c5d7205c VZ |
222 | // we want to show the tooltips always (even when the window is not |
223 | // active) and we don't want to strip "&"s from them | |
978af864 VZ |
224 | ms_hwndTT = (WXHWND)::CreateWindowEx(exflags, |
225 | TOOLTIPS_CLASS, | |
226 | (LPCTSTR)NULL, | |
227 | TTS_ALWAYSTIP | TTS_NOPREFIX, | |
228 | CW_USEDEFAULT, CW_USEDEFAULT, | |
229 | CW_USEDEFAULT, CW_USEDEFAULT, | |
230 | NULL, (HMENU)NULL, | |
231 | wxGetInstance(), | |
232 | NULL); | |
f048e32f | 233 | if ( ms_hwndTT ) |
086c94af | 234 | { |
f048e32f VZ |
235 | HWND hwnd = (HWND)ms_hwndTT; |
236 | SetWindowPos(hwnd, HWND_TOPMOST, 0, 0, 0, 0, | |
086c94af | 237 | SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE); |
28195455 | 238 | |
f048e32f VZ |
239 | #if wxUSE_TTM_WINDOWFROMPOINT |
240 | // subclass the newly created control | |
975b6bcf | 241 | gs_wndprocToolTip = wxSetWindowProc(hwnd, wxToolTipWndProc); |
f048e32f VZ |
242 | #endif // wxUSE_TTM_WINDOWFROMPOINT |
243 | } | |
3a19e16d VZ |
244 | } |
245 | ||
f048e32f | 246 | return ms_hwndTT; |
3a19e16d VZ |
247 | } |
248 | ||
4453b38d | 249 | /* static */ |
3a19e16d VZ |
250 | void wxToolTip::RelayEvent(WXMSG *msg) |
251 | { | |
0c5405b7 | 252 | (void)SendTooltipMessage(GetToolTipCtrl(), TTM_RELAYEVENT, msg); |
3a19e16d VZ |
253 | } |
254 | ||
3a19e16d VZ |
255 | // ---------------------------------------------------------------------------- |
256 | // ctor & dtor | |
257 | // ---------------------------------------------------------------------------- | |
258 | ||
b342f8f0 RD |
259 | IMPLEMENT_ABSTRACT_CLASS(wxToolTip, wxObject) |
260 | ||
3a19e16d VZ |
261 | wxToolTip::wxToolTip(const wxString &tip) |
262 | : m_text(tip) | |
263 | { | |
264 | m_window = NULL; | |
265 | } | |
266 | ||
267 | wxToolTip::~wxToolTip() | |
268 | { | |
d8909578 | 269 | // the tooltip has to be removed before deleting. Otherwise, if it is visible |
623d5f80 WS |
270 | // while being deleted, there will be a delay before it goes away. |
271 | Remove(); | |
3a19e16d VZ |
272 | } |
273 | ||
274 | // ---------------------------------------------------------------------------- | |
275 | // others | |
276 | // ---------------------------------------------------------------------------- | |
277 | ||
0c5405b7 VZ |
278 | void wxToolTip::Remove(WXHWND hWnd) |
279 | { | |
280 | wxToolInfo ti((HWND)hWnd); | |
281 | (void)SendTooltipMessage(GetToolTipCtrl(), TTM_DELTOOL, &ti); | |
282 | } | |
283 | ||
3a19e16d VZ |
284 | void wxToolTip::Remove() |
285 | { | |
286 | // remove this tool from the tooltip control | |
287 | if ( m_window ) | |
288 | { | |
0c5405b7 | 289 | Remove(m_window->GetHWND()); |
3a19e16d VZ |
290 | } |
291 | } | |
292 | ||
f048e32f VZ |
293 | void wxToolTip::Add(WXHWND hWnd) |
294 | { | |
295 | HWND hwnd = (HWND)hWnd; | |
296 | ||
297 | wxToolInfo ti(hwnd); | |
298 | ||
2b5f62a0 VZ |
299 | // another possibility would be to specify LPSTR_TEXTCALLBACK here as we |
300 | // store the tooltip text ourselves anyhow, and provide it in response to | |
301 | // TTN_NEEDTEXT (sent via WM_NOTIFY), but then we would be limited to 79 | |
302 | // character tooltips as this is the size of the szText buffer in | |
303 | // NMTTDISPINFO struct -- and setting the tooltip here we can have tooltips | |
304 | // of any length | |
f048e32f | 305 | ti.hwnd = hwnd; |
c9f78968 | 306 | ti.lpszText = (wxChar *)m_text.wx_str(); // const_cast |
f048e32f | 307 | |
0c5405b7 | 308 | if ( !SendTooltipMessage(GetToolTipCtrl(), TTM_ADDTOOL, &ti) ) |
f048e32f | 309 | { |
bb448552 | 310 | wxLogDebug(_T("Failed to create the tooltip '%s'"), m_text.c_str()); |
f048e32f | 311 | } |
8614c467 VZ |
312 | else |
313 | { | |
314 | // check for multiline toopltip | |
315 | int index = m_text.Find(_T('\n')); | |
316 | ||
317 | if ( index != wxNOT_FOUND ) | |
318 | { | |
5b59df83 | 319 | #ifdef TTM_SETMAXTIPWIDTH |
2a1f999f | 320 | if ( wxApp::GetComCtl32Version() >= 470 ) |
8614c467 | 321 | { |
5b59df83 | 322 | // use TTM_SETMAXTIPWIDTH to make tooltip multiline using the |
8614c467 | 323 | // extent of its first line as max value |
0c5405b7 VZ |
324 | HFONT hfont = (HFONT) |
325 | SendTooltipMessage(GetToolTipCtrl(), WM_GETFONT, 0); | |
326 | ||
8614c467 VZ |
327 | if ( !hfont ) |
328 | { | |
329 | hfont = (HFONT)GetStockObject(DEFAULT_GUI_FONT); | |
330 | if ( !hfont ) | |
331 | { | |
f6bcfd97 | 332 | wxLogLastError(wxT("GetStockObject(DEFAULT_GUI_FONT)")); |
8614c467 VZ |
333 | } |
334 | } | |
335 | ||
2b5f62a0 | 336 | MemoryHDC hdc; |
8614c467 VZ |
337 | if ( !hdc ) |
338 | { | |
f6bcfd97 | 339 | wxLogLastError(wxT("CreateCompatibleDC(NULL)")); |
8614c467 VZ |
340 | } |
341 | ||
342 | if ( !SelectObject(hdc, hfont) ) | |
343 | { | |
f6bcfd97 | 344 | wxLogLastError(wxT("SelectObject(hfont)")); |
8614c467 VZ |
345 | } |
346 | ||
543a9921 RD |
347 | // find the width of the widest line |
348 | int max = 0; | |
349 | wxStringTokenizer tokenizer(m_text, _T("\n")); | |
350 | wxString token = tokenizer.GetNextToken(); | |
351 | while (token.length()) | |
8614c467 | 352 | { |
543a9921 | 353 | SIZE sz; |
e0a050e3 | 354 | if ( !::GetTextExtentPoint32(hdc, token.wx_str(), token.length(), &sz) ) |
543a9921 RD |
355 | { |
356 | wxLogLastError(wxT("GetTextExtentPoint32")); | |
357 | } | |
358 | if ( sz.cx > max ) | |
359 | max = sz.cx; | |
57bd4c60 | 360 | |
543a9921 | 361 | token = tokenizer.GetNextToken(); |
8614c467 VZ |
362 | } |
363 | ||
543a9921 RD |
364 | // only set a new width if it is bigger than the current setting |
365 | if (max > SendTooltipMessage(GetToolTipCtrl(), TTM_GETMAXTIPWIDTH, 0)) | |
366 | SendTooltipMessage(GetToolTipCtrl(), TTM_SETMAXTIPWIDTH, | |
367 | (void *)max); | |
8614c467 | 368 | } |
95130bea | 369 | else |
8614c467 | 370 | #endif // comctl32.dll >= 4.70 |
95130bea WS |
371 | { |
372 | // replace the '\n's with spaces because otherwise they appear as | |
373 | // unprintable characters in the tooltip string | |
374 | m_text.Replace(_T("\n"), _T(" ")); | |
c9f78968 | 375 | ti.lpszText = (wxChar *)m_text.wx_str(); // const_cast |
8614c467 | 376 | |
0c5405b7 | 377 | if ( !SendTooltipMessage(GetToolTipCtrl(), TTM_ADDTOOL, &ti) ) |
95130bea WS |
378 | { |
379 | wxLogDebug(_T("Failed to create the tooltip '%s'"), m_text.c_str()); | |
380 | } | |
381 | } | |
8614c467 VZ |
382 | } |
383 | } | |
f048e32f VZ |
384 | } |
385 | ||
3a19e16d VZ |
386 | void wxToolTip::SetWindow(wxWindow *win) |
387 | { | |
388 | Remove(); | |
389 | ||
390 | m_window = win; | |
391 | ||
f048e32f | 392 | // add the window itself |
3a19e16d VZ |
393 | if ( m_window ) |
394 | { | |
f048e32f VZ |
395 | Add(m_window->GetHWND()); |
396 | } | |
d4e5272b | 397 | #if !defined(__WXUNIVERSAL__) |
f048e32f VZ |
398 | // and all of its subcontrols (e.g. radiobuttons in a radiobox) as well |
399 | wxControl *control = wxDynamicCast(m_window, wxControl); | |
400 | if ( control ) | |
401 | { | |
bf25c88b | 402 | const wxArrayLong& subcontrols = control->GetSubcontrols(); |
8614c467 | 403 | size_t count = subcontrols.GetCount(); |
f048e32f | 404 | for ( size_t n = 0; n < count; n++ ) |
3a19e16d | 405 | { |
8614c467 | 406 | int id = subcontrols[n]; |
f048e32f | 407 | HWND hwnd = GetDlgItem(GetHwndOf(m_window), id); |
8614c467 | 408 | if ( !hwnd ) |
f048e32f | 409 | { |
8614c467 VZ |
410 | // may be it's a child of parent of the control, in fact? |
411 | // (radiobuttons are subcontrols, i.e. children of the radiobox | |
77ffb593 | 412 | // for wxWidgets but are its siblings at Windows level) |
8614c467 | 413 | hwnd = GetDlgItem(GetHwndOf(m_window->GetParent()), id); |
f048e32f | 414 | } |
8614c467 VZ |
415 | |
416 | // must have it by now! | |
417 | wxASSERT_MSG( hwnd, _T("no hwnd for subcontrol?") ); | |
418 | ||
419 | Add((WXHWND)hwnd); | |
3a19e16d VZ |
420 | } |
421 | } | |
f6bcfd97 BP |
422 | |
423 | // VZ: it's ugly to do it here, but I don't want any major changes right | |
424 | // now, later we will probably want to have wxWindow::OnGotToolTip() or | |
425 | // something like this where the derived class can do such things | |
426 | // itself instead of wxToolTip "knowing" about them all | |
427 | wxComboBox *combo = wxDynamicCast(control, wxComboBox); | |
0ef2ebba | 428 | if ( combo ) |
f6bcfd97 | 429 | { |
0ef2ebba VZ |
430 | WXHWND hwndComboEdit = combo->GetWindowStyle() & wxCB_READONLY |
431 | ? combo->GetHWND() | |
432 | : combo->GetEditHWND(); | |
f6bcfd97 BP |
433 | if ( hwndComboEdit ) |
434 | { | |
435 | Add(hwndComboEdit); | |
436 | } | |
f6bcfd97 | 437 | } |
d4e5272b | 438 | #endif // !defined(__WXUNIVERSAL__) |
3a19e16d VZ |
439 | } |
440 | ||
441 | void wxToolTip::SetTip(const wxString& tip) | |
442 | { | |
443 | m_text = tip; | |
444 | ||
445 | if ( m_window ) | |
446 | { | |
2b5f62a0 | 447 | // update the tip text shown by the control |
f048e32f | 448 | wxToolInfo ti(GetHwndOf(m_window)); |
c9f78968 | 449 | ti.lpszText = (wxChar *)m_text.wx_str(); |
3a19e16d | 450 | |
0c5405b7 | 451 | (void)SendTooltipMessage(GetToolTipCtrl(), TTM_UPDATETIPTEXT, &ti); |
3a19e16d VZ |
452 | } |
453 | } | |
cb1a1dc9 VZ |
454 | |
455 | #endif // wxUSE_TOOLTIPS |