1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/mac/carbon/window.cpp
3 // Purpose: wxWindowMac
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
14 #include "wx/window.h"
23 #include "wx/dcclient.h"
24 #include "wx/button.h"
26 #include "wx/dialog.h"
27 #include "wx/settings.h"
28 #include "wx/msgdlg.h"
29 #include "wx/scrolbar.h"
30 #include "wx/statbox.h"
31 #include "wx/textctrl.h"
32 #include "wx/toolbar.h"
33 #include "wx/layout.h"
34 #include "wx/statusbr.h"
35 #include "wx/menuitem.h"
36 #include "wx/treectrl.h"
37 #include "wx/listctrl.h"
40 #include "wx/tooltip.h"
41 #include "wx/spinctrl.h"
42 #include "wx/geometry.h"
45 #include "wx/listctrl.h"
49 #include "wx/treectrl.h"
57 #include "wx/popupwin.h"
60 #if wxUSE_DRAG_AND_DROP
64 #include "wx/mac/uma.h"
66 #define MAC_SCROLLBAR_SIZE 15
67 #define MAC_SMALL_SCROLLBAR_SIZE 11
71 #ifdef __WXUNIVERSAL__
72 IMPLEMENT_ABSTRACT_CLASS(wxWindowMac
, wxWindowBase
)
74 IMPLEMENT_DYNAMIC_CLASS(wxWindow
, wxWindowBase
)
77 BEGIN_EVENT_TABLE(wxWindowMac
, wxWindowBase
)
78 EVT_NC_PAINT(wxWindowMac::OnNcPaint
)
79 EVT_ERASE_BACKGROUND(wxWindowMac::OnEraseBackground
)
80 EVT_PAINT(wxWindowMac::OnPaint
)
81 EVT_MOUSE_EVENTS(wxWindowMac::OnMouseEvent
)
84 #define wxMAC_DEBUG_REDRAW 0
85 #ifndef wxMAC_DEBUG_REDRAW
86 #define wxMAC_DEBUG_REDRAW 0
89 // ---------------------------------------------------------------------------
90 // Utility Routines to move between different coordinate systems
91 // ---------------------------------------------------------------------------
94 * Right now we have the following setup :
95 * a border that is not part of the native control is always outside the
96 * control's border (otherwise we loose all native intelligence, future ways
97 * may be to have a second embedding control responsible for drawing borders
98 * and backgrounds eventually)
99 * so all this border calculations have to be taken into account when calling
100 * native methods or getting native oriented data
101 * so we have three coordinate systems here
102 * wx client coordinates
103 * wx window coordinates (including window frames)
108 // originating from native control
112 void wxMacNativeToWindow( const wxWindow
* window
, RgnHandle handle
)
114 OffsetRgn( handle
, window
->MacGetLeftBorderSize() , window
->MacGetTopBorderSize() ) ;
117 void wxMacNativeToWindow( const wxWindow
* window
, Rect
*rect
)
119 OffsetRect( rect
, window
->MacGetLeftBorderSize() , window
->MacGetTopBorderSize() ) ;
123 // directed towards native control
126 void wxMacWindowToNative( const wxWindow
* window
, RgnHandle handle
)
128 OffsetRgn( handle
, -window
->MacGetLeftBorderSize() , -window
->MacGetTopBorderSize() );
131 void wxMacWindowToNative( const wxWindow
* window
, Rect
*rect
)
133 OffsetRect( rect
, -window
->MacGetLeftBorderSize() , -window
->MacGetTopBorderSize() ) ;
136 // ---------------------------------------------------------------------------
138 // ---------------------------------------------------------------------------
140 static const EventTypeSpec eventList
[] =
142 { kEventClassCommand
, kEventProcessCommand
} ,
143 { kEventClassCommand
, kEventCommandUpdateStatus
} ,
145 { kEventClassControl
, kEventControlGetClickActivation
} ,
146 { kEventClassControl
, kEventControlHit
} ,
148 { kEventClassTextInput
, kEventTextInputUnicodeForKeyEvent
} ,
149 { kEventClassTextInput
, kEventTextInputUpdateActiveInputArea
} ,
151 { kEventClassControl
, kEventControlDraw
} ,
153 { kEventClassControl
, kEventControlVisibilityChanged
} ,
154 { kEventClassControl
, kEventControlEnabledStateChanged
} ,
155 { kEventClassControl
, kEventControlHiliteChanged
} ,
157 { kEventClassControl
, kEventControlActivate
} ,
158 { kEventClassControl
, kEventControlDeactivate
} ,
160 { kEventClassControl
, kEventControlSetFocusPart
} ,
161 { kEventClassControl
, kEventControlFocusPartChanged
} ,
163 { kEventClassService
, kEventServiceGetTypes
},
164 { kEventClassService
, kEventServiceCopy
},
165 { kEventClassService
, kEventServicePaste
},
167 // { kEventClassControl , kEventControlInvalidateForSizeChange } , // 10.3 only
168 // { kEventClassControl , kEventControlBoundsChanged } ,
171 static pascal OSStatus
wxMacWindowControlEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
173 OSStatus result
= eventNotHandledErr
;
174 static wxWindowMac
* targetFocusWindow
= NULL
;
175 static wxWindowMac
* formerFocusWindow
= NULL
;
177 wxMacCarbonEvent
cEvent( event
) ;
179 ControlRef controlRef
;
180 wxWindowMac
* thisWindow
= (wxWindowMac
*) data
;
182 cEvent
.GetParameter( kEventParamDirectObject
, &controlRef
) ;
184 switch ( GetEventKind( event
) )
186 case kEventControlDraw
:
188 RgnHandle updateRgn
= NULL
;
189 RgnHandle allocatedRgn
= NULL
;
190 wxRegion visRegion
= thisWindow
->MacGetVisibleRegion() ;
192 if ( cEvent
.GetParameter
<RgnHandle
>(kEventParamRgnHandle
, &updateRgn
) != noErr
)
194 HIShapeGetAsQDRgn( visRegion
.GetWXHRGN(), updateRgn
);
198 if ( thisWindow
->MacGetLeftBorderSize() != 0 || thisWindow
->MacGetTopBorderSize() != 0 )
200 // as this update region is in native window locals we must adapt it to wx window local
201 allocatedRgn
= NewRgn() ;
202 CopyRgn( updateRgn
, allocatedRgn
) ;
204 // hide the given region by the new region that must be shifted
205 wxMacNativeToWindow( thisWindow
, allocatedRgn
) ;
206 updateRgn
= allocatedRgn
;
210 #if wxMAC_DEBUG_REDRAW
211 if ( thisWindow
->MacIsUserPane() )
213 static float color
= 0.5 ;
216 CGContextRef cgContext
= cEvent
.GetParameter
<CGContextRef
>(kEventParamCGContextRef
) ;
218 HIViewGetBounds( controlRef
, &bounds
);
219 CGContextSetRGBFillColor( cgContext
, channel
== 0 ? color
: 0.5 ,
220 channel
== 1 ? color
: 0.5 , channel
== 2 ? color
: 0.5 , 1 );
221 CGContextFillRect( cgContext
, bounds
);
234 bool created
= false ;
235 CGContextRef cgContext
= NULL
;
236 OSStatus err
= cEvent
.GetParameter
<CGContextRef
>(kEventParamCGContextRef
, &cgContext
) ;
239 wxFAIL_MSG("Unable to retrieve CGContextRef");
242 thisWindow
->MacSetCGContextRef( cgContext
) ;
245 wxMacCGContextStateSaver
sg( cgContext
) ;
246 CGFloat alpha
= (CGFloat
)1.0 ;
248 wxWindow
* iter
= thisWindow
;
251 alpha
*= (CGFloat
)( iter
->GetTransparent()/255.0 ) ;
252 if ( iter
->IsTopLevel() )
255 iter
= iter
->GetParent() ;
258 CGContextSetAlpha( cgContext
, alpha
) ;
260 if ( thisWindow
->GetBackgroundStyle() == wxBG_STYLE_TRANSPARENT
)
263 HIViewGetBounds( controlRef
, &bounds
);
264 CGContextClearRect( cgContext
, bounds
);
269 if ( thisWindow
->MacDoRedraw( updateRgn
, cEvent
.GetTicks() ) )
272 thisWindow
->MacSetCGContextRef( NULL
) ;
276 CGContextRelease( cgContext
) ;
280 DisposeRgn( allocatedRgn
) ;
284 case kEventControlVisibilityChanged
:
285 // we might have two native controls attributed to the same wxWindow instance
286 // eg a scrollview and an embedded textview, make sure we only fire for the 'outer'
287 // control, as otherwise native and wx visibility are different
288 if ( thisWindow
->GetPeer() != NULL
&& thisWindow
->GetPeer()->GetControlRef() == controlRef
)
290 thisWindow
->MacVisibilityChanged() ;
294 case kEventControlEnabledStateChanged
:
295 thisWindow
->MacEnabledStateChanged();
298 case kEventControlHiliteChanged
:
299 thisWindow
->MacHiliteChanged() ;
302 case kEventControlActivate
:
303 case kEventControlDeactivate
:
304 // FIXME: we should have a virtual function for this!
306 if ( thisWindow
->IsKindOf( CLASSINFO( wxTreeCtrl
) ) )
307 thisWindow
->Refresh();
310 if ( thisWindow
->IsKindOf( CLASSINFO( wxListCtrl
) ) )
311 thisWindow
->Refresh();
317 // different handling on OS X
320 case kEventControlFocusPartChanged
:
321 // the event is emulated by wxmac for systems lower than 10.5
323 if ( UMAGetSystemVersion() < 0x1050 )
325 // as it is synthesized here, we have to manually avoid propagation
328 ControlPartCode previousControlPart
= cEvent
.GetParameter
<ControlPartCode
>(kEventParamControlPreviousPart
, typeControlPartCode
);
329 ControlPartCode currentControlPart
= cEvent
.GetParameter
<ControlPartCode
>(kEventParamControlCurrentPart
, typeControlPartCode
);
331 if ( thisWindow
->MacGetTopLevelWindow() && thisWindow
->GetPeer()->NeedsFocusRect() )
333 thisWindow
->MacInvalidateBorders();
336 if ( currentControlPart
== 0 )
340 if ( thisWindow
->GetCaret() )
341 thisWindow
->GetCaret()->OnKillFocus();
344 wxLogTrace(_T("Focus"), _T("focus lost(%p)"), wx_static_cast(void*, thisWindow
));
346 // remove this as soon as posting the synthesized event works properly
347 static bool inKillFocusEvent
= false ;
349 if ( !inKillFocusEvent
)
351 inKillFocusEvent
= true ;
352 wxFocusEvent
event( wxEVT_KILL_FOCUS
, thisWindow
->GetId());
353 event
.SetEventObject(thisWindow
);
354 event
.SetWindow(targetFocusWindow
);
355 thisWindow
->HandleWindowEvent(event
) ;
356 inKillFocusEvent
= false ;
357 targetFocusWindow
= NULL
;
360 else if ( previousControlPart
== 0 )
363 // panel wants to track the window which was the last to have focus in it
364 wxLogTrace(_T("Focus"), _T("focus set(%p)"), wx_static_cast(void*, thisWindow
));
365 wxChildFocusEvent
eventFocus((wxWindow
*)thisWindow
);
366 thisWindow
->HandleWindowEvent(eventFocus
);
369 if ( thisWindow
->GetCaret() )
370 thisWindow
->GetCaret()->OnSetFocus();
373 wxFocusEvent
event(wxEVT_SET_FOCUS
, thisWindow
->GetId());
374 event
.SetEventObject(thisWindow
);
375 event
.SetWindow(formerFocusWindow
);
376 thisWindow
->HandleWindowEvent(event
) ;
377 formerFocusWindow
= NULL
;
381 case kEventControlSetFocusPart
:
384 Boolean focusEverything
= false ;
385 if ( cEvent
.GetParameter
<Boolean
>(kEventParamControlFocusEverything
, &focusEverything
) == noErr
)
387 // put a breakpoint here to catch focus everything events
390 ControlPartCode controlPart
= cEvent
.GetParameter
<ControlPartCode
>(kEventParamControlPart
, typeControlPartCode
);
391 if ( controlPart
!= kControlFocusNoPart
)
393 targetFocusWindow
= thisWindow
;
394 wxLogTrace(_T("Focus"), _T("focus to be set(%p)"), wx_static_cast(void*, thisWindow
));
398 formerFocusWindow
= thisWindow
;
399 wxLogTrace(_T("Focus"), _T("focus to be lost(%p)"), wx_static_cast(void*, thisWindow
));
402 ControlPartCode previousControlPart
= 0;
403 verify_noerr( HIViewGetFocusPart(controlRef
, &previousControlPart
));
405 if ( thisWindow
->MacIsUserPane() )
407 if ( controlPart
!= kControlFocusNoPart
)
408 cEvent
.SetParameter
<ControlPartCode
>( kEventParamControlPart
, typeControlPartCode
, 1 ) ;
412 result
= CallNextEventHandler(handler
, event
);
414 if ( UMAGetSystemVersion() < 0x1050 )
416 // set back to 0 if problems arise
418 ControlPartCode currentControlPart
= cEvent
.GetParameter
<ControlPartCode
>(kEventParamControlPart
, typeControlPartCode
);
419 // synthesize the event focus changed event
420 EventRef evRef
= NULL
;
422 OSStatus err
= MacCreateEvent(
423 NULL
, kEventClassControl
, kEventControlFocusPartChanged
, TicksToEventTime( TickCount() ) ,
424 kEventAttributeUserEvent
, &evRef
);
427 wxMacCarbonEvent
iEvent( evRef
) ;
428 iEvent
.SetParameter
<ControlRef
>( kEventParamDirectObject
, controlRef
);
429 iEvent
.SetParameter
<EventTargetRef
>( kEventParamPostTarget
, typeEventTargetRef
, GetControlEventTarget( controlRef
) );
430 iEvent
.SetParameter
<ControlPartCode
>( kEventParamControlPreviousPart
, typeControlPartCode
, previousControlPart
);
431 iEvent
.SetParameter
<ControlPartCode
>( kEventParamControlCurrentPart
, typeControlPartCode
, currentControlPart
);
434 // TODO test this first, avoid double posts etc...
435 PostEventToQueue( GetMainEventQueue(), evRef
, kEventPriorityHigh
);
437 wxMacWindowControlEventHandler( NULL
, evRef
, data
) ;
439 ReleaseEvent( evRef
) ;
441 // old implementation, to be removed if the new one works
442 if ( controlPart
== kControlFocusNoPart
)
445 if ( thisWindow
->GetCaret() )
446 thisWindow
->GetCaret()->OnKillFocus();
449 wxLogTrace(_T("Focus"), _T("focus lost(%p)"), wx_static_cast(void*, thisWindow
));
451 static bool inKillFocusEvent
= false ;
453 if ( !inKillFocusEvent
)
455 inKillFocusEvent
= true ;
456 wxFocusEvent
event( wxEVT_KILL_FOCUS
, thisWindow
->GetId());
457 event
.SetEventObject(thisWindow
);
458 thisWindow
->HandleWindowEvent(event
) ;
459 inKillFocusEvent
= false ;
464 // panel wants to track the window which was the last to have focus in it
465 wxLogTrace(_T("Focus"), _T("focus set(%p)"), wx_static_cast(void*, thisWindow
));
466 wxChildFocusEvent
eventFocus((wxWindow
*)thisWindow
);
467 thisWindow
->HandleWindowEvent(eventFocus
);
470 if ( thisWindow
->GetCaret() )
471 thisWindow
->GetCaret()->OnSetFocus();
474 wxFocusEvent
event(wxEVT_SET_FOCUS
, thisWindow
->GetId());
475 event
.SetEventObject(thisWindow
);
476 thisWindow
->HandleWindowEvent(event
) ;
483 case kEventControlHit
:
484 result
= thisWindow
->MacControlHit( handler
, event
) ;
487 case kEventControlGetClickActivation
:
489 // fix to always have a proper activation for DataBrowser controls (stay in bkgnd otherwise)
490 WindowRef owner
= cEvent
.GetParameter
<WindowRef
>(kEventParamWindowRef
);
491 if ( !IsWindowActive(owner
) )
493 cEvent
.SetParameter(kEventParamClickActivation
,(UInt32
) kActivateAndIgnoreClick
) ;
506 static pascal OSStatus
507 wxMacWindowServiceEventHandler(EventHandlerCallRef
WXUNUSED(handler
),
511 OSStatus result
= eventNotHandledErr
;
513 wxMacCarbonEvent
cEvent( event
) ;
515 ControlRef controlRef
;
516 wxWindowMac
* thisWindow
= (wxWindowMac
*) data
;
517 wxTextCtrl
* textCtrl
= wxDynamicCast( thisWindow
, wxTextCtrl
) ;
518 cEvent
.GetParameter( kEventParamDirectObject
, &controlRef
) ;
520 switch ( GetEventKind( event
) )
522 case kEventServiceGetTypes
:
526 textCtrl
->GetSelection( &from
, &to
) ;
528 CFMutableArrayRef copyTypes
= 0 , pasteTypes
= 0;
530 copyTypes
= cEvent
.GetParameter
< CFMutableArrayRef
>( kEventParamServiceCopyTypes
, typeCFMutableArrayRef
) ;
531 if ( textCtrl
->IsEditable() )
532 pasteTypes
= cEvent
.GetParameter
< CFMutableArrayRef
>( kEventParamServicePasteTypes
, typeCFMutableArrayRef
) ;
534 static const OSType textDataTypes
[] = { kTXNTextData
/* , 'utxt', 'PICT', 'MooV', 'AIFF' */ };
535 for ( size_t i
= 0 ; i
< WXSIZEOF(textDataTypes
) ; ++i
)
537 CFStringRef typestring
= CreateTypeStringWithOSType(textDataTypes
[i
]);
541 CFArrayAppendValue(copyTypes
, typestring
) ;
543 CFArrayAppendValue(pasteTypes
, typestring
) ;
545 CFRelease( typestring
) ;
553 case kEventServiceCopy
:
558 textCtrl
->GetSelection( &from
, &to
) ;
559 wxString val
= textCtrl
->GetValue() ;
560 val
= val
.Mid( from
, to
- from
) ;
561 PasteboardRef pasteboard
= cEvent
.GetParameter
<PasteboardRef
>( kEventParamPasteboardRef
, typePasteboardRef
);
562 verify_noerr( PasteboardClear( pasteboard
) ) ;
563 PasteboardSynchronize( pasteboard
);
564 // TODO add proper conversion
565 CFDataRef data
= CFDataCreate( kCFAllocatorDefault
, (const UInt8
*)val
.c_str(), val
.length() );
566 PasteboardPutItemFlavor( pasteboard
, (PasteboardItemID
) 1, CFSTR("com.apple.traditional-mac-plain-text"), data
, 0);
572 case kEventServicePaste
:
575 PasteboardRef pasteboard
= cEvent
.GetParameter
<PasteboardRef
>( kEventParamPasteboardRef
, typePasteboardRef
);
576 PasteboardSynchronize( pasteboard
);
578 verify_noerr( PasteboardGetItemCount( pasteboard
, &itemCount
) );
579 for( UInt32 itemIndex
= 1; itemIndex
<= itemCount
; itemIndex
++ )
581 PasteboardItemID itemID
;
582 if ( PasteboardGetItemIdentifier( pasteboard
, itemIndex
, &itemID
) == noErr
)
584 CFDataRef flavorData
= NULL
;
585 if ( PasteboardCopyItemFlavorData( pasteboard
, itemID
, CFSTR("com.apple.traditional-mac-plain-text"), &flavorData
) == noErr
)
587 CFIndex flavorDataSize
= CFDataGetLength( flavorData
);
588 char *content
= new char[flavorDataSize
+1] ;
589 memcpy( content
, CFDataGetBytePtr( flavorData
), flavorDataSize
);
590 content
[flavorDataSize
]=0;
591 CFRelease( flavorData
);
593 textCtrl
->WriteText( wxString( content
, wxConvLocal
) );
595 textCtrl
->WriteText( wxString( content
) ) ;
613 pascal OSStatus
wxMacUnicodeTextEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
615 OSStatus result
= eventNotHandledErr
;
616 wxWindowMac
* focus
= (wxWindowMac
*) data
;
618 wchar_t* uniChars
= NULL
;
619 UInt32 when
= EventTimeToTicks( GetEventTime( event
) ) ;
621 UniChar
* charBuf
= NULL
;
622 ByteCount dataSize
= 0 ;
625 if ( GetEventParameter( event
, kEventParamTextInputSendText
, typeUnicodeText
, NULL
, 0 , &dataSize
, NULL
) == noErr
)
627 numChars
= dataSize
/ sizeof( UniChar
) + 1;
630 if ( (size_t) numChars
* 2 > sizeof(buf
) )
631 charBuf
= new UniChar
[ numChars
] ;
635 uniChars
= new wchar_t[ numChars
] ;
636 GetEventParameter( event
, kEventParamTextInputSendText
, typeUnicodeText
, NULL
, dataSize
, NULL
, charBuf
) ;
637 charBuf
[ numChars
- 1 ] = 0;
638 #if SIZEOF_WCHAR_T == 2
639 uniChars
= (wchar_t*) charBuf
;
640 /* memcpy( uniChars , charBuf , numChars * 2 ) ;*/ // is there any point in copying charBuf over itself? (in fact, memcpy isn't even guaranteed to work correctly if the source and destination ranges overlap...)
642 // the resulting string will never have more chars than the utf16 version, so this is safe
643 wxMBConvUTF16 converter
;
644 numChars
= converter
.MB2WC( uniChars
, (const char*)charBuf
, numChars
) ;
648 switch ( GetEventKind( event
) )
650 case kEventTextInputUpdateActiveInputArea
:
652 // An IME input event may return several characters, but we need to send one char at a time to
654 for (int pos
=0 ; pos
< numChars
; pos
++)
656 WXEVENTREF formerEvent
= wxTheApp
->MacGetCurrentEvent() ;
657 WXEVENTHANDLERCALLREF formerHandler
= wxTheApp
->MacGetCurrentEventHandlerCallRef() ;
658 wxTheApp
->MacSetCurrentEvent( event
, handler
) ;
660 UInt32 message
= uniChars
[pos
] < 128 ? (char)uniChars
[pos
] : '?';
662 NB: faking a charcode here is problematic. The kEventTextInputUpdateActiveInputArea event is sent
663 multiple times to update the active range during inline input, so this handler will often receive
664 uncommited text, which should usually not trigger side effects. It might be a good idea to check the
665 kEventParamTextInputSendFixLen parameter and verify if input is being confirmed (see CarbonEvents.h).
666 On the other hand, it can be useful for some applications to react to uncommitted text (for example,
667 to update a status display), as long as it does not disrupt the inline input session. Ideally, wx
668 should add new event types to support advanced text input. For now, I would keep things as they are.
670 However, the code that was being used caused additional problems:
671 UInt32 message = (0 << 8) + ((char)uniChars[pos] );
672 Since it simply truncated the unichar to the last byte, it ended up causing weird bugs with inline
673 input, such as switching to another field when one attempted to insert the character U+4E09 (the kanji
674 for "three"), because it was truncated to 09 (kTabCharCode), which was later "converted" to WXK_TAB
675 (still 09) in wxMacTranslateKey; or triggering the default button when one attempted to insert U+840D
676 (the kanji for "name"), which got truncated to 0D and interpreted as a carriage return keypress.
677 Note that even single-byte characters could have been misinterpreted, since MacRoman charcodes only
678 overlap with Unicode within the (7-bit) ASCII range.
679 But simply passing a NUL charcode would disable text updated events, because wxTextCtrl::OnChar checks
680 for codes within a specific range. Therefore I went for the solution seen above, which keeps ASCII
681 characters as they are and replaces the rest with '?', ensuring that update events are triggered.
682 It would be better to change wxTextCtrl::OnChar to look at the actual unicode character instead, but
683 I don't have time to look into that right now.
686 if ( wxTheApp
->MacSendCharEvent(
687 focus
, message
, 0 , when
, 0 , 0 , uniChars
[pos
] ) )
692 wxTheApp
->MacSetCurrentEvent( formerEvent
, formerHandler
) ;
696 case kEventTextInputUnicodeForKeyEvent
:
698 UInt32 keyCode
, modifiers
;
701 unsigned char charCode
;
703 GetEventParameter( event
, kEventParamTextInputSendKeyboardEvent
, typeEventRef
, NULL
, sizeof(rawEvent
), NULL
, &rawEvent
) ;
704 GetEventParameter( rawEvent
, kEventParamKeyMacCharCodes
, typeChar
, NULL
, sizeof(char), NULL
, &charCode
);
705 GetEventParameter( rawEvent
, kEventParamKeyCode
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &keyCode
);
706 GetEventParameter( rawEvent
, kEventParamKeyModifiers
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &modifiers
);
707 GetEventParameter( rawEvent
, kEventParamMouseLocation
, typeQDPoint
, NULL
, sizeof(Point
), NULL
, &point
);
709 UInt32 message
= (keyCode
<< 8) + charCode
;
711 // An IME input event may return several characters, but we need to send one char at a time to
713 for (int pos
=0 ; pos
< numChars
; pos
++)
715 WXEVENTREF formerEvent
= wxTheApp
->MacGetCurrentEvent() ;
716 WXEVENTHANDLERCALLREF formerHandler
= wxTheApp
->MacGetCurrentEventHandlerCallRef() ;
717 wxTheApp
->MacSetCurrentEvent( event
, handler
) ;
719 if ( wxTheApp
->MacSendCharEvent(
720 focus
, message
, modifiers
, when
, point
.h
, point
.v
, uniChars
[pos
] ) )
725 wxTheApp
->MacSetCurrentEvent( formerEvent
, formerHandler
) ;
734 if ( charBuf
!= buf
)
740 static pascal OSStatus
741 wxMacWindowCommandEventHandler(EventHandlerCallRef
WXUNUSED(handler
),
745 OSStatus result
= eventNotHandledErr
;
746 wxWindowMac
* focus
= (wxWindowMac
*) data
;
750 wxMacCarbonEvent
cEvent( event
) ;
751 cEvent
.GetParameter
<HICommand
>(kEventParamDirectObject
,typeHICommand
,&command
) ;
753 wxMenuItem
* item
= NULL
;
754 wxMenu
* itemMenu
= wxFindMenuFromMacCommand( command
, item
) ;
755 int id
= wxMacCommandToId( command
.commandID
) ;
759 wxASSERT( itemMenu
!= NULL
) ;
761 switch ( cEvent
.GetKind() )
763 case kEventProcessCommand
:
764 result
= itemMenu
->MacHandleCommandProcess( item
, id
, focus
);
767 case kEventCommandUpdateStatus
:
768 result
= itemMenu
->MacHandleCommandUpdateStatus( item
, id
, focus
);
778 pascal OSStatus
wxMacWindowEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
780 EventRef formerEvent
= (EventRef
) wxTheApp
->MacGetCurrentEvent() ;
781 EventHandlerCallRef formerEventHandlerCallRef
= (EventHandlerCallRef
) wxTheApp
->MacGetCurrentEventHandlerCallRef() ;
782 wxTheApp
->MacSetCurrentEvent( event
, handler
) ;
783 OSStatus result
= eventNotHandledErr
;
785 switch ( GetEventClass( event
) )
787 case kEventClassCommand
:
788 result
= wxMacWindowCommandEventHandler( handler
, event
, data
) ;
791 case kEventClassControl
:
792 result
= wxMacWindowControlEventHandler( handler
, event
, data
) ;
795 case kEventClassService
:
796 result
= wxMacWindowServiceEventHandler( handler
, event
, data
) ;
799 case kEventClassTextInput
:
800 result
= wxMacUnicodeTextEventHandler( handler
, event
, data
) ;
807 wxTheApp
->MacSetCurrentEvent( formerEvent
, formerEventHandlerCallRef
) ;
812 DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacWindowEventHandler
)
814 // ---------------------------------------------------------------------------
815 // Scrollbar Tracking for all
816 // ---------------------------------------------------------------------------
818 pascal void wxMacLiveScrollbarActionProc( ControlRef control
, ControlPartCode partCode
) ;
819 pascal void wxMacLiveScrollbarActionProc( ControlRef control
, ControlPartCode partCode
)
823 wxWindow
* wx
= wxFindControlFromMacControl( control
) ;
825 wx
->MacHandleControlClick( (WXWidget
) control
, partCode
, true /* stillDown */ ) ;
828 wxMAC_DEFINE_PROC_GETTER( ControlActionUPP
, wxMacLiveScrollbarActionProc
) ;
830 // ===========================================================================
832 // ===========================================================================
834 WX_DECLARE_HASH_MAP(ControlRef
, wxWindow
*, wxPointerHash
, wxPointerEqual
, MacControlMap
);
836 static MacControlMap wxWinMacControlList
;
838 wxWindow
*wxFindControlFromMacControl(ControlRef inControl
)
840 MacControlMap::iterator node
= wxWinMacControlList
.find(inControl
);
842 return (node
== wxWinMacControlList
.end()) ? NULL
: node
->second
;
845 void wxAssociateControlWithMacControl(ControlRef inControl
, wxWindow
*control
)
847 // adding NULL ControlRef is (first) surely a result of an error and
848 // (secondly) breaks native event processing
849 wxCHECK_RET( inControl
!= (ControlRef
) NULL
, wxT("attempt to add a NULL WindowRef to window list") );
851 wxWinMacControlList
[inControl
] = control
;
854 void wxRemoveMacControlAssociation(wxWindow
*control
)
856 // iterate over all the elements in the class
857 // is the iterator stable ? as we might have two associations pointing to the same wxWindow
858 // we should go on...
864 MacControlMap::iterator it
;
865 for ( it
= wxWinMacControlList
.begin(); it
!= wxWinMacControlList
.end(); ++it
)
867 if ( it
->second
== control
)
869 wxWinMacControlList
.erase(it
);
877 // ----------------------------------------------------------------------------
878 // constructors and such
879 // ----------------------------------------------------------------------------
881 wxWindowMac::wxWindowMac()
886 wxWindowMac::wxWindowMac(wxWindowMac
*parent
,
891 const wxString
& name
)
894 Create(parent
, id
, pos
, size
, style
, name
);
897 void wxWindowMac::Init()
901 m_cgContextRef
= NULL
;
903 // as all windows are created with WS_VISIBLE style...
906 m_hScrollBar
= NULL
;
907 m_vScrollBar
= NULL
;
908 m_hScrollBarAlwaysShown
= false;
909 m_vScrollBarAlwaysShown
= false;
911 m_macIsUserPane
= true;
912 m_clipChildren
= false ;
913 m_cachedClippedRectValid
= false ;
916 wxWindowMac::~wxWindowMac()
920 m_isBeingDeleted
= true;
922 MacInvalidateBorders() ;
924 #ifndef __WXUNIVERSAL__
925 // VS: make sure there's no wxFrame with last focus set to us:
926 for ( wxWindow
*win
= GetParent(); win
; win
= win
->GetParent() )
928 wxFrame
*frame
= wxDynamicCast(win
, wxFrame
);
931 if ( frame
->GetLastFocus() == this )
932 frame
->SetLastFocus((wxWindow
*)NULL
);
938 // destroy children before destroying this window itself
941 // wxRemoveMacControlAssociation( this ) ;
942 // If we delete an item, we should initialize the parent panel,
943 // because it could now be invalid.
944 wxTopLevelWindow
*tlw
= wxDynamicCast(wxGetTopLevelParent(this), wxTopLevelWindow
);
947 if ( tlw
->GetDefaultItem() == (wxButton
*) this)
948 tlw
->SetDefaultItem(NULL
);
951 if ( m_peer
&& m_peer
->Ok() )
953 // in case the callback might be called during destruction
954 wxRemoveMacControlAssociation( this) ;
955 ::RemoveEventHandler( (EventHandlerRef
) m_macControlEventHandler
) ;
956 // we currently are not using this hook
957 // ::SetControlColorProc( *m_peer , NULL ) ;
961 if ( g_MacLastWindow
== this )
962 g_MacLastWindow
= NULL
;
964 #ifndef __WXUNIVERSAL__
965 wxFrame
* frame
= wxDynamicCast( wxGetTopLevelParent( (wxWindow
*)this ) , wxFrame
) ;
968 if ( frame
->GetLastFocus() == this )
969 frame
->SetLastFocus( NULL
) ;
973 // delete our drop target if we've got one
974 #if wxUSE_DRAG_AND_DROP
975 if ( m_dropTarget
!= NULL
)
985 WXWidget
wxWindowMac::GetHandle() const
987 return (WXWidget
) m_peer
->GetControlRef() ;
990 void wxWindowMac::MacInstallEventHandler( WXWidget control
)
992 wxAssociateControlWithMacControl( (ControlRef
) control
, this ) ;
993 InstallControlEventHandler( (ControlRef
)control
, GetwxMacWindowEventHandlerUPP(),
994 GetEventTypeCount(eventList
), eventList
, this,
995 (EventHandlerRef
*)&m_macControlEventHandler
);
999 bool wxWindowMac::Create(wxWindowMac
*parent
,
1004 const wxString
& name
)
1006 wxCHECK_MSG( parent
, false, wxT("can't create wxWindowMac without parent") );
1008 if ( !CreateBase(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
1011 m_windowVariant
= parent
->GetWindowVariant() ;
1013 if ( m_macIsUserPane
)
1015 Rect bounds
= wxMacGetBoundsForControl( this , pos
, size
) ;
1018 | kControlSupportsEmbedding
1019 | kControlSupportsLiveFeedback
1020 | kControlGetsFocusOnClick
1021 // | kControlHasSpecialBackground
1022 // | kControlSupportsCalcBestRect
1023 | kControlHandlesTracking
1024 | kControlSupportsFocus
1025 | kControlWantsActivate
1026 | kControlWantsIdle
;
1028 m_peer
= new wxMacControl(this) ;
1029 OSStatus err
=::CreateUserPaneControl( MAC_WXHWND(GetParent()->MacGetTopLevelWindowRef()) , &bounds
, features
, m_peer
->GetControlRefAddr() );
1030 verify_noerr( err
);
1032 MacPostControlCreate(pos
, size
) ;
1035 #ifndef __WXUNIVERSAL__
1036 // Don't give scrollbars to wxControls unless they ask for them
1037 if ( (! IsKindOf(CLASSINFO(wxControl
)) && ! IsKindOf(CLASSINFO(wxStatusBar
)))
1038 || (IsKindOf(CLASSINFO(wxControl
)) && ((style
& wxHSCROLL
) || (style
& wxVSCROLL
))))
1040 MacCreateScrollBars( style
) ;
1044 wxWindowCreateEvent
event(this);
1045 GetEventHandler()->AddPendingEvent(event
);
1050 void wxWindowMac::MacChildAdded()
1053 m_vScrollBar
->Raise() ;
1055 m_hScrollBar
->Raise() ;
1058 void wxWindowMac::MacPostControlCreate(const wxPoint
& WXUNUSED(pos
), const wxSize
& size
)
1060 wxASSERT_MSG( m_peer
!= NULL
&& m_peer
->Ok() , wxT("No valid mac control") ) ;
1062 m_peer
->SetReference( (URefCon
) this ) ;
1063 GetParent()->AddChild( this );
1065 MacInstallEventHandler( (WXWidget
) m_peer
->GetControlRef() );
1067 ControlRef container
= (ControlRef
) GetParent()->GetHandle() ;
1068 wxASSERT_MSG( container
!= NULL
, wxT("No valid mac container control") ) ;
1069 ::EmbedControl( m_peer
->GetControlRef() , container
) ;
1070 GetParent()->MacChildAdded() ;
1072 // adjust font, controlsize etc
1073 DoSetWindowVariant( m_windowVariant
) ;
1075 m_peer
->SetLabel( wxStripMenuCodes(m_label
, wxStrip_Mnemonics
) ) ;
1077 if (!m_macIsUserPane
)
1078 SetInitialSize(size
);
1080 SetCursor( *wxSTANDARD_CURSOR
) ;
1083 void wxWindowMac::DoSetWindowVariant( wxWindowVariant variant
)
1085 // Don't assert, in case we set the window variant before
1086 // the window is created
1087 // wxASSERT( m_peer->Ok() ) ;
1089 m_windowVariant
= variant
;
1091 if (m_peer
== NULL
|| !m_peer
->Ok())
1095 ThemeFontID themeFont
= kThemeSystemFont
;
1097 // we will get that from the settings later
1098 // and make this NORMAL later, but first
1099 // we have a few calculations that we must fix
1103 case wxWINDOW_VARIANT_NORMAL
:
1104 size
= kControlSizeNormal
;
1105 themeFont
= kThemeSystemFont
;
1108 case wxWINDOW_VARIANT_SMALL
:
1109 size
= kControlSizeSmall
;
1110 themeFont
= kThemeSmallSystemFont
;
1113 case wxWINDOW_VARIANT_MINI
:
1114 // not always defined in the headers
1119 case wxWINDOW_VARIANT_LARGE
:
1120 size
= kControlSizeLarge
;
1121 themeFont
= kThemeSystemFont
;
1125 wxFAIL_MSG(_T("unexpected window variant"));
1129 m_peer
->SetData
<ControlSize
>(kControlEntireControl
, kControlSizeTag
, &size
) ;
1132 font
.MacCreateFromThemeFont( themeFont
) ;
1136 void wxWindowMac::MacUpdateControlFont()
1138 m_peer
->SetFont( GetFont() , GetForegroundColour() , GetWindowStyle() ) ;
1139 // do not trigger refreshes upon invisible and possible partly created objects
1140 if ( IsShownOnScreen() )
1144 bool wxWindowMac::SetFont(const wxFont
& font
)
1146 bool retval
= wxWindowBase::SetFont( font
);
1148 MacUpdateControlFont() ;
1153 bool wxWindowMac::SetForegroundColour(const wxColour
& col
)
1155 bool retval
= wxWindowBase::SetForegroundColour( col
);
1158 MacUpdateControlFont();
1163 bool wxWindowMac::SetBackgroundColour(const wxColour
& col
)
1165 if ( !wxWindowBase::SetBackgroundColour(col
) && m_hasBgCol
)
1168 m_peer
->SetBackgroundColour( col
) ;
1173 bool wxWindowMac::MacCanFocus() const
1175 // TODO : evaluate performance hits by looking up this value, eventually cache the results for a 1 sec or so
1176 // CAUTION : the value returned currently is 0 or 2, I've also found values of 1 having the same meaning,
1177 // but the value range is nowhere documented
1178 Boolean keyExistsAndHasValidFormat
;
1179 CFIndex fullKeyboardAccess
= CFPreferencesGetAppIntegerValue( CFSTR("AppleKeyboardUIMode" ) ,
1180 kCFPreferencesCurrentApplication
, &keyExistsAndHasValidFormat
);
1182 if ( keyExistsAndHasValidFormat
&& fullKeyboardAccess
> 0 )
1188 UInt32 features
= 0 ;
1189 m_peer
->GetFeatures( &features
) ;
1191 return features
& ( kControlSupportsFocus
| kControlGetsFocusOnClick
) ;
1195 void wxWindowMac::SetFocus()
1197 if ( !AcceptsFocus() )
1200 wxWindow
* former
= FindFocus() ;
1201 if ( former
== this )
1204 // as we cannot rely on the control features to find out whether we are in full keyboard mode,
1205 // we can only leave in case of an error
1206 wxLogTrace(_T("Focus"), _T("before wxWindow::SetFocus(%p)"), wx_static_cast(void*, this));
1207 OSStatus err
= m_peer
->SetFocus( kControlFocusNextPart
) ;
1208 if ( err
== errCouldntSetFocus
)
1210 wxLogTrace(_T("Focus"), _T("after wxWindow::SetFocus(%p)"), wx_static_cast(void*, this));
1212 SetUserFocusWindow( (WindowRef
)MacGetTopLevelWindowRef() );
1215 void wxWindowMac::DoCaptureMouse()
1217 wxApp::s_captureWindow
= this ;
1220 wxWindow
* wxWindowBase::GetCapture()
1222 return wxApp::s_captureWindow
;
1225 void wxWindowMac::DoReleaseMouse()
1227 wxApp::s_captureWindow
= NULL
;
1230 #if wxUSE_DRAG_AND_DROP
1232 void wxWindowMac::SetDropTarget(wxDropTarget
*pDropTarget
)
1234 if ( m_dropTarget
!= NULL
)
1235 delete m_dropTarget
;
1237 m_dropTarget
= pDropTarget
;
1238 if ( m_dropTarget
!= NULL
)
1246 // Old-style File Manager Drag & Drop
1247 void wxWindowMac::DragAcceptFiles(bool WXUNUSED(accept
))
1252 // Returns the size of the native control. In the case of the toplevel window
1253 // this is the content area root control
1255 void wxWindowMac::MacGetPositionAndSizeFromControl(int& WXUNUSED(x
),
1258 int& WXUNUSED(h
)) const
1260 wxFAIL_MSG( wxT("Not currently supported") ) ;
1263 // From a wx position / size calculate the appropriate size of the native control
1265 bool wxWindowMac::MacGetBoundsForControl(
1269 int& w
, int& h
, bool adjustOrigin
) const
1271 // the desired size, minus the border pixels gives the correct size of the control
1275 // TODO: the default calls may be used as soon as PostCreateControl Is moved here
1276 w
= wxMax(size
.x
, 0) ; // WidthDefault( size.x );
1277 h
= wxMax(size
.y
, 0) ; // HeightDefault( size.y ) ;
1279 x
+= MacGetLeftBorderSize() ;
1280 y
+= MacGetTopBorderSize() ;
1281 w
-= MacGetLeftBorderSize() + MacGetRightBorderSize() ;
1282 h
-= MacGetTopBorderSize() + MacGetBottomBorderSize() ;
1285 AdjustForParentClientOrigin( x
, y
) ;
1287 // this is in window relative coordinate, as this parent may have a border, its physical position is offset by this border
1288 if ( !GetParent()->IsTopLevel() )
1290 x
-= GetParent()->MacGetLeftBorderSize() ;
1291 y
-= GetParent()->MacGetTopBorderSize() ;
1297 // Get window size (not client size)
1298 void wxWindowMac::DoGetSize(int *x
, int *y
) const
1301 m_peer
->GetRect( &bounds
) ;
1304 *x
= bounds
.right
- bounds
.left
+ MacGetLeftBorderSize() + MacGetRightBorderSize() ;
1306 *y
= bounds
.bottom
- bounds
.top
+ MacGetTopBorderSize() + MacGetBottomBorderSize() ;
1309 // get the position of the bounds of this window in client coordinates of its parent
1310 void wxWindowMac::DoGetPosition(int *x
, int *y
) const
1313 m_peer
->GetRect( &bounds
) ;
1315 int x1
= bounds
.left
;
1316 int y1
= bounds
.top
;
1318 // get the wx window position from the native one
1319 x1
-= MacGetLeftBorderSize() ;
1320 y1
-= MacGetTopBorderSize() ;
1322 if ( !IsTopLevel() )
1324 wxWindow
*parent
= GetParent();
1327 // we must first adjust it to be in window coordinates of the parent,
1328 // as otherwise it gets lost by the ClientAreaOrigin fix
1329 x1
+= parent
->MacGetLeftBorderSize() ;
1330 y1
+= parent
->MacGetTopBorderSize() ;
1332 // and now to client coordinates
1333 wxPoint
pt(parent
->GetClientAreaOrigin());
1345 void wxWindowMac::DoScreenToClient(int *x
, int *y
) const
1347 WindowRef window
= (WindowRef
) MacGetTopLevelWindowRef() ;
1348 wxCHECK_RET( window
, wxT("TopLevel Window missing") ) ;
1350 Point localwhere
= { 0, 0 } ;
1357 wxMacGlobalToLocal( window
, &localwhere
) ;
1364 MacRootWindowToWindow( x
, y
) ;
1366 wxPoint origin
= GetClientAreaOrigin() ;
1373 void wxWindowMac::DoClientToScreen(int *x
, int *y
) const
1375 WindowRef window
= (WindowRef
) MacGetTopLevelWindowRef() ;
1376 wxCHECK_RET( window
, wxT("TopLevel window missing") ) ;
1378 wxPoint origin
= GetClientAreaOrigin() ;
1384 MacWindowToRootWindow( x
, y
) ;
1386 Point localwhere
= { 0, 0 };
1392 wxMacLocalToGlobal( window
, &localwhere
) ;
1400 void wxWindowMac::MacClientToRootWindow( int *x
, int *y
) const
1402 wxPoint origin
= GetClientAreaOrigin() ;
1408 MacWindowToRootWindow( x
, y
) ;
1411 void wxWindowMac::MacRootWindowToClient( int *x
, int *y
) const
1413 MacRootWindowToWindow( x
, y
) ;
1415 wxPoint origin
= GetClientAreaOrigin() ;
1422 void wxWindowMac::MacWindowToRootWindow( int *x
, int *y
) const
1431 if ( !IsTopLevel() )
1433 wxNonOwnedWindow
* top
= MacGetTopLevelWindow();
1436 pt
.x
-= MacGetLeftBorderSize() ;
1437 pt
.y
-= MacGetTopBorderSize() ;
1438 wxMacControl::Convert( &pt
, m_peer
, top
->m_peer
) ;
1448 void wxWindowMac::MacWindowToRootWindow( short *x
, short *y
) const
1457 MacWindowToRootWindow( &x1
, &y1
) ;
1465 void wxWindowMac::MacRootWindowToWindow( int *x
, int *y
) const
1474 if ( !IsTopLevel() )
1476 wxNonOwnedWindow
* top
= MacGetTopLevelWindow();
1479 wxMacControl::Convert( &pt
, top
->m_peer
, m_peer
) ;
1480 pt
.x
+= MacGetLeftBorderSize() ;
1481 pt
.y
+= MacGetTopBorderSize() ;
1491 void wxWindowMac::MacRootWindowToWindow( short *x
, short *y
) const
1500 MacRootWindowToWindow( &x1
, &y1
) ;
1508 void wxWindowMac::MacGetContentAreaInset( int &left
, int &top
, int &right
, int &bottom
)
1510 RgnHandle rgn
= NewRgn() ;
1512 if ( m_peer
->GetRegion( kControlContentMetaPart
, rgn
) == noErr
)
1514 Rect structure
, content
;
1516 GetRegionBounds( rgn
, &content
) ;
1517 m_peer
->GetRect( &structure
) ;
1518 OffsetRect( &structure
, -structure
.left
, -structure
.top
) ;
1520 left
= content
.left
- structure
.left
;
1521 top
= content
.top
- structure
.top
;
1522 right
= structure
.right
- content
.right
;
1523 bottom
= structure
.bottom
- content
.bottom
;
1527 left
= top
= right
= bottom
= 0 ;
1533 wxSize
wxWindowMac::DoGetSizeFromClientSize( const wxSize
& size
) const
1535 wxSize sizeTotal
= size
;
1537 RgnHandle rgn
= NewRgn() ;
1538 if ( m_peer
->GetRegion( kControlContentMetaPart
, rgn
) == noErr
)
1540 Rect content
, structure
;
1541 GetRegionBounds( rgn
, &content
) ;
1542 m_peer
->GetRect( &structure
) ;
1544 // structure is in parent coordinates, but we only need width and height, so it's ok
1546 sizeTotal
.x
+= (structure
.right
- structure
.left
) - (content
.right
- content
.left
) ;
1547 sizeTotal
.y
+= (structure
.bottom
- structure
.top
) - (content
.bottom
- content
.top
) ;
1552 sizeTotal
.x
+= MacGetLeftBorderSize() + MacGetRightBorderSize() ;
1553 sizeTotal
.y
+= MacGetTopBorderSize() + MacGetBottomBorderSize() ;
1558 // Get size *available for subwindows* i.e. excluding menu bar etc.
1559 void wxWindowMac::DoGetClientSize( int *x
, int *y
) const
1563 RgnHandle rgn
= NewRgn() ;
1565 if ( m_peer
->GetRegion( kControlContentMetaPart
, rgn
) == noErr
)
1566 GetRegionBounds( rgn
, &content
) ;
1568 m_peer
->GetRect( &content
) ;
1571 ww
= content
.right
- content
.left
;
1572 hh
= content
.bottom
- content
.top
;
1574 if (m_hScrollBar
&& m_hScrollBar
->IsShown() )
1575 hh
-= m_hScrollBar
->GetSize().y
;
1577 if (m_vScrollBar
&& m_vScrollBar
->IsShown() )
1578 ww
-= m_vScrollBar
->GetSize().x
;
1586 bool wxWindowMac::SetCursor(const wxCursor
& cursor
)
1588 if (m_cursor
.IsSameAs(cursor
))
1593 if ( ! wxWindowBase::SetCursor( *wxSTANDARD_CURSOR
) )
1598 if ( ! wxWindowBase::SetCursor( cursor
) )
1602 wxASSERT_MSG( m_cursor
.Ok(),
1603 wxT("cursor must be valid after call to the base version"));
1605 wxWindowMac
*mouseWin
= 0 ;
1607 wxNonOwnedWindow
*tlw
= MacGetTopLevelWindow() ;
1608 WindowRef window
= (WindowRef
) ( tlw
? tlw
->MacGetWindowRef() : 0 ) ;
1610 ControlPartCode part
;
1611 ControlRef control
;
1613 #if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5
1615 HIGetMousePosition(kHICoordSpaceWindow
, window
, &hiPoint
);
1619 GetGlobalMouse( &pt
);
1622 ScreenToClient(&x
, &y
);
1626 control
= FindControlUnderMouse( pt
, window
, &part
) ;
1628 mouseWin
= wxFindControlFromMacControl( control
) ;
1632 if ( mouseWin
== this && !wxIsBusy() )
1633 m_cursor
.MacInstall() ;
1639 bool wxWindowMac::DoPopupMenu(wxMenu
*menu
, int x
, int y
)
1641 #ifndef __WXUNIVERSAL__
1642 menu
->SetInvokingWindow((wxWindow
*)this);
1645 if ( x
== wxDefaultCoord
&& y
== wxDefaultCoord
)
1647 wxPoint mouse
= wxGetMousePosition();
1653 ClientToScreen( &x
, &y
) ;
1656 menu
->MacBeforeDisplay( true ) ;
1657 long menuResult
= ::PopUpMenuSelect((MenuHandle
) menu
->GetHMenu() , y
, x
, 0) ;
1658 if ( HiWord(menuResult
) != 0 )
1661 GetMenuItemCommandID( GetMenuHandle(HiWord(menuResult
)) , LoWord(menuResult
) , &macid
);
1662 int id
= wxMacCommandToId( macid
);
1663 wxMenuItem
* item
= NULL
;
1665 item
= menu
->FindItem( id
, &realmenu
) ;
1668 if (item
->IsCheckable())
1669 item
->Check( !item
->IsChecked() ) ;
1671 menu
->SendEvent( id
, item
->IsCheckable() ? item
->IsChecked() : -1 ) ;
1675 menu
->MacAfterDisplay( true ) ;
1676 menu
->SetInvokingWindow( NULL
);
1680 // actually this shouldn't be called, because universal is having its own implementation
1686 // ----------------------------------------------------------------------------
1688 // ----------------------------------------------------------------------------
1692 void wxWindowMac::DoSetToolTip(wxToolTip
*tooltip
)
1694 wxWindowBase::DoSetToolTip(tooltip
);
1697 m_tooltip
->SetWindow(this);
1702 void wxWindowMac::MacInvalidateBorders()
1704 if ( m_peer
== NULL
)
1707 bool vis
= IsShownOnScreen() ;
1711 int outerBorder
= MacGetLeftBorderSize() ;
1712 if ( m_peer
->NeedsFocusRect() /* && m_peer->HasFocus() */ )
1715 if ( outerBorder
== 0 )
1718 // now we know that we have something to do at all
1720 // as the borders are drawn on the parent we have to properly invalidate all these areas
1721 RgnHandle updateInner
, updateOuter
;
1724 // this rectangle is in HIViewCoordinates under OSX and in Window Coordinates under Carbon
1725 updateInner
= NewRgn() ;
1726 updateOuter
= NewRgn() ;
1728 m_peer
->GetRect( &rect
) ;
1729 RectRgn( updateInner
, &rect
) ;
1730 InsetRect( &rect
, -outerBorder
, -outerBorder
) ;
1731 RectRgn( updateOuter
, &rect
) ;
1732 DiffRgn( updateOuter
, updateInner
, updateOuter
) ;
1734 GetParent()->m_peer
->SetNeedsDisplay( updateOuter
) ;
1736 DisposeRgn( updateOuter
) ;
1737 DisposeRgn( updateInner
) ;
1740 void wxWindowMac::DoMoveWindow(int x
, int y
, int width
, int height
)
1742 // this is never called for a toplevel window, so we know we have a parent
1743 int former_x
, former_y
, former_w
, former_h
;
1745 // Get true coordinates of former position
1746 DoGetPosition( &former_x
, &former_y
) ;
1747 DoGetSize( &former_w
, &former_h
) ;
1749 wxWindow
*parent
= GetParent();
1752 wxPoint
pt(parent
->GetClientAreaOrigin());
1757 int actualWidth
= width
;
1758 int actualHeight
= height
;
1762 if ((m_minWidth
!= -1) && (actualWidth
< m_minWidth
))
1763 actualWidth
= m_minWidth
;
1764 if ((m_minHeight
!= -1) && (actualHeight
< m_minHeight
))
1765 actualHeight
= m_minHeight
;
1766 if ((m_maxWidth
!= -1) && (actualWidth
> m_maxWidth
))
1767 actualWidth
= m_maxWidth
;
1768 if ((m_maxHeight
!= -1) && (actualHeight
> m_maxHeight
))
1769 actualHeight
= m_maxHeight
;
1771 bool doMove
= false, doResize
= false ;
1773 if ( actualX
!= former_x
|| actualY
!= former_y
)
1776 if ( actualWidth
!= former_w
|| actualHeight
!= former_h
)
1779 if ( doMove
|| doResize
)
1781 // as the borders are drawn outside the native control, we adjust now
1783 wxRect
bounds( wxPoint( actualX
+ MacGetLeftBorderSize() ,actualY
+ MacGetTopBorderSize() ),
1784 wxSize( actualWidth
- (MacGetLeftBorderSize() + MacGetRightBorderSize()) ,
1785 actualHeight
- (MacGetTopBorderSize() + MacGetBottomBorderSize()) ) ) ;
1788 wxMacRectToNative( &bounds
, &r
) ;
1790 if ( !GetParent()->IsTopLevel() )
1791 wxMacWindowToNative( GetParent() , &r
) ;
1793 MacInvalidateBorders() ;
1795 m_cachedClippedRectValid
= false ;
1796 m_peer
->SetRect( &r
) ;
1798 wxWindowMac::MacSuperChangedPosition() ; // like this only children will be notified
1800 MacInvalidateBorders() ;
1802 MacRepositionScrollBars() ;
1805 wxPoint
point(actualX
, actualY
);
1806 wxMoveEvent
event(point
, m_windowId
);
1807 event
.SetEventObject(this);
1808 HandleWindowEvent(event
) ;
1813 MacRepositionScrollBars() ;
1814 wxSize
size(actualWidth
, actualHeight
);
1815 wxSizeEvent
event(size
, m_windowId
);
1816 event
.SetEventObject(this);
1817 HandleWindowEvent(event
);
1822 wxSize
wxWindowMac::DoGetBestSize() const
1824 if ( m_macIsUserPane
|| IsTopLevel() )
1825 return wxWindowBase::DoGetBestSize() ;
1827 Rect bestsize
= { 0 , 0 , 0 , 0 } ;
1828 int bestWidth
, bestHeight
;
1830 m_peer
->GetBestRect( &bestsize
) ;
1831 if ( EmptyRect( &bestsize
) )
1836 bestsize
.bottom
= 16 ;
1838 if ( IsKindOf( CLASSINFO( wxScrollBar
) ) )
1840 bestsize
.bottom
= 16 ;
1843 else if ( IsKindOf( CLASSINFO( wxSpinButton
) ) )
1845 bestsize
.bottom
= 24 ;
1850 // return wxWindowBase::DoGetBestSize() ;
1854 bestWidth
= bestsize
.right
- bestsize
.left
;
1855 bestHeight
= bestsize
.bottom
- bestsize
.top
;
1856 if ( bestHeight
< 10 )
1859 return wxSize(bestWidth
, bestHeight
);
1862 // set the size of the window: if the dimensions are positive, just use them,
1863 // but if any of them is equal to -1, it means that we must find the value for
1864 // it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in
1865 // which case -1 is a valid value for x and y)
1867 // If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate
1868 // the width/height to best suit our contents, otherwise we reuse the current
1870 void wxWindowMac::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
1872 // get the current size and position...
1873 int currentX
, currentY
;
1874 int currentW
, currentH
;
1876 GetPosition(¤tX
, ¤tY
);
1877 GetSize(¤tW
, ¤tH
);
1879 // ... and don't do anything (avoiding flicker) if it's already ok
1880 if ( x
== currentX
&& y
== currentY
&&
1881 width
== currentW
&& height
== currentH
&& ( height
!= -1 && width
!= -1 ) )
1884 MacRepositionScrollBars() ; // we might have a real position shift
1889 if ( !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
1891 if ( x
== wxDefaultCoord
)
1893 if ( y
== wxDefaultCoord
)
1897 AdjustForParentClientOrigin( x
, y
, sizeFlags
);
1899 wxSize size
= wxDefaultSize
;
1900 if ( width
== wxDefaultCoord
)
1902 if ( sizeFlags
& wxSIZE_AUTO_WIDTH
)
1904 size
= DoGetBestSize();
1909 // just take the current one
1914 if ( height
== wxDefaultCoord
)
1916 if ( sizeFlags
& wxSIZE_AUTO_HEIGHT
)
1918 if ( size
.x
== wxDefaultCoord
)
1919 size
= DoGetBestSize();
1920 // else: already called DoGetBestSize() above
1926 // just take the current one
1931 DoMoveWindow( x
, y
, width
, height
);
1934 wxPoint
wxWindowMac::GetClientAreaOrigin() const
1936 RgnHandle rgn
= NewRgn() ;
1938 if ( m_peer
->GetRegion( kControlContentMetaPart
, rgn
) == noErr
)
1940 GetRegionBounds( rgn
, &content
) ;
1950 return wxPoint( content
.left
+ MacGetLeftBorderSize() , content
.top
+ MacGetTopBorderSize() );
1953 void wxWindowMac::DoSetClientSize(int clientwidth
, int clientheight
)
1955 if ( clientwidth
!= wxDefaultCoord
|| clientheight
!= wxDefaultCoord
)
1957 int currentclientwidth
, currentclientheight
;
1958 int currentwidth
, currentheight
;
1960 GetClientSize( ¤tclientwidth
, ¤tclientheight
) ;
1961 GetSize( ¤twidth
, ¤theight
) ;
1963 DoSetSize( wxDefaultCoord
, wxDefaultCoord
, currentwidth
+ clientwidth
- currentclientwidth
,
1964 currentheight
+ clientheight
- currentclientheight
, wxSIZE_USE_EXISTING
) ;
1968 void wxWindowMac::SetLabel(const wxString
& title
)
1972 if ( m_peer
&& m_peer
->Ok() )
1973 m_peer
->SetLabel( wxStripMenuCodes(m_label
, wxStrip_Mnemonics
) ) ;
1975 // do not trigger refreshes upon invisible and possible partly created objects
1976 if ( IsShownOnScreen() )
1980 wxString
wxWindowMac::GetLabel() const
1985 bool wxWindowMac::Show(bool show
)
1987 if ( !wxWindowBase::Show(show
) )
1991 m_peer
->SetVisibility( show
, true ) ;
1996 void wxWindowMac::DoEnable(bool enable
)
1998 m_peer
->Enable( enable
) ;
2002 // status change notifications
2005 void wxWindowMac::MacVisibilityChanged()
2009 void wxWindowMac::MacHiliteChanged()
2013 void wxWindowMac::MacEnabledStateChanged()
2015 OnEnabled( m_peer
->IsEnabled() );
2019 // status queries on the inherited window's state
2022 bool wxWindowMac::MacIsReallyEnabled()
2024 return m_peer
->IsEnabled() ;
2027 bool wxWindowMac::MacIsReallyHilited()
2029 return m_peer
->IsActive();
2032 void wxWindowMac::MacFlashInvalidAreas()
2034 #if TARGET_API_MAC_OSX
2035 HIViewFlashDirtyArea( (WindowRef
) MacGetTopLevelWindowRef() ) ;
2039 int wxWindowMac::GetCharHeight() const
2041 wxClientDC
dc( (wxWindowMac
*)this ) ;
2043 return dc
.GetCharHeight() ;
2046 int wxWindowMac::GetCharWidth() const
2048 wxClientDC
dc( (wxWindowMac
*)this ) ;
2050 return dc
.GetCharWidth() ;
2053 void wxWindowMac::GetTextExtent(const wxString
& string
, int *x
, int *y
,
2054 int *descent
, int *externalLeading
, const wxFont
*theFont
) const
2056 const wxFont
*fontToUse
= theFont
;
2058 fontToUse
= &m_font
;
2060 wxClientDC
dc( (wxWindowMac
*) this ) ;
2061 wxCoord lx
,ly
,ld
,le
;
2062 dc
.GetTextExtent( string
, &lx
, &ly
, &ld
, &le
, (wxFont
*)fontToUse
) ;
2063 if ( externalLeading
)
2064 *externalLeading
= le
;
2074 * Rect is given in client coordinates, for further reading, read wxTopLevelWindowMac::InvalidateRect
2075 * we always intersect with the entire window, not only with the client area
2078 void wxWindowMac::Refresh(bool WXUNUSED(eraseBack
), const wxRect
*rect
)
2080 if ( m_peer
== NULL
)
2083 if ( !IsShownOnScreen() )
2090 wxMacRectToNative( rect
, &r
) ;
2091 m_peer
->SetNeedsDisplay( &r
) ;
2095 m_peer
->SetNeedsDisplay() ;
2099 void wxWindowMac::DoFreeze()
2101 #if TARGET_API_MAC_OSX
2102 if ( m_peer
&& m_peer
->Ok() )
2103 m_peer
->SetDrawingEnabled( false ) ;
2107 void wxWindowMac::DoThaw()
2109 #if TARGET_API_MAC_OSX
2110 if ( m_peer
&& m_peer
->Ok() )
2112 m_peer
->SetDrawingEnabled( true ) ;
2113 m_peer
->InvalidateWithChildren() ;
2118 wxWindowMac
*wxGetActiveWindow()
2120 // actually this is a windows-only concept
2124 // Coordinates relative to the window
2125 void wxWindowMac::WarpPointer(int WXUNUSED(x_pos
), int WXUNUSED(y_pos
))
2127 // We really don't move the mouse programmatically under Mac.
2130 void wxWindowMac::OnEraseBackground(wxEraseEvent
& event
)
2132 if ( MacGetTopLevelWindow() == NULL
)
2135 #if TARGET_API_MAC_OSX
2136 if ( !m_backgroundColour.Ok() || GetBackgroundStyle() == wxBG_STYLE_TRANSPARENT )
2142 if ( GetBackgroundStyle() == wxBG_STYLE_COLOUR
)
2144 event
.GetDC()->Clear() ;
2146 else if ( GetBackgroundStyle() == wxBG_STYLE_CUSTOM
)
2148 // don't skip the event here, custom background means that the app
2149 // is drawing it itself in its OnPaint(), so don't draw it at all
2150 // now to avoid flicker
2158 void wxWindowMac::OnNcPaint( wxNcPaintEvent
& event
)
2163 int wxWindowMac::GetScrollPos(int orient
) const
2165 if ( orient
== wxHORIZONTAL
)
2168 return m_hScrollBar
->GetThumbPosition() ;
2173 return m_vScrollBar
->GetThumbPosition() ;
2179 // This now returns the whole range, not just the number
2180 // of positions that we can scroll.
2181 int wxWindowMac::GetScrollRange(int orient
) const
2183 if ( orient
== wxHORIZONTAL
)
2186 return m_hScrollBar
->GetRange() ;
2191 return m_vScrollBar
->GetRange() ;
2197 int wxWindowMac::GetScrollThumb(int orient
) const
2199 if ( orient
== wxHORIZONTAL
)
2202 return m_hScrollBar
->GetThumbSize() ;
2207 return m_vScrollBar
->GetThumbSize() ;
2213 void wxWindowMac::SetScrollPos(int orient
, int pos
, bool WXUNUSED(refresh
))
2215 if ( orient
== wxHORIZONTAL
)
2218 m_hScrollBar
->SetThumbPosition( pos
) ;
2223 m_vScrollBar
->SetThumbPosition( pos
) ;
2228 wxWindowMac::AlwaysShowScrollbars(bool hflag
, bool vflag
)
2230 bool needVisibilityUpdate
= false;
2232 if ( m_hScrollBarAlwaysShown
!= hflag
)
2234 m_hScrollBarAlwaysShown
= hflag
;
2235 needVisibilityUpdate
= true;
2238 if ( m_vScrollBarAlwaysShown
!= vflag
)
2240 m_vScrollBarAlwaysShown
= vflag
;
2241 needVisibilityUpdate
= true;
2244 if ( needVisibilityUpdate
)
2245 DoUpdateScrollbarVisibility();
2249 // we draw borders and grow boxes, are already set up and clipped in the current port / cgContextRef
2250 // our own window origin is at leftOrigin/rightOrigin
2253 void wxWindowMac::MacPaintGrowBox()
2258 if ( MacHasScrollBarCorner() )
2262 CGContextRef cgContext
= (CGContextRef
) MacGetCGContextRef() ;
2263 wxASSERT( cgContext
) ;
2265 m_peer
->GetRect( &rect
) ;
2267 int size
= m_hScrollBar
? m_hScrollBar
->GetSize().y
: ( m_vScrollBar
? m_vScrollBar
->GetSize().x
: MAC_SCROLLBAR_SIZE
) ;
2268 CGRect cgrect
= CGRectMake( rect
.right
- size
, rect
.bottom
- size
, size
, size
) ;
2269 CGPoint cgpoint
= CGPointMake( rect
.right
- size
, rect
.bottom
- size
) ;
2270 CGContextSaveGState( cgContext
);
2272 if ( m_backgroundColour
.Ok() )
2274 CGContextSetFillColorWithColor( cgContext
, m_backgroundColour
.GetCGColor() );
2278 CGContextSetRGBFillColor( cgContext
, (CGFloat
) 1.0, (CGFloat
)1.0 ,(CGFloat
) 1.0 , (CGFloat
)1.0 );
2280 CGContextFillRect( cgContext
, cgrect
);
2281 CGContextRestoreGState( cgContext
);
2285 void wxWindowMac::MacPaintBorders( int WXUNUSED(leftOrigin
) , int WXUNUSED(rightOrigin
) )
2291 bool hasFocus
= m_peer
->NeedsFocusRect() && m_peer
->HasFocus() ;
2293 // back to the surrounding frame rectangle
2294 m_peer
->GetRect( &rect
) ;
2295 InsetRect( &rect
, -1 , -1 ) ;
2298 CGRect cgrect
= CGRectMake( rect
.left
, rect
.top
, rect
.right
- rect
.left
,
2299 rect
.bottom
- rect
.top
) ;
2301 HIThemeFrameDrawInfo info
;
2302 memset( &info
, 0 , sizeof(info
) ) ;
2306 info
.state
= IsEnabled() ? kThemeStateActive
: kThemeStateInactive
;
2307 info
.isFocused
= hasFocus
;
2309 CGContextRef cgContext
= (CGContextRef
) GetParent()->MacGetCGContextRef() ;
2310 wxASSERT( cgContext
) ;
2312 if ( HasFlag(wxRAISED_BORDER
) || HasFlag(wxSUNKEN_BORDER
) || HasFlag(wxDOUBLE_BORDER
) )
2314 info
.kind
= kHIThemeFrameTextFieldSquare
;
2315 HIThemeDrawFrame( &cgrect
, &info
, cgContext
, kHIThemeOrientationNormal
) ;
2317 else if ( HasFlag(wxSIMPLE_BORDER
) )
2319 info
.kind
= kHIThemeFrameListBox
;
2320 HIThemeDrawFrame( &cgrect
, &info
, cgContext
, kHIThemeOrientationNormal
) ;
2322 else if ( hasFocus
)
2324 HIThemeDrawFocusRect( &cgrect
, true , cgContext
, kHIThemeOrientationNormal
) ;
2326 #if 0 // TODO REMOVE now done in a separate call earlier in drawing the window itself
2327 m_peer
->GetRect( &rect
) ;
2328 if ( MacHasScrollBarCorner() )
2330 int variant
= (m_hScrollBar
== NULL
? m_vScrollBar
: m_hScrollBar
) ->GetWindowVariant();
2331 int size
= m_hScrollBar
? m_hScrollBar
->GetSize().y
: ( m_vScrollBar
? m_vScrollBar
->GetSize().x
: MAC_SCROLLBAR_SIZE
) ;
2332 CGRect cgrect
= CGRectMake( rect
.right
- size
, rect
.bottom
- size
, size
, size
) ;
2333 CGPoint cgpoint
= CGPointMake( rect
.right
- size
, rect
.bottom
- size
) ;
2334 HIThemeGrowBoxDrawInfo info
;
2335 memset( &info
, 0, sizeof(info
) ) ;
2337 info
.state
= IsEnabled() ? kThemeStateActive
: kThemeStateInactive
;
2338 info
.kind
= kHIThemeGrowBoxKindNone
;
2339 // contrary to the docs ...SizeSmall does not work
2340 info
.size
= kHIThemeGrowBoxSizeNormal
;
2341 info
.direction
= 0 ;
2342 HIThemeDrawGrowBox( &cgpoint
, &info
, cgContext
, kHIThemeOrientationNormal
) ;
2348 void wxWindowMac::RemoveChild( wxWindowBase
*child
)
2350 if ( child
== m_hScrollBar
)
2351 m_hScrollBar
= NULL
;
2352 if ( child
== m_vScrollBar
)
2353 m_vScrollBar
= NULL
;
2355 wxWindowBase::RemoveChild( child
) ;
2358 void wxWindowMac::DoUpdateScrollbarVisibility()
2360 bool triggerSizeEvent
= false;
2364 bool showHScrollBar
= m_hScrollBarAlwaysShown
|| m_hScrollBar
->IsNeeded();
2366 if ( m_hScrollBar
->IsShown() != showHScrollBar
)
2368 m_hScrollBar
->Show( showHScrollBar
);
2369 triggerSizeEvent
= true;
2375 bool showVScrollBar
= m_vScrollBarAlwaysShown
|| m_vScrollBar
->IsNeeded();
2377 if ( m_vScrollBar
->IsShown() != showVScrollBar
)
2379 m_vScrollBar
->Show( showVScrollBar
) ;
2380 triggerSizeEvent
= true;
2384 MacRepositionScrollBars() ;
2385 if ( triggerSizeEvent
)
2387 wxSizeEvent
event(GetSize(), m_windowId
);
2388 event
.SetEventObject(this);
2389 HandleWindowEvent(event
);
2393 // New function that will replace some of the above.
2394 void wxWindowMac::SetScrollbar(int orient
, int pos
, int thumb
,
2395 int range
, bool refresh
)
2397 if ( orient
== wxHORIZONTAL
&& m_hScrollBar
)
2398 m_hScrollBar
->SetScrollbar(pos
, thumb
, range
, thumb
, refresh
);
2399 else if ( orient
== wxVERTICAL
&& m_vScrollBar
)
2400 m_vScrollBar
->SetScrollbar(pos
, thumb
, range
, thumb
, refresh
);
2402 DoUpdateScrollbarVisibility();
2405 // Does a physical scroll
2406 void wxWindowMac::ScrollWindow(int dx
, int dy
, const wxRect
*rect
)
2408 if ( dx
== 0 && dy
== 0 )
2411 int width
, height
;
2412 GetClientSize( &width
, &height
) ;
2415 // note there currently is a bug in OSX which makes inefficient refreshes in case an entire control
2416 // area is scrolled, this does not occur if width and height are 2 pixels less,
2417 // TODO: write optimal workaround
2418 wxRect
scrollrect( MacGetLeftBorderSize() , MacGetTopBorderSize() , width
, height
) ;
2420 scrollrect
.Intersect( *rect
) ;
2422 if ( m_peer
->GetNeedsDisplay() )
2424 // because HIViewScrollRect does not scroll the already invalidated area we have two options:
2425 // in case there is already a pending redraw on that area
2426 // either immediate redraw or full invalidate
2428 // is the better overall solution, as it does not slow down scrolling
2429 m_peer
->SetNeedsDisplay() ;
2431 // this would be the preferred version for fast drawing controls
2432 HIViewRender(m_peer
->GetControlRef()) ;
2436 // as the native control might be not a 0/0 wx window coordinates, we have to offset
2437 scrollrect
.Offset( -MacGetLeftBorderSize() , -MacGetTopBorderSize() ) ;
2438 m_peer
->ScrollRect( &scrollrect
, dx
, dy
) ;
2441 // this would be the preferred version for fast drawing controls
2442 HIViewRender(m_peer
->GetControlRef()) ;
2448 for (wxWindowList::compatibility_iterator node
= GetChildren().GetFirst(); node
; node
= node
->GetNext())
2450 child
= node
->GetData();
2453 if (child
== m_vScrollBar
)
2455 if (child
== m_hScrollBar
)
2457 if (child
->IsTopLevel())
2460 child
->GetPosition( &x
, &y
);
2461 child
->GetSize( &w
, &h
);
2464 wxRect
rc( x
, y
, w
, h
);
2465 if (rect
->Intersects( rc
))
2466 child
->SetSize( x
+ dx
, y
+ dy
, w
, h
, wxSIZE_AUTO
|wxSIZE_ALLOW_MINUS_ONE
);
2470 child
->SetSize( x
+ dx
, y
+ dy
, w
, h
, wxSIZE_AUTO
|wxSIZE_ALLOW_MINUS_ONE
);
2475 void wxWindowMac::MacOnScroll( wxScrollEvent
&event
)
2477 if ( event
.GetEventObject() == m_vScrollBar
|| event
.GetEventObject() == m_hScrollBar
)
2479 wxScrollWinEvent wevent
;
2480 wevent
.SetPosition(event
.GetPosition());
2481 wevent
.SetOrientation(event
.GetOrientation());
2482 wevent
.SetEventObject(this);
2484 if (event
.GetEventType() == wxEVT_SCROLL_TOP
)
2485 wevent
.SetEventType( wxEVT_SCROLLWIN_TOP
);
2486 else if (event
.GetEventType() == wxEVT_SCROLL_BOTTOM
)
2487 wevent
.SetEventType( wxEVT_SCROLLWIN_BOTTOM
);
2488 else if (event
.GetEventType() == wxEVT_SCROLL_LINEUP
)
2489 wevent
.SetEventType( wxEVT_SCROLLWIN_LINEUP
);
2490 else if (event
.GetEventType() == wxEVT_SCROLL_LINEDOWN
)
2491 wevent
.SetEventType( wxEVT_SCROLLWIN_LINEDOWN
);
2492 else if (event
.GetEventType() == wxEVT_SCROLL_PAGEUP
)
2493 wevent
.SetEventType( wxEVT_SCROLLWIN_PAGEUP
);
2494 else if (event
.GetEventType() == wxEVT_SCROLL_PAGEDOWN
)
2495 wevent
.SetEventType( wxEVT_SCROLLWIN_PAGEDOWN
);
2496 else if (event
.GetEventType() == wxEVT_SCROLL_THUMBTRACK
)
2497 wevent
.SetEventType( wxEVT_SCROLLWIN_THUMBTRACK
);
2498 else if (event
.GetEventType() == wxEVT_SCROLL_THUMBRELEASE
)
2499 wevent
.SetEventType( wxEVT_SCROLLWIN_THUMBRELEASE
);
2501 HandleWindowEvent(wevent
);
2505 // Get the window with the focus
2506 wxWindowMac
*wxWindowBase::DoFindFocus()
2508 ControlRef control
;
2509 GetKeyboardFocus( GetUserFocusWindow() , &control
) ;
2510 return wxFindControlFromMacControl( control
) ;
2513 void wxWindowMac::OnInternalIdle()
2515 // This calls the UI-update mechanism (querying windows for
2516 // menu/toolbar/control state information)
2517 if (wxUpdateUIEvent::CanUpdate(this) && IsShownOnScreen())
2518 UpdateWindowUI(wxUPDATE_UI_FROMIDLE
);
2521 // Raise the window to the top of the Z order
2522 void wxWindowMac::Raise()
2524 m_peer
->SetZOrder( true , NULL
) ;
2527 // Lower the window to the bottom of the Z order
2528 void wxWindowMac::Lower()
2530 m_peer
->SetZOrder( false , NULL
) ;
2533 // static wxWindow *gs_lastWhich = NULL;
2535 bool wxWindowMac::MacSetupCursor( const wxPoint
& pt
)
2537 // first trigger a set cursor event
2539 wxPoint clientorigin
= GetClientAreaOrigin() ;
2540 wxSize clientsize
= GetClientSize() ;
2542 if ( wxRect2DInt( clientorigin
.x
, clientorigin
.y
, clientsize
.x
, clientsize
.y
).Contains( wxPoint2DInt( pt
) ) )
2544 wxSetCursorEvent
event( pt
.x
, pt
.y
);
2546 bool processedEvtSetCursor
= HandleWindowEvent(event
);
2547 if ( processedEvtSetCursor
&& event
.HasCursor() )
2549 cursor
= event
.GetCursor() ;
2553 // the test for processedEvtSetCursor is here to prevent using m_cursor
2554 // if the user code caught EVT_SET_CURSOR() and returned nothing from
2555 // it - this is a way to say that our cursor shouldn't be used for this
2557 if ( !processedEvtSetCursor
&& m_cursor
.Ok() )
2560 if ( !wxIsBusy() && !GetParent() )
2561 cursor
= *wxSTANDARD_CURSOR
;
2565 cursor
.MacInstall() ;
2568 return cursor
.Ok() ;
2571 wxString
wxWindowMac::MacGetToolTipString( wxPoint
&WXUNUSED(pt
) )
2575 return m_tooltip
->GetTip() ;
2578 return wxEmptyString
;
2581 void wxWindowMac::ClearBackground()
2587 void wxWindowMac::Update()
2589 wxNonOwnedWindow
* top
= MacGetTopLevelWindow();
2591 top
->MacPerformUpdates() ;
2594 wxNonOwnedWindow
* wxWindowMac::MacGetTopLevelWindow() const
2596 wxNonOwnedWindow
* win
= NULL
;
2597 WindowRef window
= (WindowRef
) MacGetTopLevelWindowRef() ;
2599 win
= wxFindWinFromMacWindow( window
) ;
2604 const wxRect
& wxWindowMac::MacGetClippedClientRect() const
2606 MacUpdateClippedRects() ;
2608 return m_cachedClippedClientRect
;
2611 const wxRect
& wxWindowMac::MacGetClippedRect() const
2613 MacUpdateClippedRects() ;
2615 return m_cachedClippedRect
;
2618 const wxRect
&wxWindowMac:: MacGetClippedRectWithOuterStructure() const
2620 MacUpdateClippedRects() ;
2622 return m_cachedClippedRectWithOuterStructure
;
2625 const wxRegion
& wxWindowMac::MacGetVisibleRegion( bool includeOuterStructures
)
2627 static wxRegion emptyrgn
;
2629 if ( !m_isBeingDeleted
&& IsShownOnScreen() )
2631 MacUpdateClippedRects() ;
2632 if ( includeOuterStructures
)
2633 return m_cachedClippedRegionWithOuterStructure
;
2635 return m_cachedClippedRegion
;
2643 void wxWindowMac::MacUpdateClippedRects() const
2645 if ( m_cachedClippedRectValid
)
2648 // includeOuterStructures is true if we try to draw somthing like a focus ring etc.
2649 // also a window dc uses this, in this case we only clip in the hierarchy for hard
2650 // borders like a scrollwindow, splitter etc otherwise we end up in a paranoia having
2651 // to add focus borders everywhere
2653 Rect r
, rIncludingOuterStructures
;
2655 m_peer
->GetRect( &r
) ;
2656 r
.left
-= MacGetLeftBorderSize() ;
2657 r
.top
-= MacGetTopBorderSize() ;
2658 r
.bottom
+= MacGetBottomBorderSize() ;
2659 r
.right
+= MacGetRightBorderSize() ;
2666 rIncludingOuterStructures
= r
;
2667 InsetRect( &rIncludingOuterStructures
, -4 , -4 ) ;
2669 wxRect cl
= GetClientRect() ;
2670 Rect rClient
= { cl
.y
, cl
.x
, cl
.y
+ cl
.height
, cl
.x
+ cl
.width
} ;
2674 const wxWindow
* child
= this ;
2675 const wxWindow
* parent
= NULL
;
2677 while ( !child
->IsTopLevel() && ( parent
= child
->GetParent() ) != NULL
)
2679 if ( parent
->MacIsChildOfClientArea(child
) )
2681 size
= parent
->GetClientSize() ;
2682 wxPoint origin
= parent
->GetClientAreaOrigin() ;
2688 // this will be true for scrollbars, toolbars etc.
2689 size
= parent
->GetSize() ;
2690 y
= parent
->MacGetTopBorderSize() ;
2691 x
= parent
->MacGetLeftBorderSize() ;
2692 size
.x
-= parent
->MacGetLeftBorderSize() + parent
->MacGetRightBorderSize() ;
2693 size
.y
-= parent
->MacGetTopBorderSize() + parent
->MacGetBottomBorderSize() ;
2696 parent
->MacWindowToRootWindow( &x
, &y
) ;
2697 MacRootWindowToWindow( &x
, &y
) ;
2699 Rect rparent
= { y
, x
, y
+ size
.y
, x
+ size
.x
} ;
2701 // the wxwindow and client rects will always be clipped
2702 SectRect( &r
, &rparent
, &r
) ;
2703 SectRect( &rClient
, &rparent
, &rClient
) ;
2705 // the structure only at 'hard' borders
2706 if ( parent
->MacClipChildren() ||
2707 ( parent
->GetParent() && parent
->GetParent()->MacClipGrandChildren() ) )
2709 SectRect( &rIncludingOuterStructures
, &rparent
, &rIncludingOuterStructures
) ;
2715 m_cachedClippedRect
= wxRect( r
.left
, r
.top
, r
.right
- r
.left
, r
.bottom
- r
.top
) ;
2716 m_cachedClippedClientRect
= wxRect( rClient
.left
, rClient
.top
,
2717 rClient
.right
- rClient
.left
, rClient
.bottom
- rClient
.top
) ;
2718 m_cachedClippedRectWithOuterStructure
= wxRect(
2719 rIncludingOuterStructures
.left
, rIncludingOuterStructures
.top
,
2720 rIncludingOuterStructures
.right
- rIncludingOuterStructures
.left
,
2721 rIncludingOuterStructures
.bottom
- rIncludingOuterStructures
.top
) ;
2723 m_cachedClippedRegionWithOuterStructure
= wxRegion( m_cachedClippedRectWithOuterStructure
) ;
2724 m_cachedClippedRegion
= wxRegion( m_cachedClippedRect
) ;
2725 m_cachedClippedClientRegion
= wxRegion( m_cachedClippedClientRect
) ;
2727 m_cachedClippedRectValid
= true ;
2731 This function must not change the updatergn !
2733 bool wxWindowMac::MacDoRedraw( void* updatergnr
, long time
)
2735 bool handled
= false ;
2737 RgnHandle updatergn
= (RgnHandle
) updatergnr
;
2738 GetRegionBounds( updatergn
, &updatebounds
) ;
2740 // wxLogDebug(wxT("update for %s bounds %d, %d, %d, %d"), wxString(GetClassInfo()->GetClassName()).c_str(), updatebounds.left, updatebounds.top , updatebounds.right , updatebounds.bottom ) ;
2742 if ( !EmptyRgn(updatergn
) )
2744 RgnHandle newupdate
= NewRgn() ;
2745 wxSize point
= GetClientSize() ;
2746 wxPoint origin
= GetClientAreaOrigin() ;
2747 SetRectRgn( newupdate
, origin
.x
, origin
.y
, origin
.x
+ point
.x
, origin
.y
+ point
.y
) ;
2748 SectRgn( newupdate
, updatergn
, newupdate
) ;
2750 // first send an erase event to the entire update area
2752 // for the toplevel window this really is the entire area
2753 // for all the others only their client area, otherwise they
2754 // might be drawing with full alpha and eg put blue into
2755 // the grow-box area of a scrolled window (scroll sample)
2756 wxDC
* dc
= new wxWindowDC(this);
2758 dc
->SetClippingRegion(wxRegion(HIShapeCreateWithQDRgn(updatergn
)));
2760 dc
->SetClippingRegion(wxRegion(HIShapeCreateWithQDRgn(newupdate
)));
2762 wxEraseEvent
eevent( GetId(), dc
);
2763 eevent
.SetEventObject( this );
2764 HandleWindowEvent( eevent
);
2770 // calculate a client-origin version of the update rgn and set m_updateRegion to that
2771 OffsetRgn( newupdate
, -origin
.x
, -origin
.y
) ;
2772 m_updateRegion
= wxRegion(HIShapeCreateWithQDRgn(newupdate
)) ;
2773 DisposeRgn( newupdate
) ;
2775 if ( !m_updateRegion
.Empty() )
2777 // paint the window itself
2780 event
.SetTimestamp(time
);
2781 event
.SetEventObject(this);
2782 HandleWindowEvent(event
);
2786 // now we cannot rely on having its borders drawn by a window itself, as it does not
2787 // get the updateRgn wide enough to always do so, so we do it from the parent
2788 // this would also be the place to draw any custom backgrounds for native controls
2789 // in Composited windowing
2790 wxPoint clientOrigin
= GetClientAreaOrigin() ;
2794 for (wxWindowList::compatibility_iterator node
= GetChildren().GetFirst(); node
; node
= node
->GetNext())
2796 child
= node
->GetData();
2799 if (child
== m_vScrollBar
)
2801 if (child
== m_hScrollBar
)
2803 if (child
->IsTopLevel())
2805 if (!child
->IsShown())
2808 // only draw those in the update region (add a safety margin of 10 pixels for shadow effects
2810 child
->GetPosition( &x
, &y
);
2811 child
->GetSize( &w
, &h
);
2812 Rect childRect
= { y
, x
, y
+ h
, x
+ w
} ;
2813 OffsetRect( &childRect
, clientOrigin
.x
, clientOrigin
.y
) ;
2814 InsetRect( &childRect
, -10 , -10) ;
2816 if ( RectInRgn( &childRect
, updatergn
) )
2818 // paint custom borders
2819 wxNcPaintEvent
eventNc( child
->GetId() );
2820 eventNc
.SetEventObject( child
);
2821 if ( !child
->HandleWindowEvent( eventNc
) )
2823 child
->MacPaintBorders(0, 0) ;
2833 WXWindow
wxWindowMac::MacGetTopLevelWindowRef() const
2835 wxWindowMac
*iter
= (wxWindowMac
*)this ;
2839 if ( iter
->IsTopLevel() )
2841 wxTopLevelWindow
* toplevel
= wxDynamicCast(iter
,wxTopLevelWindow
);
2843 return toplevel
->MacGetWindowRef();
2845 wxPopupWindow
* popupwin
= wxDynamicCast(iter
,wxPopupWindow
);
2847 return popupwin
->MacGetWindowRef();
2850 iter
= iter
->GetParent() ;
2856 bool wxWindowMac::MacHasScrollBarCorner() const
2858 /* Returns whether the scroll bars in a wxScrolledWindow should be
2859 * shortened. Scroll bars should be shortened if either:
2861 * - both scroll bars are visible, or
2863 * - there is a resize box in the parent frame's corner and this
2864 * window shares the bottom and right edge with the parent
2868 if ( m_hScrollBar
== NULL
&& m_vScrollBar
== NULL
)
2871 if ( ( m_hScrollBar
&& m_hScrollBar
->IsShown() )
2872 && ( m_vScrollBar
&& m_vScrollBar
->IsShown() ) )
2874 // Both scroll bars visible
2879 wxPoint thisWindowBottomRight
= GetScreenRect().GetBottomRight();
2881 for ( const wxWindow
*win
= this; win
; win
= win
->GetParent() )
2883 const wxFrame
*frame
= wxDynamicCast( win
, wxFrame
) ;
2886 if ( frame
->GetWindowStyleFlag() & wxRESIZE_BORDER
)
2888 // Parent frame has resize handle
2889 wxPoint frameBottomRight
= frame
->GetScreenRect().GetBottomRight();
2891 // Note: allow for some wiggle room here as wxMac's
2892 // window rect calculations seem to be imprecise
2893 if ( abs( thisWindowBottomRight
.x
- frameBottomRight
.x
) <= 2
2894 && abs( thisWindowBottomRight
.y
- frameBottomRight
.y
) <= 2 )
2896 // Parent frame has resize handle and shares
2897 // right bottom corner
2902 // Parent frame has resize handle but doesn't
2903 // share right bottom corner
2909 // Parent frame doesn't have resize handle
2915 // No parent frame found
2920 void wxWindowMac::MacCreateScrollBars( long style
)
2922 wxASSERT_MSG( m_vScrollBar
== NULL
&& m_hScrollBar
== NULL
, wxT("attempt to create window twice") ) ;
2924 if ( style
& ( wxVSCROLL
| wxHSCROLL
) )
2926 int scrlsize
= MAC_SCROLLBAR_SIZE
;
2927 if ( GetWindowVariant() == wxWINDOW_VARIANT_SMALL
|| GetWindowVariant() == wxWINDOW_VARIANT_MINI
)
2929 scrlsize
= MAC_SMALL_SCROLLBAR_SIZE
;
2932 int adjust
= MacHasScrollBarCorner() ? scrlsize
- 1: 0 ;
2934 GetClientSize( &width
, &height
) ;
2936 wxPoint
vPoint(width
- scrlsize
, 0) ;
2937 wxSize
vSize(scrlsize
, height
- adjust
) ;
2938 wxPoint
hPoint(0, height
- scrlsize
) ;
2939 wxSize
hSize(width
- adjust
, scrlsize
) ;
2941 // we have to set the min size to a smaller value, otherwise they cannot get smaller (InitialSize sets MinSize)
2942 if ( style
& wxVSCROLL
)
2944 m_vScrollBar
= new wxScrollBar((wxWindow
*)this, wxID_ANY
, vPoint
, vSize
, wxVERTICAL
);
2945 m_vScrollBar
->SetMinSize( wxDefaultSize
);
2948 if ( style
& wxHSCROLL
)
2950 m_hScrollBar
= new wxScrollBar((wxWindow
*)this, wxID_ANY
, hPoint
, hSize
, wxHORIZONTAL
);
2951 m_hScrollBar
->SetMinSize( wxDefaultSize
);
2955 // because the create does not take into account the client area origin
2956 // we might have a real position shift
2957 MacRepositionScrollBars() ;
2960 bool wxWindowMac::MacIsChildOfClientArea( const wxWindow
* child
) const
2962 bool result
= ((child
== NULL
) || ((child
!= m_hScrollBar
) && (child
!= m_vScrollBar
)));
2967 void wxWindowMac::MacRepositionScrollBars()
2969 if ( !m_hScrollBar
&& !m_vScrollBar
)
2972 int scrlsize
= m_hScrollBar
? m_hScrollBar
->GetSize().y
: ( m_vScrollBar
? m_vScrollBar
->GetSize().x
: MAC_SCROLLBAR_SIZE
) ;
2973 int adjust
= MacHasScrollBarCorner() ? scrlsize
- 1 : 0 ;
2975 // get real client area
2977 GetSize( &width
, &height
);
2979 width
-= MacGetLeftBorderSize() + MacGetRightBorderSize();
2980 height
-= MacGetTopBorderSize() + MacGetBottomBorderSize();
2982 wxPoint
vPoint( width
- scrlsize
, 0 ) ;
2983 wxSize
vSize( scrlsize
, height
- adjust
) ;
2984 wxPoint
hPoint( 0 , height
- scrlsize
) ;
2985 wxSize
hSize( width
- adjust
, scrlsize
) ;
2988 int x
= 0, y
= 0, w
, h
;
2989 GetSize( &w
, &h
) ;
2991 MacClientToRootWindow( &x
, &y
) ;
2992 MacClientToRootWindow( &w
, &h
) ;
2994 wxWindowMac
*iter
= (wxWindowMac
*)this ;
2996 int totW
= 10000 , totH
= 10000;
2999 if ( iter
->IsTopLevel() )
3001 iter
->GetSize( &totW
, &totH
) ;
3005 iter
= iter
->GetParent() ;
3019 if ( w
- x
>= totW
)
3024 if ( h
- y
>= totH
)
3032 m_vScrollBar
->SetSize( vPoint
.x
, vPoint
.y
, vSize
.x
, vSize
.y
, wxSIZE_ALLOW_MINUS_ONE
);
3034 m_hScrollBar
->SetSize( hPoint
.x
, hPoint
.y
, hSize
.x
, hSize
.y
, wxSIZE_ALLOW_MINUS_ONE
);
3037 bool wxWindowMac::AcceptsFocus() const
3039 return MacCanFocus() && wxWindowBase::AcceptsFocus();
3042 void wxWindowMac::MacSuperChangedPosition()
3044 // only window-absolute structures have to be moved i.e. controls
3046 m_cachedClippedRectValid
= false ;
3049 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
3052 child
= node
->GetData();
3053 child
->MacSuperChangedPosition() ;
3055 node
= node
->GetNext();
3059 void wxWindowMac::MacTopLevelWindowChangedPosition()
3061 // only screen-absolute structures have to be moved i.e. glcanvas
3064 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
3067 child
= node
->GetData();
3068 child
->MacTopLevelWindowChangedPosition() ;
3070 node
= node
->GetNext();
3074 long wxWindowMac::MacGetLeftBorderSize() const
3081 if (HasFlag(wxRAISED_BORDER
) || HasFlag( wxSUNKEN_BORDER
) || HasFlag(wxDOUBLE_BORDER
))
3083 // this metric is only the 'outset' outside the simple frame rect
3084 GetThemeMetric( kThemeMetricEditTextFrameOutset
, &border
) ;
3087 else if (HasFlag(wxSIMPLE_BORDER
))
3089 // this metric is only the 'outset' outside the simple frame rect
3090 GetThemeMetric( kThemeMetricListBoxFrameOutset
, &border
) ;
3097 long wxWindowMac::MacGetRightBorderSize() const
3099 // they are all symmetric in mac themes
3100 return MacGetLeftBorderSize() ;
3103 long wxWindowMac::MacGetTopBorderSize() const
3105 // they are all symmetric in mac themes
3106 return MacGetLeftBorderSize() ;
3109 long wxWindowMac::MacGetBottomBorderSize() const
3111 // they are all symmetric in mac themes
3112 return MacGetLeftBorderSize() ;
3115 long wxWindowMac::MacRemoveBordersFromStyle( long style
)
3117 return style
& ~wxBORDER_MASK
;
3120 // Find the wxWindowMac at the current mouse position, returning the mouse
3122 wxWindowMac
* wxFindWindowAtPointer( wxPoint
& pt
)
3124 pt
= wxGetMousePosition();
3125 wxWindowMac
* found
= wxFindWindowAtPoint(pt
);
3130 // Get the current mouse position.
3131 wxPoint
wxGetMousePosition()
3135 wxGetMousePosition( &x
, &y
);
3137 return wxPoint(x
, y
);
3140 void wxWindowMac::OnMouseEvent( wxMouseEvent
&event
)
3142 if ( event
.GetEventType() == wxEVT_RIGHT_DOWN
)
3144 // copied from wxGTK : CS
3145 // VZ: shouldn't we move this to base class then?
3147 // generate a "context menu" event: this is similar to wxEVT_RIGHT_DOWN
3150 // (a) it's a command event and so is propagated to the parent
3151 // (b) under MSW it can be generated from kbd too
3152 // (c) it uses screen coords (because of (a))
3153 wxContextMenuEvent
evtCtx(wxEVT_CONTEXT_MENU
,
3155 this->ClientToScreen(event
.GetPosition()));
3156 evtCtx
.SetEventObject(this);
3157 if ( ! HandleWindowEvent(evtCtx
) )
3166 void wxWindowMac::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
3168 if ( wxTheApp
->MacGetCurrentEvent() != NULL
&& wxTheApp
->MacGetCurrentEventHandlerCallRef() != NULL
3169 && GetBackgroundStyle() != wxBG_STYLE_TRANSPARENT
)
3170 CallNextEventHandler(
3171 (EventHandlerCallRef
)wxTheApp
->MacGetCurrentEventHandlerCallRef() ,
3172 (EventRef
) wxTheApp
->MacGetCurrentEvent() ) ;
3175 void wxWindowMac::MacHandleControlClick(WXWidget
WXUNUSED(control
),
3176 wxInt16
WXUNUSED(controlpart
),
3177 bool WXUNUSED(mouseStillDown
))
3181 Rect
wxMacGetBoundsForControl( wxWindow
* window
, const wxPoint
& pos
, const wxSize
&size
, bool adjustForOrigin
)
3185 window
->MacGetBoundsForControl( pos
, size
, x
, y
, w
, h
, adjustForOrigin
) ;
3186 Rect bounds
= { y
, x
, y
+ h
, x
+ w
};
3191 wxInt32
wxWindowMac::MacControlHit(WXEVENTHANDLERREF
WXUNUSED(handler
) , WXEVENTREF
WXUNUSED(event
) )
3193 return eventNotHandledErr
;
3196 bool wxWindowMac::Reparent(wxWindowBase
*newParentBase
)
3198 wxWindowMac
*newParent
= (wxWindowMac
*)newParentBase
;
3199 if ( !wxWindowBase::Reparent(newParent
) )
3202 // copied from MacPostControlCreate
3203 ControlRef container
= (ControlRef
) GetParent()->GetHandle() ;
3205 wxASSERT_MSG( container
!= NULL
, wxT("No valid mac container control") ) ;
3207 ::EmbedControl( m_peer
->GetControlRef() , container
) ;
3212 bool wxWindowMac::SetTransparent(wxByte alpha
)
3214 SetBackgroundStyle(wxBG_STYLE_TRANSPARENT
);
3216 if ( alpha
!= m_macAlpha
)
3218 m_macAlpha
= alpha
;
3225 bool wxWindowMac::CanSetTransparent()
3230 wxByte
wxWindowMac::GetTransparent() const
3235 bool wxWindowMac::IsShownOnScreen() const
3237 #if TARGET_API_MAC_OSX
3238 if ( m_peer
&& m_peer
->Ok() )
3240 bool peerVis
= m_peer
->IsVisible();
3241 bool wxVis
= wxWindowBase::IsShownOnScreen();
3242 if( peerVis
!= wxVis
)
3244 // CS : put a breakpoint here to investigate differences
3245 // between native an wx visibilities
3246 // the only place where I've encountered them until now
3247 // are the hiding/showing sequences where the vis-changed event is
3248 // first sent to the innermost control, while wx does things
3249 // from the outmost control
3250 wxVis
= wxWindowBase::IsShownOnScreen();
3254 return m_peer
->IsVisible();
3258 return wxWindowBase::IsShownOnScreen();