]> git.saurik.com Git - wxWidgets.git/blame - src/mac/toplevel.cpp
Use generic font dialog for wxCocoa
[wxWidgets.git] / src / mac / toplevel.cpp
CommitLineData
a15eb0a5
SC
1///////////////////////////////////////////////////////////////////////////////
2// Name: mac/toplevel.cpp
3// Purpose: implements wxTopLevelWindow for MSW
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 24.09.01
7// RCS-ID: $Id$
8// Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com)
6aa89a22 9// License: wxWindows licence
a15eb0a5
SC
10///////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
20#ifdef __GNUG__
21 #pragma implementation "toplevel.h"
22#endif
23
24// For compilers that support precompilation, includes "wx.h".
25#include "wx/wxprec.h"
26
27#ifdef __BORLANDC__
28 #pragma hdrstop
29#endif
30
31#ifndef WX_PRECOMP
32 #include "wx/app.h"
33 #include "wx/toplevel.h"
422644a3 34 #include "wx/frame.h"
a15eb0a5
SC
35 #include "wx/string.h"
36 #include "wx/log.h"
37 #include "wx/intl.h"
38#endif //WX_PRECOMP
39
5f0b2f22 40#include "wx/mac/uma.h"
422644a3 41#include "wx/mac/aga.h"
7c091673 42#include "wx/app.h"
5f0b2f22 43#include "wx/tooltip.h"
a07c1212 44#include "wx/dnd.h"
5f0b2f22 45
34dc8f91
SC
46#define wxMAC_DEBUG_REDRAW 0
47#ifndef wxMAC_DEBUG_REDRAW
48#define wxMAC_DEBUG_REDRAW 0
49#endif
50
a15eb0a5
SC
51// ----------------------------------------------------------------------------
52// globals
53// ----------------------------------------------------------------------------
54
55// list of all frames and modeless dialogs
32b5be3d
RR
56wxWindowList wxModelessWindows;
57
58// double click testing
59static Point gs_lastWhere;
60static long gs_lastWhen = 0;
61
a15eb0a5
SC
62// ============================================================================
63// wxTopLevelWindowMac implementation
64// ============================================================================
65
851b3a88
SC
66// ---------------------------------------------------------------------------
67// Carbon Events
68// ---------------------------------------------------------------------------
69
70#if TARGET_CARBON
71
72extern long wxMacTranslateKey(unsigned char key, unsigned char code) ;
73
74static const EventTypeSpec eventList[] =
75{
76 { kEventClassTextInput, kEventTextInputUnicodeForKeyEvent } ,
c5c9378c 77
e40298d5 78 { kEventClassKeyboard, kEventRawKeyDown } ,
c5c9378c
SC
79 { kEventClassKeyboard, kEventRawKeyRepeat } ,
80 { kEventClassKeyboard, kEventRawKeyUp } ,
81 { kEventClassKeyboard, kEventRawKeyModifiersChanged } ,
82
851b3a88
SC
83 { kEventClassWindow , kEventWindowUpdate } ,
84 { kEventClassWindow , kEventWindowActivated } ,
85 { kEventClassWindow , kEventWindowDeactivated } ,
86 { kEventClassWindow , kEventWindowBoundsChanging } ,
87 { kEventClassWindow , kEventWindowBoundsChanged } ,
88 { kEventClassWindow , kEventWindowClose } ,
89
90 { kEventClassMouse , kEventMouseDown } ,
91 { kEventClassMouse , kEventMouseUp } ,
92 { kEventClassMouse , kEventMouseMoved } ,
93 { kEventClassMouse , kEventMouseDragged } ,
94
95} ;
96
97static pascal OSStatus TextInputEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
98{
99 OSStatus result = eventNotHandledErr ;
851b3a88 100
c5c9378c 101 wxWindow* focus = wxWindow::FindFocus() ;
e40298d5
JS
102 char charCode ;
103 UInt32 keyCode ;
c5c9378c 104 UInt32 modifiers ;
e40298d5
JS
105 Point point ;
106 UInt32 when = EventTimeToTicks( GetEventTime( event ) ) ;
c5c9378c
SC
107
108 EventRef rawEvent ;
109
110 GetEventParameter( event , kEventParamTextInputSendKeyboardEvent ,typeEventRef,NULL,sizeof(rawEvent),NULL,&rawEvent ) ;
111
e40298d5
JS
112 GetEventParameter( rawEvent, kEventParamKeyMacCharCodes, typeChar, NULL,sizeof(char), NULL,&charCode );
113 GetEventParameter( rawEvent, kEventParamKeyCode, typeUInt32, NULL, sizeof(UInt32), NULL, &keyCode );
114 GetEventParameter( rawEvent, kEventParamKeyModifiers, typeUInt32, NULL, sizeof(UInt32), NULL, &modifiers);
115 GetEventParameter( rawEvent, kEventParamMouseLocation, typeQDPoint, NULL,
116 sizeof( Point ), NULL, &point );
117
118 UInt32 message = (keyCode << 8) + charCode;
119
120 switch ( GetEventKind( event ) )
121 {
122 case kEventTextInputUnicodeForKeyEvent :
123 if ( (focus != NULL) && wxTheApp->MacSendKeyDownEvent(
124 focus , message , modifiers , when , point.h , point.v ) )
125 {
126 result = noErr ;
127 }
128 break ;
129 }
c5c9378c
SC
130
131 return result ;
132}
133
134static pascal OSStatus KeyboardEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
135{
136 OSStatus result = eventNotHandledErr ;
137
138 wxWindow* focus = wxWindow::FindFocus() ;
e40298d5
JS
139 char charCode ;
140 UInt32 keyCode ;
c5c9378c 141 UInt32 modifiers ;
e40298d5
JS
142 Point point ;
143 UInt32 when = EventTimeToTicks( GetEventTime( event ) ) ;
144
145 GetEventParameter( event, kEventParamKeyMacCharCodes, typeChar, NULL,sizeof(char), NULL,&charCode );
146 GetEventParameter( event, kEventParamKeyCode, typeUInt32, NULL, sizeof(UInt32), NULL, &keyCode );
147 GetEventParameter(event, kEventParamKeyModifiers, typeUInt32, NULL, sizeof(UInt32), NULL, &modifiers);
148 GetEventParameter( event, kEventParamMouseLocation, typeQDPoint, NULL,
149 sizeof( Point ), NULL, &point );
150
151 UInt32 message = (keyCode << 8) + charCode;
152 switch( GetEventKind( event ) )
153 {
154 case kEventRawKeyRepeat :
155 case kEventRawKeyDown :
156 if ( (focus != NULL) && wxTheApp->MacSendKeyDownEvent(
157 focus , message , modifiers , when , point.h , point.v ) )
158 {
159 result = noErr ;
160 }
161 break ;
162 case kEventRawKeyUp :
163 if ( (focus != NULL) && wxTheApp->MacSendKeyUpEvent(
164 focus , message , modifiers , when , point.h , point.v ) )
165 {
166 result = noErr ;
167 }
168 break ;
169 case kEventRawKeyModifiersChanged :
170 {
171 wxKeyEvent event(wxEVT_KEY_DOWN);
172
173 event.m_shiftDown = modifiers & shiftKey;
174 event.m_controlDown = modifiers & controlKey;
175 event.m_altDown = modifiers & optionKey;
176 event.m_metaDown = modifiers & cmdKey;
177
178 event.m_x = point.h;
179 event.m_y = point.v;
180 event.m_timeStamp = when;
181 wxWindow* focus = wxWindow::FindFocus() ;
182 event.SetEventObject(focus);
183
184 if ( (modifiers ^ wxTheApp->s_lastModifiers ) & controlKey )
185 {
186 event.m_keyCode = WXK_CONTROL ;
187 event.SetEventType( ( modifiers & controlKey ) ? wxEVT_KEY_DOWN : wxEVT_KEY_UP ) ;
188 focus->GetEventHandler()->ProcessEvent( event ) ;
189 }
190 if ( (modifiers ^ wxTheApp->s_lastModifiers ) & shiftKey )
191 {
192 event.m_keyCode = WXK_SHIFT ;
193 event.SetEventType( ( modifiers & shiftKey ) ? wxEVT_KEY_DOWN : wxEVT_KEY_UP ) ;
194 focus->GetEventHandler()->ProcessEvent( event ) ;
195 }
196 if ( (modifiers ^ wxTheApp->s_lastModifiers ) & optionKey )
197 {
198 event.m_keyCode = WXK_ALT ;
199 event.SetEventType( ( modifiers & optionKey ) ? wxEVT_KEY_DOWN : wxEVT_KEY_UP ) ;
200 focus->GetEventHandler()->ProcessEvent( event ) ;
201 }
202 wxTheApp->s_lastModifiers = modifiers ;
203 }
204 break ;
205 }
851b3a88
SC
206
207 return result ;
208}
209
210static pascal OSStatus MouseEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
211{
212 OSStatus result = eventNotHandledErr ;
213
e40298d5
JS
214 wxTopLevelWindowMac* toplevelWindow = (wxTopLevelWindowMac*) data ;
215 Point point ;
216 UInt32 modifiers = 0;
217 EventMouseButton button = 0 ;
218 UInt32 click = 0 ;
219
220 GetEventParameter( event, kEventParamMouseLocation, typeQDPoint, NULL,
221 sizeof( Point ), NULL, &point );
222 GetEventParameter( event, kEventParamKeyModifiers, typeUInt32, NULL,
223 sizeof( UInt32 ), NULL, &modifiers );
224 GetEventParameter( event, kEventParamMouseButton, typeMouseButton, NULL,
225 sizeof( EventMouseButton ), NULL, &button );
226 GetEventParameter( event, kEventParamClickCount, typeUInt32, NULL,
227 sizeof( UInt32 ), NULL, &click );
228
229 if ( button == 0 || GetEventKind( event ) == kEventMouseUp )
230 modifiers += btnState ;
231
232 WindowRef window ;
851b3a88 233 short windowPart = ::FindWindow(point, &window);
a3195b73 234
e40298d5 235 if ( IsWindowActive(window) && windowPart == inContent )
851b3a88 236 {
e40298d5
JS
237 switch ( GetEventKind( event ) )
238 {
239 case kEventMouseDown :
240 toplevelWindow->MacFireMouseEvent( mouseDown , point.h , point.v , modifiers , EventTimeToTicks( GetEventTime( event ) ) ) ;
241 result = noErr ;
242 break ;
243 case kEventMouseUp :
244 toplevelWindow->MacFireMouseEvent( mouseUp , point.h , point.v , modifiers , EventTimeToTicks( GetEventTime( event ) ) ) ;
245 result = noErr ;
246 break ;
247 case kEventMouseMoved :
248 toplevelWindow->MacFireMouseEvent( nullEvent , point.h , point.v , modifiers , EventTimeToTicks( GetEventTime( event ) ) ) ;
249 result = noErr ;
250 break ;
251 case kEventMouseDragged :
252 toplevelWindow->MacFireMouseEvent( nullEvent , point.h , point.v , modifiers , EventTimeToTicks( GetEventTime( event ) ) ) ;
253 result = noErr ;
254 break ;
255 default :
256 break ;
257 }
258 }
259
260 return result ;
261
851b3a88
SC
262
263}
264static pascal OSStatus WindowEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
265{
266 OSStatus result = eventNotHandledErr ;
267 OSStatus err = noErr ;
268
e40298d5
JS
269 UInt32 attributes;
270 WindowRef windowRef ;
271 wxTopLevelWindowMac* toplevelWindow = (wxTopLevelWindowMac*) data ;
272
273 GetEventParameter( event, kEventParamDirectObject, typeWindowRef, NULL,
274 sizeof( WindowRef ), NULL, &windowRef );
275
276 switch( GetEventKind( event ) )
277 {
278 case kEventWindowUpdate :
279 if ( !wxPendingDelete.Member(toplevelWindow) )
280 toplevelWindow->MacUpdate( EventTimeToTicks( GetEventTime( event ) ) ) ;
281 result = noErr ;
282 break ;
283 case kEventWindowActivated :
284 toplevelWindow->MacActivate( EventTimeToTicks( GetEventTime( event ) ) , true) ;
285 result = noErr ;
286 break ;
287 case kEventWindowDeactivated :
288 toplevelWindow->MacActivate( EventTimeToTicks( GetEventTime( event ) ) , false) ;
289 result = noErr ;
290 break ;
291 case kEventWindowClose :
292 toplevelWindow->Close() ;
293 result = noErr ;
294 break ;
295 case kEventWindowBoundsChanged :
296 err = GetEventParameter( event, kEventParamAttributes, typeUInt32,
297 NULL, sizeof( UInt32 ), NULL, &attributes );
298 if ( err == noErr )
299 {
300 Rect newContentRect ;
301
302 GetEventParameter( event, kEventParamCurrentBounds, typeQDRectangle, NULL,
303 sizeof( newContentRect ), NULL, &newContentRect );
304
851b3a88
SC
305 toplevelWindow->SetSize( newContentRect.left , newContentRect.top ,
306 newContentRect.right - newContentRect.left ,
307 newContentRect.bottom - newContentRect.top, wxSIZE_USE_EXISTING);
308
e40298d5
JS
309 result = noErr;
310 }
311 break ;
312 default :
313 break ;
314 }
315 return result ;
851b3a88
SC
316}
317
318pascal OSStatus wxMacWindowEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
319{
320 OSStatus result = eventNotHandledErr ;
321
322 switch ( GetEventClass( event ) )
323 {
c5c9378c 324 case kEventClassKeyboard :
e40298d5 325 result = KeyboardEventHandler( handler, event , data ) ;
c5c9378c 326 break ;
851b3a88 327 case kEventClassTextInput :
e40298d5 328 result = TextInputEventHandler( handler, event , data ) ;
851b3a88
SC
329 break ;
330 case kEventClassWindow :
e40298d5
JS
331 result = WindowEventHandler( handler, event , data ) ;
332 break ;
851b3a88 333 case kEventClassMouse :
e40298d5
JS
334 result = MouseEventHandler( handler, event , data ) ;
335 break ;
851b3a88
SC
336 default :
337 break ;
338 }
339 return result ;
340}
341
342DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacWindowEventHandler )
343
344#endif
345
5f0b2f22
SC
346// ---------------------------------------------------------------------------
347// wxWindowMac utility functions
348// ---------------------------------------------------------------------------
349
350// Find an item given the Macintosh Window Reference
351
352wxList *wxWinMacWindowList = NULL;
76a5e5d2 353wxTopLevelWindowMac *wxFindWinFromMacWindow(WXWindow inWindowRef)
5f0b2f22
SC
354{
355 wxNode *node = wxWinMacWindowList->Find((long)inWindowRef);
356 if (!node)
357 return NULL;
eb22f2a6 358 return (wxTopLevelWindowMac *)node->GetData();
5f0b2f22
SC
359}
360
76a5e5d2 361void wxAssociateWinWithMacWindow(WXWindow inWindowRef, wxTopLevelWindowMac *win)
5f0b2f22
SC
362{
363 // adding NULL WindowRef is (first) surely a result of an error and
364 // (secondly) breaks menu command processing
365 wxCHECK_RET( inWindowRef != (WindowRef) NULL, "attempt to add a NULL WindowRef to window list" );
366
367 if ( !wxWinMacWindowList->Find((long)inWindowRef) )
368 wxWinMacWindowList->Append((long)inWindowRef, win);
369}
370
371void wxRemoveMacWindowAssociation(wxTopLevelWindowMac *win)
372{
373 wxWinMacWindowList->DeleteObject(win);
374}
375
376
a15eb0a5
SC
377// ----------------------------------------------------------------------------
378// wxTopLevelWindowMac creation
379// ----------------------------------------------------------------------------
380
76a5e5d2 381WXHWND wxTopLevelWindowMac::s_macWindowInUpdate = NULL;
5f0b2f22 382
a15eb0a5
SC
383void wxTopLevelWindowMac::Init()
384{
385 m_iconized =
386 m_maximizeOnShow = FALSE;
5f0b2f22
SC
387 m_macNoEraseUpdateRgn = NewRgn() ;
388 m_macNeedsErasing = false ;
6a17ca35 389 m_macWindow = NULL ;
851b3a88 390#if TARGET_CARBON
7c091673 391 m_macEventHandler = NULL ;
851b3a88 392 #endif
a15eb0a5
SC
393}
394
118f012e
SC
395class wxMacDeferredWindowDeleter : public wxObject
396{
397public :
398 wxMacDeferredWindowDeleter( WindowRef windowRef )
399 {
400 m_macWindow = windowRef ;
401 }
402 virtual ~wxMacDeferredWindowDeleter()
403 {
404 UMADisposeWindow( (WindowRef) m_macWindow ) ;
405 }
406 protected :
407 WindowRef m_macWindow ;
408} ;
409
a15eb0a5
SC
410bool wxTopLevelWindowMac::Create(wxWindow *parent,
411 wxWindowID id,
412 const wxString& title,
413 const wxPoint& pos,
414 const wxSize& size,
415 long style,
416 const wxString& name)
417{
418 // init our fields
419 Init();
420
421 m_windowStyle = style;
422
423 SetName(name);
424
425 m_windowId = id == -1 ? NewControlId() : id;
426
427 wxTopLevelWindows.Append(this);
428
429 if ( parent )
430 parent->AddChild(this);
431
432 return TRUE;
433}
434
435wxTopLevelWindowMac::~wxTopLevelWindowMac()
436{
6a17ca35
SC
437 if ( m_macWindow )
438 {
439 wxToolTip::NotifyWindowDelete(m_macWindow) ;
118f012e 440 wxPendingDelete.Append( new wxMacDeferredWindowDeleter( (WindowRef) m_macWindow ) ) ;
6a17ca35 441 }
7c091673 442
f75363ee 443#if TARGET_CARBON
7c091673
SC
444 if ( m_macEventHandler )
445 {
446 ::RemoveEventHandler((EventHandlerRef) m_macEventHandler);
447 m_macEventHandler = NULL ;
448 }
449#endif
851b3a88 450
5f0b2f22
SC
451 wxRemoveMacWindowAssociation( this ) ;
452
a15eb0a5
SC
453 if ( wxModelessWindows.Find(this) )
454 wxModelessWindows.DeleteObject(this);
455
76a5e5d2 456 DisposeRgn( (RgnHandle) m_macNoEraseUpdateRgn ) ;
a15eb0a5
SC
457}
458
459
460// ----------------------------------------------------------------------------
461// wxTopLevelWindowMac maximize/minimize
462// ----------------------------------------------------------------------------
463
464void wxTopLevelWindowMac::Maximize(bool maximize)
465{
466 // not available on mac
467}
468
469bool wxTopLevelWindowMac::IsMaximized() const
470{
471 return false ;
472}
473
474void wxTopLevelWindowMac::Iconize(bool iconize)
475{
476 // not available on mac
477}
478
479bool wxTopLevelWindowMac::IsIconized() const
480{
ed60b502 481 // mac dialogs cannot be iconized
a15eb0a5
SC
482 return FALSE;
483}
484
485void wxTopLevelWindowMac::Restore()
486{
487 // not available on mac
488}
489
490// ----------------------------------------------------------------------------
491// wxTopLevelWindowMac misc
492// ----------------------------------------------------------------------------
493
494void wxTopLevelWindowMac::SetIcon(const wxIcon& icon)
495{
496 // this sets m_icon
497 wxTopLevelWindowBase::SetIcon(icon);
498}
5f0b2f22
SC
499
500void wxTopLevelWindowMac::MacCreateRealWindow( const wxString& title,
501 const wxPoint& pos,
502 const wxSize& size,
503 long style,
504 const wxString& name )
505{
e40298d5
JS
506 SetName(name);
507 m_windowStyle = style;
508 m_isShown = FALSE;
509
510 // create frame.
511
5f0b2f22 512 Rect theBoundsRect;
5f0b2f22 513
e40298d5
JS
514 m_x = (int)pos.x;
515 m_y = (int)pos.y;
516 if ( m_y < 50 )
517 m_y = 50 ;
518 if ( m_x < 20 )
519 m_x = 20 ;
520
521 m_width = size.x;
5f0b2f22
SC
522 if (m_width == -1)
523 m_width = 20;
e40298d5 524 m_height = size.y;
5f0b2f22
SC
525 if (m_height == -1)
526 m_height = 20;
e40298d5 527
5f0b2f22 528 ::SetRect(&theBoundsRect, m_x, m_y , m_x + m_width, m_y + m_height);
e40298d5 529
5f0b2f22 530 // translate the window attributes in the appropriate window class and attributes
e40298d5 531
5f0b2f22
SC
532 WindowClass wclass = 0;
533 WindowAttributes attr = kWindowNoAttributes ;
534
f5744893 535 if ( HasFlag( wxFRAME_TOOL_WINDOW) )
5f0b2f22 536 {
f5744893
SC
537 if (
538 HasFlag( wxMINIMIZE_BOX ) || HasFlag( wxMAXIMIZE_BOX ) ||
539 HasFlag( wxSYSTEM_MENU ) || HasFlag( wxCAPTION ) ||
540 HasFlag(wxTINY_CAPTION_HORIZ) || HasFlag(wxTINY_CAPTION_VERT)
e40298d5 541 )
5f0b2f22 542 {
f5744893
SC
543 wclass = kFloatingWindowClass ;
544 if ( HasFlag(wxTINY_CAPTION_VERT) )
545 {
546 attr |= kWindowSideTitlebarAttribute ;
547 }
548 }
549 else
550 {
2b5f62a0 551#if TARGET_CARBON
f5744893 552 wclass = kPlainWindowClass ;
2b5f62a0
VZ
553#else
554 wclass = kFloatingWindowClass ;
555#endif
5f0b2f22
SC
556 }
557 }
558 else if ( HasFlag( wxCAPTION ) )
559 {
e40298d5 560 wclass = kDocumentWindowClass ;
5f0b2f22
SC
561 }
562 else
563 {
f5744893 564 if ( HasFlag( wxMINIMIZE_BOX ) || HasFlag( wxMAXIMIZE_BOX ) ||
e40298d5 565 HasFlag( wxSYSTEM_MENU ) )
f5744893
SC
566 {
567 wclass = kDocumentWindowClass ;
568 }
569 else
570 {
2b5f62a0 571#if TARGET_CARBON
f5744893 572 wclass = kPlainWindowClass ;
2b5f62a0
VZ
573#else
574 wclass = kModalWindowClass ;
575#endif
f5744893 576 }
5f0b2f22
SC
577 }
578
579 if ( HasFlag( wxMINIMIZE_BOX ) || HasFlag( wxMAXIMIZE_BOX ) )
580 {
581 attr |= kWindowFullZoomAttribute ;
582 attr |= kWindowCollapseBoxAttribute ;
583 }
584 if ( HasFlag( wxRESIZE_BORDER ) )
585 {
586 attr |= kWindowResizableAttribute ;
587 }
588 if ( HasFlag( wxSYSTEM_MENU ) )
589 {
590 attr |= kWindowCloseBoxAttribute ;
591 }
592
76a5e5d2 593 ::CreateNewWindow( wclass , attr , &theBoundsRect , (WindowRef*)&m_macWindow ) ;
5f0b2f22
SC
594 wxAssociateWinWithMacWindow( m_macWindow , this ) ;
595 wxString label ;
596 if( wxApp::s_macDefaultEncodingIsPC )
597 label = wxMacMakeMacStringFromPC( title ) ;
598 else
599 label = title ;
76a5e5d2
SC
600 UMASetWTitleC( (WindowRef)m_macWindow , label ) ;
601 ::CreateRootControl( (WindowRef)m_macWindow , (ControlHandle*)&m_macRootControl ) ;
851b3a88 602#if TARGET_CARBON
e40298d5
JS
603 InstallStandardEventHandler( GetWindowEventTarget(MAC_WXHWND(m_macWindow)) ) ;
604 InstallWindowEventHandler(MAC_WXHWND(m_macWindow), GetwxMacWindowEventHandlerUPP(),
605 GetEventTypeCount(eventList), eventList, this, &((EventHandlerRef)m_macEventHandler));
851b3a88 606#endif
5f0b2f22
SC
607 m_macFocus = NULL ;
608}
609
76a5e5d2 610void wxTopLevelWindowMac::MacGetPortParams(WXPOINTPTR localOrigin, WXRECTPTR clipRect, WXHWND *window , wxWindowMac** rootwin)
5f0b2f22 611{
76a5e5d2
SC
612 ((Point*)localOrigin)->h = 0;
613 ((Point*)localOrigin)->v = 0;
614 ((Rect*)clipRect)->left = 0;
615 ((Rect*)clipRect)->top = 0;
616 ((Rect*)clipRect)->right = m_width;
617 ((Rect*)clipRect)->bottom = m_height;
5f0b2f22
SC
618 *window = m_macWindow ;
619 *rootwin = this ;
620}
621
622void wxTopLevelWindowMac::Clear()
623{
e40298d5 624 wxWindow::Clear() ;
5f0b2f22
SC
625}
626
76a5e5d2 627WXWidget wxTopLevelWindowMac::MacGetContainerForEmbedding()
5f0b2f22
SC
628{
629 return m_macRootControl ;
630}
631
632
633void wxTopLevelWindowMac::MacUpdate( long timestamp)
634{
66a09d47 635 wxMacPortStateHelper help( (GrafPtr) GetWindowPort( (WindowRef) m_macWindow) ) ;
76a5e5d2
SC
636
637 BeginUpdate( (WindowRef)m_macWindow ) ;
5f0b2f22
SC
638
639 RgnHandle updateRgn = NewRgn();
640 RgnHandle diffRgn = NewRgn() ;
641 if ( updateRgn && diffRgn )
642 {
76a5e5d2
SC
643 GetPortVisibleRegion( GetWindowPort( (WindowRef)m_macWindow ), updateRgn );
644 DiffRgn( updateRgn , (RgnHandle) m_macNoEraseUpdateRgn , diffRgn ) ;
5f0b2f22
SC
645 if ( !EmptyRgn( updateRgn ) )
646 {
647 MacRedraw( updateRgn , timestamp , m_macNeedsErasing || !EmptyRgn( diffRgn ) ) ;
648 }
649 }
650 if ( updateRgn )
651 DisposeRgn( updateRgn );
652 if ( diffRgn )
653 DisposeRgn( diffRgn );
76a5e5d2
SC
654 EndUpdate( (WindowRef)m_macWindow ) ;
655 SetEmptyRgn( (RgnHandle) m_macNoEraseUpdateRgn ) ;
5f0b2f22
SC
656 m_macNeedsErasing = false ;
657}
658
659
660// Raise the window to the top of the Z order
661void wxTopLevelWindowMac::Raise()
662{
7f3c339c 663 ::SelectWindow( (WindowRef)m_macWindow ) ;
5f0b2f22
SC
664}
665
666// Lower the window to the bottom of the Z order
667void wxTopLevelWindowMac::Lower()
668{
76a5e5d2 669 ::SendBehind( (WindowRef)m_macWindow , NULL ) ;
5f0b2f22
SC
670}
671
851b3a88 672void wxTopLevelWindowMac::MacFireMouseEvent(
e40298d5 673 wxUint16 kind , wxInt32 x , wxInt32 y ,wxUint32 modifiers , long timestamp )
5f0b2f22
SC
674{
675 wxMouseEvent event(wxEVT_LEFT_DOWN);
851b3a88
SC
676 bool isDown = !(modifiers & btnState) ; // 1 is for up
677 bool controlDown = modifiers & controlKey ; // for simulating right mouse
5f0b2f22
SC
678
679 event.m_leftDown = isDown && !controlDown;
680
681 event.m_middleDown = FALSE;
682 event.m_rightDown = isDown && controlDown;
683
851b3a88 684 if ( kind == mouseDown )
5f0b2f22
SC
685 {
686 if ( controlDown )
687 event.SetEventType(wxEVT_RIGHT_DOWN ) ;
688 else
689 event.SetEventType(wxEVT_LEFT_DOWN ) ;
690 }
851b3a88 691 else if ( kind == mouseUp )
5f0b2f22
SC
692 {
693 if ( controlDown )
694 event.SetEventType(wxEVT_RIGHT_UP ) ;
695 else
696 event.SetEventType(wxEVT_LEFT_UP ) ;
697 }
698 else
699 {
700 event.SetEventType(wxEVT_MOTION ) ;
701 }
702
851b3a88
SC
703 event.m_shiftDown = modifiers & shiftKey;
704 event.m_controlDown = modifiers & controlKey;
705 event.m_altDown = modifiers & optionKey;
706 event.m_metaDown = modifiers & cmdKey;
5f0b2f22 707
851b3a88
SC
708 Point localwhere ;
709 localwhere.h = x ;
710 localwhere.v = y ;
5f0b2f22
SC
711
712 GrafPtr port ;
713 ::GetPort( &port ) ;
76a5e5d2 714 ::SetPort( UMAGetWindowPort( (WindowRef)m_macWindow ) ) ;
5f0b2f22
SC
715 ::GlobalToLocal( &localwhere ) ;
716 ::SetPort( port ) ;
717
851b3a88 718 if ( kind == mouseDown )
5f0b2f22 719 {
851b3a88 720 if ( timestamp - gs_lastWhen <= GetDblTime() )
5f0b2f22 721 {
32b5be3d 722 if ( abs( localwhere.h - gs_lastWhere.h ) < 3 && abs( localwhere.v - gs_lastWhere.v ) < 3 )
5f0b2f22 723 {
32b5be3d
RR
724 // This is not right if the second mouse down
725 // event occured in a differen window. We
726 // correct this in MacDispatchMouseEvent.
5f0b2f22
SC
727 if ( controlDown )
728 event.SetEventType(wxEVT_RIGHT_DCLICK ) ;
729 else
730 event.SetEventType(wxEVT_LEFT_DCLICK ) ;
731 }
32b5be3d 732 gs_lastWhen = 0 ;
5f0b2f22
SC
733 }
734 else
735 {
851b3a88 736 gs_lastWhen = timestamp ;
5f0b2f22 737 }
32b5be3d 738 gs_lastWhere = localwhere ;
5f0b2f22
SC
739 }
740
741 event.m_x = localwhere.h;
742 event.m_y = localwhere.v;
743 event.m_x += m_x;
744 event.m_y += m_y;
745
851b3a88 746 event.m_timeStamp = timestamp;
5f0b2f22
SC
747 event.SetEventObject(this);
748 if ( wxTheApp->s_captureWindow )
749 {
750 int x = event.m_x ;
751 int y = event.m_y ;
752 wxTheApp->s_captureWindow->ScreenToClient( &x , &y ) ;
753 event.m_x = x ;
754 event.m_y = y ;
2e6857fa 755 event.SetEventObject( wxTheApp->s_captureWindow ) ;
5f0b2f22 756 wxTheApp->s_captureWindow->GetEventHandler()->ProcessEvent( event ) ;
ed60b502 757
851b3a88 758 if ( kind == mouseUp )
5f0b2f22
SC
759 {
760 wxTheApp->s_captureWindow = NULL ;
6b57b49a 761 if ( !wxIsBusy() )
5f0b2f22
SC
762 {
763 m_cursor.MacInstall() ;
764 }
765 }
766 }
767 else
768 {
769 MacDispatchMouseEvent( event ) ;
770 }
771}
e40298d5 772
851b3a88 773#if !TARGET_CARBON
5f0b2f22 774
76a5e5d2 775void wxTopLevelWindowMac::MacMouseDown( WXEVENTREF ev , short part)
5f0b2f22 776{
851b3a88 777 MacFireMouseEvent( mouseDown , ((EventRecord*)ev)->where.h , ((EventRecord*)ev)->where.v ,
e40298d5 778 ((EventRecord*)ev)->modifiers , ((EventRecord*)ev)->when ) ;
5f0b2f22
SC
779}
780
76a5e5d2 781void wxTopLevelWindowMac::MacMouseUp( WXEVENTREF ev , short part)
5f0b2f22
SC
782{
783 switch (part)
784 {
785 case inContent:
786 {
e40298d5
JS
787 MacFireMouseEvent( mouseUp , ((EventRecord*)ev)->where.h , ((EventRecord*)ev)->where.v ,
788 ((EventRecord*)ev)->modifiers , ((EventRecord*)ev)->when ) ;
5f0b2f22
SC
789 }
790 break ;
791 }
792}
793
76a5e5d2 794void wxTopLevelWindowMac::MacMouseMoved( WXEVENTREF ev , short part)
5f0b2f22
SC
795{
796 switch (part)
797 {
798 case inContent:
799 {
e40298d5
JS
800 MacFireMouseEvent( nullEvent /*moved*/ , ((EventRecord*)ev)->where.h , ((EventRecord*)ev)->where.v ,
801 ((EventRecord*)ev)->modifiers , ((EventRecord*)ev)->when ) ;
5f0b2f22
SC
802 }
803 break ;
804 }
805}
851b3a88
SC
806
807#endif
808
809void wxTopLevelWindowMac::MacActivate( long timestamp , bool inIsActivating )
5f0b2f22
SC
810{
811 wxActivateEvent event(wxEVT_ACTIVATE, inIsActivating , m_windowId);
851b3a88 812 event.m_timeStamp = timestamp ;
5f0b2f22
SC
813 event.SetEventObject(this);
814
815 GetEventHandler()->ProcessEvent(event);
816
76a5e5d2 817 UMAHighlightAndActivateWindow( (WindowRef)m_macWindow , inIsActivating ) ;
5f0b2f22 818
a006e78b
JS
819 // Early versions of MacOS X don't refresh backgrounds properly,
820 // so refresh the whole window on activation and deactivation.
821 long osVersion = UMAGetSystemVersion();
822 if (osVersion >= 0x1000 && osVersion < 0x1020)
823 Refresh(TRUE);
824 else
825 MacSuperEnabled( inIsActivating ) ;
5f0b2f22
SC
826}
827
851b3a88
SC
828#if !TARGET_CARBON
829
76a5e5d2 830void wxTopLevelWindowMac::MacKeyDown( WXEVENTREF ev )
5f0b2f22
SC
831{
832}
833
851b3a88
SC
834#endif
835
5f0b2f22
SC
836void wxTopLevelWindowMac::SetTitle(const wxString& title)
837{
838 wxWindow::SetTitle( title ) ;
839
840 wxString label ;
841
842 if( wxApp::s_macDefaultEncodingIsPC )
843 label = wxMacMakeMacStringFromPC( m_label ) ;
844 else
845 label = m_label ;
846
76a5e5d2 847 UMASetWTitleC( (WindowRef)m_macWindow , label ) ;
5f0b2f22
SC
848}
849
850bool wxTopLevelWindowMac::Show(bool show)
851{
852 if ( !wxWindow::Show(show) )
853 return FALSE;
854
855 if (show)
2b5f62a0
VZ
856 {
857 ::TransitionWindow((WindowRef)m_macWindow,kWindowZoomTransitionEffect,kWindowShowTransitionAction,nil);
76a5e5d2 858 ::SelectWindow( (WindowRef)m_macWindow ) ;
5f0b2f22
SC
859 // no need to generate events here, they will get them triggered by macos
860 // actually they should be , but apparently they are not
861 wxSize size(m_width, m_height);
862 wxSizeEvent event(size, m_windowId);
863 event.SetEventObject(this);
864 GetEventHandler()->ProcessEvent(event);
865 }
866 else
867 {
2b5f62a0 868 ::TransitionWindow((WindowRef)m_macWindow,kWindowZoomTransitionEffect,kWindowHideTransitionAction,nil);
5f0b2f22
SC
869 }
870
871 if ( !show )
872 {
873 }
874 else
875 {
876 Refresh() ;
877 }
878
879 return TRUE;
880}
881
882void wxTopLevelWindowMac::DoMoveWindow(int x, int y, int width, int height)
883{
884 int former_x = m_x ;
885 int former_y = m_y ;
886 int former_w = m_width ;
887 int former_h = m_height ;
888
e40298d5
JS
889 int actualWidth = width;
890 int actualHeight = height;
891 int actualX = x;
892 int actualY = y;
893
5f0b2f22
SC
894 if ((m_minWidth != -1) && (actualWidth < m_minWidth))
895 actualWidth = m_minWidth;
896 if ((m_minHeight != -1) && (actualHeight < m_minHeight))
897 actualHeight = m_minHeight;
898 if ((m_maxWidth != -1) && (actualWidth > m_maxWidth))
899 actualWidth = m_maxWidth;
900 if ((m_maxHeight != -1) && (actualHeight > m_maxHeight))
901 actualHeight = m_maxHeight;
902
903 bool doMove = false ;
904 bool doResize = false ;
905
906 if ( actualX != former_x || actualY != former_y )
907 {
908 doMove = true ;
909 }
910 if ( actualWidth != former_w || actualHeight != former_h )
911 {
912 doResize = true ;
913 }
914
915 if ( doMove || doResize )
916 {
917 m_x = actualX ;
918 m_y = actualY ;
919 m_width = actualWidth ;
920 m_height = actualHeight ;
921
922 if ( doMove )
76a5e5d2 923 ::MoveWindow((WindowRef)m_macWindow, m_x, m_y , false); // don't make frontmost
5f0b2f22
SC
924
925 if ( doResize )
76a5e5d2 926 ::SizeWindow((WindowRef)m_macWindow, m_width, m_height , true);
2b5f62a0
VZ
927
928 // the OS takes care of invalidating and erasing the new area so we only have to
929 // take care of refreshing for full repaints
930
931 if ( doResize && !HasFlag(wxNO_FULL_REPAINT_ON_RESIZE) )
932 Refresh() ;
5f0b2f22 933
5f0b2f22
SC
934
935 if ( IsKindOf( CLASSINFO( wxFrame ) ) )
936 {
937 wxFrame* frame = (wxFrame*) this ;
938 frame->PositionStatusBar();
939 frame->PositionToolBar();
940 }
941 if ( doMove )
942 wxWindowMac::MacTopLevelWindowChangedPosition() ; // like this only children will be notified
943
944 MacRepositionScrollBars() ;
945 if ( doMove )
946 {
947 wxPoint point(m_x, m_y);
948 wxMoveEvent event(point, m_windowId);
949 event.SetEventObject(this);
950 GetEventHandler()->ProcessEvent(event) ;
951 }
952 if ( doResize )
953 {
954 MacRepositionScrollBars() ;
955 wxSize size(m_width, m_height);
956 wxSizeEvent event(size, m_windowId);
957 event.SetEventObject(this);
958 GetEventHandler()->ProcessEvent(event);
959 }
960 }
961
962}
963
964/*
965 * Invalidation Mechanism
966 *
967 * The update mechanism reflects exactely the windows mechanism
968 * the rect gets added to the window invalidate region, if the eraseBackground flag
969 * has been true for any part of the update rgn the background is erased in the entire region
970 * not just in the specified rect.
971 *
972 * In order to achive this, we also have an internal m_macNoEraseUpdateRgn, all rects that have
973 * the eraseBackground flag set to false are also added to this rgn. upon receiving an update event
974 * the update rgn is compared to the m_macNoEraseUpdateRgn and in case they differ, every window
975 * will get the eraseBackground event first
976 */
977
76a5e5d2 978void wxTopLevelWindowMac::MacInvalidate( const WXRECTPTR rect, bool eraseBackground )
5f0b2f22 979{
e40298d5
JS
980 GrafPtr formerPort ;
981 GetPort( &formerPort ) ;
982 SetPortWindowPort( (WindowRef)m_macWindow ) ;
983
984 m_macNeedsErasing |= eraseBackground ;
985
986 // if we already know that we will have to erase, there's no need to track the rest
987 if ( !m_macNeedsErasing)
5f0b2f22 988 {
e40298d5
JS
989 // we end only here if eraseBackground is false
990 // if we already have a difference between m_macNoEraseUpdateRgn and UpdateRgn
991 // we will have to erase anyway
992
993 RgnHandle updateRgn = NewRgn();
994 RgnHandle diffRgn = NewRgn() ;
995 if ( updateRgn && diffRgn )
996 {
997 GetWindowUpdateRgn( (WindowRef)m_macWindow , updateRgn );
998 Point pt = {0,0} ;
999 LocalToGlobal( &pt ) ;
1000 OffsetRgn( updateRgn , -pt.h , -pt.v ) ;
1001 DiffRgn( updateRgn , (RgnHandle) m_macNoEraseUpdateRgn , diffRgn ) ;
1002 if ( !EmptyRgn( diffRgn ) )
1003 {
1004 m_macNeedsErasing = true ;
1005 }
1006 }
1007 if ( updateRgn )
1008 DisposeRgn( updateRgn );
1009 if ( diffRgn )
1010 DisposeRgn( diffRgn );
1011
1012 if ( !m_macNeedsErasing )
5f0b2f22 1013 {
e40298d5
JS
1014 RgnHandle rectRgn = NewRgn() ;
1015 SetRectRgn( rectRgn , ((Rect*)rect)->left , ((Rect*)rect)->top , ((Rect*)rect)->right , ((Rect*)rect)->bottom ) ;
1016 UnionRgn( (RgnHandle) m_macNoEraseUpdateRgn , rectRgn , (RgnHandle) m_macNoEraseUpdateRgn ) ;
1017 DisposeRgn( rectRgn ) ;
5f0b2f22
SC
1018 }
1019 }
e40298d5
JS
1020 InvalWindowRect( (WindowRef)m_macWindow , (Rect*)rect ) ;
1021 // turn this on to debug the refreshing cycle
34dc8f91 1022#if wxMAC_DEBUG_REDRAW
e40298d5 1023 PaintRect( rect ) ;
5f0b2f22 1024#endif
e40298d5 1025 SetPort( formerPort ) ;
5f0b2f22 1026}
a07c1212 1027