]> git.saurik.com Git - wxWidgets.git/blame - src/mac/tooltip.cpp
Allow wxSTC to have scrollbars
[wxWidgets.git] / src / mac / tooltip.cpp
CommitLineData
ee6b1d97
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: tooltip.cpp
3// Purpose: wxToolTip implementation
4// Author: Robert Roebling
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling
7// Licence: wxWindows licence
8/////////////////////////////////////////////////////////////////////////////
9
10#ifdef __GNUG__
11 #pragma implementation "tooltip.h"
12#endif
13
853e3ce9 14#include "wx/defs.h"
ee6b1d97
SC
15
16#if wxUSE_TOOLTIPS
17
03e11df5 18#include "wx/app.h"
5fde6fcc 19#include "wx/dc.h"
ee6b1d97
SC
20#include "wx/window.h"
21#include "wx/tooltip.h"
03e11df5 22#include "wx/timer.h"
ee6b1d97 23#include "wx/geometry.h"
ee6b1d97
SC
24#include "wx/mac/uma.h"
25
26//-----------------------------------------------------------------------------
27// global data
28//-----------------------------------------------------------------------------
29
76a5e5d2
SC
30class wxMacToolTipTimer ;
31
ee6b1d97
SC
32class wxMacToolTip
33{
34 public :
35 wxMacToolTip( ) ;
36 ~wxMacToolTip() ;
37
38 void Setup( WindowRef window , wxString text , wxPoint localPosition ) ;
39 long GetMark() { return m_mark ; }
40 void Draw() ;
41 void Clear() ;
42 bool IsShown() { return m_shown ; }
43 private :
44
45 wxString m_label ;
46 wxPoint m_position ;
47 Rect m_rect ;
48 WindowRef m_window ;
49 PicHandle m_backpict ;
50 bool m_shown ;
51 long m_mark ;
76a5e5d2 52 wxMacToolTipTimer* m_timer ;
ee6b1d97
SC
53} ;
54
853e3ce9 55class wxMacToolTipTimer : public wxTimer
ee6b1d97
SC
56{
57public:
853e3ce9
GD
58 wxMacToolTipTimer() {} ;
59 wxMacToolTipTimer(wxMacToolTip* tip, int iMilliseconds) ;
12cd5f34 60 virtual ~wxMacToolTipTimer() {} ;
853e3ce9
GD
61 void Notify()
62 {
63 if ( m_mark == m_tip->GetMark() )
64 m_tip->Draw() ;
65 }
ee6b1d97 66protected:
853e3ce9
GD
67 wxMacToolTip* m_tip;
68 long m_mark ;
ee6b1d97
SC
69};
70
71//-----------------------------------------------------------------------------
72// wxToolTip
73//-----------------------------------------------------------------------------
74static long s_ToolTipDelay = 500 ;
75static bool s_ShowToolTips = true ;
76static wxMacToolTip s_ToolTip ;
77static wxWindow* s_LastWindowEntered = NULL ;
78static wxRect2DInt s_ToolTipArea ;
79static WindowRef s_ToolTipWindowRef = NULL ;
f5ebf253
SC
80
81IMPLEMENT_ABSTRACT_CLASS(wxToolTip, wxObject)
82
ee6b1d97
SC
83wxToolTip::wxToolTip( const wxString &tip )
84{
85 m_text = tip;
86 m_window = (wxWindow*) NULL;
87}
88
89wxToolTip::~wxToolTip()
90{
91}
92
93void wxToolTip::SetTip( const wxString &tip )
94{
95 m_text = tip;
96
97 if ( m_window )
98 {
99 /*
100 // update it immediately
101 wxToolInfo ti(GetHwndOf(m_window));
102 ti.lpszText = (wxChar *)m_text.c_str();
103
104 (void)SendTooltipMessage(GetToolTipCtrl(), TTM_UPDATETIPTEXT, 0, &ti);
105 */
106 }
107}
108
109void wxToolTip::SetWindow( wxWindow *win )
110{
7eb67c00 111 m_window = win ;
ee6b1d97
SC
112}
113
114void wxToolTip::Enable( bool flag )
115{
116 if ( s_ShowToolTips != flag )
117 {
118 s_ShowToolTips = flag ;
119 if ( s_ShowToolTips )
120 {
121 }
122 else
123 {
124 s_ToolTip.Clear() ;
125 }
126 }
127}
128
129void wxToolTip::SetDelay( long msecs )
130{
131 s_ToolTipDelay = msecs ;
132}
133
134void wxToolTip::RelayEvent( wxWindow *win , wxMouseEvent &event )
135{
136 if ( s_ShowToolTips )
137 {
138 if ( event.GetEventType() == wxEVT_LEAVE_WINDOW )
139 {
140 s_ToolTip.Clear() ;
141 }
142 else if (event.GetEventType() == wxEVT_ENTER_WINDOW || event.GetEventType() == wxEVT_MOTION )
143 {
144 wxPoint2DInt where( event.m_x , event.m_y ) ;
145 if ( s_LastWindowEntered == win && s_ToolTipArea.Contains( where ) )
146 {
147 }
148 else
149 {
150 s_ToolTip.Clear() ;
151 s_ToolTipArea = wxRect2DInt( event.m_x - 2 , event.m_y - 2 , 4 , 4 ) ;
152 s_LastWindowEntered = win ;
153
76a5e5d2 154 WindowRef window = MAC_WXHWND( win->MacGetRootWindow() ) ;
ee6b1d97
SC
155 int x = event.m_x ;
156 int y = event.m_y ;
157 wxPoint local( x , y ) ;
158 win->MacClientToRootWindow( &x, &y ) ;
159 wxPoint windowlocal( x , y ) ;
160 s_ToolTip.Setup( window , win->MacGetToolTipString( local ) , windowlocal ) ;
161 }
162 }
163 }
164}
165
166void wxToolTip::RemoveToolTips()
167{
168 s_ToolTip.Clear() ;
169}
170// --- mac specific
171
172wxMacToolTipTimer::wxMacToolTipTimer( wxMacToolTip *tip , int msec )
173{
174 m_tip = tip;
175 m_mark = tip->GetMark() ;
176 Start(msec, true);
177}
178
179wxMacToolTip::wxMacToolTip()
180{
181 m_window = NULL ;
182 m_backpict = NULL ;
183 m_mark = 0 ;
184 m_shown = false ;
76a5e5d2 185 m_timer = NULL ;
ee6b1d97
SC
186}
187
7eb67c00 188void wxMacToolTip::Setup( WindowRef win , wxString text , wxPoint localPosition )
ee6b1d97
SC
189{
190 m_mark++ ;
191 Clear() ;
12cd5f34 192 m_position = localPosition ;
ee6b1d97 193 m_label = wxMacMakeMacStringFromPC( text ) ;
7eb67c00
SC
194 m_window =win;
195 s_ToolTipWindowRef = m_window ;
ee6b1d97 196 m_backpict = NULL ;
76a5e5d2
SC
197 if ( m_timer )
198 delete m_timer ;
199 m_timer = new wxMacToolTipTimer( this , s_ToolTipDelay ) ;
ee6b1d97
SC
200}
201
202wxMacToolTip::~wxMacToolTip()
203{
f5bb2251 204 if ( m_timer ) {
76a5e5d2 205 delete m_timer ;
f5bb2251
GD
206 m_timer = NULL;
207 }
208 if ( m_backpict )
209 Clear() ;
ee6b1d97
SC
210}
211
212const short kTipBorder = 2 ;
213const short kTipOffset = 5 ;
214
215void wxMacToolTip::Draw()
216{
217 if ( m_label.Length() == 0 )
218 return ;
219
220 if ( m_window == s_ToolTipWindowRef )
221 {
a7b04cfc
SC
222#if TARGET_CARBON
223/*
224 if ( HMDisplayTag != (void*) kUnresolvedCFragSymbolAddress )
225 {
226 HMDisplayTag(
227 }
228 else
229*/
230#endif
231 {
66a09d47 232 wxMacPortStateHelper help( (GrafPtr) GetWindowPort( m_window ) );
61eb9fa1 233#if TARGET_CARBON
7eb67c00 234 bool useDrawThemeText = ( DrawThemeTextBox != (void*) kUnresolvedCFragSymbolAddress ) ;
61eb9fa1 235#endif
a7b04cfc
SC
236 m_shown = true ;
237
7eb67c00
SC
238 FontFamilyID fontId ;
239 Str255 fontName ;
240 SInt16 fontSize ;
241 Style fontStyle ;
242 GetThemeFont(kThemeSmallSystemFont , GetApplicationScript() , fontName , &fontSize , &fontStyle ) ;
243 GetFNum( fontName, &fontId );
244
245 TextFont( fontId ) ;
246 TextSize( fontSize ) ;
247 TextFace( fontStyle ) ;
a7b04cfc
SC
248 FontInfo fontInfo;
249 ::GetFontInfo(&fontInfo);
250 short lineh = fontInfo.ascent + fontInfo.descent + fontInfo.leading;
251 short height = 0 ;
252 // short width = TextWidth( m_label , 0 ,m_label.Length() ) ;
253
254 int i = 0 ;
255 int length = m_label.Length() ;
256 int width = 0 ;
257 int thiswidth = 0 ;
258 int laststop = 0 ;
259 const char *text = m_label ;
260 while( i < length )
261 {
262 if( text[i] == 13 || text[i] == 10)
263 {
264 thiswidth = ::TextWidth( text , laststop , i - laststop ) ;
265 if ( thiswidth > width )
266 width = thiswidth ;
267
268 height += lineh ;
269 laststop = i+1 ;
270 }
271 i++ ;
272 }
273 if ( i - laststop > 0 )
274 {
275 thiswidth = ::TextWidth( text , laststop , i - laststop ) ;
276 if ( thiswidth > width )
277 width = thiswidth ;
278 height += lineh ;
279 }
280
281
282 m_rect.left = m_position.x + kTipOffset;
283 m_rect.top = m_position.y + kTipOffset;
284 m_rect.right = m_rect.left + width + 2 * kTipBorder;
61eb9fa1 285#if TARGET_CARBON
7eb67c00
SC
286 if ( useDrawThemeText )
287 m_rect.right += kTipBorder ;
61eb9fa1 288#endif
a7b04cfc
SC
289 m_rect.bottom = m_rect.top + height + 2 * kTipBorder;
290 ClipRect( &m_rect ) ;
291 BackColor( whiteColor ) ;
292 ForeColor(blackColor ) ;
293 m_backpict = OpenPicture(&m_rect);
294
295 CopyBits(GetPortBitMapForCopyBits(GetWindowPort(m_window)),
296 GetPortBitMapForCopyBits(GetWindowPort(m_window)),
297 &m_rect,
298 &m_rect,
299 srcCopy,
300 NULL);
301
302 ClosePicture();
7eb67c00
SC
303 PenNormal() ;
304
305 RGBColor tooltipbackground = { 0xFFFF , 0xFFFF , 0xC000 } ;
306 BackColor( whiteColor ) ;
307 RGBForeColor( &tooltipbackground ) ;
308
309 PaintRect( &m_rect ) ;
310 ForeColor(blackColor ) ;
a7b04cfc 311 FrameRect( &m_rect ) ;
7eb67c00 312 SetThemeTextColor(kThemeTextColorNotification,wxDisplayDepth(),true) ;
a7b04cfc
SC
313 ::MoveTo( m_rect.left + kTipBorder , m_rect.top + fontInfo.ascent + kTipBorder);
314
315 i = 0 ;
316 laststop = 0 ;
317 height = 0 ;
7eb67c00 318
a7b04cfc
SC
319 while( i < length )
320 {
321 if( text[i] == 13 || text[i] == 10)
322 {
61eb9fa1 323#if TARGET_CARBON
7eb67c00
SC
324 if ( useDrawThemeText )
325 {
326 Rect frame ;
327 frame.top = m_rect.top + kTipBorder + height ;
328 frame.left = m_rect.left + kTipBorder ;
329 frame.bottom = frame.top + 1000 ;
330 frame.right = frame.left + 1000 ;
331 CFStringRef mString = CFStringCreateWithBytes( NULL , (UInt8*) text + laststop , i - laststop , CFStringGetSystemEncoding(), false ) ;
332 ::DrawThemeTextBox( mString,
333 kThemeCurrentPortFont,
334 kThemeStateActive,
335 true,
336 &frame,
337 teJustLeft,
338 nil );
339 CFRelease( mString ) ;
340 height += lineh ;
341 }
342 else
61eb9fa1 343#endif
7eb67c00
SC
344 {
345 ::DrawText( text , laststop , i - laststop ) ;
346 height += lineh ;
347 ::MoveTo( m_rect.left + kTipBorder , m_rect.top + fontInfo.ascent + kTipBorder + height );
348 }
a7b04cfc
SC
349 laststop = i+1 ;
350 }
351 i++ ;
352 }
61eb9fa1 353#if TARGET_CARBON
7eb67c00
SC
354 if ( useDrawThemeText )
355 {
356 Rect frame ;
357 frame.top = m_rect.top + kTipBorder + height ;
358 frame.left = m_rect.left + kTipBorder ;
359 frame.bottom = frame.top + 1000 ;
360 frame.right = frame.left + 1000 ;
361 CFStringRef mString = CFStringCreateWithCString( NULL , text + laststop , kCFStringEncodingMacRoman ) ;
362 ::DrawThemeTextBox( mString,
363 kThemeCurrentPortFont,
364 kThemeStateActive,
365 true,
366 &frame,
367 teJustLeft,
368 nil );
369 CFRelease( mString ) ;
370 }
371 else
61eb9fa1 372#endif
7eb67c00
SC
373 {
374 ::DrawText( text , laststop , i - laststop ) ;
375 }
a7b04cfc 376 ::TextMode( srcOr ) ;
7eb67c00 377 }
ee6b1d97
SC
378 }
379}
380
76a5e5d2 381void wxToolTip::NotifyWindowDelete( WXHWND win )
ee6b1d97
SC
382{
383 if ( win == s_ToolTipWindowRef )
384 {
385 s_ToolTipWindowRef = NULL ;
386 }
387}
388
389void wxMacToolTip::Clear()
390{
391 m_mark++ ;
12cd5f34
SC
392 if ( m_timer )
393 {
394 delete m_timer ;
395 m_timer = NULL ;
396 }
ee6b1d97
SC
397 if ( !m_shown )
398 return ;
399
400 if ( m_window == s_ToolTipWindowRef && m_backpict )
401 {
66a09d47 402 wxMacPortStateHelper help( (GrafPtr) GetWindowPort(m_window) ) ;
76a5e5d2 403
ee6b1d97
SC
404 m_shown = false ;
405
ee6b1d97
SC
406 BackColor( whiteColor ) ;
407 ForeColor(blackColor ) ;
408 DrawPicture(m_backpict, &m_rect);
409 KillPicture(m_backpict);
410 m_backpict = NULL ;
411 }
412}
413
414#endif
415