]> git.saurik.com Git - wxWidgets.git/blame - src/mac/carbon/toplevel.cpp
Regenerate Makefile.in, configure and the VC++ project files after adding rcdefs.h
[wxWidgets.git] / src / mac / carbon / toplevel.cpp
CommitLineData
a15eb0a5 1///////////////////////////////////////////////////////////////////////////////
fb5246be 2// Name: src/mac/carbon/toplevel.cpp
d66c3960
SC
3// Purpose: implements wxTopLevelWindow for Mac
4// Author: Stefan Csomor
a15eb0a5
SC
5// Modified by:
6// Created: 24.09.01
7// RCS-ID: $Id$
d66c3960 8// Copyright: (c) 2001-2004 Stefan Csomor
65571936 9// License: wxWindows licence
a15eb0a5
SC
10///////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
a15eb0a5
SC
20// For compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
22
23#ifdef __BORLANDC__
24 #pragma hdrstop
25#endif
26
27#ifndef WX_PRECOMP
28 #include "wx/app.h"
29 #include "wx/toplevel.h"
422644a3 30 #include "wx/frame.h"
a15eb0a5
SC
31 #include "wx/string.h"
32 #include "wx/log.h"
33 #include "wx/intl.h"
37ec2bd3 34 #include "wx/settings.h"
2d17efa9 35 #include "wx/strconv.h"
179e085f 36 #include "wx/control.h"
a15eb0a5
SC
37#endif //WX_PRECOMP
38
5f0b2f22 39#include "wx/mac/uma.h"
422644a3 40#include "wx/mac/aga.h"
7c091673 41#include "wx/app.h"
5f0b2f22 42#include "wx/tooltip.h"
a07c1212 43#include "wx/dnd.h"
1f90939c
SC
44#if wxUSE_SYSTEM_OPTIONS
45 #include "wx/sysopt.h"
46#endif
5f0b2f22 47
3c393c0a 48#ifndef __DARWIN__
7f0c3a63 49#include <ToolUtils.h>
3c393c0a 50#endif
dd49c691 51
eab19a7c
RN
52//For targeting OSX
53#include "wx/mac/private.h"
54
f02a4ffa
VZ
55// ----------------------------------------------------------------------------
56// constants
57// ----------------------------------------------------------------------------
58
59// trace mask for activation tracing messages
60static const wxChar *TRACE_ACTIVATE = _T("activation");
61
a15eb0a5
SC
62// ----------------------------------------------------------------------------
63// globals
64// ----------------------------------------------------------------------------
65
66// list of all frames and modeless dialogs
32b5be3d
RR
67wxWindowList wxModelessWindows;
68
6a7e6411
RD
69static pascal long wxShapedMacWindowDef(short varCode, WindowRef window, SInt16 message, SInt32 param);
70
a15eb0a5
SC
71// ============================================================================
72// wxTopLevelWindowMac implementation
73// ============================================================================
74
facd6764
SC
75BEGIN_EVENT_TABLE(wxTopLevelWindowMac, wxTopLevelWindowBase)
76END_EVENT_TABLE()
77
78
851b3a88
SC
79// ---------------------------------------------------------------------------
80// Carbon Events
81// ---------------------------------------------------------------------------
82
851b3a88
SC
83extern long wxMacTranslateKey(unsigned char key, unsigned char code) ;
84
1542ea39 85static const EventTypeSpec eventList[] =
851b3a88 86{
facd6764 87 // TODO remove control related event like key and mouse (except for WindowLeave events)
949cb163 88#if 1
851b3a88 89 { kEventClassTextInput, kEventTextInputUnicodeForKeyEvent } ,
c5c9378c 90
e40298d5 91 { kEventClassKeyboard, kEventRawKeyDown } ,
c5c9378c
SC
92 { kEventClassKeyboard, kEventRawKeyRepeat } ,
93 { kEventClassKeyboard, kEventRawKeyUp } ,
94 { kEventClassKeyboard, kEventRawKeyModifiersChanged } ,
facd6764 95#endif
c5c9378c 96
16a76184 97 { kEventClassWindow , kEventWindowShown } ,
851b3a88
SC
98 { kEventClassWindow , kEventWindowActivated } ,
99 { kEventClassWindow , kEventWindowDeactivated } ,
100 { kEventClassWindow , kEventWindowBoundsChanging } ,
101 { kEventClassWindow , kEventWindowBoundsChanged } ,
102 { kEventClassWindow , kEventWindowClose } ,
103
facd6764
SC
104 // we have to catch these events on the toplevel window level, as controls don't get the
105 // raw mouse events anymore
902725ee 106
851b3a88
SC
107 { kEventClassMouse , kEventMouseDown } ,
108 { kEventClassMouse , kEventMouseUp } ,
de127c69 109 { kEventClassMouse , kEventMouseWheelMoved } ,
851b3a88
SC
110 { kEventClassMouse , kEventMouseMoved } ,
111 { kEventClassMouse , kEventMouseDragged } ,
851b3a88
SC
112} ;
113
114static pascal OSStatus TextInputEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
115{
116 OSStatus result = eventNotHandledErr ;
851b3a88 117
c5c9378c 118 wxWindow* focus = wxWindow::FindFocus() ;
19fc48c6 119 unsigned char charCode ;
1542ea39 120 UInt32 keyCode ;
c5c9378c 121 UInt32 modifiers ;
e40298d5 122 Point point ;
c5c9378c
SC
123
124 EventRef rawEvent ;
1542ea39 125
c5c9378c 126 GetEventParameter( event , kEventParamTextInputSendKeyboardEvent ,typeEventRef,NULL,sizeof(rawEvent),NULL,&rawEvent ) ;
1542ea39 127
e40298d5
JS
128 GetEventParameter( rawEvent, kEventParamKeyMacCharCodes, typeChar, NULL,sizeof(char), NULL,&charCode );
129 GetEventParameter( rawEvent, kEventParamKeyCode, typeUInt32, NULL, sizeof(UInt32), NULL, &keyCode );
130 GetEventParameter( rawEvent, kEventParamKeyModifiers, typeUInt32, NULL, sizeof(UInt32), NULL, &modifiers);
131 GetEventParameter( rawEvent, kEventParamMouseLocation, typeQDPoint, NULL,
132 sizeof( Point ), NULL, &point );
133
e40298d5
JS
134 switch ( GetEventKind( event ) )
135 {
136 case kEventTextInputUnicodeForKeyEvent :
ace07c80 137 // this is only called when no default handler has jumped in, eg a wxControl on a floater window does not
5d2e69e8 138 // get its own kEventTextInputUnicodeForKeyEvent, so we route back the
ace07c80
SC
139 wxControl* control = wxDynamicCast( focus , wxControl ) ;
140 if ( control )
141 {
facd6764 142 ControlRef macControl = (ControlRef) control->GetHandle() ;
ace07c80
SC
143 if ( macControl )
144 {
145 ::HandleControlKey( macControl , keyCode , charCode , modifiers ) ;
146 result = noErr ;
147 }
148 }
149 /*
150 // this may lead to double events sent to a window in case all handlers have skipped the key down event
77a4354e
VZ
151 UInt32 when = EventTimeToTicks( GetEventTime( event ) ) ;
152 UInt32 message = (keyCode << 8) + charCode;
153
1542ea39 154 if ( (focus != NULL) && wxTheApp->MacSendKeyDownEvent(
e40298d5
JS
155 focus , message , modifiers , when , point.h , point.v ) )
156 {
157 result = noErr ;
158 }
ace07c80 159 */
e40298d5
JS
160 break ;
161 }
c5c9378c
SC
162
163 return result ;
164}
165
166static pascal OSStatus KeyboardEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
167{
168 OSStatus result = eventNotHandledErr ;
b3bd613a
RR
169 // call DoFindFocus instead of FindFocus, because for Composite Windows(like WxGenericListCtrl)
170 // FindFocus does not return the actual focus window,but the enclosing window
171 wxWindow* focus = wxWindow::DoFindFocus();
92a7272f
SC
172 if ( focus == NULL )
173 return result ;
902725ee 174
19fc48c6 175 unsigned char charCode ;
902725ee 176 wxChar uniChar = 0 ;
1542ea39 177 UInt32 keyCode ;
c5c9378c 178 UInt32 modifiers ;
e40298d5
JS
179 Point point ;
180 UInt32 when = EventTimeToTicks( GetEventTime( event ) ) ;
181
2d17efa9
SC
182#if wxUSE_UNICODE
183 UInt32 dataSize = 0 ;
184 if ( GetEventParameter( event, kEventParamKeyUnicodes, typeUnicodeText, NULL, 0 , &dataSize , NULL ) == noErr )
185 {
186 UniChar buf[2] ;
902725ee 187
2d17efa9 188 UniChar* charBuf = buf ;
902725ee 189
2d17efa9
SC
190 if ( dataSize > 4 )
191 charBuf = new UniChar[ dataSize / sizeof( UniChar) ] ;
192 GetEventParameter( event, kEventParamKeyUnicodes, typeUnicodeText, NULL, dataSize , NULL , charBuf ) ;
193#if SIZEOF_WCHAR_T == 2
194 uniChar = charBuf[0] ;
195#else
d9d488cf 196 wxMBConvUTF16 converter ;
2d17efa9 197 converter.MB2WC( &uniChar , (const char*)charBuf , 1 ) ;
902725ee 198#endif
2d17efa9
SC
199 if ( dataSize > 4 )
200 delete[] charBuf ;
201 }
202#endif
203
e40298d5
JS
204 GetEventParameter( event, kEventParamKeyMacCharCodes, typeChar, NULL,sizeof(char), NULL,&charCode );
205 GetEventParameter( event, kEventParamKeyCode, typeUInt32, NULL, sizeof(UInt32), NULL, &keyCode );
206 GetEventParameter(event, kEventParamKeyModifiers, typeUInt32, NULL, sizeof(UInt32), NULL, &modifiers);
207 GetEventParameter( event, kEventParamMouseLocation, typeQDPoint, NULL,
208 sizeof( Point ), NULL, &point );
902725ee 209
e40298d5
JS
210 UInt32 message = (keyCode << 8) + charCode;
211 switch( GetEventKind( event ) )
212 {
213 case kEventRawKeyRepeat :
214 case kEventRawKeyDown :
e40298d5 215 {
404f1d80
SC
216 WXEVENTREF formerEvent = wxTheApp->MacGetCurrentEvent() ;
217 WXEVENTHANDLERCALLREF formerHandler = wxTheApp->MacGetCurrentEventHandlerCallRef() ;
218 wxTheApp->MacSetCurrentEvent( event , handler ) ;
902725ee 219 if ( /* focus && */ wxTheApp->MacSendKeyDownEvent(
2d17efa9 220 focus , message , modifiers , when , point.h , point.v , uniChar ) )
404f1d80
SC
221 {
222 result = noErr ;
223 }
224 wxTheApp->MacSetCurrentEvent( formerEvent , formerHandler ) ;
e40298d5
JS
225 }
226 break ;
227 case kEventRawKeyUp :
902725ee 228 if ( /* focus && */ wxTheApp->MacSendKeyUpEvent(
2d17efa9 229 focus , message , modifiers , when , point.h , point.v , uniChar ) )
e40298d5
JS
230 {
231 result = noErr ;
232 }
233 break ;
234 case kEventRawKeyModifiersChanged :
235 {
236 wxKeyEvent event(wxEVT_KEY_DOWN);
237
238 event.m_shiftDown = modifiers & shiftKey;
239 event.m_controlDown = modifiers & controlKey;
240 event.m_altDown = modifiers & optionKey;
241 event.m_metaDown = modifiers & cmdKey;
2d17efa9
SC
242#if wxUSE_UNICODE
243 event.m_uniChar = uniChar ;
244#endif
e40298d5
JS
245 event.m_x = point.h;
246 event.m_y = point.v;
687706f5 247 event.SetTimestamp(when);
e40298d5
JS
248 event.SetEventObject(focus);
249
902725ee 250 if ( /* focus && */ (modifiers ^ wxApp::s_lastModifiers ) & controlKey )
e40298d5
JS
251 {
252 event.m_keyCode = WXK_CONTROL ;
253 event.SetEventType( ( modifiers & controlKey ) ? wxEVT_KEY_DOWN : wxEVT_KEY_UP ) ;
254 focus->GetEventHandler()->ProcessEvent( event ) ;
255 }
902725ee 256 if ( /* focus && */ (modifiers ^ wxApp::s_lastModifiers ) & shiftKey )
e40298d5
JS
257 {
258 event.m_keyCode = WXK_SHIFT ;
259 event.SetEventType( ( modifiers & shiftKey ) ? wxEVT_KEY_DOWN : wxEVT_KEY_UP ) ;
260 focus->GetEventHandler()->ProcessEvent( event ) ;
261 }
902725ee 262 if ( /* focus && */ (modifiers ^ wxApp::s_lastModifiers ) & optionKey )
e40298d5
JS
263 {
264 event.m_keyCode = WXK_ALT ;
265 event.SetEventType( ( modifiers & optionKey ) ? wxEVT_KEY_DOWN : wxEVT_KEY_UP ) ;
266 focus->GetEventHandler()->ProcessEvent( event ) ;
267 }
902725ee 268 if ( /* focus && */ (modifiers ^ wxApp::s_lastModifiers ) & cmdKey )
b7aec135
SC
269 {
270 event.m_keyCode = WXK_COMMAND ;
271 event.SetEventType( ( modifiers & cmdKey ) ? wxEVT_KEY_DOWN : wxEVT_KEY_UP ) ;
272 focus->GetEventHandler()->ProcessEvent( event ) ;
273 }
2a1f999f 274 wxApp::s_lastModifiers = modifiers ;
e40298d5 275 }
902725ee 276 break ;
e40298d5 277 }
851b3a88
SC
278
279 return result ;
280}
281
facd6764
SC
282// we don't interfere with foreign controls on our toplevel windows, therefore we always give back eventNotHandledErr
283// for windows that we didn't create (like eg Scrollbars in a databrowser) , or for controls where we did not handle the
284// mouse down at all
851b3a88 285
facd6764 286// This handler can also be called from app level where data (ie target window) may be null or a non wx window
1542ea39 287
facd6764 288wxWindow* g_MacLastWindow = NULL ;
a3195b73 289
86a9144f
SC
290static EventMouseButton lastButton = 0 ;
291
facd6764
SC
292static void SetupMouseEvent( wxMouseEvent &wxevent , wxMacCarbonEvent &cEvent )
293{
294 UInt32 modifiers = cEvent.GetParameter<UInt32>(kEventParamKeyModifiers, typeUInt32) ;
295 Point screenMouseLocation = cEvent.GetParameter<Point>(kEventParamMouseLocation) ;
67245665 296
902725ee 297 // this parameter are not given for all events
facd6764 298 EventMouseButton button = 0 ;
902725ee 299 UInt32 clickCount = 0 ;
facd6764
SC
300 cEvent.GetParameter<EventMouseButton>(kEventParamMouseButton, typeMouseButton , &button) ;
301 cEvent.GetParameter<UInt32>(kEventParamClickCount, typeUInt32 , &clickCount ) ;
302
303 wxevent.m_x = screenMouseLocation.h;
304 wxevent.m_y = screenMouseLocation.v;
305 wxevent.m_shiftDown = modifiers & shiftKey;
306 wxevent.m_controlDown = modifiers & controlKey;
307 wxevent.m_altDown = modifiers & optionKey;
308 wxevent.m_metaDown = modifiers & cmdKey;
309 wxevent.SetTimestamp( cEvent.GetTicks() ) ;
902725ee 310 // a control click is interpreted as a right click
facd6764 311 if ( button == kEventMouseButtonPrimary && (modifiers & controlKey) )
851b3a88 312 {
facd6764
SC
313 button = kEventMouseButtonSecondary ;
314 }
902725ee 315
b343fb9f
SC
316 // otherwise we report double clicks by connecting a left click with a ctrl-left click
317 if ( clickCount > 1 && button != lastButton )
318 clickCount = 1 ;
902725ee 319
86a9144f
SC
320 // we must make sure that our synthetic 'right' button corresponds in
321 // mouse down, moved and mouse up, and does not deliver a right down and left up
902725ee 322
86a9144f
SC
323 if ( cEvent.GetKind() == kEventMouseDown )
324 lastButton = button ;
902725ee 325
4e4e6dce 326 if ( button == 0 )
902725ee 327 lastButton = 0 ;
86a9144f
SC
328 else if ( lastButton )
329 button = lastButton ;
facd6764
SC
330
331 // determinate the correct down state, wx does not want a 'down' for a mouseUp event, while mac delivers
332 // this button
333 if ( button != 0 && cEvent.GetKind() != kEventMouseUp )
334 {
335 switch( button )
e40298d5 336 {
facd6764
SC
337 case kEventMouseButtonPrimary :
338 wxevent.m_leftDown = true ;
e40298d5 339 break ;
facd6764
SC
340 case kEventMouseButtonSecondary :
341 wxevent.m_rightDown = true ;
e40298d5 342 break ;
facd6764
SC
343 case kEventMouseButtonTertiary :
344 wxevent.m_middleDown = true ;
e40298d5 345 break ;
facd6764
SC
346 }
347 }
90ff87d7
SC
348 // translate into wx types
349 switch ( cEvent.GetKind() )
facd6764 350 {
90ff87d7
SC
351 case kEventMouseDown :
352 switch( button )
353 {
354 case kEventMouseButtonPrimary :
355 wxevent.SetEventType(clickCount > 1 ? wxEVT_LEFT_DCLICK : wxEVT_LEFT_DOWN ) ;
356 break ;
357 case kEventMouseButtonSecondary :
358 wxevent.SetEventType( clickCount > 1 ? wxEVT_RIGHT_DCLICK : wxEVT_RIGHT_DOWN ) ;
359 break ;
360 case kEventMouseButtonTertiary :
361 wxevent.SetEventType(clickCount > 1 ? wxEVT_MIDDLE_DCLICK : wxEVT_MIDDLE_DOWN ) ;
362 break ;
363 }
364 break ;
365 case kEventMouseUp :
366 switch( button )
367 {
368 case kEventMouseButtonPrimary :
369 wxevent.SetEventType( wxEVT_LEFT_UP ) ;
370 break ;
371 case kEventMouseButtonSecondary :
372 wxevent.SetEventType( wxEVT_RIGHT_UP ) ;
373 break ;
374 case kEventMouseButtonTertiary :
375 wxevent.SetEventType( wxEVT_MIDDLE_UP ) ;
376 break ;
377 }
378 break ;
2cce9b11
JS
379 case kEventMouseWheelMoved :
380 {
facd6764
SC
381 wxevent.SetEventType(wxEVT_MOUSEWHEEL ) ;
382
383 // EventMouseWheelAxis axis = cEvent.GetParameter<EventMouseWheelAxis>(kEventParamMouseWheelAxis, typeMouseWheelAxis) ;
384 SInt32 delta = cEvent.GetParameter<SInt32>(kEventParamMouseWheelDelta, typeLongInteger) ;
385
386 wxevent.m_wheelRotation = delta;
387 wxevent.m_wheelDelta = 1;
388 wxevent.m_linesPerAction = 1;
90ff87d7 389 break ;
2cce9b11 390 }
90ff87d7 391 default :
facd6764 392 wxevent.SetEventType(wxEVT_MOTION ) ;
90ff87d7 393 break ;
902725ee 394 }
facd6764
SC
395}
396
fbfb8bcc 397ControlRef wxMacFindSubControl( wxTopLevelWindowMac* toplevelWindow, const Point& location , ControlRef superControl , ControlPartCode *outPart )
facd6764
SC
398{
399 if ( superControl )
400 {
401 UInt16 childrenCount = 0 ;
902725ee 402 OSStatus err = CountSubControls( superControl , &childrenCount ) ;
facd6764
SC
403 if ( err == errControlIsNotEmbedder )
404 return NULL ;
405 wxASSERT_MSG( err == noErr , wxT("Unexpected error when accessing subcontrols") ) ;
902725ee 406
facd6764
SC
407 for ( UInt16 i = childrenCount ; i >=1 ; --i )
408 {
409 ControlHandle sibling ;
410 err = GetIndexedSubControl( superControl , i , & sibling ) ;
411 if ( err == errControlIsNotEmbedder )
412 return NULL ;
902725ee 413
facd6764
SC
414 wxASSERT_MSG( err == noErr , wxT("Unexpected error when accessing subcontrols") ) ;
415 if ( IsControlVisible( sibling ) )
416 {
417 Rect r ;
d6fd667b 418 UMAGetControlBoundsInWindowCoords( sibling , &r ) ;
facd6764 419 if ( MacPtInRect( location , &r ) )
de127c69 420 {
789ae0cf 421 ControlHandle child = wxMacFindSubControl( toplevelWindow , location , sibling , outPart ) ;
facd6764
SC
422 if ( child )
423 return child ;
424 else
de127c69 425 {
d6fd667b 426 Point testLocation = location ;
789ae0cf
SC
427
428 if ( toplevelWindow && toplevelWindow->MacUsesCompositing() )
429 {
430 testLocation.h -= r.left ;
431 testLocation.v -= r.top ;
432 }
902725ee 433
d6fd667b 434 *outPart = TestControl( sibling , testLocation ) ;
facd6764 435 return sibling ;
de127c69
GD
436 }
437 }
facd6764 438 }
e40298d5
JS
439 }
440 }
facd6764
SC
441 return NULL ;
442}
1542ea39 443
fbfb8bcc 444ControlRef wxMacFindControlUnderMouse( wxTopLevelWindowMac* toplevelWindow , const Point& location , WindowRef window , ControlPartCode *outPart )
facd6764
SC
445{
446#if TARGET_API_MAC_OSX
789ae0cf 447 if ( UMAGetSystemVersion() >= 0x1030 && ( toplevelWindow == 0 || toplevelWindow->MacUsesCompositing() ) )
30e0b1c9
SC
448 return FindControlUnderMouse( location , window , outPart ) ;
449#endif
facd6764
SC
450 ControlRef rootControl = NULL ;
451 verify_noerr( GetRootControl( window , &rootControl ) ) ;
789ae0cf 452 return wxMacFindSubControl( toplevelWindow , location , rootControl , outPart ) ;
30e0b1c9 453
facd6764 454}
3c393c0a
SC
455
456#define NEW_CAPTURE_HANDLING 1
457
facd6764
SC
458pascal OSStatus wxMacTopLevelMouseEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
459{
789ae0cf 460 wxTopLevelWindowMac* toplevelWindow = (wxTopLevelWindowMac*) data ;
902725ee 461
facd6764
SC
462 OSStatus result = eventNotHandledErr ;
463
464 wxMacCarbonEvent cEvent( event ) ;
902725ee 465
facd6764
SC
466 Point screenMouseLocation = cEvent.GetParameter<Point>(kEventParamMouseLocation) ;
467 Point windowMouseLocation = screenMouseLocation ;
468
469 WindowRef window ;
470 short windowPart = ::FindWindow(screenMouseLocation, &window);
471
472 wxWindow* currentMouseWindow = NULL ;
d88ffaaa 473 ControlRef control = NULL ;
902725ee 474
3c393c0a
SC
475#if NEW_CAPTURE_HANDLING
476 if ( wxApp::s_captureWindow )
477 {
478 window = (WindowRef) wxApp::s_captureWindow->MacGetTopLevelWindowRef() ;
8fc754bf 479 windowPart = inContent ;
3c393c0a
SC
480 }
481#endif
fb5246be 482
facd6764
SC
483 if ( window )
484 {
d6fd667b 485 QDGlobalToLocalPoint( UMAGetWindowPort(window ) , &windowMouseLocation ) ;
facd6764 486
3c393c0a
SC
487 if ( wxApp::s_captureWindow
488#if !NEW_CAPTURE_HANDLING
489 && wxApp::s_captureWindow->MacGetTopLevelWindowRef() == (WXWindow) window && windowPart == inContent
490#endif
491 )
facd6764 492 {
2a1f999f 493 currentMouseWindow = wxApp::s_captureWindow ;
facd6764
SC
494 }
495 else if ( (IsWindowActive(window) && windowPart == inContent) )
496 {
497 ControlPartCode part ;
789ae0cf 498 control = wxMacFindControlUnderMouse( toplevelWindow , windowMouseLocation , window , &part ) ;
d88ffaaa 499 // if there is no control below the mouse position, send the event to the toplevel window itself
b19bf058
SC
500 if ( control == 0 )
501 currentMouseWindow = (wxWindow*) data ;
502 else
b16f4bfa 503 {
b19bf058 504 currentMouseWindow = wxFindControlFromMacControl( control ) ;
8198ae50 505 if ( currentMouseWindow == NULL && cEvent.GetKind() == kEventMouseMoved )
b16f4bfa 506 {
179e085f 507#if wxUSE_TOOLBAR
902725ee
WS
508 // for wxToolBar to function we have to send certaint events to it
509 // instead of its children (wxToolBarTools)
b16f4bfa
SC
510 ControlRef parent ;
511 GetSuperControl(control, &parent );
512 wxWindow *wxParent = wxFindControlFromMacControl( parent ) ;
513 if ( wxParent && wxParent->IsKindOf( CLASSINFO( wxToolBar ) ) )
514 currentMouseWindow = wxParent ;
179e085f 515#endif
b16f4bfa
SC
516 }
517 }
902725ee 518 }
facd6764 519 }
902725ee 520
facd6764
SC
521 wxMouseEvent wxevent(wxEVT_LEFT_DOWN);
522 SetupMouseEvent( wxevent , cEvent ) ;
523
524 // handle all enter / leave events
902725ee 525
facd6764
SC
526 if ( currentMouseWindow != g_MacLastWindow )
527 {
528 if ( g_MacLastWindow )
529 {
530 wxMouseEvent eventleave(wxevent);
531 eventleave.SetEventType( wxEVT_LEAVE_WINDOW );
532 g_MacLastWindow->ScreenToClient( &eventleave.m_x, &eventleave.m_y );
533 eventleave.SetEventObject( g_MacLastWindow ) ;
d4bd6c97 534 wxevent.SetId( g_MacLastWindow->GetId() ) ;
facd6764
SC
535#if wxUSE_TOOLTIPS
536 wxToolTip::RelayEvent( g_MacLastWindow , eventleave);
537#endif // wxUSE_TOOLTIPS
538 g_MacLastWindow->GetEventHandler()->ProcessEvent(eventleave);
539 }
540 if ( currentMouseWindow )
541 {
542 wxMouseEvent evententer(wxevent);
543 evententer.SetEventType( wxEVT_ENTER_WINDOW );
544 currentMouseWindow->ScreenToClient( &evententer.m_x, &evententer.m_y );
545 evententer.SetEventObject( currentMouseWindow ) ;
d4bd6c97 546 wxevent.SetId( currentMouseWindow->GetId() ) ;
facd6764
SC
547#if wxUSE_TOOLTIPS
548 wxToolTip::RelayEvent( currentMouseWindow , evententer);
549#endif // wxUSE_TOOLTIPS
550 currentMouseWindow->GetEventHandler()->ProcessEvent(evententer);
551 }
552 g_MacLastWindow = currentMouseWindow ;
553 }
902725ee 554
facd6764
SC
555 if ( windowPart == inMenuBar )
556 {
557 // special case menu bar, as we are having a low-level runloop we must do it ourselves
558 if ( cEvent.GetKind() == kEventMouseDown )
559 {
560 ::MenuSelect( screenMouseLocation ) ;
561 result = noErr ;
562 }
563 } // if ( windowPart == inMenuBar )
564 else if ( currentMouseWindow )
565 {
e10e9469 566 wxWindow *currentMouseWindowParent = currentMouseWindow->GetParent();
62ade180
RR
567
568 currentMouseWindow->ScreenToClient( &wxevent.m_x , &wxevent.m_y ) ;
902725ee 569
facd6764 570 wxevent.SetEventObject( currentMouseWindow ) ;
d4bd6c97 571 wxevent.SetId( currentMouseWindow->GetId() ) ;
facd6764 572
facd6764 573 // make tooltips current
902725ee 574
facd6764
SC
575 #if wxUSE_TOOLTIPS
576 if ( wxevent.GetEventType() == wxEVT_MOTION
577 || wxevent.GetEventType() == wxEVT_ENTER_WINDOW
578 || wxevent.GetEventType() == wxEVT_LEAVE_WINDOW )
579 wxToolTip::RelayEvent( currentMouseWindow , wxevent);
902725ee 580 #endif // wxUSE_TOOLTIPS
facd6764 581 if ( currentMouseWindow->GetEventHandler()->ProcessEvent(wxevent) )
62ade180 582 {
902725ee 583 if ((currentMouseWindowParent != NULL) &&
62ade180
RR
584 (currentMouseWindowParent->GetChildren().Find(currentMouseWindow) == NULL))
585 currentMouseWindow = NULL;
902725ee 586
facd6764 587 result = noErr;
62ade180 588 }
30e0b1c9
SC
589 else
590 {
f90387b4
VZ
591 // if the user code did _not_ handle the event, then perform the
592 // default processing
593 if ( wxevent.GetEventType() == wxEVT_LEFT_DOWN )
594 {
595 // ... that is set focus to this window
596 if (currentMouseWindow->AcceptsFocus() && wxWindow::FindFocus()!=currentMouseWindow)
597 currentMouseWindow->SetFocus();
598 }
599
30e0b1c9
SC
600 ControlPartCode dummyPart ;
601 // if built-in find control is finding the wrong control (ie static box instead of overlaid
602 // button, we cannot let the standard handler do its job, but must handle manually
603
902725ee 604 if ( ( cEvent.GetKind() == kEventMouseDown )
23ad132c 605#ifdef __WXMAC_OSX__
902725ee
WS
606 &&
607 (FindControlUnderMouse(windowMouseLocation , window , &dummyPart) !=
608 wxMacFindControlUnderMouse( toplevelWindow , windowMouseLocation , window , &dummyPart ) )
23ad132c
SC
609#endif
610 )
30e0b1c9 611 {
902725ee 612 if ( currentMouseWindow->MacIsReallyEnabled() )
7ce1a4e1
SC
613 {
614 EventModifiers modifiers = cEvent.GetParameter<EventModifiers>(kEventParamKeyModifiers, typeUInt32) ;
615 Point clickLocation = windowMouseLocation ;
789ae0cf
SC
616
617 if ( toplevelWindow->MacUsesCompositing() )
618 currentMouseWindow->MacRootWindowToWindow( &clickLocation.h , &clickLocation.v ) ;
619
7ce1a4e1
SC
620 HandleControlClick( (ControlRef) currentMouseWindow->GetHandle() , clickLocation ,
621 modifiers , (ControlActionUPP ) -1 ) ;
902725ee
WS
622
623 if ((currentMouseWindowParent != NULL) &&
62ade180 624 (currentMouseWindowParent->GetChildren().Find(currentMouseWindow) == NULL))
e10e9469 625 currentMouseWindow = NULL;
7ce1a4e1 626 }
30e0b1c9
SC
627 result = noErr ;
628 }
629 }
2a1f999f 630 if ( cEvent.GetKind() == kEventMouseUp && wxApp::s_captureWindow )
facd6764 631 {
2a1f999f 632 wxApp::s_captureWindow = NULL ;
facd6764
SC
633 // update cursor ?
634 }
6d63e2fc
SC
635
636 // update cursor
902725ee 637
6d63e2fc
SC
638 wxWindow* cursorTarget = currentMouseWindow ;
639 wxPoint cursorPoint( wxevent.m_x , wxevent.m_y ) ;
640
641 while( cursorTarget && !cursorTarget->MacSetupCursor( cursorPoint ) )
642 {
643 cursorTarget = cursorTarget->GetParent() ;
644 if ( cursorTarget )
e10e9469 645 cursorPoint += cursorTarget->GetPosition();
6d63e2fc
SC
646 }
647
facd6764 648 } // else if ( currentMouseWindow )
d88ffaaa
SC
649 else
650 {
651 // don't mess with controls we don't know about
652 // for some reason returning eventNotHandledErr does not lead to the correct behaviour
653 // so we try sending them the correct control directly
e4b7e0b4 654 if ( cEvent.GetKind() == kEventMouseDown && toplevelWindow && control )
d88ffaaa
SC
655 {
656 EventModifiers modifiers = cEvent.GetParameter<EventModifiers>(kEventParamKeyModifiers, typeUInt32) ;
657 Point clickLocation = windowMouseLocation ;
789ae0cf
SC
658 if ( toplevelWindow->MacUsesCompositing() )
659 {
660#ifdef __WXMAC_OSX__
661 HIPoint hiPoint ;
662 hiPoint.x = clickLocation.h ;
663 hiPoint.y = clickLocation.v ;
664 HIViewConvertPoint( &hiPoint , (ControlRef) toplevelWindow->GetHandle() , control ) ;
665 clickLocation.h = (int)hiPoint.x ;
666 clickLocation.v = (int)hiPoint.y ;
d88ffaaa 667#endif
789ae0cf 668 }
d88ffaaa
SC
669 HandleControlClick( control , clickLocation ,
670 modifiers , (ControlActionUPP ) -1 ) ;
671 result = noErr ;
672 }
673 }
facd6764 674 return result ;
851b3a88 675}
facd6764
SC
676
677static pascal OSStatus wxMacTopLevelWindowEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
851b3a88
SC
678{
679 OSStatus result = eventNotHandledErr ;
851b3a88 680
facd6764 681 wxMacCarbonEvent cEvent( event ) ;
902725ee 682
facd6764 683 // WindowRef windowRef = cEvent.GetParameter<WindowRef>(kEventParamDirectObject) ;
e40298d5 684 wxTopLevelWindowMac* toplevelWindow = (wxTopLevelWindowMac*) data ;
1542ea39 685
e40298d5
JS
686 switch( GetEventKind( event ) )
687 {
e40298d5 688 case kEventWindowActivated :
facd6764
SC
689 {
690 toplevelWindow->MacActivate( cEvent.GetTicks() , true) ;
facd6764
SC
691 wxActivateEvent wxevent(wxEVT_ACTIVATE, true , toplevelWindow->GetId());
692 wxevent.SetTimestamp( cEvent.GetTicks() ) ;
693 wxevent.SetEventObject(toplevelWindow);
694 toplevelWindow->GetEventHandler()->ProcessEvent(wxevent);
73fe67bd 695 // we still sending an eventNotHandledErr in order to allow for default processing
e40298d5 696 break ;
facd6764 697 }
e40298d5 698 case kEventWindowDeactivated :
facd6764
SC
699 {
700 toplevelWindow->MacActivate(cEvent.GetTicks() , false) ;
701 wxActivateEvent wxevent(wxEVT_ACTIVATE, false , toplevelWindow->GetId());
702 wxevent.SetTimestamp( cEvent.GetTicks() ) ;
703 wxevent.SetEventObject(toplevelWindow);
704 toplevelWindow->GetEventHandler()->ProcessEvent(wxevent);
73fe67bd 705 // we still sending an eventNotHandledErr in order to allow for default processing
e40298d5 706 break ;
facd6764 707 }
902725ee
WS
708 case kEventWindowShown :
709 {
710 toplevelWindow->Refresh() ;
711 result = noErr ;
712 break ;
713 }
e40298d5
JS
714 case kEventWindowClose :
715 toplevelWindow->Close() ;
716 result = noErr ;
717 break ;
718 case kEventWindowBoundsChanged :
facd6764
SC
719 {
720 UInt32 attributes = cEvent.GetParameter<UInt32>(kEventParamAttributes,typeUInt32) ;
721 Rect newRect = cEvent.GetParameter<Rect>(kEventParamCurrentBounds) ;
722 wxRect r( newRect.left , newRect.top , newRect.right - newRect.left , newRect.bottom - newRect.top ) ;
723 if ( attributes & kWindowBoundsChangeSizeChanged )
e40298d5 724 {
facd6764
SC
725 // according to the other ports we handle this within the OS level
726 // resize event, not within a wxSizeEvent
727 wxFrame *frame = wxDynamicCast( toplevelWindow , wxFrame ) ;
728 if ( frame )
729 {
730 #if wxUSE_STATUSBAR
731 frame->PositionStatusBar();
902725ee 732 #endif
facd6764
SC
733 #if wxUSE_TOOLBAR
734 frame->PositionToolBar();
902725ee 735 #endif
facd6764 736 }
1542ea39 737
facd6764
SC
738 wxSizeEvent event( r.GetSize() , toplevelWindow->GetId() ) ;
739 event.SetEventObject( toplevelWindow ) ;
851b3a88 740
facd6764 741 toplevelWindow->GetEventHandler()->ProcessEvent(event) ;
5e533062 742 toplevelWindow->wxWindowMac::MacSuperChangedPosition() ; // like this only children will be notified
e40298d5 743 }
facd6764
SC
744 if ( attributes & kWindowBoundsChangeOriginChanged )
745 {
746 wxMoveEvent event( r.GetLeftTop() , toplevelWindow->GetId() ) ;
747 event.SetEventObject( toplevelWindow ) ;
748 toplevelWindow->GetEventHandler()->ProcessEvent(event) ;
749 }
750 result = noErr ;
e40298d5 751 break ;
facd6764 752 }
f81bfef9 753 case kEventWindowBoundsChanging :
facd6764
SC
754 {
755 UInt32 attributes = cEvent.GetParameter<UInt32>(kEventParamAttributes,typeUInt32) ;
756 Rect newRect = cEvent.GetParameter<Rect>(kEventParamCurrentBounds) ;
83901ec2 757
facd6764
SC
758 if ( (attributes & kWindowBoundsChangeSizeChanged) || (attributes & kWindowBoundsChangeOriginChanged) )
759 {
29281095
SC
760 // all (Mac) rects are in content area coordinates, all wxRects in structure coordinates
761 int left , top , right , bottom ;
762 toplevelWindow->MacGetContentAreaInset( left , top , right , bottom ) ;
902725ee 763 wxRect r( newRect.left - left , newRect.top - top ,
29281095 764 newRect.right - newRect.left + left + right , newRect.bottom - newRect.top + top + bottom ) ;
facd6764
SC
765 // this is a EVT_SIZING not a EVT_SIZE type !
766 wxSizeEvent wxevent( r , toplevelWindow->GetId() ) ;
767 wxevent.SetEventObject( toplevelWindow ) ;
768 wxRect adjustR = r ;
769 if ( toplevelWindow->GetEventHandler()->ProcessEvent(wxevent) )
facd6764 770 adjustR = wxevent.GetRect() ;
29281095 771
facd6764
SC
772 if ( toplevelWindow->GetMaxWidth() != -1 && adjustR.GetWidth() > toplevelWindow->GetMaxWidth() )
773 adjustR.SetWidth( toplevelWindow->GetMaxWidth() ) ;
2c25bd55 774 if ( toplevelWindow->GetMaxHeight() != -1 && adjustR.GetHeight() > toplevelWindow->GetMaxHeight() )
facd6764
SC
775 adjustR.SetHeight( toplevelWindow->GetMaxHeight() ) ;
776 if ( toplevelWindow->GetMinWidth() != -1 && adjustR.GetWidth() < toplevelWindow->GetMinWidth() )
777 adjustR.SetWidth( toplevelWindow->GetMinWidth() ) ;
2c25bd55 778 if ( toplevelWindow->GetMinHeight() != -1 && adjustR.GetHeight() < toplevelWindow->GetMinHeight() )
facd6764 779 adjustR.SetHeight( toplevelWindow->GetMinHeight() ) ;
4a5f2351 780 const Rect adjustedRect = { adjustR.y + top , adjustR.x + left , adjustR.y + adjustR.height - bottom , adjustR.x + adjustR.width - right } ;
facd6764 781 if ( !EqualRect( &newRect , &adjustedRect ) )
1f919f38 782 cEvent.SetParameter<Rect>( kEventParamCurrentBounds , &adjustedRect ) ;
4817190d 783 toplevelWindow->wxWindowMac::MacSuperChangedPosition() ; // like this only children will be notified
f81bfef9 784 }
facd6764 785
902725ee 786 result = noErr ;
f81bfef9 787 break ;
facd6764 788 }
e40298d5
JS
789 default :
790 break ;
791 }
792 return result ;
851b3a88
SC
793}
794
facd6764 795pascal OSStatus wxMacTopLevelEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
851b3a88
SC
796{
797 OSStatus result = eventNotHandledErr ;
798
799 switch ( GetEventClass( event ) )
800 {
c5c9378c 801 case kEventClassKeyboard :
e40298d5 802 result = KeyboardEventHandler( handler, event , data ) ;
c5c9378c 803 break ;
851b3a88 804 case kEventClassTextInput :
e40298d5 805 result = TextInputEventHandler( handler, event , data ) ;
851b3a88
SC
806 break ;
807 case kEventClassWindow :
facd6764 808 result = wxMacTopLevelWindowEventHandler( handler, event , data ) ;
e40298d5 809 break ;
851b3a88 810 case kEventClassMouse :
facd6764 811 result = wxMacTopLevelMouseEventHandler( handler, event , data ) ;
e40298d5 812 break ;
851b3a88
SC
813 default :
814 break ;
815 }
816 return result ;
817}
818
facd6764 819DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacTopLevelEventHandler )
851b3a88 820
5f0b2f22
SC
821// ---------------------------------------------------------------------------
822// wxWindowMac utility functions
823// ---------------------------------------------------------------------------
824
825// Find an item given the Macintosh Window Reference
826
71f2fb52
RN
827WX_DECLARE_HASH_MAP(WindowRef, wxTopLevelWindowMac*, wxPointerHash, wxPointerEqual, MacWindowMap);
828
829static MacWindowMap wxWinMacWindowList;
830
831wxTopLevelWindowMac *wxFindWinFromMacWindow(WindowRef inWindowRef)
832{
833 MacWindowMap::iterator node = wxWinMacWindowList.find(inWindowRef);
834
835 return (node == wxWinMacWindowList.end()) ? NULL : node->second;
836}
837
838void wxAssociateWinWithMacWindow(WindowRef inWindowRef, wxTopLevelWindowMac *win) ;
839void wxAssociateWinWithMacWindow(WindowRef inWindowRef, wxTopLevelWindowMac *win)
840{
841 // adding NULL WindowRef is (first) surely a result of an error and
842 // nothing else :-)
843 wxCHECK_RET( inWindowRef != (WindowRef) NULL, wxT("attempt to add a NULL WindowRef to window list") );
844
845 wxWinMacWindowList[inWindowRef] = win;
846}
847
848void wxRemoveMacWindowAssociation(wxTopLevelWindowMac *win) ;
849void wxRemoveMacWindowAssociation(wxTopLevelWindowMac *win)
850{
851 MacWindowMap::iterator it;
852 for ( it = wxWinMacWindowList.begin(); it != wxWinMacWindowList.end(); ++it )
853 {
854 if ( it->second == win )
855 {
856 wxWinMacWindowList.erase(it);
857 break;
858 }
859 }
860}
5f0b2f22 861
a15eb0a5
SC
862// ----------------------------------------------------------------------------
863// wxTopLevelWindowMac creation
864// ----------------------------------------------------------------------------
865
245f3581 866wxTopLevelWindowMac *wxTopLevelWindowMac::s_macDeactivateWindow = NULL;
5f0b2f22 867
902725ee 868typedef struct
c5985061
SC
869{
870 wxPoint m_position ;
902725ee 871 wxSize m_size ;
c5985061
SC
872} FullScreenData ;
873
a15eb0a5
SC
874void wxTopLevelWindowMac::Init()
875{
876 m_iconized =
902725ee 877 m_maximizeOnShow = false;
6a17ca35 878 m_macWindow = NULL ;
902725ee 879#if TARGET_API_MAC_OSX
789ae0cf 880 if ( UMAGetSystemVersion() >= 0x1030 )
902725ee
WS
881 {
882 m_macUsesCompositing = true;
789ae0cf
SC
883 }
884 else
facd6764 885#endif
789ae0cf 886 {
902725ee 887 m_macUsesCompositing = false;
789ae0cf 888 }
7c091673 889 m_macEventHandler = NULL ;
c5985061 890 m_macFullScreenData = NULL ;
a15eb0a5
SC
891}
892
118f012e
SC
893class wxMacDeferredWindowDeleter : public wxObject
894{
895public :
1542ea39
RD
896 wxMacDeferredWindowDeleter( WindowRef windowRef )
897 {
898 m_macWindow = windowRef ;
118f012e 899 }
1542ea39
RD
900 virtual ~wxMacDeferredWindowDeleter()
901 {
902 UMADisposeWindow( (WindowRef) m_macWindow ) ;
118f012e
SC
903 }
904 protected :
905 WindowRef m_macWindow ;
906} ;
907
a15eb0a5
SC
908bool wxTopLevelWindowMac::Create(wxWindow *parent,
909 wxWindowID id,
910 const wxString& title,
911 const wxPoint& pos,
912 const wxSize& size,
913 long style,
914 const wxString& name)
915{
916 // init our fields
917 Init();
918
919 m_windowStyle = style;
920
921 SetName(name);
922
923 m_windowId = id == -1 ? NewControlId() : id;
fb5246be 924 wxWindow::SetLabel( title ) ;
a15eb0a5 925
facd6764
SC
926 MacCreateRealWindow( title, pos , size , MacRemoveBordersFromStyle(style) , name ) ;
927
94d1d0f4 928 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE));
902725ee 929
5bd78bbc
JS
930 if (GetExtraStyle() & wxFRAME_EX_METAL)
931 MacSetMetalAppearance(true);
94d1d0f4 932
a15eb0a5
SC
933 wxTopLevelWindows.Append(this);
934
935 if ( parent )
936 parent->AddChild(this);
937
902725ee 938 return true;
a15eb0a5
SC
939}
940
941wxTopLevelWindowMac::~wxTopLevelWindowMac()
942{
6a17ca35
SC
943 if ( m_macWindow )
944 {
c81c6d54 945#if wxUSE_TOOLTIPS
6a17ca35 946 wxToolTip::NotifyWindowDelete(m_macWindow) ;
c81c6d54 947#endif
118f012e 948 wxPendingDelete.Append( new wxMacDeferredWindowDeleter( (WindowRef) m_macWindow ) ) ;
6a17ca35 949 }
1542ea39 950
7c091673
SC
951 if ( m_macEventHandler )
952 {
953 ::RemoveEventHandler((EventHandlerRef) m_macEventHandler);
954 m_macEventHandler = NULL ;
955 }
851b3a88 956
5f0b2f22
SC
957 wxRemoveMacWindowAssociation( this ) ;
958
a15eb0a5
SC
959 if ( wxModelessWindows.Find(this) )
960 wxModelessWindows.DeleteObject(this);
902725ee 961
c5985061
SC
962 FullScreenData *data = (FullScreenData *) m_macFullScreenData ;
963 delete data ;
964 m_macFullScreenData = NULL ;
a15eb0a5
SC
965}
966
967
968// ----------------------------------------------------------------------------
969// wxTopLevelWindowMac maximize/minimize
970// ----------------------------------------------------------------------------
971
972void wxTopLevelWindowMac::Maximize(bool maximize)
973{
699b6af4
SC
974 // TODO Check, is this still necessary
975#if 0
1f90939c
SC
976 wxMacPortStateHelper help( (GrafPtr) GetWindowPort( (WindowRef) m_macWindow) ) ;
977 wxMacWindowClipper clip (this);
699b6af4 978#endif
902725ee 979 if ( !IsWindowInStandardState( (WindowRef)m_macWindow, NULL, NULL) )
699b6af4
SC
980 {
981 Rect rect;
982 GetWindowBounds((WindowRef)m_macWindow, kWindowGlobalPortRgn, &rect);
983 SetWindowIdealUserState((WindowRef)m_macWindow, &rect);
984 SetWindowUserState((WindowRef)m_macWindow, &rect);
985 }
b7aec135 986 ZoomWindow( (WindowRef)m_macWindow , maximize ? inZoomOut : inZoomIn , false ) ;
a15eb0a5
SC
987}
988
989bool wxTopLevelWindowMac::IsMaximized() const
990{
b7aec135 991 return IsWindowInStandardState( (WindowRef)m_macWindow , NULL , NULL ) ;
a15eb0a5
SC
992}
993
994void wxTopLevelWindowMac::Iconize(bool iconize)
995{
b7aec135
SC
996 if ( IsWindowCollapsable((WindowRef)m_macWindow) )
997 CollapseWindow((WindowRef)m_macWindow , iconize ) ;
a15eb0a5
SC
998}
999
1000bool wxTopLevelWindowMac::IsIconized() const
1001{
b7aec135 1002 return IsWindowCollapsed((WindowRef)m_macWindow ) ;
a15eb0a5
SC
1003}
1004
1005void wxTopLevelWindowMac::Restore()
1006{
902725ee 1007 if ( IsMaximized() )
699b6af4 1008 Maximize(false);
902725ee 1009 else if ( IsIconized() )
699b6af4 1010 Iconize(false);
a15eb0a5
SC
1011}
1012
1013// ----------------------------------------------------------------------------
1014// wxTopLevelWindowMac misc
1015// ----------------------------------------------------------------------------
1016
facd6764
SC
1017wxPoint wxTopLevelWindowMac::GetClientAreaOrigin() const
1018{
1019 return wxPoint(0,0) ;
1020}
1021
a15eb0a5
SC
1022void wxTopLevelWindowMac::SetIcon(const wxIcon& icon)
1023{
1024 // this sets m_icon
1025 wxTopLevelWindowBase::SetIcon(icon);
1026}
5f0b2f22 1027
facd6764 1028void wxTopLevelWindowMac::MacSetBackgroundBrush( const wxBrush &brush )
902725ee 1029{
facd6764
SC
1030 wxTopLevelWindowBase::MacSetBackgroundBrush( brush ) ;
1031
1032 if ( m_macBackgroundBrush.Ok() && m_macBackgroundBrush.GetStyle() != wxTRANSPARENT && m_macBackgroundBrush.MacGetBrushKind() == kwxMacBrushTheme )
1033 {
1034 SetThemeWindowBackground( (WindowRef) m_macWindow , m_macBackgroundBrush.MacGetTheme() , false ) ;
1035 }
1036}
1037
902725ee 1038void wxTopLevelWindowMac::MacInstallTopLevelWindowEventHandler()
949cb163
SC
1039{
1040 if ( m_macEventHandler != NULL )
1041 {
1042 verify_noerr( ::RemoveEventHandler( (EventHandlerRef) m_macEventHandler ) ) ;
1043 }
1044 InstallWindowEventHandler(MAC_WXHWND(m_macWindow), GetwxMacTopLevelEventHandlerUPP(),
1045 GetEventTypeCount(eventList), eventList, this, (EventHandlerRef *)&m_macEventHandler);
1046}
1047
5f0b2f22
SC
1048void wxTopLevelWindowMac::MacCreateRealWindow( const wxString& title,
1049 const wxPoint& pos,
1050 const wxSize& size,
1051 long style,
1542ea39 1052 const wxString& name )
5f0b2f22 1053{
47ac4f9b 1054 OSStatus err = noErr ;
e40298d5
JS
1055 SetName(name);
1056 m_windowStyle = style;
902725ee 1057 m_isShown = false;
1542ea39 1058
e40298d5 1059 // create frame.
1542ea39 1060
5f0b2f22 1061 Rect theBoundsRect;
1542ea39 1062
facd6764
SC
1063 int x = (int)pos.x;
1064 int y = (int)pos.y;
902725ee 1065
5a486641
SC
1066 wxRect display = wxGetClientDisplayRect() ;
1067
1068 if ( x == wxDefaultPosition.x )
1069 x = display.x ;
902725ee 1070
5a486641
SC
1071 if ( y == wxDefaultPosition.y )
1072 y = display.y ;
1542ea39 1073
facd6764
SC
1074 int w = WidthDefault(size.x);
1075 int h = HeightDefault(size.y);
1542ea39 1076
facd6764 1077 ::SetRect(&theBoundsRect, x, y , x + w, y + h);
1542ea39 1078
5f0b2f22 1079 // translate the window attributes in the appropriate window class and attributes
1542ea39 1080
5f0b2f22
SC
1081 WindowClass wclass = 0;
1082 WindowAttributes attr = kWindowNoAttributes ;
e353795e 1083 WindowGroupRef group = NULL ;
1542ea39 1084
f5744893 1085 if ( HasFlag( wxFRAME_TOOL_WINDOW) )
5f0b2f22 1086 {
1542ea39 1087 if (
f5744893
SC
1088 HasFlag( wxMINIMIZE_BOX ) || HasFlag( wxMAXIMIZE_BOX ) ||
1089 HasFlag( wxSYSTEM_MENU ) || HasFlag( wxCAPTION ) ||
1090 HasFlag(wxTINY_CAPTION_HORIZ) || HasFlag(wxTINY_CAPTION_VERT)
e40298d5 1091 )
5f0b2f22 1092 {
f5744893
SC
1093 wclass = kFloatingWindowClass ;
1094 if ( HasFlag(wxTINY_CAPTION_VERT) )
1095 {
1096 attr |= kWindowSideTitlebarAttribute ;
1097 }
1098 }
1099 else
1100 {
1101 wclass = kPlainWindowClass ;
5f0b2f22
SC
1102 }
1103 }
1104 else if ( HasFlag( wxCAPTION ) )
1105 {
1542ea39 1106 wclass = kDocumentWindowClass ;
22e3c5bd 1107 attr |= kWindowInWindowMenuAttribute ;
5f0b2f22 1108 }
eab19a7c 1109#if defined( __WXMAC__ ) && TARGET_API_MAC_OSX && ( MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_2 )
3e17bc3f
RN
1110 else if ( HasFlag( wxFRAME_DRAWER ) )
1111 {
1112 wclass = kDrawerWindowClass;
789ae0cf 1113 // we must force compositing on a drawer
902725ee 1114 m_macUsesCompositing = true ;
3e17bc3f
RN
1115 }
1116#endif //10.2 and up
5f0b2f22
SC
1117 else
1118 {
f5744893 1119 if ( HasFlag( wxMINIMIZE_BOX ) || HasFlag( wxMAXIMIZE_BOX ) ||
47ac4f9b 1120 HasFlag( wxCLOSE_BOX ) || HasFlag( wxSYSTEM_MENU ) )
f5744893
SC
1121 {
1122 wclass = kDocumentWindowClass ;
1123 }
1124 else
1125 {
1126 wclass = kPlainWindowClass ;
1127 }
5f0b2f22 1128 }
1542ea39 1129
38e605eb 1130 if ( HasFlag( wxMINIMIZE_BOX ) && wclass != kPlainWindowClass )
5f0b2f22 1131 {
5f0b2f22
SC
1132 attr |= kWindowCollapseBoxAttribute ;
1133 }
38e605eb 1134 if ( HasFlag( wxMAXIMIZE_BOX ) && wclass != kPlainWindowClass )
47ac4f9b
SC
1135 {
1136 attr |= kWindowFullZoomAttribute ;
1137 }
38e605eb 1138 if ( HasFlag( wxRESIZE_BORDER ) && wclass != kPlainWindowClass )
5f0b2f22
SC
1139 {
1140 attr |= kWindowResizableAttribute ;
1141 }
38e605eb 1142 if ( HasFlag( wxCLOSE_BOX) && wclass != kPlainWindowClass )
5f0b2f22
SC
1143 {
1144 attr |= kWindowCloseBoxAttribute ;
1145 }
1542ea39 1146
eb630bf1
DS
1147 if (UMAGetSystemVersion() >= 0x1000)
1148 {
facd6764 1149 // turn on live resizing (OS X only)
eb630bf1
DS
1150 attr |= kWindowLiveResizeAttribute;
1151 }
1152
e353795e
SC
1153 if ( HasFlag(wxSTAY_ON_TOP) )
1154 {
1155 group = GetWindowGroupOfClass(kUtilityWindowClass) ;
1156 }
6a7e6411 1157
902725ee 1158#if TARGET_API_MAC_OSX
789ae0cf
SC
1159 if ( m_macUsesCompositing )
1160 attr |= kWindowCompositingAttribute;
d66c3960 1161#endif
902725ee 1162
6a7e6411
RD
1163 if ( HasFlag(wxFRAME_SHAPED) )
1164 {
1165 WindowDefSpec customWindowDefSpec;
1166 customWindowDefSpec.defType = kWindowDefProcPtr;
1167 customWindowDefSpec.u.defProc = NewWindowDefUPP(wxShapedMacWindowDef);
1168
47ac4f9b 1169 err = ::CreateCustomWindow( &customWindowDefSpec, wclass,
6a7e6411
RD
1170 attr, &theBoundsRect,
1171 (WindowRef*) &m_macWindow);
1172 }
1173 else
1174 {
47ac4f9b 1175 err = ::CreateNewWindow( wclass , attr , &theBoundsRect , (WindowRef*)&m_macWindow ) ;
6a7e6411
RD
1176 }
1177
e353795e
SC
1178 if ( err == noErr && m_macWindow != NULL && group != NULL )
1179 SetWindowGroup( (WindowRef) m_macWindow , group ) ;
1180
47ac4f9b 1181 wxCHECK_RET( err == noErr, wxT("Mac OS error when trying to create new window") );
f83b6761
SC
1182
1183 // the create commands are only for content rect, so we have to set the size again as
902725ee 1184 // structure bounds
f83b6761
SC
1185 SetWindowBounds( (WindowRef) m_macWindow , kWindowStructureRgn , &theBoundsRect ) ;
1186
facd6764
SC
1187 wxAssociateWinWithMacWindow( (WindowRef) m_macWindow , this ) ;
1188 UMASetWTitle( (WindowRef) m_macWindow , title , m_font.GetEncoding() ) ;
1f1c8bd4 1189 m_peer = new wxMacControl(this , true /*isRootControl*/) ;
3a9dc061 1190#if TARGET_API_MAC_OSX
902725ee 1191
789ae0cf 1192 if ( m_macUsesCompositing )
f57d9215 1193 {
902725ee 1194 // There is a bug in 10.2.X for ::GetRootControl returning the window view instead of
3103e8a9 1195 // the content view, so we have to retrieve it explicitly
902725ee 1196 HIViewFindByID( HIViewGetRoot( (WindowRef) m_macWindow ) , kHIViewWindowContentID ,
789ae0cf
SC
1197 m_peer->GetControlRefAddr() ) ;
1198 if ( !m_peer->Ok() )
1199 {
1200 // compatibility mode fallback
1201 GetRootControl( (WindowRef) m_macWindow , m_peer->GetControlRefAddr() ) ;
1202 }
f57d9215 1203 }
3a9dc061 1204#endif
789ae0cf
SC
1205 {
1206 ::CreateRootControl( (WindowRef)m_macWindow , m_peer->GetControlRefAddr() ) ;
1207 }
73fe67bd 1208 // the root control level handleer
5ca0d812 1209 MacInstallEventHandler( (WXWidget) m_peer->GetControlRef() ) ;
facd6764 1210
73fe67bd 1211 // the frame window event handler
e40298d5 1212 InstallStandardEventHandler( GetWindowEventTarget(MAC_WXHWND(m_macWindow)) ) ;
949cb163 1213 MacInstallTopLevelWindowEventHandler() ;
b19bf058 1214
14c96cf2
SC
1215 DoSetWindowVariant( m_windowVariant ) ;
1216
facd6764 1217 m_macFocus = NULL ;
6a7e6411
RD
1218
1219 if ( HasFlag(wxFRAME_SHAPED) )
1220 {
1221 // default shape matches the window size
facd6764 1222 wxRegion rgn(0, 0, w, h);
6a7e6411
RD
1223 SetShape(rgn);
1224 }
3dfafdb9
RD
1225
1226 wxWindowCreateEvent event(this);
1227 GetEventHandler()->ProcessEvent(event);
5f0b2f22
SC
1228}
1229
5d2e69e8 1230void wxTopLevelWindowMac::ClearBackground()
5f0b2f22 1231{
5d2e69e8 1232 wxWindow::ClearBackground() ;
5f0b2f22
SC
1233}
1234
5f0b2f22
SC
1235// Raise the window to the top of the Z order
1236void wxTopLevelWindowMac::Raise()
1237{
7f3c339c 1238 ::SelectWindow( (WindowRef)m_macWindow ) ;
5f0b2f22
SC
1239}
1240
1241// Lower the window to the bottom of the Z order
1242void wxTopLevelWindowMac::Lower()
1243{
76a5e5d2 1244 ::SendBehind( (WindowRef)m_macWindow , NULL ) ;
5f0b2f22
SC
1245}
1246
851b3a88 1247
245f3581
DE
1248void wxTopLevelWindowMac::MacDelayedDeactivation(long timestamp)
1249{
1250 if(s_macDeactivateWindow)
1251 {
f02a4ffa
VZ
1252 wxLogTrace(TRACE_ACTIVATE,
1253 wxT("Doing delayed deactivation of %p"),
1254 s_macDeactivateWindow);
245f3581
DE
1255 s_macDeactivateWindow->MacActivate(timestamp, false);
1256 }
1257}
1258
851b3a88 1259void wxTopLevelWindowMac::MacActivate( long timestamp , bool inIsActivating )
5f0b2f22 1260{
f02a4ffa 1261 wxLogTrace(TRACE_ACTIVATE, wxT("TopLevel=%p::MacActivate"), this);
17f8d2a7 1262
245f3581
DE
1263 if(s_macDeactivateWindow==this)
1264 s_macDeactivateWindow=NULL;
1265 MacDelayedDeactivation(timestamp);
8ab50549 1266 MacPropagateHiliteChanged() ;
5f0b2f22
SC
1267}
1268
1269void wxTopLevelWindowMac::SetTitle(const wxString& title)
1270{
fb5246be 1271 wxWindow::SetLabel( title ) ;
16a76184 1272 UMASetWTitle( (WindowRef)m_macWindow , title , m_font.GetEncoding() ) ;
5f0b2f22
SC
1273}
1274
d4bd6c97 1275wxString wxTopLevelWindowMac::GetTitle() const
fb5246be
WS
1276{
1277 return wxWindow::GetLabel();
1278}
1279
5f0b2f22
SC
1280bool wxTopLevelWindowMac::Show(bool show)
1281{
facd6764 1282 if ( !wxTopLevelWindowBase::Show(show) )
902725ee 1283 return false;
5f0b2f22
SC
1284
1285 if (show)
1542ea39 1286 {
902725ee 1287 #if wxUSE_SYSTEM_OPTIONS //code contributed by Ryan Wilcox December 18, 2003
1f90939c
SC
1288 if ( (wxSystemOptions::HasOption(wxMAC_WINDOW_PLAIN_TRANSITION) ) && ( wxSystemOptions::GetOptionInt( wxMAC_WINDOW_PLAIN_TRANSITION ) == 1) )
1289 {
1290 ::ShowWindow( (WindowRef)m_macWindow );
1291 }
1292 else
1293 #endif
1294 {
1295 ::TransitionWindow((WindowRef)m_macWindow,kWindowZoomTransitionEffect,kWindowShowTransitionAction,nil);
1296 }
1297 ::SelectWindow( (WindowRef)m_macWindow ) ;
facd6764
SC
1298 // as apps expect a size event to occur at this moment
1299 wxSizeEvent event( GetSize() , m_windowId);
1f90939c
SC
1300 event.SetEventObject(this);
1301 GetEventHandler()->ProcessEvent(event);
5f0b2f22
SC
1302 }
1303 else
1304 {
1f90939c
SC
1305 #if wxUSE_SYSTEM_OPTIONS
1306 if ( (wxSystemOptions::HasOption(wxMAC_WINDOW_PLAIN_TRANSITION) ) && ( wxSystemOptions::GetOptionInt( wxMAC_WINDOW_PLAIN_TRANSITION ) == 1) )
1307 {
1308 ::HideWindow((WindowRef) m_macWindow );
1309 }
1310 else
1311 #endif
1312 {
1313 ::TransitionWindow((WindowRef)m_macWindow,kWindowZoomTransitionEffect,kWindowHideTransitionAction,nil);
1314 }
5f0b2f22
SC
1315 }
1316
facd6764 1317 MacPropagateVisibilityChanged() ;
5f0b2f22 1318
902725ee 1319 return true ;
5f0b2f22
SC
1320}
1321
c5985061 1322bool wxTopLevelWindowMac::ShowFullScreen(bool show, long style)
902725ee 1323{
c5985061
SC
1324 if ( show )
1325 {
1326 FullScreenData *data = (FullScreenData *)m_macFullScreenData ;
1327 delete data ;
1328 data = new FullScreenData() ;
902725ee 1329
c5985061
SC
1330 m_macFullScreenData = data ;
1331 data->m_position = GetPosition() ;
1332 data->m_size = GetSize() ;
902725ee 1333
c5985061
SC
1334 if ( style & wxFULLSCREEN_NOMENUBAR )
1335 {
1336 HideMenuBar() ;
1337 }
1338 int left , top , right , bottom ;
1339 wxRect client = wxGetClientDisplayRect() ;
1340
1341 int x, y, w, h ;
902725ee 1342
c5985061
SC
1343 x = client.x ;
1344 y = client.y ;
1345 w = client.width ;
1346 h = client.height ;
902725ee 1347
c5985061
SC
1348 MacGetContentAreaInset( left , top , right , bottom ) ;
1349
1350 if ( style & wxFULLSCREEN_NOCAPTION )
1351 {
1352 y -= top ;
1353 h += top ;
1354 }
1355 if ( style & wxFULLSCREEN_NOBORDER )
1356 {
1357 x -= left ;
1358 w += left + right ;
1359 h += bottom ;
1360 }
1361 if ( style & wxFULLSCREEN_NOTOOLBAR )
1362 {
3c86150d
SC
1363 // TODO
1364 }
1365 if ( style & wxFULLSCREEN_NOSTATUSBAR )
1366 {
1367 // TODO
c5985061
SC
1368 }
1369 SetSize( x , y , w, h ) ;
1370 }
1371 else
1372 {
1373 ShowMenuBar() ;
1374 FullScreenData *data = (FullScreenData *) m_macFullScreenData ;
1375 SetPosition( data->m_position ) ;
1376 SetSize( data->m_size ) ;
1377 delete data ;
1378 m_macFullScreenData = NULL ;
1379 }
902725ee 1380 return false;
c5985061
SC
1381}
1382
902725ee
WS
1383bool wxTopLevelWindowMac::IsFullScreen() const
1384{
1385 return m_macFullScreenData != NULL ;
c5985061
SC
1386}
1387
facd6764
SC
1388// we are still using coordinates of the content view, todo switch to structure bounds
1389
29281095
SC
1390void wxTopLevelWindowMac::MacGetContentAreaInset( int &left , int &top , int &right , int &bottom )
1391{
1392 Rect content ;
1393 Rect structure ;
1394 GetWindowBounds( (WindowRef) m_macWindow, kWindowStructureRgn , &structure ) ;
1395 GetWindowBounds( (WindowRef) m_macWindow, kWindowContentRgn , &content ) ;
1396
1397 left = content.left - structure.left ;
1398 top = content.top - structure.top ;
1399 right = structure.right - content.right ;
1400 bottom = structure.bottom - content.bottom ;
1401}
1402
5f0b2f22
SC
1403void wxTopLevelWindowMac::DoMoveWindow(int x, int y, int width, int height)
1404{
c9698388 1405 m_cachedClippedRectValid = false ;
facd6764
SC
1406 Rect bounds = { y , x , y + height , x + width } ;
1407 verify_noerr(SetWindowBounds( (WindowRef) m_macWindow, kWindowStructureRgn , &bounds )) ;
4817190d 1408 wxWindowMac::MacSuperChangedPosition() ; // like this only children will be notified
5f0b2f22
SC
1409}
1410
facd6764 1411void wxTopLevelWindowMac::DoGetPosition( int *x, int *y ) const
5f0b2f22 1412{
facd6764
SC
1413 Rect bounds ;
1414 verify_noerr(GetWindowBounds((WindowRef) m_macWindow, kWindowStructureRgn , &bounds )) ;
1415 if(x) *x = bounds.left ;
1416 if(y) *y = bounds.top ;
1417}
1418void wxTopLevelWindowMac::DoGetSize( int *width, int *height ) const
1419{
1420 Rect bounds ;
1421 verify_noerr(GetWindowBounds((WindowRef) m_macWindow, kWindowStructureRgn , &bounds )) ;
1422 if(width) *width = bounds.right - bounds.left ;
1423 if(height) *height = bounds.bottom - bounds.top ;
1424}
1542ea39 1425
facd6764
SC
1426void wxTopLevelWindowMac::DoGetClientSize( int *width, int *height ) const
1427{
1428 Rect bounds ;
1429 verify_noerr(GetWindowBounds((WindowRef) m_macWindow, kWindowContentRgn , &bounds )) ;
1430 if(width) *width = bounds.right - bounds.left ;
1431 if(height) *height = bounds.bottom - bounds.top ;
1432}
1542ea39 1433
902725ee 1434void wxTopLevelWindowMac::MacSetMetalAppearance( bool set )
facd6764
SC
1435{
1436#if TARGET_API_MAC_OSX
789ae0cf 1437 wxASSERT_MSG( m_macUsesCompositing ,
facd6764 1438 wxT("Cannot set metal appearance on a non-compositing window") ) ;
902725ee
WS
1439
1440 MacChangeWindowAttributes( set ? kWindowMetalAttribute : kWindowNoAttributes ,
facd6764
SC
1441 set ? kWindowNoAttributes : kWindowMetalAttribute ) ;
1442#endif
1443}
1542ea39 1444
902725ee 1445bool wxTopLevelWindowMac::MacGetMetalAppearance() const
6aab345b
SC
1446{
1447#if TARGET_API_MAC_OSX
1448 return MacGetWindowAttributes() & kWindowMetalAttribute ;
1449#else
1450 return false ;
1451#endif
1452}
1453
902725ee 1454void wxTopLevelWindowMac::MacChangeWindowAttributes( wxUint32 attributesToSet , wxUint32 attributesToClear )
facd6764
SC
1455{
1456 ChangeWindowAttributes ( (WindowRef) m_macWindow , attributesToSet, attributesToClear ) ;
1457}
1542ea39 1458
902725ee 1459wxUint32 wxTopLevelWindowMac::MacGetWindowAttributes() const
facd6764
SC
1460{
1461 UInt32 attr = 0 ;
1462 GetWindowAttributes((WindowRef) m_macWindow , &attr ) ;
1463 return attr ;
5f0b2f22 1464}
a07c1212 1465
902725ee 1466void wxTopLevelWindowMac::MacPerformUpdates()
92346151
SC
1467{
1468#if TARGET_API_MAC_OSX
902725ee
WS
1469 if ( m_macUsesCompositing )
1470 {
92346151 1471#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3
902725ee
WS
1472 // for composited windows this also triggers a redraw of all
1473 // invalid views in the window
1474 if( UMAGetSystemVersion() >= 0x1030 )
1475 HIWindowFlush((WindowRef) m_macWindow) ;
1476 else
92346151 1477#endif
902725ee
WS
1478 {
1479 // the only way to trigger the redrawing on earlier systems is to call
1480 // ReceiveNextEvent
1481
1482 EventRef currentEvent = (EventRef) wxTheApp->MacGetCurrentEvent() ;
1483 UInt32 currentEventClass = 0 ;
1484 UInt32 currentEventKind = 0 ;
1485 if ( currentEvent != NULL )
1486 {
1487 currentEventClass = ::GetEventClass( currentEvent ) ;
1488 currentEventKind = ::GetEventKind( currentEvent ) ;
1489 }
1490 if ( currentEventClass != kEventClassMenu )
1491 {
1492 // when tracking a menu, strange redraw errors occur if we flush now, so leave..
1493 EventRef theEvent;
1494 OSStatus status = noErr ;
1495 status = ReceiveNextEvent( 0 , NULL , kEventDurationNoWait , false , &theEvent ) ;
1496 }
1497 }
92346151
SC
1498 }
1499 else
1500#endif
1501 {
902725ee
WS
1502 BeginUpdate( (WindowRef) m_macWindow ) ;
1503
1504 RgnHandle updateRgn = NewRgn();
1505 if ( updateRgn )
1506 {
1507 GetPortVisibleRegion( GetWindowPort( (WindowRef)m_macWindow ), updateRgn );
1508 UpdateControls( (WindowRef)m_macWindow , updateRgn ) ;
1509 // if ( !EmptyRgn( updateRgn ) )
1510 // MacDoRedraw( updateRgn , 0 , true) ;
1511 DisposeRgn( updateRgn );
1512 }
1513 EndUpdate( (WindowRef)m_macWindow ) ;
1514 QDFlushPortBuffer( GetWindowPort( (WindowRef)m_macWindow ) , NULL ) ;
92346151
SC
1515 }
1516}
1517
3feeb1e1
SC
1518// Attracts the users attention to this window if the application is
1519// inactive (should be called when a background event occurs)
1520
1521static pascal void wxMacNMResponse( NMRecPtr ptr )
1522{
1523 NMRemove( ptr ) ;
1524 DisposePtr( (Ptr) ptr ) ;
1525}
1526
1527
1528void wxTopLevelWindowMac::RequestUserAttention(int flags )
1529{
1530 NMRecPtr notificationRequest = (NMRecPtr) NewPtr( sizeof( NMRec) ) ;
1531 static wxMacNMUPP nmupp( wxMacNMResponse )
1532 ;
1533 memset( notificationRequest , 0 , sizeof(*notificationRequest) ) ;
1534 notificationRequest->qType = nmType ;
1535 notificationRequest->nmMark = 1 ;
1536 notificationRequest->nmIcon = 0 ;
1537 notificationRequest->nmSound = 0 ;
1538 notificationRequest->nmStr = NULL ;
1539 notificationRequest->nmResp = nmupp ;
1540 verify_noerr( NMInstall( notificationRequest ) ) ;
1541}
1542
facd6764
SC
1543// ---------------------------------------------------------------------------
1544// Shape implementation
1545// ---------------------------------------------------------------------------
1546
6a7e6411 1547
1542ea39
RD
1548bool wxTopLevelWindowMac::SetShape(const wxRegion& region)
1549{
902725ee 1550 wxCHECK_MSG( HasFlag(wxFRAME_SHAPED), false,
6a7e6411
RD
1551 _T("Shaped windows must be created with the wxFRAME_SHAPED style."));
1552
1553 // The empty region signifies that the shape should be removed from the
1554 // window.
1555 if ( region.IsEmpty() )
1556 {
1557 wxSize sz = GetClientSize();
1558 wxRegion rgn(0, 0, sz.x, sz.y);
3c393c0a
SC
1559 if ( rgn.IsEmpty() )
1560 return false ;
1561 else
1562 return SetShape(rgn);
6a7e6411
RD
1563 }
1564
1565 // Make a copy of the region
1566 RgnHandle shapeRegion = NewRgn();
1567 CopyRgn( (RgnHandle)region.GetWXHRGN(), shapeRegion );
1568
1569 // Dispose of any shape region we may already have
1570 RgnHandle oldRgn = (RgnHandle)GetWRefCon( (WindowRef)MacGetWindowRef() );
1571 if ( oldRgn )
1572 DisposeRgn(oldRgn);
1573
1574 // Save the region so we can use it later
1575 SetWRefCon((WindowRef)MacGetWindowRef(), (SInt32)shapeRegion);
1576
1577 // Tell the window manager that the window has changed shape
1578 ReshapeCustomWindow((WindowRef)MacGetWindowRef());
902725ee 1579 return true;
6a7e6411
RD
1580}
1581
6a7e6411
RD
1582// ---------------------------------------------------------------------------
1583// Support functions for shaped windows, based on Apple's CustomWindow sample at
1584// http://developer.apple.com/samplecode/Sample_Code/Human_Interface_Toolbox/Mac_OS_High_Level_Toolbox/CustomWindow.htm
1585// ---------------------------------------------------------------------------
1586
6a7e6411
RD
1587static void wxShapedMacWindowGetPos(WindowRef window, Rect* inRect)
1588{
1589 GetWindowPortBounds(window, inRect);
1590 Point pt = {inRect->left, inRect->top};
d6fd667b 1591 QDLocalToGlobalPoint( GetWindowPort(window) , &pt ) ;
6a7e6411
RD
1592 inRect->top = pt.v;
1593 inRect->left = pt.h;
1594 inRect->bottom += pt.v;
1595 inRect->right += pt.h;
1596}
1597
1598
1599static SInt32 wxShapedMacWindowGetFeatures(WindowRef window, SInt32 param)
1600{
1601 /*------------------------------------------------------
1602 Define which options your custom window supports.
1603 --------------------------------------------------------*/
1604 //just enable everything for our demo
1605 *(OptionBits*)param=//kWindowCanGrow|
1606 //kWindowCanZoom|
1607 //kWindowCanCollapse|
1608 //kWindowCanGetWindowRegion|
1609 //kWindowHasTitleBar|
1610 //kWindowSupportsDragHilite|
1611 kWindowCanDrawInCurrentPort|
1612 //kWindowCanMeasureTitle|
1613 kWindowWantsDisposeAtProcessDeath|
ae53adb4 1614 kWindowSupportsGetGrowImageRegion|
6a7e6411
RD
1615 kWindowDefSupportsColorGrafPort;
1616 return 1;
1542ea39 1617}
6a7e6411
RD
1618
1619// The content region is left as a rectangle matching the window size, this is
1620// so the origin in the paint event, and etc. still matches what the
1621// programmer expects.
1622static void wxShapedMacWindowContentRegion(WindowRef window, RgnHandle rgn)
1623{
1624 SetEmptyRgn(rgn);
1625 wxTopLevelWindowMac* win = wxFindWinFromMacWindow(window);
1626 if (win)
1627 {
b19bf058
SC
1628 Rect r ;
1629 wxShapedMacWindowGetPos(window, &r ) ;
1630 RectRgn( rgn , &r ) ;
6a7e6411
RD
1631 }
1632}
1633
1634// The structure region is set to the shape given to the SetShape method.
1635static void wxShapedMacWindowStructureRegion(WindowRef window, RgnHandle rgn)
1636{
1637 RgnHandle cachedRegion = (RgnHandle) GetWRefCon(window);
1638
1639 SetEmptyRgn(rgn);
1640 if (cachedRegion)
1641 {
1642 Rect windowRect;
902725ee
WS
1643 wxShapedMacWindowGetPos(window, &windowRect); // how big is the window
1644 CopyRgn(cachedRegion, rgn); // make a copy of our cached region
6a7e6411 1645 OffsetRgn(rgn, windowRect.left, windowRect.top); // position it over window
902725ee 1646 //MapRgn(rgn, &mMaskSize, &windowRect); //scale it to our actual window size
6a7e6411
RD
1647 }
1648}
1649
1650
1651
1652static SInt32 wxShapedMacWindowGetRegion(WindowRef window, SInt32 param)
1653{
1654 GetWindowRegionPtr rgnRec=(GetWindowRegionPtr)param;
1655
1656 switch(rgnRec->regionCode)
1657 {
1658 case kWindowStructureRgn:
1659 wxShapedMacWindowStructureRegion(window, rgnRec->winRgn);
1660 break;
1661 case kWindowContentRgn:
1662 wxShapedMacWindowContentRegion(window, rgnRec->winRgn);
1663 break;
1664 default:
1665 SetEmptyRgn(rgnRec->winRgn);
1666 } //switch
1667
1668 return noErr;
1669}
1670
1671
1672static SInt32 wxShapedMacWindowHitTest(WindowRef window,SInt32 param)
1673{
1674 /*------------------------------------------------------
1675 Determine the region of the window which was hit
1676 --------------------------------------------------------*/
1677 Point hitPoint;
1678 static RgnHandle tempRgn=nil;
1679
1680 if(!tempRgn)
902725ee 1681 tempRgn=NewRgn();
6a7e6411
RD
1682
1683 SetPt(&hitPoint,LoWord(param),HiWord(param));//get the point clicked
1684
1685 //Mac OS 8.5 or later
1686 wxShapedMacWindowStructureRegion(window, tempRgn);
1687 if (PtInRgn(hitPoint, tempRgn)) //in window content region?
1688 return wInContent;
1689
1690 return wNoHit;//no significant area was hit.
1691}
1692
1693
1694static pascal long wxShapedMacWindowDef(short varCode, WindowRef window, SInt16 message, SInt32 param)
1695{
1696 switch(message)
1697 {
1698 case kWindowMsgHitTest:
1699 return wxShapedMacWindowHitTest(window,param);
1700
1701 case kWindowMsgGetFeatures:
1702 return wxShapedMacWindowGetFeatures(window,param);
1703
1704 // kWindowMsgGetRegion is sent during CreateCustomWindow and ReshapeCustomWindow
1705 case kWindowMsgGetRegion:
1706 return wxShapedMacWindowGetRegion(window,param);
1707 }
1708
1709 return 0;
1710}
1925be65 1711
6a7e6411 1712// ---------------------------------------------------------------------------