1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/mac/carbon/tooltip.cpp
3 // Purpose: wxToolTip implementation
4 // Author: Stefan Csomor
6 // Copyright: (c) Stefan Csomor
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #include "wx/wxprec.h"
14 #include "wx/tooltip.h"
18 #include "wx/window.h"
23 #include "wx/geometry.h"
24 #include "wx/mac/uma.h"
26 //-----------------------------------------------------------------------------
28 //-----------------------------------------------------------------------------
31 class wxMacToolTipTimer
: public wxTimer
34 wxMacToolTipTimer(wxMacToolTip
* tip
, int iMilliseconds
) ;
35 wxMacToolTipTimer() {} ;
36 virtual ~wxMacToolTipTimer() {} ;
40 if ( m_mark
== m_tip
->GetMark() )
50 //-----------------------------------------------------------------------------
52 //-----------------------------------------------------------------------------
53 static long s_ToolTipDelay
= 500 ;
54 static bool s_ShowToolTips
= true ;
55 static wxMacToolTip s_ToolTip
;
56 static wxWindow
* s_LastWindowEntered
= NULL
;
57 static wxRect2DInt s_ToolTipArea
;
58 static WindowRef s_ToolTipWindowRef
= NULL
;
60 IMPLEMENT_ABSTRACT_CLASS(wxToolTip
, wxObject
)
63 wxToolTip::wxToolTip( const wxString
&tip
)
66 m_window
= (wxWindow
*) NULL
;
69 wxToolTip::~wxToolTip()
73 void wxToolTip::SetTip( const wxString
&tip
)
80 // update it immediately
81 wxToolInfo
ti(GetHwndOf(m_window
));
82 ti
.lpszText
= (wxChar
*)m_text
.c_str();
84 (void)SendTooltipMessage(GetToolTipCtrl(), TTM_UPDATETIPTEXT
, 0, &ti
);
89 void wxToolTip::SetWindow( wxWindow
*win
)
94 void wxToolTip::Enable( bool flag
)
96 if ( s_ShowToolTips
!= flag
)
98 s_ShowToolTips
= flag
;
100 if ( s_ShowToolTips
)
110 void wxToolTip::SetDelay( long msecs
)
112 s_ToolTipDelay
= msecs
;
115 void wxToolTip::SetAutoPop( long WXUNUSED(msecs
) )
119 void wxToolTip::SetReshow( long WXUNUSED(msecs
) )
123 void wxToolTip::RelayEvent( wxWindow
*win
, wxMouseEvent
&event
)
125 if ( s_ShowToolTips
)
127 if ( event
.GetEventType() == wxEVT_LEAVE_WINDOW
)
131 else if (event
.GetEventType() == wxEVT_ENTER_WINDOW
|| event
.GetEventType() == wxEVT_MOTION
)
133 wxPoint2DInt
where( event
.m_x
, event
.m_y
) ;
134 if ( s_LastWindowEntered
== win
&& s_ToolTipArea
.Contains( where
) )
140 s_ToolTipArea
= wxRect2DInt( event
.m_x
- 2 , event
.m_y
- 2 , 4 , 4 ) ;
141 s_LastWindowEntered
= win
;
143 WindowRef window
= MAC_WXHWND( win
->MacGetTopLevelWindowRef() ) ;
146 wxPoint
local( x
, y
) ;
147 win
->MacClientToRootWindow( &x
, &y
) ;
148 wxPoint
windowlocal( x
, y
) ;
149 s_ToolTip
.Setup( window
, win
->MacGetToolTipString( local
) , windowlocal
) ;
155 void wxToolTip::RemoveToolTips()
162 wxMacToolTipTimer::wxMacToolTipTimer( wxMacToolTip
*tip
, int msec
)
165 m_mark
= tip
->GetMark() ;
168 #endif // wxUSE_TIMER
170 wxMacToolTip::wxMacToolTip()
181 void wxMacToolTip::Setup( WindowRef win
, const wxString
& text
, const wxPoint
& localPosition
)
186 m_position
= localPosition
;
189 s_ToolTipWindowRef
= m_window
;
195 m_timer
= new wxMacToolTipTimer( this , s_ToolTipDelay
) ;
196 #endif // wxUSE_TIMER
199 wxMacToolTip::~wxMacToolTip()
207 #endif // wxUSE_TIMER
212 const short kTipBorder
= 2 ;
213 const short kTipOffset
= 5 ;
215 void wxMacToolTip::Draw()
217 if ( m_label
.empty() )
220 if ( m_window
== s_ToolTipWindowRef
)
224 HMHelpContentRec tag
;
225 tag
.version
= kMacHelpVersion
;
227 Point p
= { m_position
.y
, m_position
.x
};
228 wxMacLocalToGlobal( m_window
, &p
) ;
229 SetRect( &tag
.absHotRect
, p
.h
- 2 , p
.v
- 2 , p
.h
+ 2 , p
.v
+ 2 );
231 m_helpTextRef
.Assign( m_label
, wxFONTENCODING_DEFAULT
) ;
232 tag
.content
[kHMMinimumContentIndex
].contentType
= kHMCFStringContent
;
233 tag
.content
[kHMMinimumContentIndex
].u
.tagCFString
= m_helpTextRef
;
234 tag
.content
[kHMMaximumContentIndex
].contentType
= kHMCFStringContent
;
235 tag
.content
[kHMMaximumContentIndex
].u
.tagCFString
= m_helpTextRef
;
236 tag
.tagSide
= kHMDefaultSide
;
237 HMDisplayTag( &tag
);
241 void wxToolTip::NotifyWindowDelete( WXHWND win
)
243 if ( win
== s_ToolTipWindowRef
)
244 s_ToolTipWindowRef
= NULL
;
247 void wxMacToolTip::Clear()
256 #endif // wxUSE_TIMER
261 m_helpTextRef
.Release() ;
264 #endif // wxUSE_TOOLTIPS