1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxToolTip implementation
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #pragma implementation "tooltip.h"
20 #include "wx/window.h"
21 #include "wx/tooltip.h"
23 #include "wx/geometry.h"
24 #include "wx/mac/uma.h"
26 //-----------------------------------------------------------------------------
28 //-----------------------------------------------------------------------------
30 class wxMacToolTipTimer
;
38 void Setup( WindowRef window
, const wxString
& text
, wxPoint localPosition
) ;
39 long GetMark() { return m_mark
; }
42 bool IsShown() { return m_shown
; }
49 PicHandle m_backpict
;
52 wxMacToolTipTimer
* m_timer
;
54 wxMacCFStringHolder m_helpTextRef
;
58 class wxMacToolTipTimer
: public wxTimer
61 wxMacToolTipTimer() {} ;
62 wxMacToolTipTimer(wxMacToolTip
* tip
, int iMilliseconds
) ;
63 virtual ~wxMacToolTipTimer() {} ;
66 if ( m_mark
== m_tip
->GetMark() )
74 //-----------------------------------------------------------------------------
76 //-----------------------------------------------------------------------------
77 static long s_ToolTipDelay
= 500 ;
78 static bool s_ShowToolTips
= true ;
79 static wxMacToolTip s_ToolTip
;
80 static wxWindow
* s_LastWindowEntered
= NULL
;
81 static wxRect2DInt s_ToolTipArea
;
82 static WindowRef s_ToolTipWindowRef
= NULL
;
84 IMPLEMENT_ABSTRACT_CLASS(wxToolTip
, wxObject
)
86 wxToolTip::wxToolTip( const wxString
&tip
)
89 m_window
= (wxWindow
*) NULL
;
92 wxToolTip::~wxToolTip()
96 void wxToolTip::SetTip( const wxString
&tip
)
103 // update it immediately
104 wxToolInfo ti(GetHwndOf(m_window));
105 ti.lpszText = (wxChar *)m_text.c_str();
107 (void)SendTooltipMessage(GetToolTipCtrl(), TTM_UPDATETIPTEXT, 0, &ti);
112 void wxToolTip::SetWindow( wxWindow
*win
)
117 void wxToolTip::Enable( bool flag
)
119 if ( s_ShowToolTips
!= flag
)
121 s_ShowToolTips
= flag
;
122 if ( s_ShowToolTips
)
132 void wxToolTip::SetDelay( long msecs
)
134 s_ToolTipDelay
= msecs
;
137 void wxToolTip::RelayEvent( wxWindow
*win
, wxMouseEvent
&event
)
139 if ( s_ShowToolTips
)
141 if ( event
.GetEventType() == wxEVT_LEAVE_WINDOW
)
145 else if (event
.GetEventType() == wxEVT_ENTER_WINDOW
|| event
.GetEventType() == wxEVT_MOTION
)
147 wxPoint2DInt
where( event
.m_x
, event
.m_y
) ;
148 if ( s_LastWindowEntered
== win
&& s_ToolTipArea
.Contains( where
) )
154 s_ToolTipArea
= wxRect2DInt( event
.m_x
- 2 , event
.m_y
- 2 , 4 , 4 ) ;
155 s_LastWindowEntered
= win
;
157 WindowRef window
= MAC_WXHWND( win
->MacGetRootWindow() ) ;
160 wxPoint
local( x
, y
) ;
161 win
->MacClientToRootWindow( &x
, &y
) ;
162 wxPoint
windowlocal( x
, y
) ;
163 s_ToolTip
.Setup( window
, win
->MacGetToolTipString( local
) , windowlocal
) ;
169 void wxToolTip::RemoveToolTips()
175 wxMacToolTipTimer::wxMacToolTipTimer( wxMacToolTip
*tip
, int msec
)
178 m_mark
= tip
->GetMark() ;
182 wxMacToolTip::wxMacToolTip()
191 void wxMacToolTip::Setup( WindowRef win
, const wxString
& text
, wxPoint localPosition
)
195 m_position
= localPosition
;
198 s_ToolTipWindowRef
= m_window
;
202 m_timer
= new wxMacToolTipTimer( this , s_ToolTipDelay
) ;
205 wxMacToolTip::~wxMacToolTip()
215 const short kTipBorder
= 2 ;
216 const short kTipOffset
= 5 ;
218 void wxMacToolTip::Draw()
220 if ( m_label
.Length() == 0 )
223 if ( m_window
== s_ToolTipWindowRef
)
227 HMHelpContentRec tag
;
228 tag
.version
= kMacHelpVersion
;
229 SetRect( &tag
.absHotRect
, m_position
.x
- 2 , m_position
.y
- 2 , m_position
.x
+ 2 , m_position
.y
+ 2 ) ;
232 SetPortWindowPort(m_window
) ;
233 LocalToGlobal( (Point
*) &tag
.absHotRect
.top
);
234 LocalToGlobal( (Point
*) &tag
.absHotRect
.bottom
);
236 m_helpTextRef
= m_label
;
237 tag
.content
[kHMMinimumContentIndex
].contentType
= kHMCFStringContent
;
238 tag
.content
[kHMMinimumContentIndex
].u
.tagCFString
= m_helpTextRef
;
239 tag
.content
[kHMMaximumContentIndex
].contentType
= kHMCFStringContent
;
240 tag
.content
[kHMMaximumContentIndex
].u
.tagCFString
= m_helpTextRef
;
241 tag
.tagSide
= kHMDefaultSide
;
242 HMDisplayTag( &tag
);
244 wxMacPortStateHelper
help( (GrafPtr
) GetWindowPort( m_window
) );
245 FontFamilyID fontId
;
249 GetThemeFont(kThemeSmallSystemFont
, GetApplicationScript() , fontName
, &fontSize
, &fontStyle
) ;
250 GetFNum( fontName
, &fontId
);
253 TextSize( fontSize
) ;
254 TextFace( fontStyle
) ;
256 ::GetFontInfo(&fontInfo
);
257 short lineh
= fontInfo
.ascent
+ fontInfo
.descent
+ fontInfo
.leading
;
261 int length
= m_label
.Length() ;
265 wxCharBuffer text
= wxMacStringToCString( m_label
) ;
269 if( text
[i
] == 13 || text
[i
] == 10)
271 thiswidth
= ::TextWidth( text
, laststop
, i
- laststop
) ;
272 if ( thiswidth
> width
)
280 if ( i
- laststop
> 0 )
282 thiswidth
= ::TextWidth( text
, laststop
, i
- laststop
) ;
283 if ( thiswidth
> width
)
288 m_rect
.left
= m_position
.x
+ kTipOffset
;
289 m_rect
.top
= m_position
.y
+ kTipOffset
;
290 m_rect
.right
= m_rect
.left
+ width
+ 2 * kTipBorder
;
292 m_rect
.bottom
= m_rect
.top
+ height
+ 2 * kTipBorder
;
294 GetPortBounds( GetWindowPort( m_window
) , &r
) ;
295 if ( m_rect
.top
< 0 )
297 m_rect
.bottom
+= -m_rect
.top
;
300 if ( m_rect
.left
< 0 )
302 m_rect
.right
+= -m_rect
.left
;
305 if ( m_rect
.right
> r
.right
)
307 m_rect
.left
-= (m_rect
.right
- r
.right
) ;
308 m_rect
.right
= r
.right
;
310 if ( m_rect
.bottom
> r
.bottom
)
312 m_rect
.top
-= (m_rect
.bottom
- r
.bottom
) ;
313 m_rect
.bottom
= r
.bottom
;
315 ClipRect( &m_rect
) ;
316 BackColor( whiteColor
) ;
317 ForeColor(blackColor
) ;
319 NewGWorld( &port
, wxDisplayDepth() , &m_rect
, NULL
, NULL
, 0 ) ;
321 GDHandle origDevice
;
323 GetGWorld( &origPort
, &origDevice
) ;
324 SetGWorld( port
, NULL
) ;
326 m_backpict
= OpenPicture(&m_rect
);
328 CopyBits(GetPortBitMapForCopyBits(GetWindowPort(m_window
)),
329 GetPortBitMapForCopyBits(port
),
335 SetGWorld( origPort
, origDevice
) ;
336 DisposeGWorld( port
) ;
339 RGBColor tooltipbackground
= { 0xFFFF , 0xFFFF , 0xC000 } ;
340 BackColor( whiteColor
) ;
341 RGBForeColor( &tooltipbackground
) ;
343 PaintRect( &m_rect
) ;
344 ForeColor(blackColor
) ;
345 FrameRect( &m_rect
) ;
346 SetThemeTextColor(kThemeTextColorNotification
,wxDisplayDepth(),true) ;
347 ::MoveTo( m_rect
.left
+ kTipBorder
, m_rect
.top
+ fontInfo
.ascent
+ kTipBorder
);
355 if( text
[i
] == 13 || text
[i
] == 10)
357 ::DrawText( text
, laststop
, i
- laststop
) ;
359 ::MoveTo( m_rect
.left
+ kTipBorder
, m_rect
.top
+ fontInfo
.ascent
+ kTipBorder
+ height
);
364 ::DrawText( text
, laststop
, i
- laststop
) ;
365 ::TextMode( srcOr
) ;
370 void wxToolTip::NotifyWindowDelete( WXHWND win
)
372 if ( win
== s_ToolTipWindowRef
)
374 s_ToolTipWindowRef
= NULL
;
378 void wxMacToolTip::Clear()
390 m_helpTextRef
.Release() ;
392 if ( m_window
== s_ToolTipWindowRef
&& m_backpict
)
394 wxMacPortStateHelper
help( (GrafPtr
) GetWindowPort(m_window
) ) ;
398 BackColor( whiteColor
) ;
399 ForeColor(blackColor
) ;
400 DrawPicture(m_backpict
, &m_rect
);
401 KillPicture(m_backpict
);