]> git.saurik.com Git - wxWidgets.git/blame - src/mac/carbon/window.cpp
reSWIGged
[wxWidgets.git] / src / mac / carbon / window.cpp
CommitLineData
e9576ca5
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: windows.cpp
e766c8a9 3// Purpose: wxWindowMac
a31a5f85 4// Author: Stefan Csomor
e9576ca5 5// Modified by:
a31a5f85 6// Created: 1998-01-01
e9576ca5 7// RCS-ID: $Id$
a31a5f85 8// Copyright: (c) Stefan Csomor
65571936 9// Licence: wxWindows licence
e9576ca5
SC
10/////////////////////////////////////////////////////////////////////////////
11
3d1a4878 12#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
e9576ca5
SC
13#pragma implementation "window.h"
14#endif
15
3d1a4878
SC
16#include "wx/wxprec.h"
17
e9576ca5 18#include "wx/menu.h"
5fde6fcc 19#include "wx/window.h"
e9576ca5
SC
20#include "wx/dc.h"
21#include "wx/dcclient.h"
14c9cbdb 22#include "wx/utils.h"
e9576ca5
SC
23#include "wx/app.h"
24#include "wx/panel.h"
25#include "wx/layout.h"
26#include "wx/dialog.h"
03e11df5
GD
27#include "wx/scrolbar.h"
28#include "wx/statbox.h"
e9576ca5
SC
29#include "wx/button.h"
30#include "wx/settings.h"
31#include "wx/msgdlg.h"
32#include "wx/frame.h"
2f1ae414 33#include "wx/tooltip.h"
c809f3be 34#include "wx/statusbr.h"
e9576ca5 35#include "wx/menuitem.h"
4ac219f6 36#include "wx/spinctrl.h"
e9576ca5 37#include "wx/log.h"
467e3168 38#include "wx/geometry.h"
00627198 39#include "wx/textctrl.h"
e9576ca5 40
facd6764
SC
41#include "wx/toolbar.h"
42#include "wx/dc.h"
43
7c551d95
SC
44#if wxUSE_CARET
45 #include "wx/caret.h"
46#endif // wxUSE_CARET
47
db7a550b
SC
48#define MAC_SCROLLBAR_SIZE 15
49#define MAC_SMALL_SCROLLBAR_SIZE 11
519cb848 50
d497dca4 51#include "wx/mac/uma.h"
66a09d47
SC
52#ifndef __DARWIN__
53#include <Windows.h>
54#include <ToolUtils.h>
1d879215
DS
55#include <Scrap.h>
56#include <MacTextEditor.h>
66a09d47 57#endif
519cb848 58
41218df1 59#if TARGET_API_MAC_OSX
facd6764 60#ifndef __HIVIEW__
8b573fb8 61 #include <HIToolbox/HIView.h>
facd6764 62#endif
41218df1 63#endif
facd6764 64
e9576ca5
SC
65#if wxUSE_DRAG_AND_DROP
66#include "wx/dnd.h"
67#endif
68
69#include <string.h>
70
71extern wxList wxPendingDelete;
72
fc0daf84
SC
73#ifdef __WXUNIVERSAL__
74 IMPLEMENT_ABSTRACT_CLASS(wxWindowMac, wxWindowBase)
75#else // __WXMAC__
76 IMPLEMENT_DYNAMIC_CLASS(wxWindow, wxWindowBase)
77#endif // __WXUNIVERSAL__/__WXMAC__
78
2f1ae414 79#if !USE_SHARED_LIBRARY
fc0daf84
SC
80
81BEGIN_EVENT_TABLE(wxWindowMac, wxWindowBase)
facd6764
SC
82 EVT_NC_PAINT(wxWindowMac::OnNcPaint)
83 EVT_ERASE_BACKGROUND(wxWindowMac::OnEraseBackground)
ff3795ee
SC
84#if TARGET_API_MAC_OSX
85 EVT_PAINT(wxWindowMac::OnPaint)
86#endif
5ca0d812
SC
87 EVT_SET_FOCUS(wxWindowMac::OnSetFocus)
88 EVT_KILL_FOCUS(wxWindowMac::OnSetFocus)
facd6764 89 EVT_MOUSE_EVENTS(wxWindowMac::OnMouseEvent)
e9576ca5
SC
90END_EVENT_TABLE()
91
2f1ae414 92#endif
e9576ca5 93
94abc21f
SC
94#define wxMAC_DEBUG_REDRAW 0
95#ifndef wxMAC_DEBUG_REDRAW
96#define wxMAC_DEBUG_REDRAW 0
97#endif
98
5ca0d812 99#define wxMAC_USE_THEME_BORDER 1
e9576ca5 100
42ef83fa
SC
101// ---------------------------------------------------------------------------
102// Utility Routines to move between different coordinate systems
103// ---------------------------------------------------------------------------
104
105/*
106 * Right now we have the following setup :
107 * a border that is not part of the native control is always outside the
108 * control's border (otherwise we loose all native intelligence, future ways
109 * may be to have a second embedding control responsible for drawing borders
110 * and backgrounds eventually)
111 * so all this border calculations have to be taken into account when calling
112 * native methods or getting native oriented data
113 * so we have three coordinate systems here
114 * wx client coordinates
115 * wx window coordinates (including window frames)
116 * native coordinates
117 */
8b573fb8 118
42ef83fa
SC
119//
120// originating from native control
121//
122
123
124void wxMacNativeToWindow( const wxWindow* window , RgnHandle handle )
125{
8b573fb8 126 OffsetRgn( handle , window->MacGetLeftBorderSize() , window->MacGetTopBorderSize() ) ;
42ef83fa
SC
127}
128
129void wxMacNativeToWindow( const wxWindow* window , Rect *rect )
130{
8b573fb8 131 OffsetRect( rect , window->MacGetLeftBorderSize() , window->MacGetTopBorderSize() ) ;
42ef83fa
SC
132}
133
134//
135// directed towards native control
136//
137
138void wxMacWindowToNative( const wxWindow* window , RgnHandle handle )
139{
8b573fb8 140 OffsetRgn( handle , -window->MacGetLeftBorderSize() , -window->MacGetTopBorderSize() );
42ef83fa
SC
141}
142
143void wxMacWindowToNative( const wxWindow* window , Rect *rect )
144{
8b573fb8 145 OffsetRect( rect , -window->MacGetLeftBorderSize() , -window->MacGetTopBorderSize() ) ;
42ef83fa
SC
146}
147
148
facd6764
SC
149// ---------------------------------------------------------------------------
150// Carbon Events
151// ---------------------------------------------------------------------------
8b573fb8 152
facd6764
SC
153extern long wxMacTranslateKey(unsigned char key, unsigned char code) ;
154pascal OSStatus wxMacSetupControlBackground( ControlRef iControl , SInt16 iMessage , SInt16 iDepth , Boolean iIsColor ) ;
155
f1d527c1
SC
156#if TARGET_API_MAC_OSX
157
8b573fb8 158#if MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_3
c2697b87
SC
159enum {
160 kEventControlVisibilityChanged = 157
161};
162#endif
163
f1d527c1
SC
164#endif
165
facd6764
SC
166static const EventTypeSpec eventList[] =
167{
f1d527c1 168 { kEventClassControl , kEventControlHit } ,
facd6764 169#if TARGET_API_MAC_OSX
73fe67bd
SC
170 { kEventClassControl , kEventControlDraw } ,
171 { kEventClassControl , kEventControlVisibilityChanged } ,
172 { kEventClassControl , kEventControlEnabledStateChanged } ,
173 { kEventClassControl , kEventControlHiliteChanged } ,
f1d527c1 174 { kEventClassControl , kEventControlSetFocusPart } ,
8b573fb8
VZ
175
176 { kEventClassService , kEventServiceGetTypes },
177 { kEventClassService , kEventServiceCopy },
178 { kEventClassService , kEventServicePaste },
179
180 // { kEventClassControl , kEventControlInvalidateForSizeChange } , // 10.3 only
facd6764 181// { kEventClassControl , kEventControlBoundsChanged } ,
facd6764
SC
182#endif
183} ;
184
185static pascal OSStatus wxMacWindowControlEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
186{
187 OSStatus result = eventNotHandledErr ;
188
189 wxMacCarbonEvent cEvent( event ) ;
8b573fb8 190
facd6764
SC
191 ControlRef controlRef ;
192 wxWindowMac* thisWindow = (wxWindowMac*) data ;
193
194 cEvent.GetParameter( kEventParamDirectObject , &controlRef ) ;
195
196 switch( GetEventKind( event ) )
197 {
f1d527c1 198#if TARGET_API_MAC_OSX
facd6764
SC
199 case kEventControlDraw :
200 {
1e8cde71 201 RgnHandle updateRgn = NULL ;
055a486b 202 RgnHandle allocatedRgn = NULL ;
1e8cde71 203 wxRegion visRegion = thisWindow->MacGetVisibleRegion() ;
e6616741
SC
204 Rect controlBounds ;
205 if ( thisWindow->GetPeer()->IsCompositing() == false )
206 {
207 if ( thisWindow->GetPeer()->IsRootControl() == false )
208 {
209 GetControlBounds( thisWindow->GetPeer()->GetControlRef() , &controlBounds ) ;
210 }
211 else
212 {
213 thisWindow->GetPeer()->GetRect( &controlBounds ) ;
214 }
215 }
216
76c7012c 217 if ( cEvent.GetParameter<RgnHandle>(kEventParamRgnHandle, &updateRgn) != noErr )
1e8cde71
SC
218 {
219 updateRgn = (RgnHandle) visRegion.GetWXHRGN() ;
220 }
055a486b
SC
221 else
222 {
e6616741 223 if ( thisWindow->GetPeer()->IsCompositing() == false )
055a486b 224 {
e6616741
SC
225 if ( thisWindow->GetPeer()->IsRootControl() == false )
226 {
227 GetControlBounds( thisWindow->GetPeer()->GetControlRef() , &controlBounds ) ;
228 }
229 else
230 {
231 thisWindow->GetPeer()->GetRect( &controlBounds ) ;
232 }
055a486b
SC
233 allocatedRgn = NewRgn() ;
234 CopyRgn( updateRgn , allocatedRgn ) ;
e6616741 235 OffsetRgn( allocatedRgn , -controlBounds.left , -controlBounds.top ) ;
42ef83fa
SC
236 // hide the given region by the new region that must be shifted
237 wxMacNativeToWindow( thisWindow , allocatedRgn ) ;
e6616741
SC
238 updateRgn = allocatedRgn ;
239 }
240 else
241 {
242 if ( thisWindow->MacGetLeftBorderSize() != 0 || thisWindow->MacGetTopBorderSize() != 0 )
243 {
244 // as this update region is in native window locals we must adapt it to wx window local
245 allocatedRgn = NewRgn() ;
246 CopyRgn( updateRgn , allocatedRgn ) ;
247 // hide the given region by the new region that must be shifted
248 wxMacNativeToWindow( thisWindow , allocatedRgn ) ;
249 updateRgn = allocatedRgn ;
250 }
055a486b
SC
251 }
252 }
e6616741
SC
253 Rect rgnBounds ;
254 GetRegionBounds( updateRgn , &rgnBounds ) ;
1f1c8bd4 255#if wxMAC_DEBUG_REDRAW
facd6764
SC
256 if ( thisWindow->MacIsUserPane() )
257 {
20b69855 258 CGContextRef cgContext = cEvent.GetParameter<CGContextRef>(kEventParamCGContextRef) ;
bcbd6987
SC
259 static float color = 0.5 ;
260 static channel = 0 ;
8b573fb8
VZ
261 HIRect bounds;
262 HIViewGetBounds( controlRef, &bounds );
263 CGContextSetRGBFillColor( cgContext, channel == 0 ? color : 0.5 ,
264 channel == 1 ? color : 0.5 , channel == 2 ? color : 0.5 , 1 );
265 CGContextFillRect( cgContext, bounds );
266 color += 0.1 ;
267 if ( color > 0.9 )
268 {
269 color = 0.5 ;
270 channel++ ;
271 if ( channel == 3 )
272 channel = 0 ;
273 }
facd6764 274 }
20b69855 275#endif
c79aad8b 276 {
20b69855 277#if wxMAC_USE_CORE_GRAPHICS
e6616741
SC
278 bool created = false ;
279 CGContextRef cgContext = 0 ;
280 if ( cEvent.GetParameter<CGContextRef>(kEventParamCGContextRef, &cgContext) != noErr )
281 {
282 wxASSERT( thisWindow->GetPeer()->IsCompositing() == false ) ;
283
284 // this parameter is not provided on non-composited windows
285 created = true ;
286 // rest of the code expects this to be already transformed and clipped for local
287 CGrafPtr port = GetWindowPort( (WindowRef) thisWindow->MacGetTopLevelWindowRef() ) ;
288 Rect bounds ;
289 GetPortBounds( port , &bounds ) ;
290 CreateCGContextForPort( port , &cgContext ) ;
291
292 wxMacWindowToNative( thisWindow , updateRgn ) ;
293 OffsetRgn( updateRgn , controlBounds.left , controlBounds.top ) ;
294 ClipCGContextToRegion( cgContext , &bounds , updateRgn ) ;
295 wxMacNativeToWindow( thisWindow , updateRgn ) ;
296 OffsetRgn( updateRgn , -controlBounds.left , -controlBounds.top ) ;
297
298 CGContextTranslateCTM( cgContext , 0 , bounds.bottom - bounds.top ) ;
299 CGContextScaleCTM( cgContext , 1 , -1 ) ;
300
301 CGContextTranslateCTM( cgContext , controlBounds.left , controlBounds.top ) ;
302
303 /*
304 CGContextSetRGBFillColor( cgContext , 1.0 , 1.0 , 1.0 , 1.0 ) ;
305 CGContextFillRect(cgContext , CGRectMake( 0 , 0 ,
306 controlBounds.right - controlBounds.left ,
307 controlBounds.bottom - controlBounds.top ) );
308 */
309
310 }
c79aad8b 311 thisWindow->MacSetCGContextRef( cgContext ) ;
e6616741
SC
312 {
313 wxMacCGContextStateSaver sg( cgContext ) ;
facd6764 314#endif
e6616741
SC
315 if ( thisWindow->MacDoRedraw( updateRgn , cEvent.GetTicks() ) )
316 result = noErr ;
20b69855 317#if wxMAC_USE_CORE_GRAPHICS
e6616741
SC
318 thisWindow->MacSetCGContextRef( NULL ) ;
319 }
320 if ( created )
321 {
322 CGContextRelease( cgContext ) ;
323 }
20b69855 324#endif
c79aad8b 325 }
055a486b
SC
326 if ( allocatedRgn )
327 DisposeRgn( allocatedRgn ) ;
facd6764
SC
328 }
329 break ;
73fe67bd
SC
330 case kEventControlVisibilityChanged :
331 thisWindow->MacVisibilityChanged() ;
332 break ;
333 case kEventControlEnabledStateChanged :
334 thisWindow->MacEnabledStateChanged() ;
335 break ;
336 case kEventControlHiliteChanged :
337 thisWindow->MacHiliteChanged() ;
338 break ;
6449b3a8
SC
339#endif
340 // we emulate this event under Carbon CFM
f1d527c1
SC
341 case kEventControlSetFocusPart :
342 {
343 Boolean focusEverything = false ;
344 ControlPartCode controlPart = cEvent.GetParameter<ControlPartCode>(kEventParamControlPart , typeControlPartCode );
6449b3a8 345#ifdef __WXMAC_OSX__
f1d527c1
SC
346 if ( cEvent.GetParameter<Boolean>(kEventParamControlFocusEverything , &focusEverything ) == noErr )
347 {
348 }
6449b3a8 349#endif
f1d527c1
SC
350 if ( controlPart == kControlFocusNoPart )
351 {
352 #if wxUSE_CARET
353 if ( thisWindow->GetCaret() )
354 {
355 thisWindow->GetCaret()->OnKillFocus();
356 }
357 #endif // wxUSE_CARET
5ca0d812 358 wxFocusEvent event( wxEVT_KILL_FOCUS, thisWindow->GetId());
f1d527c1
SC
359 event.SetEventObject(thisWindow);
360 thisWindow->GetEventHandler()->ProcessEvent(event) ;
361 }
362 else
363 {
364 // panel wants to track the window which was the last to have focus in it
365 wxChildFocusEvent eventFocus(thisWindow);
366 thisWindow->GetEventHandler()->ProcessEvent(eventFocus);
8b573fb8 367
f1d527c1
SC
368 #if wxUSE_CARET
369 if ( thisWindow->GetCaret() )
370 {
371 thisWindow->GetCaret()->OnSetFocus();
372 }
373 #endif // wxUSE_CARET
374
375 wxFocusEvent event(wxEVT_SET_FOCUS, thisWindow->GetId());
376 event.SetEventObject(thisWindow);
377 thisWindow->GetEventHandler()->ProcessEvent(event) ;
378 }
64fec3ab
SC
379 if ( thisWindow->MacIsUserPane() )
380 result = noErr ;
f1d527c1
SC
381 }
382 break ;
f1d527c1
SC
383 case kEventControlHit :
384 {
385 result = thisWindow->MacControlHit( handler , event ) ;
386 }
387 break ;
facd6764
SC
388 default :
389 break ;
390 }
391 return result ;
392}
393
e4727773
SC
394static pascal OSStatus wxMacWindowServiceEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
395{
396 OSStatus result = eventNotHandledErr ;
397
398 wxMacCarbonEvent cEvent( event ) ;
8b573fb8 399
e4727773
SC
400 ControlRef controlRef ;
401 wxWindowMac* thisWindow = (wxWindowMac*) data ;
402 wxTextCtrl* textCtrl = wxDynamicCast( thisWindow , wxTextCtrl ) ;
403 cEvent.GetParameter( kEventParamDirectObject , &controlRef ) ;
404
405 switch( GetEventKind( event ) )
406 {
407 case kEventServiceGetTypes :
408 if( textCtrl )
409 {
410 long from, to ;
411 textCtrl->GetSelection( &from , &to ) ;
412
8b573fb8 413 CFMutableArrayRef copyTypes = 0 , pasteTypes = 0;
e4727773
SC
414 if( from != to )
415 copyTypes = cEvent.GetParameter< CFMutableArrayRef >( kEventParamServiceCopyTypes , typeCFMutableArrayRef ) ;
416 if ( textCtrl->IsEditable() )
417 pasteTypes = cEvent.GetParameter< CFMutableArrayRef >( kEventParamServicePasteTypes , typeCFMutableArrayRef ) ;
8b573fb8
VZ
418
419 static const OSType textDataTypes[] = { kTXNTextData /* , 'utxt' , 'PICT', 'MooV', 'AIFF' */ };
e4727773
SC
420 for ( size_t i = 0 ; i < WXSIZEOF(textDataTypes) ; ++i )
421 {
422 CFStringRef typestring = CreateTypeStringWithOSType(textDataTypes[i]);
423 if ( typestring )
424 {
425 if ( copyTypes )
426 CFArrayAppendValue (copyTypes, typestring) ;
427 if ( pasteTypes )
428 CFArrayAppendValue (pasteTypes, typestring) ;
429 CFRelease( typestring ) ;
430 }
431 }
432 result = noErr ;
433 }
434 break ;
435 case kEventServiceCopy :
436 if ( textCtrl )
437 {
438 long from, to ;
439 textCtrl->GetSelection( &from , &to ) ;
440 wxString val = textCtrl->GetValue() ;
441 val = val.Mid( from , to - from ) ;
442 ScrapRef scrapRef = cEvent.GetParameter< ScrapRef > ( kEventParamScrapRef , typeScrapRef ) ;
443 verify_noerr( ClearScrap( &scrapRef ) ) ;
444 verify_noerr( PutScrapFlavor( scrapRef , kTXNTextData , 0 , val.Length() , val.c_str() ) ) ;
445 result = noErr ;
446 }
447 break ;
448 case kEventServicePaste :
449 if ( textCtrl )
450 {
451 ScrapRef scrapRef = cEvent.GetParameter< ScrapRef > ( kEventParamScrapRef , typeScrapRef ) ;
452 Size textSize, pastedSize ;
453 verify_noerr( GetScrapFlavorSize (scrapRef, kTXNTextData, &textSize) ) ;
454 textSize++ ;
455 char *content = new char[textSize] ;
8b573fb8 456 GetScrapFlavorData (scrapRef, kTXNTextData, &pastedSize, content );
e4727773 457 content[textSize-1] = 0 ;
8ef4d6e2
SC
458#if wxUSE_UNICODE
459 textCtrl->WriteText( wxString( content , wxConvLocal ) );
460#else
e4727773 461 textCtrl->WriteText( wxString( content ) ) ;
8ef4d6e2 462#endif
e4727773
SC
463 delete[] content ;
464 result = noErr ;
465 }
466 break ;
467 }
8b573fb8 468
e4727773 469 return result ;
8b573fb8 470}
e4727773 471
facd6764
SC
472pascal OSStatus wxMacWindowEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
473{
af6b7b80
SC
474 EventRef formerEvent = (EventRef) wxTheApp->MacGetCurrentEvent() ;
475 EventHandlerCallRef formerEventHandlerCallRef = (EventHandlerCallRef) wxTheApp->MacGetCurrentEventHandlerCallRef() ;
476 wxTheApp->MacSetCurrentEvent( event , handler ) ;
facd6764
SC
477 OSStatus result = eventNotHandledErr ;
478
479 switch ( GetEventClass( event ) )
480 {
481 case kEventClassControl :
482 result = wxMacWindowControlEventHandler( handler, event, data ) ;
483 break ;
e4727773
SC
484 case kEventClassService :
485 result = wxMacWindowServiceEventHandler( handler, event , data ) ;
facd6764
SC
486 default :
487 break ;
488 }
af6b7b80 489 wxTheApp->MacSetCurrentEvent( formerEvent, formerEventHandlerCallRef ) ;
facd6764
SC
490 return result ;
491}
492
493DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacWindowEventHandler )
494
20b69855
SC
495#if !TARGET_API_MAC_OSX
496
facd6764
SC
497// ---------------------------------------------------------------------------
498// UserPane events for non OSX builds
499// ---------------------------------------------------------------------------
8b573fb8 500
facd6764
SC
501static pascal void wxMacControlUserPaneDrawProc(ControlRef control, SInt16 part)
502{
503 wxWindow * win = wxFindControlFromMacControl(control) ;
542f604f
SC
504 if ( win )
505 win->MacControlUserPaneDrawProc(part) ;
facd6764 506}
1f1c8bd4 507wxMAC_DEFINE_PROC_GETTER( ControlUserPaneDrawUPP , wxMacControlUserPaneDrawProc ) ;
facd6764
SC
508
509static pascal ControlPartCode wxMacControlUserPaneHitTestProc(ControlRef control, Point where)
510{
511 wxWindow * win = wxFindControlFromMacControl(control) ;
542f604f
SC
512 if ( win )
513 return win->MacControlUserPaneHitTestProc(where.h , where.v) ;
514 else
515 return kControlNoPart ;
facd6764 516}
1f1c8bd4 517wxMAC_DEFINE_PROC_GETTER( ControlUserPaneHitTestUPP , wxMacControlUserPaneHitTestProc ) ;
facd6764
SC
518
519static pascal ControlPartCode wxMacControlUserPaneTrackingProc(ControlRef control, Point startPt, ControlActionUPP actionProc)
520{
521 wxWindow * win = wxFindControlFromMacControl(control) ;
542f604f
SC
522 if ( win )
523 return win->MacControlUserPaneTrackingProc( startPt.h , startPt.v , (void*) actionProc) ;
524 else
525 return kControlNoPart ;
facd6764 526}
1f1c8bd4 527wxMAC_DEFINE_PROC_GETTER( ControlUserPaneTrackingUPP , wxMacControlUserPaneTrackingProc ) ;
facd6764
SC
528
529static pascal void wxMacControlUserPaneIdleProc(ControlRef control)
530{
531 wxWindow * win = wxFindControlFromMacControl(control) ;
542f604f
SC
532 if ( win )
533 win->MacControlUserPaneIdleProc() ;
facd6764 534}
1f1c8bd4 535wxMAC_DEFINE_PROC_GETTER( ControlUserPaneIdleUPP , wxMacControlUserPaneIdleProc ) ;
facd6764
SC
536
537static pascal ControlPartCode wxMacControlUserPaneKeyDownProc(ControlRef control, SInt16 keyCode, SInt16 charCode, SInt16 modifiers)
538{
539 wxWindow * win = wxFindControlFromMacControl(control) ;
542f604f
SC
540 if ( win )
541 return win->MacControlUserPaneKeyDownProc(keyCode,charCode,modifiers) ;
542 else
543 return kControlNoPart ;
facd6764 544}
1f1c8bd4 545wxMAC_DEFINE_PROC_GETTER( ControlUserPaneKeyDownUPP , wxMacControlUserPaneKeyDownProc ) ;
facd6764
SC
546
547static pascal void wxMacControlUserPaneActivateProc(ControlRef control, Boolean activating)
548{
549 wxWindow * win = wxFindControlFromMacControl(control) ;
542f604f
SC
550 if ( win )
551 win->MacControlUserPaneActivateProc(activating) ;
facd6764 552}
1f1c8bd4 553wxMAC_DEFINE_PROC_GETTER( ControlUserPaneActivateUPP , wxMacControlUserPaneActivateProc ) ;
facd6764
SC
554
555static pascal ControlPartCode wxMacControlUserPaneFocusProc(ControlRef control, ControlFocusPart action)
556{
557 wxWindow * win = wxFindControlFromMacControl(control) ;
542f604f
SC
558 if ( win )
559 return win->MacControlUserPaneFocusProc(action) ;
560 else
561 return kControlNoPart ;
facd6764 562}
1f1c8bd4 563wxMAC_DEFINE_PROC_GETTER( ControlUserPaneFocusUPP , wxMacControlUserPaneFocusProc ) ;
facd6764
SC
564
565static pascal void wxMacControlUserPaneBackgroundProc(ControlRef control, ControlBackgroundPtr info)
566{
567 wxWindow * win = wxFindControlFromMacControl(control) ;
542f604f
SC
568 if ( win )
569 win->MacControlUserPaneBackgroundProc(info) ;
facd6764 570}
1f1c8bd4 571wxMAC_DEFINE_PROC_GETTER( ControlUserPaneBackgroundUPP , wxMacControlUserPaneBackgroundProc ) ;
facd6764 572
8b573fb8 573void wxWindowMac::MacControlUserPaneDrawProc(wxInt16 part)
facd6764 574{
bcbd6987
SC
575 RgnHandle rgn = NewRgn() ;
576 GetClip( rgn ) ;
577 wxMacWindowStateSaver sv( this ) ;
578 SectRgn( rgn , (RgnHandle) MacGetVisibleRegion().GetWXHRGN() , rgn ) ;
579 MacDoRedraw( rgn , 0 ) ;
580 DisposeRgn( rgn ) ;
facd6764
SC
581}
582
8b573fb8 583wxInt16 wxWindowMac::MacControlUserPaneHitTestProc(wxInt16 x, wxInt16 y)
facd6764
SC
584{
585 return kControlNoPart ;
586}
587
8b573fb8 588wxInt16 wxWindowMac::MacControlUserPaneTrackingProc(wxInt16 x, wxInt16 y, void* actionProc)
facd6764
SC
589{
590 return kControlNoPart ;
591}
592
8b573fb8 593void wxWindowMac::MacControlUserPaneIdleProc()
facd6764
SC
594{
595}
596
8b573fb8 597wxInt16 wxWindowMac::MacControlUserPaneKeyDownProc(wxInt16 keyCode, wxInt16 charCode, wxInt16 modifiers)
facd6764
SC
598{
599 return kControlNoPart ;
600}
601
8b573fb8 602void wxWindowMac::MacControlUserPaneActivateProc(bool activating)
facd6764
SC
603{
604}
605
8b573fb8 606wxInt16 wxWindowMac::MacControlUserPaneFocusProc(wxInt16 action)
facd6764
SC
607{
608 return kControlNoPart ;
609}
610
8b573fb8 611void wxWindowMac::MacControlUserPaneBackgroundProc(void* info)
facd6764
SC
612{
613}
614
20b69855
SC
615#endif
616
1f1c8bd4
SC
617// ---------------------------------------------------------------------------
618// Scrollbar Tracking for all
619// ---------------------------------------------------------------------------
620
621pascal void wxMacLiveScrollbarActionProc( ControlRef control , ControlPartCode partCode ) ;
622pascal void wxMacLiveScrollbarActionProc( ControlRef control , ControlPartCode partCode )
623{
624 if ( partCode != 0)
625 {
626 wxWindow* wx = wxFindControlFromMacControl( control ) ;
627 if ( wx )
628 {
629 wx->MacHandleControlClick( (WXWidget) control , partCode , true /* stillDown */ ) ;
630 }
631 }
632}
633wxMAC_DEFINE_PROC_GETTER( ControlActionUPP , wxMacLiveScrollbarActionProc ) ;
634
e7549107
SC
635// ===========================================================================
636// implementation
637// ===========================================================================
638
71f2fb52 639#if KEY_wxList_DEPRECATED
facd6764
SC
640wxList wxWinMacControlList(wxKEY_INTEGER);
641
642wxWindow *wxFindControlFromMacControl(ControlRef inControl )
643{
644 wxNode *node = wxWinMacControlList.Find((long)inControl);
645 if (!node)
646 return NULL;
647 return (wxControl *)node->GetData();
648}
649
650void wxAssociateControlWithMacControl(ControlRef inControl, wxWindow *control)
651{
652 // adding NULL ControlRef is (first) surely a result of an error and
653 // (secondly) breaks native event processing
654 wxCHECK_RET( inControl != (ControlRef) NULL, wxT("attempt to add a NULL WindowRef to window list") );
655
656 if ( !wxWinMacControlList.Find((long)inControl) )
657 wxWinMacControlList.Append((long)inControl, control);
658}
659
660void wxRemoveMacControlAssociation(wxWindow *control)
661{
a8683134
SC
662 // remove all associations pointing to us
663 while ( wxWinMacControlList.DeleteObject(control) )
664 {}
facd6764 665}
71f2fb52
RN
666#else
667
668WX_DECLARE_HASH_MAP(ControlRef, wxWindow*, wxPointerHash, wxPointerEqual, MacControlMap);
669
670static MacControlMap wxWinMacControlList;
671
672wxWindow *wxFindControlFromMacControl(ControlRef inControl )
673{
674 MacControlMap::iterator node = wxWinMacControlList.find(inControl);
675
676 return (node == wxWinMacControlList.end()) ? NULL : node->second;
677}
678
679void wxAssociateControlWithMacControl(ControlRef inControl, wxWindow *control)
680{
681 // adding NULL ControlRef is (first) surely a result of an error and
682 // (secondly) breaks native event processing
683 wxCHECK_RET( inControl != (ControlRef) NULL, wxT("attempt to add a NULL WindowRef to window list") );
684
685 wxWinMacControlList[inControl] = control;
686}
687
688void wxRemoveMacControlAssociation(wxWindow *control)
689{
690 // iterate over all the elements in the class
a8683134
SC
691 // is the iterator stable ? as we might have two associations pointing to the same wxWindow
692 // we should go on...
693
694 bool found = true ;
695 while( found )
71f2fb52 696 {
a8683134
SC
697 found = false ;
698 MacControlMap::iterator it;
699 for ( it = wxWinMacControlList.begin(); it != wxWinMacControlList.end(); ++it )
71f2fb52 700 {
a8683134
SC
701 if ( it->second == control )
702 {
703 wxWinMacControlList.erase(it);
704 found = true ;
705 break;
706 }
71f2fb52
RN
707 }
708 }
709}
710#endif // deprecated wxList
facd6764 711
e7549107 712// ----------------------------------------------------------------------------
facd6764 713 // constructors and such
e7549107
SC
714// ----------------------------------------------------------------------------
715
94f9b1f0 716wxWindowMac::wxWindowMac()
8b573fb8
VZ
717{
718 Init();
94f9b1f0
SC
719}
720
721wxWindowMac::wxWindowMac(wxWindowMac *parent,
722 wxWindowID id,
723 const wxPoint& pos ,
724 const wxSize& size ,
725 long style ,
726 const wxString& name )
727{
728 Init();
729 Create(parent, id, pos, size, style, name);
730}
731
e766c8a9 732void wxWindowMac::Init()
519cb848 733{
21fd5529 734 m_peer = NULL ;
79392158 735 m_frozenness = 0 ;
557d6f32 736#if WXWIN_COMPATIBILITY_2_4
e7549107 737 m_backgroundTransparent = FALSE;
557d6f32 738#endif
e7549107
SC
739
740 // as all windows are created with WS_VISIBLE style...
741 m_isShown = TRUE;
742
6264b550
RR
743 m_hScrollBar = NULL ;
744 m_vScrollBar = NULL ;
facd6764
SC
745 m_macBackgroundBrush = wxNullBrush ;
746
facd6764 747 m_macIsUserPane = TRUE;
20b69855
SC
748#if wxMAC_USE_CORE_GRAPHICS
749 m_cgContextRef = NULL ;
750#endif
c6f9fb05
SC
751 // we need a valid font for the encodings
752 wxWindowBase::SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT));
e9576ca5
SC
753}
754
755// Destructor
e766c8a9 756wxWindowMac::~wxWindowMac()
e9576ca5 757{
7de59551
RD
758 SendDestroyEvent();
759
140f2012 760 m_isBeingDeleted = TRUE;
6ed71b4f 761
6449b3a8 762 MacInvalidateBorders() ;
7ebf5540 763
d4380aaf
SC
764#ifndef __WXUNIVERSAL__
765 // VS: make sure there's no wxFrame with last focus set to us:
766 for ( wxWindow *win = GetParent(); win; win = win->GetParent() )
767 {
768 wxFrame *frame = wxDynamicCast(win, wxFrame);
769 if ( frame )
770 {
771 if ( frame->GetLastFocus() == this )
772 {
773 frame->SetLastFocus((wxWindow*)NULL);
774 }
775 break;
776 }
777 }
778#endif // __WXUNIVERSAL__
8b573fb8
VZ
779
780 // destroy children before destroying this window itself
781 DestroyChildren();
782
facd6764
SC
783 // wxRemoveMacControlAssociation( this ) ;
784 // If we delete an item, we should initialize the parent panel,
785 // because it could now be invalid.
786 wxWindow *parent = GetParent() ;
787 if ( parent )
788 {
789 if (parent->GetDefaultItem() == (wxButton*) this)
790 parent->SetDefaultItem(NULL);
791 }
21fd5529 792 if ( m_peer && m_peer->Ok() )
facd6764
SC
793 {
794 // in case the callback might be called during destruction
795 wxRemoveMacControlAssociation( this) ;
5ca0d812
SC
796 // we currently are not using this hook
797 // ::SetControlColorProc( *m_peer , NULL ) ;
798 m_peer->Dispose() ;
facd6764 799 }
d4380aaf 800
facd6764 801 if ( g_MacLastWindow == this )
6264b550 802 {
facd6764 803 g_MacLastWindow = NULL ;
6264b550 804 }
7de59551 805
fd76aa8d
SC
806 wxFrame* frame = wxDynamicCast( wxGetTopLevelParent( this ) , wxFrame ) ;
807 if ( frame )
808 {
e40298d5
JS
809 if ( frame->GetLastFocus() == this )
810 frame->SetLastFocus( NULL ) ;
fd76aa8d 811 }
e7549107 812
42683dfb
SC
813 // delete our drop target if we've got one
814#if wxUSE_DRAG_AND_DROP
815 if ( m_dropTarget != NULL )
816 {
817 delete m_dropTarget;
818 m_dropTarget = NULL;
819 }
820#endif // wxUSE_DRAG_AND_DROP
21fd5529
SC
821 delete m_peer ;
822}
823
8b573fb8
VZ
824WXWidget wxWindowMac::GetHandle() const
825{
826 return (WXWidget) m_peer->GetControlRef() ;
e9576ca5
SC
827}
828
facd6764 829
5ca0d812 830void wxWindowMac::MacInstallEventHandler( WXWidget control )
facd6764 831{
5ca0d812
SC
832 wxAssociateControlWithMacControl( (ControlRef) control , this ) ;
833 InstallControlEventHandler( (ControlRef) control , GetwxMacWindowEventHandlerUPP(),
8b573fb8 834 GetEventTypeCount(eventList), eventList, this,
facd6764 835 (EventHandlerRef *)&m_macControlEventHandler);
4a63451b
SC
836#if !TARGET_API_MAC_OSX
837 if ( (ControlRef) control == m_peer->GetControlRef() )
838 {
1f1c8bd4
SC
839 m_peer->SetData<ControlUserPaneDrawUPP>(kControlEntireControl,kControlUserPaneDrawProcTag,GetwxMacControlUserPaneDrawProc()) ;
840 m_peer->SetData<ControlUserPaneHitTestUPP>(kControlEntireControl,kControlUserPaneHitTestProcTag,GetwxMacControlUserPaneHitTestProc()) ;
841 m_peer->SetData<ControlUserPaneTrackingUPP>(kControlEntireControl,kControlUserPaneTrackingProcTag,GetwxMacControlUserPaneTrackingProc()) ;
842 m_peer->SetData<ControlUserPaneIdleUPP>(kControlEntireControl,kControlUserPaneIdleProcTag,GetwxMacControlUserPaneIdleProc()) ;
843 m_peer->SetData<ControlUserPaneKeyDownUPP>(kControlEntireControl,kControlUserPaneKeyDownProcTag,GetwxMacControlUserPaneKeyDownProc()) ;
844 m_peer->SetData<ControlUserPaneActivateUPP>(kControlEntireControl,kControlUserPaneActivateProcTag,GetwxMacControlUserPaneActivateProc()) ;
845 m_peer->SetData<ControlUserPaneFocusUPP>(kControlEntireControl,kControlUserPaneFocusProcTag,GetwxMacControlUserPaneFocusProc()) ;
846 m_peer->SetData<ControlUserPaneBackgroundUPP>(kControlEntireControl,kControlUserPaneBackgroundProcTag,GetwxMacControlUserPaneBackgroundProc()) ;
4a63451b
SC
847 }
848#endif
facd6764
SC
849
850}
851
e9576ca5 852// Constructor
e766c8a9 853bool wxWindowMac::Create(wxWindowMac *parent, wxWindowID id,
e9576ca5
SC
854 const wxPoint& pos,
855 const wxSize& size,
856 long style,
857 const wxString& name)
858{
e766c8a9 859 wxCHECK_MSG( parent, FALSE, wxT("can't create wxWindowMac without parent") );
e9576ca5 860
e7549107 861 if ( !CreateBase(parent, id, pos, size, style, wxDefaultValidator, name) )
e9576ca5
SC
862 return FALSE;
863
facd6764 864 m_windowVariant = parent->GetWindowVariant() ;
8b573fb8 865
facd6764
SC
866 if ( m_macIsUserPane )
867 {
868 Rect bounds = wxMacGetBoundsForControl( this , pos , size ) ;
8b573fb8 869
ebe86b1e 870 UInt32 features = 0
8b573fb8 871 | kControlSupportsEmbedding
1f1c8bd4
SC
872 | kControlSupportsLiveFeedback
873 | kControlGetsFocusOnClick
8b573fb8
VZ
874// | kControlHasSpecialBackground
875// | kControlSupportsCalcBestRect
1f1c8bd4 876 | kControlHandlesTracking
8b573fb8 877 | kControlSupportsFocus
1f1c8bd4
SC
878 | kControlWantsActivate
879 | kControlWantsIdle
8b573fb8 880 ;
ebe86b1e 881
6449b3a8 882 m_peer = new wxMacControl(this) ;
5ca0d812 883 ::CreateUserPaneControl( MAC_WXHWND(GetParent()->MacGetTopLevelWindowRef()) , &bounds, features , m_peer->GetControlRefAddr() );
8b573fb8 884
facd6764
SC
885
886 MacPostControlCreate(pos,size) ;
facd6764 887 }
e766c8a9 888#ifndef __WXUNIVERSAL__
14c9cbdb
RD
889 // Don't give scrollbars to wxControls unless they ask for them
890 if ( (! IsKindOf(CLASSINFO(wxControl)) && ! IsKindOf(CLASSINFO(wxStatusBar))) ||
891 (IsKindOf(CLASSINFO(wxControl)) && ( style & wxHSCROLL || style & wxVSCROLL)))
6264b550
RR
892 {
893 MacCreateScrollBars( style ) ;
894 }
e766c8a9 895#endif
3dfafdb9
RD
896
897 wxWindowCreateEvent event(this);
7e4a196e 898 GetEventHandler()->AddPendingEvent(event);
3dfafdb9 899
e9576ca5
SC
900 return TRUE;
901}
902
08422003
SC
903void wxWindowMac::MacChildAdded()
904{
905 if ( m_vScrollBar )
906 {
907 m_vScrollBar->Raise() ;
908 }
909 if ( m_hScrollBar )
910 {
911 m_hScrollBar->Raise() ;
912 }
913
914}
915
facd6764
SC
916void wxWindowMac::MacPostControlCreate(const wxPoint& pos, const wxSize& size)
917{
21fd5529 918 wxASSERT_MSG( m_peer != NULL && m_peer->Ok() , wxT("No valid mac control") ) ;
facd6764 919
5ca0d812 920 m_peer->SetReference( (long) this ) ;
488abb22 921 GetParent()->AddChild(this);
facd6764 922
5ca0d812 923 MacInstallEventHandler( (WXWidget) m_peer->GetControlRef() );
facd6764
SC
924
925 ControlRef container = (ControlRef) GetParent()->GetHandle() ;
926 wxASSERT_MSG( container != NULL , wxT("No valid mac container control") ) ;
5ca0d812 927 ::EmbedControl( m_peer->GetControlRef() , container ) ;
08422003 928 GetParent()->MacChildAdded() ;
facd6764
SC
929
930 // adjust font, controlsize etc
931 DoSetWindowVariant( m_windowVariant ) ;
932
5ca0d812 933 m_peer->SetTitle( wxStripMenuCodes(m_label) ) ;
facd6764 934
facd6764 935 if (!m_macIsUserPane)
d3b5db4b
RD
936 {
937 SetInitialBestSize(size);
facd6764
SC
938 }
939
940 SetCursor( *wxSTANDARD_CURSOR ) ;
facd6764
SC
941}
942
943void wxWindowMac::DoSetWindowVariant( wxWindowVariant variant )
944{
23176131
JS
945 // Don't assert, in case we set the window variant before
946 // the window is created
21fd5529 947 // wxASSERT( m_peer->Ok() ) ;
facd6764 948
23176131
JS
949 m_windowVariant = variant ;
950
21fd5529 951 if (m_peer == NULL || !m_peer->Ok())
23176131 952 return;
facd6764 953
8b573fb8 954 ControlSize size ;
facd6764
SC
955 ThemeFontID themeFont = kThemeSystemFont ;
956
957 // we will get that from the settings later
8b573fb8 958 // and make this NORMAL later, but first
facd6764 959 // we have a few calculations that we must fix
8b573fb8 960
facd6764
SC
961 switch ( variant )
962 {
963 case wxWINDOW_VARIANT_NORMAL :
8b573fb8
VZ
964 size = kControlSizeNormal;
965 themeFont = kThemeSystemFont ;
facd6764
SC
966 break ;
967 case wxWINDOW_VARIANT_SMALL :
8b573fb8
VZ
968 size = kControlSizeSmall;
969 themeFont = kThemeSmallSystemFont ;
facd6764
SC
970 break ;
971 case wxWINDOW_VARIANT_MINI :
972 if (UMAGetSystemVersion() >= 0x1030 )
973 {
8b573fb8
VZ
974 // not always defined in the headers
975 size = 3 ;
976 themeFont = 109 ;
facd6764
SC
977 }
978 else
979 {
8b573fb8
VZ
980 size = kControlSizeSmall;
981 themeFont = kThemeSmallSystemFont ;
facd6764
SC
982 }
983 break ;
984 case wxWINDOW_VARIANT_LARGE :
8b573fb8
VZ
985 size = kControlSizeLarge;
986 themeFont = kThemeSystemFont ;
facd6764
SC
987 break ;
988 default:
989 wxFAIL_MSG(_T("unexpected window variant"));
990 break ;
991 }
5ca0d812 992 m_peer->SetData<ControlSize>(kControlEntireControl, kControlSizeTag,&size ) ;
facd6764
SC
993
994 wxFont font ;
995 font.MacCreateThemeFont( themeFont ) ;
996 SetFont( font ) ;
997}
998
8b573fb8 999void wxWindowMac::MacUpdateControlFont()
facd6764 1000{
ac99838a 1001 m_peer->SetFont( GetFont() , GetForegroundColour() , GetWindowStyle() ) ;
8b573fb8 1002 Refresh() ;
facd6764
SC
1003}
1004
1005bool wxWindowMac::SetFont(const wxFont& font)
1006{
d5ccba72 1007 bool retval = wxWindowBase::SetFont( font ) ;
8b573fb8 1008
facd6764 1009 MacUpdateControlFont() ;
8b573fb8 1010
facd6764
SC
1011 return retval;
1012}
1013
1014bool wxWindowMac::SetForegroundColour(const wxColour& col )
1015{
1016 if ( !wxWindowBase::SetForegroundColour(col) )
1017 return false ;
8b573fb8 1018
facd6764 1019 MacUpdateControlFont() ;
8b573fb8 1020
facd6764
SC
1021 return true ;
1022}
1023
1024bool wxWindowMac::SetBackgroundColour(const wxColour& col )
1025{
1026 if ( !wxWindowBase::SetBackgroundColour(col) && m_hasBgCol )
1027 return false ;
1028
1029 wxBrush brush ;
b52acd03
RD
1030 wxColour newCol(GetBackgroundColour());
1031 if ( newCol == wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE) )
facd6764
SC
1032 {
1033 brush.MacSetTheme( kThemeBrushDocumentWindowBackground ) ;
1034 }
b52acd03 1035 else if ( newCol == wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE ) )
facd6764 1036 {
8b573fb8
VZ
1037 brush.MacSetTheme( kThemeBrushDialogBackgroundActive ) ;
1038 }
facd6764
SC
1039 else
1040 {
b52acd03 1041 brush.SetColour( newCol ) ;
facd6764
SC
1042 }
1043 MacSetBackgroundBrush( brush ) ;
8b573fb8 1044
db7a550b 1045 MacUpdateControlFont() ;
8b573fb8 1046
facd6764
SC
1047 return true ;
1048}
1049
7ea087b7
SC
1050void wxWindowMac::MacSetBackgroundBrush( const wxBrush &brush )
1051{
1052 m_macBackgroundBrush = brush ;
1053 m_peer->SetBackground( brush ) ;
1054}
facd6764
SC
1055
1056bool wxWindowMac::MacCanFocus() const
1057{
f6e3849c
SC
1058 // there is currently no way to determine whether the window is running in full keyboard
1059 // access mode, therefore we cannot rely on these features, yet the only other way would be
1060 // to issue a SetKeyboardFocus event and verify after whether it succeeded, this would risk problems
1061 // in event handlers...
f1d527c1 1062 UInt32 features = 0 ;
5ca0d812 1063 m_peer->GetFeatures( & features ) ;
8b573fb8 1064 return features & ( kControlSupportsFocus | kControlGetsFocusOnClick ) ;
facd6764
SC
1065}
1066
1067
e766c8a9 1068void wxWindowMac::SetFocus()
e9576ca5 1069{
6264b550
RR
1070 if ( AcceptsFocus() )
1071 {
7d0cfe71 1072
f1d527c1 1073 wxWindow* former = FindFocus() ;
7d0cfe71
SC
1074 if ( former == this )
1075 return ;
1076
5ca0d812 1077 OSStatus err = m_peer->SetFocus( kControlFocusNextPart ) ;
f1d527c1
SC
1078 // as we cannot rely on the control features to find out whether we are in full keyboard mode, we can only
1079 // leave in case of an error
1080 if ( err == errCouldntSetFocus )
1081 return ;
1082
1083#if !TARGET_API_MAC_OSX
1084 // emulate carbon events when running under carbonlib where they are not natively available
1085 if ( former )
1086 {
1087 EventRef evRef = NULL ;
1088 verify_noerr( MacCreateEvent( NULL , kEventClassControl , kEventControlSetFocusPart , TicksToEventTime( TickCount() ) , kEventAttributeUserEvent ,
1089 &evRef ) );
1090
1091 wxMacCarbonEvent cEvent( evRef ) ;
1092 cEvent.SetParameter<ControlRef>( kEventParamDirectObject , (ControlRef) former->GetHandle() ) ;
1093 cEvent.SetParameter<ControlPartCode>(kEventParamControlPart , typeControlPartCode , kControlFocusNoPart ) ;
8b573fb8 1094
f1d527c1
SC
1095 wxMacWindowEventHandler( NULL , evRef , former ) ;
1096 ReleaseEvent(evRef) ;
6264b550 1097 }
f1d527c1 1098 // send new focus event
6264b550 1099 {
f1d527c1
SC
1100 EventRef evRef = NULL ;
1101 verify_noerr( MacCreateEvent( NULL , kEventClassControl , kEventControlSetFocusPart , TicksToEventTime( TickCount() ) , kEventAttributeUserEvent ,
1102 &evRef ) );
1103
1104 wxMacCarbonEvent cEvent( evRef ) ;
1105 cEvent.SetParameter<ControlRef>( kEventParamDirectObject , (ControlRef) GetHandle() ) ;
1106 cEvent.SetParameter<ControlPartCode>(kEventParamControlPart , typeControlPartCode , kControlFocusNextPart ) ;
8b573fb8 1107
f1d527c1
SC
1108 wxMacWindowEventHandler( NULL , evRef , this ) ;
1109 ReleaseEvent(evRef) ;
6264b550 1110 }
f1d527c1 1111#endif
6264b550 1112 }
e9576ca5
SC
1113}
1114
e9576ca5 1115
4116c221 1116void wxWindowMac::DoCaptureMouse()
e9576ca5 1117{
2a1f999f 1118 wxApp::s_captureWindow = this ;
e9576ca5
SC
1119}
1120
90b959ae
SC
1121wxWindow* wxWindowBase::GetCapture()
1122{
2a1f999f 1123 return wxApp::s_captureWindow ;
90b959ae
SC
1124}
1125
4116c221 1126void wxWindowMac::DoReleaseMouse()
e9576ca5 1127{
2a1f999f 1128 wxApp::s_captureWindow = NULL ;
e9576ca5
SC
1129}
1130
e9576ca5
SC
1131#if wxUSE_DRAG_AND_DROP
1132
e766c8a9 1133void wxWindowMac::SetDropTarget(wxDropTarget *pDropTarget)
e9576ca5 1134{
e40298d5
JS
1135 if ( m_dropTarget != 0 ) {
1136 delete m_dropTarget;
1137 }
6ed71b4f 1138
e40298d5
JS
1139 m_dropTarget = pDropTarget;
1140 if ( m_dropTarget != 0 )
1141 {
1142 // TODO
1143 }
e9576ca5
SC
1144}
1145
1146#endif
1147
1148// Old style file-manager drag&drop
e766c8a9 1149void wxWindowMac::DragAcceptFiles(bool accept)
e9576ca5
SC
1150{
1151 // TODO
1152}
1153
055a486b
SC
1154// Returns the size of the native control. In the case of the toplevel window
1155// this is the content area root control
1156
facd6764 1157void wxWindowMac::MacGetPositionAndSizeFromControl(int& x, int& y,
8b573fb8 1158 int& w, int& h) const
e9576ca5 1159{
1f1c8bd4 1160 wxFAIL_MSG( wxT("Not supported anymore") ) ;
e9576ca5
SC
1161}
1162
055a486b 1163// From a wx position / size calculate the appropriate size of the native control
8b573fb8 1164
facd6764
SC
1165bool wxWindowMac::MacGetBoundsForControl(const wxPoint& pos,
1166 const wxSize& size,
1167 int& x, int& y,
8b573fb8 1168 int& w, int& h , bool adjustOrigin ) const
51abe921 1169{
789ae0cf
SC
1170 bool isCompositing = MacGetTopLevelWindow()->MacUsesCompositing() ;
1171
5ca0d812 1172 // the desired size, minus the border pixels gives the correct size of the control
8b573fb8 1173
facd6764
SC
1174 x = (int)pos.x;
1175 y = (int)pos.y;
1176 // todo the default calls may be used as soon as PostCreateControl Is moved here
29ee02df
SC
1177 w = wxMax(size.x,0) ; // WidthDefault( size.x );
1178 h = wxMax(size.y,0) ; // HeightDefault( size.y ) ;
789ae0cf
SC
1179
1180 if ( !isCompositing )
1181 GetParent()->MacWindowToRootWindow( &x , &y ) ;
5ca0d812
SC
1182
1183 x += MacGetLeftBorderSize() ;
1184 y += MacGetTopBorderSize() ;
1185 w -= MacGetLeftBorderSize() + MacGetRightBorderSize() ;
1186 h -= MacGetTopBorderSize() + MacGetBottomBorderSize() ;
8b573fb8 1187
79392158
SC
1188 if ( adjustOrigin )
1189 AdjustForParentClientOrigin( x , y ) ;
789ae0cf 1190
7ebf5540 1191 // this is in window relative coordinate, as this parent may have a border, its physical position is offset by this border
789ae0cf 1192 if ( !GetParent()->IsTopLevel() )
7ebf5540
SC
1193 {
1194 x -= GetParent()->MacGetLeftBorderSize() ;
1195 y -= GetParent()->MacGetTopBorderSize() ;
1196 }
789ae0cf 1197
facd6764
SC
1198 return true ;
1199}
1200
42ef83fa 1201// Get window size (not client size)
facd6764
SC
1202void wxWindowMac::DoGetSize(int *x, int *y) const
1203{
1f1c8bd4
SC
1204 Rect bounds ;
1205 m_peer->GetRect( &bounds ) ;
8b573fb8 1206
1f1c8bd4
SC
1207 if(x) *x = bounds.right - bounds.left + MacGetLeftBorderSize() + MacGetRightBorderSize() ;
1208 if(y) *y = bounds.bottom - bounds.top + MacGetTopBorderSize() + MacGetBottomBorderSize() ;
facd6764
SC
1209}
1210
42ef83fa 1211// get the position of the bounds of this window in client coordinates of its parent
facd6764
SC
1212void wxWindowMac::DoGetPosition(int *x, int *y) const
1213{
1f1c8bd4
SC
1214 Rect bounds ;
1215 m_peer->GetRect( &bounds ) ;
bc2b0c1b 1216
1f1c8bd4
SC
1217 int x1 = bounds.left ;
1218 int y1 = bounds.top ;
789ae0cf 1219
bc2b0c1b
SC
1220 // get the wx window position from the native one
1221 x1 -= MacGetLeftBorderSize() ;
1222 y1 -= MacGetTopBorderSize() ;
1223
facd6764 1224 if ( !IsTopLevel() )
2b5f62a0 1225 {
facd6764
SC
1226 wxWindow *parent = GetParent();
1227 if ( parent )
8950f7cc 1228 {
1a02aff9
SC
1229 // we must first adjust it to be in window coordinates of the parent, as otherwise it gets lost by the clientareaorigin fix
1230 x1 += parent->MacGetLeftBorderSize() ;
1231 y1 += parent->MacGetTopBorderSize() ;
1232 // and now to client coordinates
facd6764
SC
1233 wxPoint pt(parent->GetClientAreaOrigin());
1234 x1 -= pt.x ;
1235 y1 -= pt.y ;
6ed71b4f 1236 }
2b5f62a0 1237 }
facd6764
SC
1238 if(x) *x = x1 ;
1239 if(y) *y = y1 ;
facd6764 1240}
51abe921 1241
e766c8a9 1242void wxWindowMac::DoScreenToClient(int *x, int *y) const
e9576ca5 1243{
facd6764 1244 WindowRef window = (WindowRef) MacGetTopLevelWindowRef() ;
8b573fb8 1245
facd6764 1246 wxCHECK_RET( window , wxT("TopLevel Window Missing") ) ;
8b573fb8 1247
facd6764
SC
1248 {
1249 Point localwhere = {0,0} ;
519cb848 1250
facd6764
SC
1251 if(x) localwhere.h = * x ;
1252 if(y) localwhere.v = * y ;
8b573fb8 1253
a9de2608 1254 QDGlobalToLocalPoint( GetWindowPort( window ) , &localwhere ) ;
facd6764
SC
1255 if(x) *x = localwhere.h ;
1256 if(y) *y = localwhere.v ;
6ed71b4f 1257
facd6764 1258 }
2078220e 1259 MacRootWindowToWindow( x , y ) ;
8b573fb8 1260
facd6764
SC
1261 wxPoint origin = GetClientAreaOrigin() ;
1262 if(x) *x -= origin.x ;
1263 if(y) *y -= origin.y ;
e9576ca5
SC
1264}
1265
e766c8a9 1266void wxWindowMac::DoClientToScreen(int *x, int *y) const
e9576ca5 1267{
facd6764
SC
1268 WindowRef window = (WindowRef) MacGetTopLevelWindowRef() ;
1269 wxCHECK_RET( window , wxT("TopLevel Window Missing") ) ;
14c9cbdb 1270
facd6764
SC
1271 wxPoint origin = GetClientAreaOrigin() ;
1272 if(x) *x += origin.x ;
1273 if(y) *y += origin.y ;
14c9cbdb 1274
2078220e 1275 MacWindowToRootWindow( x , y ) ;
14c9cbdb 1276
facd6764
SC
1277 {
1278 Point localwhere = { 0,0 };
1279 if(x) localwhere.h = * x ;
1280 if(y) localwhere.v = * y ;
a9de2608 1281 QDLocalToGlobalPoint( GetWindowPort( window ) , &localwhere ) ;
facd6764
SC
1282 if(x) *x = localwhere.h ;
1283 if(y) *y = localwhere.v ;
1284 }
519cb848
SC
1285}
1286
e766c8a9 1287void wxWindowMac::MacClientToRootWindow( int *x , int *y ) const
519cb848 1288{
1c310985
SC
1289 wxPoint origin = GetClientAreaOrigin() ;
1290 if(x) *x += origin.x ;
1291 if(y) *y += origin.y ;
14c9cbdb 1292
1c310985
SC
1293 MacWindowToRootWindow( x , y ) ;
1294}
1295
1296void wxWindowMac::MacRootWindowToClient( int *x , int *y ) const
1297{
1c310985 1298 MacRootWindowToWindow( x , y ) ;
facd6764
SC
1299
1300 wxPoint origin = GetClientAreaOrigin() ;
1c310985
SC
1301 if(x) *x -= origin.x ;
1302 if(y) *y -= origin.y ;
1303}
1304
1305void wxWindowMac::MacWindowToRootWindow( int *x , int *y ) const
1306{
5ca0d812 1307 wxPoint pt ;
facd6764
SC
1308 if ( x ) pt.x = *x ;
1309 if ( y ) pt.y = *y ;
1310
125c7984 1311 if ( !IsTopLevel() )
5437ff47
RD
1312 {
1313 wxTopLevelWindowMac* top = MacGetTopLevelWindow();
1314 if (top)
5ca0d812
SC
1315 {
1316 pt.x -= MacGetLeftBorderSize() ;
1317 pt.y -= MacGetTopBorderSize() ;
1318 wxMacControl::Convert( &pt , m_peer , top->m_peer ) ;
1319 }
5437ff47 1320 }
8b573fb8 1321
facd6764
SC
1322 if ( x ) *x = (int) pt.x ;
1323 if ( y ) *y = (int) pt.y ;
facd6764
SC
1324}
1325
1326void wxWindowMac::MacWindowToRootWindow( short *x , short *y ) const
1327{
1328 int x1 , y1 ;
1329 if ( x ) x1 = *x ;
1330 if ( y ) y1 = *y ;
1331 MacWindowToRootWindow( &x1 , &y1 ) ;
1332 if ( x ) *x = x1 ;
1333 if ( y ) *y = y1 ;
519cb848
SC
1334}
1335
1c310985 1336void wxWindowMac::MacRootWindowToWindow( int *x , int *y ) const
519cb848 1337{
5ca0d812 1338 wxPoint pt ;
facd6764
SC
1339 if ( x ) pt.x = *x ;
1340 if ( y ) pt.y = *y ;
1341
125c7984 1342 if ( !IsTopLevel() )
5ca0d812
SC
1343 {
1344 wxMacControl::Convert( &pt , MacGetTopLevelWindow()->m_peer , m_peer ) ;
1345 pt.x += MacGetLeftBorderSize() ;
1346 pt.y += MacGetTopBorderSize() ;
1347 }
8b573fb8 1348
facd6764
SC
1349 if ( x ) *x = (int) pt.x ;
1350 if ( y ) *y = (int) pt.y ;
e9576ca5
SC
1351}
1352
facd6764 1353void wxWindowMac::MacRootWindowToWindow( short *x , short *y ) const
e9576ca5 1354{
facd6764
SC
1355 int x1 , y1 ;
1356 if ( x ) x1 = *x ;
1357 if ( y ) y1 = *y ;
1358 MacRootWindowToWindow( &x1 , &y1 ) ;
1359 if ( x ) *x = x1 ;
1360 if ( y ) *y = y1 ;
1361}
6ed71b4f 1362
29281095
SC
1363void wxWindowMac::MacGetContentAreaInset( int &left , int &top , int &right , int &bottom )
1364{
1365 RgnHandle rgn = NewRgn() ;
5ca0d812 1366 if ( m_peer->GetRegion( kControlContentMetaPart , rgn ) == noErr )
29281095 1367 {
1f1c8bd4
SC
1368 Rect structure ;
1369 Rect content ;
29281095 1370 GetRegionBounds( rgn , &content ) ;
1f1c8bd4
SC
1371 m_peer->GetRect( &structure ) ;
1372 OffsetRect( &structure, -structure.left , -structure.top ) ;
1373
1374 left = content.left - structure.left ;
1375 top = content.top - structure.top ;
1376 right = structure.right - content.right ;
1377 bottom = structure.bottom - content.bottom ;
29281095
SC
1378 }
1379 else
1380 {
1f1c8bd4 1381 left = top = right = bottom = 0 ;
29281095 1382 }
7596e51d 1383 DisposeRgn( rgn ) ;
29281095
SC
1384}
1385
facd6764
SC
1386wxSize wxWindowMac::DoGetSizeFromClientSize( const wxSize & size ) const
1387{
1388 wxSize sizeTotal = size;
1389
1390 RgnHandle rgn = NewRgn() ;
1391
5ca0d812 1392 if ( m_peer->GetRegion( kControlContentMetaPart , rgn ) == noErr )
6618870d 1393 {
1f1c8bd4
SC
1394 Rect content ;
1395 Rect structure ;
facd6764 1396 GetRegionBounds( rgn , &content ) ;
789ae0cf 1397
1f1c8bd4
SC
1398 m_peer->GetRect( &structure ) ;
1399 // structure is in parent coordinates, but we only need width and height, so it's ok
6ed71b4f 1400
1f1c8bd4
SC
1401 sizeTotal.x += (structure.right - structure.left) - (content.right - content.left) ;
1402 sizeTotal.y += (structure.bottom - structure.top) - (content.bottom - content.top ) ;
1403 }
1404 DisposeRgn( rgn ) ;
6ed71b4f 1405
facd6764
SC
1406 sizeTotal.x += MacGetLeftBorderSize( ) + MacGetRightBorderSize( ) ;
1407 sizeTotal.y += MacGetTopBorderSize( ) + MacGetBottomBorderSize( ) ;
6ed71b4f 1408
facd6764 1409 return sizeTotal;
e9576ca5
SC
1410}
1411
1412
1413// Get size *available for subwindows* i.e. excluding menu bar etc.
e766c8a9 1414void wxWindowMac::DoGetClientSize(int *x, int *y) const
e9576ca5 1415{
9453cf2b 1416 int ww, hh;
6ed71b4f 1417
facd6764
SC
1418 RgnHandle rgn = NewRgn() ;
1419 Rect content ;
5ca0d812 1420 if ( m_peer->GetRegion( kControlContentMetaPart , rgn ) == noErr )
facd6764
SC
1421 {
1422 GetRegionBounds( rgn , &content ) ;
facd6764
SC
1423 }
1424 else
1425 {
5ca0d812 1426 m_peer->GetRect( &content ) ;
facd6764 1427 }
7596e51d 1428 DisposeRgn( rgn ) ;
789ae0cf 1429
facd6764
SC
1430 ww = content.right - content.left ;
1431 hh = content.bottom - content.top ;
6ed71b4f 1432
db7a550b
SC
1433 if (m_hScrollBar && m_hScrollBar->IsShown() )
1434 {
1435 hh -= m_hScrollBar->GetSize().y ; // MAC_SCROLLBAR_SIZE ;
1436 }
1437 if (m_vScrollBar && m_vScrollBar->IsShown() )
1438 {
1439 ww -= m_vScrollBar->GetSize().x ; // MAC_SCROLLBAR_SIZE;
1440 }
e40298d5
JS
1441 if(x) *x = ww;
1442 if(y) *y = hh;
facd6764
SC
1443
1444}
1445
1446bool wxWindowMac::SetCursor(const wxCursor& cursor)
1447{
1448 if (m_cursor == cursor)
1449 return FALSE;
1450
1451 if (wxNullCursor == cursor)
1452 {
1453 if ( ! wxWindowBase::SetCursor( *wxSTANDARD_CURSOR ) )
1454 return FALSE ;
1455 }
1456 else
1457 {
1458 if ( ! wxWindowBase::SetCursor( cursor ) )
1459 return FALSE ;
1460 }
1461
1462 wxASSERT_MSG( m_cursor.Ok(),
1463 wxT("cursor must be valid after call to the base version"));
8b573fb8
VZ
1464
1465
2d1760d3 1466 wxWindowMac *mouseWin = 0 ;
facd6764 1467 {
789ae0cf
SC
1468 wxTopLevelWindowMac *tlw = MacGetTopLevelWindow() ;
1469 WindowRef window = (WindowRef) ( tlw ? tlw->MacGetWindowRef() : 0 ) ;
2d1760d3
SC
1470 CGrafPtr savePort ;
1471 Boolean swapped = QDSwapPort( GetWindowPort( window ) , &savePort ) ;
8b573fb8 1472
2d1760d3
SC
1473 // TODO If we ever get a GetCurrentEvent.. replacement for the mouse
1474 // position, use it...
8b573fb8 1475
2d1760d3
SC
1476 Point pt ;
1477 GetMouse( &pt ) ;
1478 ControlPartCode part ;
1479 ControlRef control ;
789ae0cf 1480 control = wxMacFindControlUnderMouse( tlw , pt , window , &part ) ;
2d1760d3
SC
1481 if ( control )
1482 mouseWin = wxFindControlFromMacControl( control ) ;
8b573fb8 1483
2d1760d3
SC
1484 if ( swapped )
1485 QDSwapPort( savePort , NULL ) ;
facd6764 1486 }
2d1760d3
SC
1487
1488 if ( mouseWin == this && !wxIsBusy() )
facd6764
SC
1489 {
1490 m_cursor.MacInstall() ;
1491 }
1492
1493 return TRUE ;
519cb848
SC
1494}
1495
facd6764
SC
1496#if wxUSE_MENUS
1497bool wxWindowMac::DoPopupMenu(wxMenu *menu, int x, int y)
1498{
1499 menu->SetInvokingWindow(this);
1500 menu->UpdateUI();
8b573fb8 1501
971562cb
VS
1502 if ( x == -1 && y == -1 )
1503 {
1504 wxPoint mouse = wxGetMousePosition();
1505 x = mouse.x; y = mouse.y;
1506 }
1507 else
1508 {
1509 ClientToScreen( &x , &y ) ;
1510 }
facd6764
SC
1511
1512 menu->MacBeforeDisplay( true ) ;
1513 long menuResult = ::PopUpMenuSelect((MenuHandle) menu->GetHMenu() ,y,x, 0) ;
1514 if ( HiWord(menuResult) != 0 )
1515 {
1516 MenuCommand id ;
1517 GetMenuItemCommandID( GetMenuHandle(HiWord(menuResult)) , LoWord(menuResult) , &id ) ;
1518 wxMenuItem* item = NULL ;
1519 wxMenu* realmenu ;
1520 item = menu->FindItem(id, &realmenu) ;
1521 if (item->IsCheckable())
1522 {
1523 item->Check( !item->IsChecked() ) ;
1524 }
1525 menu->SendEvent( id , item->IsCheckable() ? item->IsChecked() : -1 ) ;
1526 }
1527 menu->MacAfterDisplay( true ) ;
1528
1529 menu->SetInvokingWindow(NULL);
1530
1531 return TRUE;
1532}
1533#endif
51abe921
SC
1534
1535// ----------------------------------------------------------------------------
1536// tooltips
1537// ----------------------------------------------------------------------------
1538
1539#if wxUSE_TOOLTIPS
1540
e766c8a9 1541void wxWindowMac::DoSetToolTip(wxToolTip *tooltip)
51abe921
SC
1542{
1543 wxWindowBase::DoSetToolTip(tooltip);
6ed71b4f 1544
6264b550
RR
1545 if ( m_tooltip )
1546 m_tooltip->SetWindow(this);
51abe921
SC
1547}
1548
1549#endif // wxUSE_TOOLTIPS
1550
6449b3a8
SC
1551void wxWindowMac::MacInvalidateBorders()
1552{
1553 if ( m_peer == NULL )
1554 return ;
1555
1556 bool vis = MacIsReallyShown() ;
1557 if ( !vis )
1558 return ;
1559
1560 int outerBorder = MacGetLeftBorderSize() ;
1561 if ( m_peer->NeedsFocusRect() && m_peer->HasFocus() )
1562 outerBorder += 4 ;
1563
1564 if ( outerBorder == 0 )
1565 return ;
1566
1567 // now we know that we have something to do at all
1568
1569 // as the borders are drawn on the parent we have to properly invalidate all these areas
1570 RgnHandle updateInner = NewRgn() ,
1571 updateOuter = NewRgn() ;
1572
1573 // this rectangle is in HIViewCoordinates under OSX and in Window Coordinates under Carbon
1574 Rect rect ;
1575 m_peer->GetRect( &rect ) ;
1576 RectRgn( updateInner , &rect ) ;
1577 InsetRect( &rect , -outerBorder , -outerBorder ) ;
1578 RectRgn( updateOuter , &rect ) ;
1579 DiffRgn( updateOuter , updateInner ,updateOuter ) ;
1580#ifdef __WXMAC_OSX__
1f1c8bd4 1581 GetParent()->m_peer->SetNeedsDisplay( updateOuter ) ;
6449b3a8
SC
1582#else
1583 WindowRef tlw = (WindowRef) MacGetTopLevelWindowRef() ;
1584 if ( tlw )
1585 InvalWindowRgn( tlw , updateOuter ) ;
1586#endif
1587 DisposeRgn(updateOuter) ;
1588 DisposeRgn(updateInner) ;
1589/*
1590 RgnHandle updateInner = NewRgn() , updateOuter = NewRgn() ;
1591 RectRgn( updateInner , &rect ) ;
1592 InsetRect( &rect , -4 , -4 ) ;
1593 RectRgn( updateOuter , &rect ) ;
1594 DiffRgn( updateOuter , updateInner ,updateOuter ) ;
1595 wxPoint parent(0,0);
1596 GetParent()->MacWindowToRootWindow( &parent.x , &parent.y ) ;
1597 parent -= GetParent()->GetClientAreaOrigin() ;
1598 OffsetRgn( updateOuter , -parent.x , -parent.y ) ;
1599 GetParent()->m_peer->SetNeedsDisplay( true , updateOuter ) ;
1600 DisposeRgn(updateOuter) ;
1601 DisposeRgn(updateInner) ;
1602*/
1603/*
1604 if ( m_peer )
1605 {
1606 // deleting a window while it is shown invalidates the region occupied by border or
1607 // focus
1608
1609 if ( IsShown() && ( outerBorder > 0 ) )
1610 {
1611 // as the borders are drawn on the parent we have to properly invalidate all these areas
1612 RgnHandle updateInner = NewRgn() , updateOuter = NewRgn() , updateTotal = NewRgn() ;
1613
1614 Rect rect ;
1615
1616 m_peer->GetRect( &rect ) ;
1617 RectRgn( updateInner , &rect ) ;
1618 InsetRect( &rect , -outerBorder , -outerBorder ) ;
1619 RectRgn( updateOuter , &rect ) ;
1620 DiffRgn( updateOuter , updateInner ,updateOuter ) ;
1621 wxPoint parent(0,0);
1622 GetParent()->MacWindowToRootWindow( &parent.x , &parent.y ) ;
1623 parent -= GetParent()->GetClientAreaOrigin() ;
1624 OffsetRgn( updateOuter , -parent.x , -parent.y ) ;
1625 CopyRgn( updateOuter , updateTotal ) ;
1626
1627 GetParent()->m_peer->SetNeedsDisplay( true , updateTotal ) ;
1628 DisposeRgn(updateOuter) ;
1629 DisposeRgn(updateInner) ;
1630 DisposeRgn(updateTotal) ;
1631 }
1632 }
1633*/
1634#if 0
1635 Rect r = wxMacGetBoundsForControl(this , wxPoint( actualX,actualY), wxSize( actualWidth, actualHeight ) , false ) ;
1636
1637 int outerBorder = MacGetLeftBorderSize() ;
1638 if ( m_peer->NeedsFocusRect() && m_peer->HasFocus() )
1639 outerBorder += 4 ;
1640
1641 if ( vis && ( outerBorder > 0 ) )
1642 {
1643 // as the borders are drawn on the parent we have to properly invalidate all these areas
1644 RgnHandle updateInner = NewRgn() , updateOuter = NewRgn() , updateTotal = NewRgn() ;
1645
1646 Rect rect ;
1647
1648 m_peer->GetRect( &rect ) ;
1649 RectRgn( updateInner , &rect ) ;
1650 InsetRect( &rect , -outerBorder , -outerBorder ) ;
1651 RectRgn( updateOuter , &rect ) ;
1652 DiffRgn( updateOuter , updateInner ,updateOuter ) ;
1653 /*
1654 wxPoint parent(0,0);
1655#if TARGET_API_MAC_OSX
1656 // no offsetting needed when compositing
1657#else
1658 GetParent()->MacWindowToRootWindow( &parent.x , &parent.y ) ;
1659 parent -= GetParent()->GetClientAreaOrigin() ;
1660 OffsetRgn( updateOuter , -parent.x , -parent.y ) ;
1661#endif
1662 */
1663 CopyRgn( updateOuter , updateTotal ) ;
1664
1665 rect = r ;
1666 RectRgn( updateInner , &rect ) ;
1667 InsetRect( &rect , -outerBorder , -outerBorder ) ;
1668 RectRgn( updateOuter , &rect ) ;
1669 DiffRgn( updateOuter , updateInner ,updateOuter ) ;
1670/*
1671 OffsetRgn( updateOuter , -parent.x , -parent.y ) ;
1672*/
1673 UnionRgn( updateOuter , updateTotal , updateTotal ) ;
1674
1f1c8bd4 1675 GetParent()->m_peer->SetNeedsDisplay( updateTotal ) ;
6449b3a8
SC
1676 DisposeRgn(updateOuter) ;
1677 DisposeRgn(updateInner) ;
1678 DisposeRgn(updateTotal) ;
1679 }
1680#endif
1681}
1682
e766c8a9 1683void wxWindowMac::DoMoveWindow(int x, int y, int width, int height)
51abe921 1684{
db7a550b 1685 // this is never called for a toplevel window, so we know we have a parent
facd6764 1686 int former_x , former_y , former_w, former_h ;
db7a550b
SC
1687
1688 // Get true coordinates of former position
facd6764
SC
1689 DoGetPosition( &former_x , &former_y ) ;
1690 DoGetSize( &former_w , &former_h ) ;
db7a550b
SC
1691
1692 wxWindow *parent = GetParent();
1693 if ( parent )
1694 {
1695 wxPoint pt(parent->GetClientAreaOrigin());
1696 former_x += pt.x ;
1697 former_y += pt.y ;
1698 }
6ed71b4f 1699
29ee02df
SC
1700 int actualWidth = width ;
1701 int actualHeight = height ;
e40298d5
JS
1702 int actualX = x;
1703 int actualY = y;
6ed71b4f 1704
14c9cbdb 1705 if ((m_minWidth != -1) && (actualWidth < m_minWidth))
6264b550 1706 actualWidth = m_minWidth;
14c9cbdb 1707 if ((m_minHeight != -1) && (actualHeight < m_minHeight))
6264b550 1708 actualHeight = m_minHeight;
14c9cbdb 1709 if ((m_maxWidth != -1) && (actualWidth > m_maxWidth))
6264b550 1710 actualWidth = m_maxWidth;
14c9cbdb 1711 if ((m_maxHeight != -1) && (actualHeight > m_maxHeight))
c0624ca2 1712 actualHeight = m_maxHeight;
6ed71b4f 1713
6264b550
RR
1714 bool doMove = false ;
1715 bool doResize = false ;
6ed71b4f 1716
6264b550
RR
1717 if ( actualX != former_x || actualY != former_y )
1718 {
1719 doMove = true ;
1720 }
1721 if ( actualWidth != former_w || actualHeight != former_h )
1722 {
1723 doResize = true ;
1724 }
6ed71b4f 1725
6264b550
RR
1726 if ( doMove || doResize )
1727 {
1f1c8bd4
SC
1728 // as the borders are drawn outside the native control, we adjust now
1729
1730 wxRect bounds( wxPoint( actualX + MacGetLeftBorderSize() ,actualY + MacGetTopBorderSize() ),
1731 wxSize( actualWidth - (MacGetLeftBorderSize() + MacGetRightBorderSize()) ,
1732 actualHeight - (MacGetTopBorderSize() + MacGetBottomBorderSize()) ) ) ;
1733
1734 Rect r ;
1735 wxMacRectToNative( &bounds , &r ) ;
1736
1737 if ( !GetParent()->IsTopLevel() )
1738 {
1739 wxMacWindowToNative( GetParent() , &r ) ;
1740 }
8b573fb8 1741
6449b3a8 1742 MacInvalidateBorders() ;
789ae0cf 1743
8b573fb8 1744 m_peer->SetRect( &r ) ;
5ca0d812 1745
91ae6e3a
SC
1746 if ( doMove )
1747 wxWindowMac::MacSuperChangedPosition() ; // like this only children will be notified
1748
6449b3a8
SC
1749 MacInvalidateBorders() ;
1750
6264b550
RR
1751 MacRepositionScrollBars() ;
1752 if ( doMove )
1753 {
facd6764 1754 wxPoint point(actualX,actualY);
6264b550
RR
1755 wxMoveEvent event(point, m_windowId);
1756 event.SetEventObject(this);
1757 GetEventHandler()->ProcessEvent(event) ;
1758 }
1759 if ( doResize )
1760 {
e40298d5 1761 MacRepositionScrollBars() ;
facd6764 1762 wxSize size(actualWidth, actualHeight);
e40298d5
JS
1763 wxSizeEvent event(size, m_windowId);
1764 event.SetEventObject(this);
1765 GetEventHandler()->ProcessEvent(event);
6264b550
RR
1766 }
1767 }
6ed71b4f 1768
954fc50b
SC
1769}
1770
facd6764
SC
1771wxSize wxWindowMac::DoGetBestSize() const
1772{
eb69d46e
SC
1773 if ( m_macIsUserPane || IsTopLevel() )
1774 return wxWindowBase::DoGetBestSize() ;
8b573fb8 1775
facd6764 1776 Rect bestsize = { 0 , 0 , 0 , 0 } ;
facd6764 1777 int bestWidth, bestHeight ;
5ca0d812 1778 m_peer->GetBestRect( &bestsize ) ;
facd6764
SC
1779
1780 if ( EmptyRect( &bestsize ) )
1781 {
facd6764
SC
1782 bestsize.left = bestsize.top = 0 ;
1783 bestsize.right = 16 ;
1784 bestsize.bottom = 16 ;
1785 if ( IsKindOf( CLASSINFO( wxScrollBar ) ) )
1786 {
1787 bestsize.bottom = 16 ;
1788 }
e3e817d4 1789#if wxUSE_SPINBTN
facd6764
SC
1790 else if ( IsKindOf( CLASSINFO( wxSpinButton ) ) )
1791 {
8b573fb8 1792 bestsize.bottom = 24 ;
facd6764 1793 }
e3e817d4 1794#endif // wxUSE_SPINBTN
facd6764
SC
1795 else
1796 {
8b573fb8 1797 // return wxWindowBase::DoGetBestSize() ;
facd6764
SC
1798 }
1799 }
1800
1801 bestWidth = bestsize.right - bestsize.left ;
1802 bestHeight = bestsize.bottom - bestsize.top ;
1803 if ( bestHeight < 10 )
1804 bestHeight = 13 ;
8b573fb8 1805
facd6764
SC
1806 return wxSize(bestWidth, bestHeight);
1807}
1808
1809
954fc50b
SC
1810// set the size of the window: if the dimensions are positive, just use them,
1811// but if any of them is equal to -1, it means that we must find the value for
1812// it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in
1813// which case -1 is a valid value for x and y)
1814//
1815// If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate
1816// the width/height to best suit our contents, otherwise we reuse the current
1817// width/height
1818void wxWindowMac::DoSetSize(int x, int y, int width, int height, int sizeFlags)
1819{
1820 // get the current size and position...
1821 int currentX, currentY;
1822 GetPosition(&currentX, &currentY);
6ed71b4f 1823
954fc50b
SC
1824 int currentW,currentH;
1825 GetSize(&currentW, &currentH);
6ed71b4f 1826
954fc50b
SC
1827 // ... and don't do anything (avoiding flicker) if it's already ok
1828 if ( x == currentX && y == currentY &&
769ac869 1829 width == currentW && height == currentH && ( height != -1 && width != -1 ) )
954fc50b 1830 {
facd6764 1831 // TODO REMOVE
6264b550 1832 MacRepositionScrollBars() ; // we might have a real position shift
954fc50b
SC
1833 return;
1834 }
6ed71b4f 1835
954fc50b
SC
1836 if ( x == -1 && !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE) )
1837 x = currentX;
1838 if ( y == -1 && !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE) )
1839 y = currentY;
6ed71b4f 1840
954fc50b 1841 AdjustForParentClientOrigin(x, y, sizeFlags);
6ed71b4f 1842
954fc50b
SC
1843 wxSize size(-1, -1);
1844 if ( width == -1 )
1845 {
1846 if ( sizeFlags & wxSIZE_AUTO_WIDTH )
1847 {
1848 size = DoGetBestSize();
1849 width = size.x;
1850 }
1851 else
1852 {
1853 // just take the current one
1854 width = currentW;
1855 }
1856 }
6ed71b4f 1857
954fc50b
SC
1858 if ( height == -1 )
1859 {
1860 if ( sizeFlags & wxSIZE_AUTO_HEIGHT )
1861 {
1862 if ( size.x == -1 )
1863 {
1864 size = DoGetBestSize();
1865 }
1866 //else: already called DoGetBestSize() above
6ed71b4f 1867
954fc50b
SC
1868 height = size.y;
1869 }
1870 else
1871 {
1872 // just take the current one
1873 height = currentH;
1874 }
1875 }
6ed71b4f 1876
954fc50b 1877 DoMoveWindow(x, y, width, height);
6ed71b4f 1878
e9576ca5 1879}
519cb848 1880
e766c8a9 1881wxPoint wxWindowMac::GetClientAreaOrigin() const
e9576ca5 1882{
facd6764
SC
1883 RgnHandle rgn = NewRgn() ;
1884 Rect content ;
04d4e684 1885 if ( m_peer->GetRegion( kControlContentMetaPart , rgn ) == noErr )
21638402
SC
1886 {
1887 GetRegionBounds( rgn , &content ) ;
1888 }
1889 else
1890 {
1891 content.left = content.top = 0 ;
1892 }
facd6764 1893 DisposeRgn( rgn ) ;
facd6764
SC
1894 return wxPoint( content.left + MacGetLeftBorderSize( ) , content.top + MacGetTopBorderSize( ) );
1895}
1896
1897void wxWindowMac::DoSetClientSize(int clientwidth, int clientheight)
1898{
1899 if ( clientheight != -1 || clientheight != -1 )
1900 {
1901 int currentclientwidth , currentclientheight ;
1902 int currentwidth , currentheight ;
1903
1904 GetClientSize( &currentclientwidth , &currentclientheight ) ;
1905 GetSize( &currentwidth , &currentheight ) ;
1906
1907 DoSetSize( -1 , -1 , currentwidth + clientwidth - currentclientwidth ,
1908 currentheight + clientheight - currentclientheight , wxSIZE_USE_EXISTING ) ;
1909 }
e9576ca5
SC
1910}
1911
d84afea9 1912void wxWindowMac::SetTitle(const wxString& title)
e9576ca5 1913{
facd6764
SC
1914 m_label = wxStripMenuCodes(title) ;
1915
21fd5529 1916 if ( m_peer && m_peer->Ok() )
facd6764 1917 {
5ca0d812 1918 m_peer->SetTitle( m_label ) ;
facd6764
SC
1919 }
1920 Refresh() ;
519cb848
SC
1921}
1922
d84afea9 1923wxString wxWindowMac::GetTitle() const
519cb848 1924{
ed60b502 1925 return m_label ;
519cb848
SC
1926}
1927
8ab50549
SC
1928bool wxWindowMac::Show(bool show)
1929{
542f604f 1930 bool former = MacIsReallyShown() ;
8ab50549
SC
1931 if ( !wxWindowBase::Show(show) )
1932 return FALSE;
8b573fb8 1933
8ab50549 1934 // TODO use visibilityChanged Carbon Event for OSX
2c899c20
SC
1935 if ( m_peer )
1936 {
2c899c20 1937 m_peer->SetVisibility( show , true ) ;
2c899c20 1938 }
542f604f
SC
1939 if ( former != MacIsReallyShown() )
1940 MacPropagateVisibilityChanged() ;
8ab50549
SC
1941 return TRUE;
1942}
1943
1944bool wxWindowMac::Enable(bool enable)
1945{
21fd5529 1946 wxASSERT( m_peer->Ok() ) ;
542f604f 1947 bool former = MacIsReallyEnabled() ;
8ab50549
SC
1948 if ( !wxWindowBase::Enable(enable) )
1949 return FALSE;
1950
5ca0d812 1951 m_peer->Enable( enable ) ;
8ab50549
SC
1952
1953 if ( former != MacIsReallyEnabled() )
1954 MacPropagateEnabledStateChanged() ;
1955 return TRUE;
1956}
1957
8b573fb8 1958//
8ab50549
SC
1959// status change propagations (will be not necessary for OSX later )
1960//
1961
facd6764
SC
1962void wxWindowMac::MacPropagateVisibilityChanged()
1963{
73fe67bd 1964#if !TARGET_API_MAC_OSX
facd6764 1965 MacVisibilityChanged() ;
8b573fb8 1966
71f2fb52 1967 wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
facd6764
SC
1968 while ( node )
1969 {
1970 wxWindowMac *child = node->GetData();
1971 if ( child->IsShown() )
1972 child->MacPropagateVisibilityChanged( ) ;
1973 node = node->GetNext();
1974 }
73fe67bd 1975#endif
facd6764
SC
1976}
1977
8ab50549 1978void wxWindowMac::MacPropagateEnabledStateChanged( )
e9576ca5 1979{
73fe67bd 1980#if !TARGET_API_MAC_OSX
8ab50549 1981 MacEnabledStateChanged() ;
8b573fb8 1982
71f2fb52 1983 wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
8ab50549
SC
1984 while ( node )
1985 {
1986 wxWindowMac *child = node->GetData();
1987 if ( child->IsEnabled() )
1988 child->MacPropagateEnabledStateChanged() ;
1989 node = node->GetNext();
1990 }
73fe67bd 1991#endif
8ab50549
SC
1992}
1993
1994void wxWindowMac::MacPropagateHiliteChanged( )
1995{
73fe67bd 1996#if !TARGET_API_MAC_OSX
8ab50549 1997 MacHiliteChanged() ;
8b573fb8 1998
71f2fb52 1999 wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
8ab50549
SC
2000 while ( node )
2001 {
2002 wxWindowMac *child = node->GetData();
2003 // if ( child->IsEnabled() )
2004 child->MacPropagateHiliteChanged() ;
2005 node = node->GetNext();
2006 }
73fe67bd 2007#endif
8ab50549
SC
2008}
2009
2010//
2011// status change notifications
8b573fb8 2012//
8ab50549 2013
8b573fb8 2014void wxWindowMac::MacVisibilityChanged()
8ab50549
SC
2015{
2016}
2017
8b573fb8 2018void wxWindowMac::MacHiliteChanged()
8ab50549
SC
2019{
2020}
2021
8b573fb8 2022void wxWindowMac::MacEnabledStateChanged()
8ab50549 2023{
facd6764 2024}
e7549107 2025
8ab50549
SC
2026//
2027// status queries on the inherited window's state
2028//
2029
8b573fb8 2030bool wxWindowMac::MacIsReallyShown()
facd6764
SC
2031{
2032 // only under OSX the visibility of the TLW is taken into account
66ffb23b
SC
2033 if ( m_isBeingDeleted )
2034 return false ;
2035
facd6764 2036#if TARGET_API_MAC_OSX
aa522e33
SC
2037 if ( m_peer && m_peer->Ok() )
2038 return m_peer->IsVisible();
2039#endif
facd6764
SC
2040 wxWindow* win = this ;
2041 while( win->IsShown() )
2042 {
2043 if ( win->IsTopLevel() )
2044 return true ;
8b573fb8 2045
facd6764
SC
2046 win = win->GetParent() ;
2047 if ( win == NULL )
2048 return true ;
8b573fb8 2049
facd6764
SC
2050 } ;
2051 return false ;
facd6764 2052}
4241baae 2053
8b573fb8 2054bool wxWindowMac::MacIsReallyEnabled()
facd6764 2055{
5ca0d812 2056 return m_peer->IsEnabled() ;
facd6764
SC
2057}
2058
8b573fb8 2059bool wxWindowMac::MacIsReallyHilited()
c809f3be 2060{
5ca0d812 2061 return m_peer->IsActive();
c809f3be
SC
2062}
2063
8b573fb8 2064void wxWindowMac::MacFlashInvalidAreas()
002c9672
SC
2065{
2066#if TARGET_API_MAC_OSX
2067 HIViewFlashDirtyArea( (WindowRef) MacGetTopLevelWindowRef() ) ;
2068#endif
2069}
2070
8ab50549
SC
2071//
2072//
2073//
2074
e766c8a9 2075int wxWindowMac::GetCharHeight() const
e9576ca5 2076{
6264b550
RR
2077 wxClientDC dc ( (wxWindowMac*)this ) ;
2078 return dc.GetCharHeight() ;
e9576ca5
SC
2079}
2080
e766c8a9 2081int wxWindowMac::GetCharWidth() const
e9576ca5 2082{
6264b550
RR
2083 wxClientDC dc ( (wxWindowMac*)this ) ;
2084 return dc.GetCharWidth() ;
e9576ca5
SC
2085}
2086
e766c8a9 2087void wxWindowMac::GetTextExtent(const wxString& string, int *x, int *y,
e7549107 2088 int *descent, int *externalLeading, const wxFont *theFont ) const
e9576ca5 2089{
e7549107
SC
2090 const wxFont *fontToUse = theFont;
2091 if ( !fontToUse )
2092 fontToUse = &m_font;
14c9cbdb 2093
e766c8a9 2094 wxClientDC dc( (wxWindowMac*) this ) ;
7c74e7fe 2095 long lx,ly,ld,le ;
5fde6fcc 2096 dc.GetTextExtent( string , &lx , &ly , &ld, &le, (wxFont *)fontToUse ) ;
2f1ae414 2097 if ( externalLeading )
6264b550 2098 *externalLeading = le ;
2f1ae414 2099 if ( descent )
6264b550 2100 *descent = ld ;
2f1ae414 2101 if ( x )
6264b550 2102 *x = lx ;
2f1ae414 2103 if ( y )
6264b550 2104 *y = ly ;
e9576ca5
SC
2105}
2106
0a67a93b 2107/*
14c9cbdb 2108 * Rect is given in client coordinates, for further reading, read wxTopLevelWindowMac::InvalidateRect
1c310985
SC
2109 * we always intersect with the entire window, not only with the client area
2110 */
14c9cbdb 2111
e766c8a9 2112void wxWindowMac::Refresh(bool eraseBack, const wxRect *rect)
e9576ca5 2113{
065ab451
SC
2114 if ( m_peer == NULL )
2115 return ;
8b573fb8 2116
1f1c8bd4
SC
2117 if ( !MacIsReallyShown() )
2118 return ;
789ae0cf 2119
1f1c8bd4 2120 if ( rect )
1e8cde71 2121 {
1f1c8bd4
SC
2122 Rect r ;
2123 wxMacRectToNative( rect , &r ) ;
2124 m_peer->SetNeedsDisplay( &r ) ;
facd6764 2125 }
1f1c8bd4 2126 else
9a456218 2127 {
1f1c8bd4 2128 m_peer->SetNeedsDisplay() ;
e9576ca5 2129 }
facd6764
SC
2130}
2131
79392158
SC
2132void wxWindowMac::Freeze()
2133{
2134#if TARGET_API_MAC_OSX
2135 if ( !m_frozenness++ )
2136 {
52ef5c3c
RD
2137 if ( m_peer && m_peer->Ok() )
2138 m_peer->SetDrawingEnabled( false ) ;
79392158
SC
2139 }
2140#endif
2141}
2142
b175b96b 2143
79392158
SC
2144void wxWindowMac::Thaw()
2145{
2146#if TARGET_API_MAC_OSX
2147 wxASSERT_MSG( m_frozenness > 0, _T("Thaw() without matching Freeze()") );
2148
2149 if ( !--m_frozenness )
2150 {
52ef5c3c
RD
2151 if ( m_peer && m_peer->Ok() )
2152 {
2153 m_peer->SetDrawingEnabled( true ) ;
2154 m_peer->InvalidateWithChildren() ;
2155 }
79392158
SC
2156 }
2157#endif
2158}
2159
e766c8a9 2160wxWindowMac *wxGetActiveWindow()
e9576ca5 2161{
519cb848 2162 // actually this is a windows-only concept
e9576ca5
SC
2163 return NULL;
2164}
2165
e9576ca5 2166// Coordinates relative to the window
e766c8a9 2167void wxWindowMac::WarpPointer (int x_pos, int y_pos)
e9576ca5 2168{
e40298d5 2169 // We really don't move the mouse programmatically under Mac.
e9576ca5
SC
2170}
2171
facd6764 2172void wxWindowMac::OnEraseBackground(wxEraseEvent& event)
e9576ca5 2173{
be346c26 2174#if TARGET_API_MAC_OSX
789ae0cf 2175 if ( MacGetTopLevelWindow()->MacUsesCompositing() && (m_macBackgroundBrush.Ok() == false || m_macBackgroundBrush.GetStyle() == wxTRANSPARENT ) )
94abc21f 2176 {
facd6764 2177 event.Skip() ;
94abc21f
SC
2178 }
2179 else
be346c26 2180#endif
7ebf5540 2181 {
8b573fb8 2182 event.GetDC()->Clear() ;
7ebf5540 2183 }
1c310985
SC
2184}
2185
2186void wxWindowMac::OnNcPaint( wxNcPaintEvent& event )
2187{
af6b7b80 2188 event.Skip() ;
e9576ca5
SC
2189}
2190
e766c8a9 2191int wxWindowMac::GetScrollPos(int orient) const
e9576ca5 2192{
1c310985
SC
2193 if ( orient == wxHORIZONTAL )
2194 {
2195 if ( m_hScrollBar )
2196 return m_hScrollBar->GetThumbPosition() ;
2197 }
2198 else
2199 {
2200 if ( m_vScrollBar )
2201 return m_vScrollBar->GetThumbPosition() ;
2202 }
e9576ca5
SC
2203 return 0;
2204}
2205
2206// This now returns the whole range, not just the number
2207// of positions that we can scroll.
e766c8a9 2208int wxWindowMac::GetScrollRange(int orient) const
e9576ca5 2209{
1c310985
SC
2210 if ( orient == wxHORIZONTAL )
2211 {
2212 if ( m_hScrollBar )
2213 return m_hScrollBar->GetRange() ;
2214 }
2215 else
2216 {
2217 if ( m_vScrollBar )
2218 return m_vScrollBar->GetRange() ;
2219 }
e9576ca5
SC
2220 return 0;
2221}
2222
e766c8a9 2223int wxWindowMac::GetScrollThumb(int orient) const
e9576ca5 2224{
1c310985
SC
2225 if ( orient == wxHORIZONTAL )
2226 {
2227 if ( m_hScrollBar )
2228 return m_hScrollBar->GetThumbSize() ;
2229 }
2230 else
2231 {
2232 if ( m_vScrollBar )
2233 return m_vScrollBar->GetThumbSize() ;
2234 }
e9576ca5
SC
2235 return 0;
2236}
2237
e766c8a9 2238void wxWindowMac::SetScrollPos(int orient, int pos, bool refresh)
e9576ca5 2239{
1c310985 2240 if ( orient == wxHORIZONTAL )
6264b550 2241 {
1c310985
SC
2242 if ( m_hScrollBar )
2243 m_hScrollBar->SetThumbPosition( pos ) ;
6264b550
RR
2244 }
2245 else
2246 {
1c310985
SC
2247 if ( m_vScrollBar )
2248 m_vScrollBar->SetThumbPosition( pos ) ;
6264b550 2249 }
2f1ae414
SC
2250}
2251
c79aad8b
SC
2252//
2253// we draw borders and grow boxes, are already set up and clipped in the current port / cgContextRef
2254// our own window origin is at leftOrigin/rightOrigin
2255//
2256
2257void wxWindowMac::MacPaintBorders( int leftOrigin , int rightOrigin )
2f1ae414 2258{
1c310985 2259 if( IsTopLevel() )
6264b550 2260 return ;
8b573fb8 2261
fd926bcc 2262 Rect rect ;
c79aad8b
SC
2263 bool hasFocus = m_peer->NeedsFocusRect() && m_peer->HasFocus() ;
2264 bool hasBothScrollbars = ( m_hScrollBar && m_hScrollBar->IsShown()) && ( m_vScrollBar && m_vScrollBar->IsShown()) ;
2265
8b573fb8 2266 m_peer->GetRect( &rect ) ;
8f39b6c4
SC
2267 // back to the surrounding frame rectangle
2268 InsetRect( &rect, -1 , -1 ) ;
fd926bcc 2269
c79aad8b 2270#if wxMAC_USE_CORE_GRAPHICS && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3
91ae6e3a 2271 if ( UMAGetSystemVersion() >= 0x1030 )
c79aad8b 2272 {
8f39b6c4
SC
2273 CGRect cgrect = CGRectMake( rect.left , rect.top , rect.right - rect.left ,
2274 rect.bottom - rect.top ) ;
2275
c79aad8b
SC
2276 HIThemeFrameDrawInfo info ;
2277 memset( &info, 0 , sizeof( info ) ) ;
2278
2279 info.version = 0 ;
2280 info.kind = 0 ;
2281 info.state = IsEnabled() ? kThemeStateActive : kThemeStateInactive ;
2282 info.isFocused = hasFocus ;
c79aad8b
SC
2283
2284 CGContextRef cgContext = (CGContextRef) GetParent()->MacGetCGContextRef() ;
2285 wxASSERT( cgContext ) ;
2286
2287 if (HasFlag(wxRAISED_BORDER) || HasFlag( wxSUNKEN_BORDER) || HasFlag(wxDOUBLE_BORDER) )
2288 {
c79aad8b 2289 info.kind = kHIThemeFrameTextFieldSquare ;
8f39b6c4 2290 HIThemeDrawFrame( &cgrect , &info , cgContext , kHIThemeOrientationNormal ) ;
c79aad8b
SC
2291 }
2292 else if (HasFlag(wxSIMPLE_BORDER))
2293 {
c79aad8b 2294 info.kind = kHIThemeFrameListBox ;
c79aad8b
SC
2295 HIThemeDrawFrame( &cgrect , &info , cgContext , kHIThemeOrientationNormal ) ;
2296 }
2297 else if ( hasFocus )
2298 {
c79aad8b
SC
2299 HIThemeDrawFocusRect( &cgrect , true , cgContext , kHIThemeOrientationNormal ) ;
2300 }
2301
2302 m_peer->GetRect( &rect ) ;
2303 if ( hasBothScrollbars )
2304 {
c79aad8b 2305 int size = m_hScrollBar->GetWindowVariant() == wxWINDOW_VARIANT_NORMAL ? 16 : 12 ;
8f39b6c4
SC
2306 CGRect cgrect = CGRectMake( rect.right - size , rect.bottom - size , size , size ) ;
2307 CGPoint cgpoint = CGPointMake( rect.right - size , rect.bottom - size ) ;
c79aad8b
SC
2308 HIThemeGrowBoxDrawInfo info ;
2309 memset( &info, 0 , sizeof( info ) ) ;
2310 info.version = 0 ;
2311 info.state = IsEnabled() ? kThemeStateActive : kThemeStateInactive ;
2312 info.kind = kHIThemeGrowBoxKindNone ;
2313 info.size = kHIThemeGrowBoxSizeNormal ;
2314 info.direction = kThemeGrowRight | kThemeGrowDown ;
2315 HIThemeDrawGrowBox( &cgpoint , &info , cgContext , kHIThemeOrientationNormal ) ;
2316 }
2317 }
2318 else
2319#endif
fd926bcc
SC
2320 {
2321 wxTopLevelWindowMac* top = MacGetTopLevelWindow();
1f1c8bd4 2322 if (top )
fd926bcc
SC
2323 {
2324 wxPoint pt(0,0) ;
2325 wxMacControl::Convert( &pt , GetParent()->m_peer , top->m_peer ) ;
1f1c8bd4 2326 OffsetRect( &rect , pt.x , pt.y ) ;
fd926bcc 2327 }
8b573fb8 2328
c79aad8b
SC
2329 if (HasFlag(wxRAISED_BORDER) || HasFlag( wxSUNKEN_BORDER) || HasFlag(wxDOUBLE_BORDER) )
2330 {
8f39b6c4 2331 DrawThemeEditTextFrame(&rect,IsEnabled() ? kThemeStateActive : kThemeStateInactive) ;
c79aad8b
SC
2332 }
2333 else if (HasFlag(wxSIMPLE_BORDER))
2334 {
c79aad8b
SC
2335 DrawThemeListBoxFrame(&rect,IsEnabled() ? kThemeStateActive : kThemeStateInactive) ;
2336 }
2337
2338 if ( hasFocus )
2339 {
8f39b6c4 2340 DrawThemeFocusRect( &rect , true ) ;
c79aad8b 2341 }
8f39b6c4 2342
c79aad8b
SC
2343 if ( hasBothScrollbars )
2344 {
2345 // GetThemeStandaloneGrowBoxBounds
2346 //DrawThemeStandaloneNoGrowBox
2347 }
eec462f8 2348 }
8208e181
SC
2349}
2350
abda5788
SC
2351void wxWindowMac::RemoveChild( wxWindowBase *child )
2352{
2353 if ( child == m_hScrollBar )
2354 m_hScrollBar = NULL ;
2355 if ( child == m_vScrollBar )
2356 m_vScrollBar = NULL ;
14c9cbdb 2357
abda5788
SC
2358 wxWindowBase::RemoveChild( child ) ;
2359}
2360
e9576ca5 2361// New function that will replace some of the above.
e766c8a9 2362void wxWindowMac::SetScrollbar(int orient, int pos, int thumbVisible,
e9576ca5
SC
2363 int range, bool refresh)
2364{
e40298d5
JS
2365 if ( orient == wxHORIZONTAL )
2366 {
2367 if ( m_hScrollBar )
6264b550 2368 {
e40298d5 2369 if ( range == 0 || thumbVisible >= range )
6264b550 2370 {
e40298d5
JS
2371 if ( m_hScrollBar->IsShown() )
2372 m_hScrollBar->Show(false) ;
2373 }
2374 else
2375 {
2376 if ( !m_hScrollBar->IsShown() )
2377 m_hScrollBar->Show(true) ;
6264b550 2378 }
11ca2edf 2379 m_hScrollBar->SetScrollbar( pos , thumbVisible , range , thumbVisible , refresh ) ;
6264b550 2380 }
e40298d5
JS
2381 }
2382 else
2383 {
2384 if ( m_vScrollBar )
6264b550 2385 {
e40298d5 2386 if ( range == 0 || thumbVisible >= range )
6264b550 2387 {
e40298d5
JS
2388 if ( m_vScrollBar->IsShown() )
2389 m_vScrollBar->Show(false) ;
2390 }
2391 else
2392 {
2393 if ( !m_vScrollBar->IsShown() )
2394 m_vScrollBar->Show(true) ;
6264b550 2395 }
11ca2edf 2396 m_vScrollBar->SetScrollbar( pos , thumbVisible , range , thumbVisible , refresh ) ;
6264b550 2397 }
e40298d5
JS
2398 }
2399 MacRepositionScrollBars() ;
e9576ca5
SC
2400}
2401
2402// Does a physical scroll
e766c8a9 2403void wxWindowMac::ScrollWindow(int dx, int dy, const wxRect *rect)
e9576ca5 2404{
ba87f54c
SC
2405 if( dx == 0 && dy ==0 )
2406 return ;
8b573fb8 2407
6264b550
RR
2408 int width , height ;
2409 GetClientSize( &width , &height ) ;
adb8a71b 2410#if TARGET_API_MAC_OSX
92346151
SC
2411 if ( 1 /* m_peer->IsCompositing() */ )
2412 {
002c9672 2413 // note there currently is a bug in OSX which makes inefficient refreshes in case an entire control
8b573fb8 2414 // area is scrolled, this does not occur if width and height are 2 pixels less,
002c9672 2415 // TODO write optimal workaround
42ef83fa 2416 wxRect scrollrect( MacGetLeftBorderSize() , MacGetTopBorderSize() , width , height ) ;
8b573fb8 2417 if ( rect )
adb8a71b 2418 {
5ca0d812 2419 scrollrect.Intersect( *rect ) ;
adb8a71b 2420 }
5ca0d812 2421 if ( m_peer->GetNeedsDisplay() )
002c9672
SC
2422 {
2423 // becuase HIViewScrollRect does not scroll the already invalidated area we have two options
2424 // either immediate redraw or full invalidate
2425#if 1
2426 // is the better overall solution, as it does not slow down scrolling
1f1c8bd4 2427 m_peer->SetNeedsDisplay() ;
002c9672 2428#else
8b573fb8 2429 // this would be the preferred version for fast drawing controls
92346151 2430
f474cc8c
SC
2431#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3
2432 if( UMAGetSystemVersion() >= 0x1030 && m_peer->IsCompositing() )
42ef83fa 2433 HIViewRender(m_peer->GetControlRef()) ;
f474cc8c
SC
2434 else
2435#endif
2436 Update() ;
002c9672
SC
2437#endif
2438 }
84e5d27d
SC
2439 // as the native control might be not a 0/0 wx window coordinates, we have to offset
2440 scrollrect.Offset( -MacGetLeftBorderSize() , -MacGetTopBorderSize() ) ;
92346151
SC
2441 m_peer->ScrollRect( (&scrollrect) , dx , dy ) ;
2442
2443 // becuase HIViewScrollRect does not scroll the already invalidated area we have two options
2444 // either immediate redraw or full invalidate
2445#if 0
2446 // is the better overall solution, as it does not slow down scrolling
2447 m_peer->SetNeedsDisplay() ;
adb8a71b 2448#else
92346151
SC
2449 // this would be the preferred version for fast drawing controls
2450
f474cc8c
SC
2451#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3
2452 if( UMAGetSystemVersion() >= 0x1030 && m_peer->IsCompositing() )
2453 HIViewRender(m_peer->GetControlRef()) ;
2454 else
2455#endif
2456 Update() ;
2457
92346151
SC
2458#endif
2459 }
2460 else
2461#endif
2462 {
6ed71b4f 2463
facd6764 2464 wxPoint pos;
8b573fb8 2465 pos.x = pos.y = 0;
430e1eed 2466
facd6764 2467 Rect scrollrect;
6264b550 2468 RgnHandle updateRgn = NewRgn() ;
430e1eed 2469
adb8a71b 2470 {
430e1eed
SC
2471 wxClientDC dc(this) ;
2472 wxMacPortSetter helper(&dc) ;
8b573fb8 2473
92346151
SC
2474 m_peer->GetRectInWindowCoords( &scrollrect ) ;
2475 //scrollrect.top += MacGetTopBorderSize() ;
2476 //scrollrect.left += MacGetLeftBorderSize() ;
430e1eed
SC
2477 scrollrect.bottom = scrollrect.top + height ;
2478 scrollrect.right = scrollrect.left + width ;
8b573fb8 2479
430e1eed
SC
2480 if ( rect )
2481 {
2482 Rect r = { dc.YLOG2DEVMAC(rect->y) , dc.XLOG2DEVMAC(rect->x) , dc.YLOG2DEVMAC(rect->y + rect->height) ,
2483 dc.XLOG2DEVMAC(rect->x + rect->width) } ;
2484 SectRect( &scrollrect , &r , &scrollrect ) ;
2485 }
2486 ScrollRect( &scrollrect , dx , dy , updateRgn ) ;
20b69855
SC
2487
2488 // now scroll the former update region as well and add the new update region
2489
2490 WindowRef rootWindow = (WindowRef) MacGetTopLevelWindowRef() ;
2491 RgnHandle formerUpdateRgn = NewRgn() ;
2492 RgnHandle scrollRgn = NewRgn() ;
2493 RectRgn( scrollRgn , &scrollrect ) ;
2494 GetWindowUpdateRgn( rootWindow , formerUpdateRgn ) ;
2495 Point pt = {0,0} ;
2496 LocalToGlobal( &pt ) ;
2497 OffsetRgn( formerUpdateRgn , -pt.h , -pt.v ) ;
2498 SectRgn( formerUpdateRgn , scrollRgn , formerUpdateRgn ) ;
2499 if ( !EmptyRgn( formerUpdateRgn ) )
2500 {
2501 MacOffsetRgn( formerUpdateRgn , dx , dy ) ;
2502 SectRgn( formerUpdateRgn , scrollRgn , formerUpdateRgn ) ;
2503 InvalWindowRgn(rootWindow , formerUpdateRgn ) ;
2504 }
2505 InvalWindowRgn(rootWindow , updateRgn ) ;
2506 DisposeRgn( updateRgn ) ;
2507 DisposeRgn( formerUpdateRgn ) ;
2508 DisposeRgn( scrollRgn ) ;
ba87f54c 2509 }
92346151 2510 Update() ;
6264b550 2511 }
6ed71b4f 2512
71f2fb52 2513 for (wxWindowList::compatibility_iterator node = GetChildren().GetFirst(); node; node = node->GetNext())
6264b550 2514 {
9bd1404d 2515 wxWindowMac *child = node->GetData();
6264b550
RR
2516 if (child == m_vScrollBar) continue;
2517 if (child == m_hScrollBar) continue;
2518 if (child->IsTopLevel()) continue;
6ed71b4f 2519
6264b550
RR
2520 int x,y;
2521 child->GetPosition( &x, &y );
2522 int w,h;
2523 child->GetSize( &w, &h );
00f55394
SC
2524 if (rect)
2525 {
2526 wxRect rc(x,y,w,h);
2527 if (rect->Intersects(rc))
2528 child->SetSize( x+dx, y+dy, w, h );
2529 }
2530 else
2531 {
8b573fb8
VZ
2532 child->SetSize( x+dx, y+dy, w, h );
2533 }
6264b550 2534 }
e9576ca5
SC
2535}
2536
e766c8a9 2537void wxWindowMac::MacOnScroll(wxScrollEvent &event )
7c74e7fe 2538{
687706f5 2539 if ( event.GetEventObject() == m_vScrollBar || event.GetEventObject() == m_hScrollBar )
6264b550
RR
2540 {
2541 wxScrollWinEvent wevent;
2542 wevent.SetPosition(event.GetPosition());
2543 wevent.SetOrientation(event.GetOrientation());
687706f5
KH
2544 wevent.SetEventObject(this);
2545
2546 if (event.GetEventType() == wxEVT_SCROLL_TOP)
2547 wevent.SetEventType( wxEVT_SCROLLWIN_TOP );
2548 else if (event.GetEventType() == wxEVT_SCROLL_BOTTOM)
2549 wevent.SetEventType( wxEVT_SCROLLWIN_BOTTOM );
2550 else if (event.GetEventType() == wxEVT_SCROLL_LINEUP)
2551 wevent.SetEventType( wxEVT_SCROLLWIN_LINEUP );
2552 else if (event.GetEventType() == wxEVT_SCROLL_LINEDOWN)
2553 wevent.SetEventType( wxEVT_SCROLLWIN_LINEDOWN );
2554 else if (event.GetEventType() == wxEVT_SCROLL_PAGEUP)
2555 wevent.SetEventType( wxEVT_SCROLLWIN_PAGEUP );
2556 else if (event.GetEventType() == wxEVT_SCROLL_PAGEDOWN)
2557 wevent.SetEventType( wxEVT_SCROLLWIN_PAGEDOWN );
2558 else if (event.GetEventType() == wxEVT_SCROLL_THUMBTRACK)
2559 wevent.SetEventType( wxEVT_SCROLLWIN_THUMBTRACK );
2560 else if (event.GetEventType() == wxEVT_SCROLL_THUMBRELEASE)
2561 wevent.SetEventType( wxEVT_SCROLLWIN_THUMBRELEASE );
6ed71b4f
VZ
2562
2563 GetEventHandler()->ProcessEvent(wevent);
7c74e7fe
SC
2564 }
2565}
2566
e9576ca5 2567// Get the window with the focus
0fe02759 2568wxWindowMac *wxWindowBase::DoFindFocus()
e9576ca5 2569{
f1d527c1
SC
2570 ControlRef control ;
2571 GetKeyboardFocus( GetUserFocusWindow() , &control ) ;
2572 return wxFindControlFromMacControl( control ) ;
519cb848
SC
2573}
2574
e766c8a9 2575void wxWindowMac::OnSetFocus(wxFocusEvent& event)
7810c95b
SC
2576{
2577 // panel wants to track the window which was the last to have focus in it,
2578 // so we want to set ourselves as the window which last had focus
2579 //
2580 // notice that it's also important to do it upwards the tree becaus
2581 // otherwise when the top level panel gets focus, it won't set it back to
2582 // us, but to some other sibling
6ed71b4f 2583
c1fb8167
SC
2584 // CS:don't know if this is still needed:
2585 //wxChildFocusEvent eventFocus(this);
2586 //(void)GetEventHandler()->ProcessEvent(eventFocus);
7810c95b 2587
5ca0d812
SC
2588 if ( MacGetTopLevelWindow() && m_peer->NeedsFocusRect() )
2589 {
ff3795ee 2590 #if !wxMAC_USE_CORE_GRAPHICS
788e118f 2591 wxMacWindowStateSaver sv( this ) ;
6449b3a8
SC
2592 Rect rect ;
2593 m_peer->GetRect( &rect ) ;
8f39b6c4
SC
2594