Add "rect" paramerer to wxRichToolTip::ShowFor().

Allow to show the tooltip at the exact specified position instead of placing
it automatically.

Closes #14862.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73050 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2012-11-28 14:18:17 +00:00
parent 0555b2a0a3
commit d3feb55c49
8 changed files with 29 additions and 18 deletions

View File

@@ -151,13 +151,13 @@ public:
wxRichToolTipGenericImpl::SetTitleFont(font);
}
virtual void ShowFor(wxWindow* win)
virtual void ShowFor(wxWindow* win, wxRect* rect = NULL);
{
// TODO: We could use native tooltip control to show native balloon
// tooltips for any window but right now we use the simple
// EM_SHOWBALLOONTIP API which can only be used with text
// controls.
if ( m_canUseNative )
if ( m_canUseNative && !rect )
{
wxTextCtrl* const text = wxDynamicCast(win, wxTextCtrl);
if ( text )
@@ -175,7 +175,7 @@ public:
// Don't set m_canUseNative to false here, we could be able to use the
// native tooltips if we're called for a different window the next
// time.
wxRichToolTipGenericImpl::ShowFor(win);
wxRichToolTipGenericImpl::ShowFor(win, rect);
}
private: