projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
corrected code to really skip stack frames in the beginning and to number the remaini...
[wxWidgets.git]
/
src
/
msw
/
tooltip.cpp
diff --git
a/src/msw/tooltip.cpp
b/src/msw/tooltip.cpp
index 0ab90686a80205ccd8b484149c0e7c9d5d05b688..052fbca0b9e2b53016a1c35a8aa24b76e1130c2d 100644
(file)
--- a/
src/msw/tooltip.cpp
+++ b/
src/msw/tooltip.cpp
@@
-141,13
+141,13
@@
LRESULT APIENTRY wxToolTipWndProc(HWND hwndTT,
{
LPPOINT ppt = (LPPOINT)lParam;
{
LPPOINT ppt = (LPPOINT)lParam;
- // the window on which event occured
+ // the window on which event occur
r
ed
HWND hwnd = ::WindowFromPoint(*ppt);
OutputDebugString("TTM_WINDOWFROMPOINT: ");
OutputDebugString(wxString::Format("0x%08x => ", hwnd));
HWND hwnd = ::WindowFromPoint(*ppt);
OutputDebugString("TTM_WINDOWFROMPOINT: ");
OutputDebugString(wxString::Format("0x%08x => ", hwnd));
- // return a HWND corresponding to a wxWindow because only wxWi
ndow
s are
+ // return a HWND corresponding to a wxWindow because only wxWi
dget
s are
// associated with tooltips using TTM_ADDTOOL
wxWindow *win = wxGetWindowFromHWND((WXHWND)hwnd);
// associated with tooltips using TTM_ADDTOOL
wxWindow *win = wxGetWindowFromHWND((WXHWND)hwnd);
@@
-289,7
+289,7
@@
void wxToolTip::Add(WXHWND hWnd)
if ( index != wxNOT_FOUND )
{
#ifdef TTM_SETMAXTIPWIDTH
if ( index != wxNOT_FOUND )
{
#ifdef TTM_SETMAXTIPWIDTH
- if ( wx
TheApp->
GetComCtl32Version() >= 470 )
+ if ( wx
App::
GetComCtl32Version() >= 470 )
{
// use TTM_SETMAXTIPWIDTH to make tooltip multiline using the
// extent of its first line as max value
{
// use TTM_SETMAXTIPWIDTH to make tooltip multiline using the
// extent of its first line as max value
@@
-317,19
+317,27
@@
void wxToolTip::Add(WXHWND hWnd)
}
SIZE sz;
}
SIZE sz;
- if ( !
GetTextExtentPoint
(hdc, m_text, index, &sz) )
+ if ( !
::GetTextExtentPoint32
(hdc, m_text, index, &sz) )
{
{
- wxLogLastError(wxT("GetTextExtentPoint"));
+ wxLogLastError(wxT("GetTextExtentPoint
32
"));
}
SendTooltipMessage(GetToolTipCtrl(), TTM_SETMAXTIPWIDTH,
0, (void *)sz.cx);
}
}
SendTooltipMessage(GetToolTipCtrl(), TTM_SETMAXTIPWIDTH,
0, (void *)sz.cx);
}
+ else
#endif // comctl32.dll >= 4.70
#endif // comctl32.dll >= 4.70
+ {
+ // replace the '\n's with spaces because otherwise they appear as
+ // unprintable characters in the tooltip string
+ m_text.Replace(_T("\n"), _T(" "));
+ ti.lpszText = (wxChar *)m_text.c_str(); // const_cast
- // replace the '\n's with spaces because otherwise they appear as
- // unprintable characters in the tooltip string
- m_text.Replace(_T("\n"), _T(" "));
+ if ( !SendTooltipMessage(GetToolTipCtrl(), TTM_ADDTOOL, 0, &ti) )
+ {
+ wxLogDebug(_T("Failed to create the tooltip '%s'"), m_text.c_str());
+ }
+ }
}
}
}
}
}
}
@@
-360,7
+368,7
@@
void wxToolTip::SetWindow(wxWindow *win)
{
// may be it's a child of parent of the control, in fact?
// (radiobuttons are subcontrols, i.e. children of the radiobox
{
// may be it's a child of parent of the control, in fact?
// (radiobuttons are subcontrols, i.e. children of the radiobox
- // for wxWi
ndow
s but are its siblings at Windows level)
+ // for wxWi
dget
s but are its siblings at Windows level)
hwnd = GetDlgItem(GetHwndOf(m_window->GetParent()), id);
}
hwnd = GetDlgItem(GetHwndOf(m_window->GetParent()), id);
}