1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxWindowMac
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
13 #pragma implementation "window.h"
16 #include "wx/wxprec.h"
19 #include "wx/window.h"
21 #include "wx/dcclient.h"
25 #include "wx/layout.h"
26 #include "wx/dialog.h"
27 #include "wx/scrolbar.h"
28 #include "wx/statbox.h"
29 #include "wx/button.h"
30 #include "wx/settings.h"
31 #include "wx/msgdlg.h"
33 #include "wx/tooltip.h"
34 #include "wx/statusbr.h"
35 #include "wx/menuitem.h"
36 #include "wx/spinctrl.h"
38 #include "wx/geometry.h"
39 #include "wx/textctrl.h"
41 #include "wx/toolbar.h"
48 #define MAC_SCROLLBAR_SIZE 15
49 #define MAC_SMALL_SCROLLBAR_SIZE 11
51 #include "wx/mac/uma.h"
54 #include <ToolUtils.h>
56 #include <MacTextEditor.h>
59 #if TARGET_API_MAC_OSX
61 #include <HIToolbox/HIView.h>
65 #if wxUSE_DRAG_AND_DROP
71 extern wxList wxPendingDelete
;
73 #ifdef __WXUNIVERSAL__
74 IMPLEMENT_ABSTRACT_CLASS(wxWindowMac
, wxWindowBase
)
76 IMPLEMENT_DYNAMIC_CLASS(wxWindow
, wxWindowBase
)
77 #endif // __WXUNIVERSAL__/__WXMAC__
79 #if !USE_SHARED_LIBRARY
81 BEGIN_EVENT_TABLE(wxWindowMac
, wxWindowBase
)
82 EVT_NC_PAINT(wxWindowMac::OnNcPaint
)
83 EVT_ERASE_BACKGROUND(wxWindowMac::OnEraseBackground
)
84 #if TARGET_API_MAC_OSX
85 EVT_PAINT(wxWindowMac::OnPaint
)
87 EVT_SET_FOCUS(wxWindowMac::OnSetFocus
)
88 EVT_KILL_FOCUS(wxWindowMac::OnSetFocus
)
89 EVT_MOUSE_EVENTS(wxWindowMac::OnMouseEvent
)
94 #define wxMAC_DEBUG_REDRAW 0
95 #ifndef wxMAC_DEBUG_REDRAW
96 #define wxMAC_DEBUG_REDRAW 0
99 #define wxMAC_USE_THEME_BORDER 1
101 // ---------------------------------------------------------------------------
102 // Utility Routines to move between different coordinate systems
103 // ---------------------------------------------------------------------------
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)
120 // originating from native control
124 void wxMacNativeToWindow( const wxWindow
* window
, RgnHandle handle
)
126 OffsetRgn( handle
, window
->MacGetLeftBorderSize() , window
->MacGetTopBorderSize() ) ;
129 void wxMacNativeToWindow( const wxWindow
* window
, Rect
*rect
)
131 OffsetRect( rect
, window
->MacGetLeftBorderSize() , window
->MacGetTopBorderSize() ) ;
135 // directed towards native control
138 void wxMacWindowToNative( const wxWindow
* window
, RgnHandle handle
)
140 OffsetRgn( handle
, -window
->MacGetLeftBorderSize() , -window
->MacGetTopBorderSize() );
143 void wxMacWindowToNative( const wxWindow
* window
, Rect
*rect
)
145 OffsetRect( rect
, -window
->MacGetLeftBorderSize() , -window
->MacGetTopBorderSize() ) ;
149 // ---------------------------------------------------------------------------
151 // ---------------------------------------------------------------------------
153 extern long wxMacTranslateKey(unsigned char key
, unsigned char code
) ;
154 pascal OSStatus
wxMacSetupControlBackground( ControlRef iControl
, SInt16 iMessage
, SInt16 iDepth
, Boolean iIsColor
) ;
156 #if TARGET_API_MAC_OSX
158 #if MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_3
160 kEventControlVisibilityChanged
= 157
166 static const EventTypeSpec eventList
[] =
168 { kEventClassControl
, kEventControlHit
} ,
169 #if TARGET_API_MAC_OSX
170 { kEventClassControl
, kEventControlDraw
} ,
171 { kEventClassControl
, kEventControlVisibilityChanged
} ,
172 { kEventClassControl
, kEventControlEnabledStateChanged
} ,
173 { kEventClassControl
, kEventControlHiliteChanged
} ,
174 { kEventClassControl
, kEventControlSetFocusPart
} ,
176 { kEventClassService
, kEventServiceGetTypes
},
177 { kEventClassService
, kEventServiceCopy
},
178 { kEventClassService
, kEventServicePaste
},
180 // { kEventClassControl , kEventControlInvalidateForSizeChange } , // 10.3 only
181 // { kEventClassControl , kEventControlBoundsChanged } ,
185 static pascal OSStatus
wxMacWindowControlEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
187 OSStatus result
= eventNotHandledErr
;
189 wxMacCarbonEvent
cEvent( event
) ;
191 ControlRef controlRef
;
192 wxWindowMac
* thisWindow
= (wxWindowMac
*) data
;
194 cEvent
.GetParameter( kEventParamDirectObject
, &controlRef
) ;
196 switch( GetEventKind( event
) )
198 #if TARGET_API_MAC_OSX
199 case kEventControlDraw
:
201 RgnHandle updateRgn
= NULL
;
202 RgnHandle allocatedRgn
= NULL
;
203 wxRegion visRegion
= thisWindow
->MacGetVisibleRegion() ;
204 if ( cEvent
.GetParameter
<RgnHandle
>(kEventParamRgnHandle
, &updateRgn
) != noErr
)
206 updateRgn
= (RgnHandle
) visRegion
.GetWXHRGN() ;
210 if ( thisWindow
->MacGetLeftBorderSize() != 0 || thisWindow
->MacGetTopBorderSize() != 0 )
212 allocatedRgn
= NewRgn() ;
213 CopyRgn( updateRgn
, allocatedRgn
) ;
214 // hide the given region by the new region that must be shifted
215 wxMacNativeToWindow( thisWindow
, allocatedRgn
) ;
216 updateRgn
= allocatedRgn
;
221 // in case we would need a coregraphics compliant background erase first
222 // now usable to track redraws
223 if ( thisWindow
->MacIsUserPane() )
225 CGContextRef cgContext
= cEvent
.GetParameter
<CGContextRef
>(kEventParamCGContextRef
) ;
226 static float color
= 0.5 ;
229 HIViewGetBounds( controlRef
, &bounds
);
230 CGContextSetRGBFillColor( cgContext
, channel
== 0 ? color
: 0.5 ,
231 channel
== 1 ? color
: 0.5 , channel
== 2 ? color
: 0.5 , 1 );
232 CGContextFillRect( cgContext
, bounds
);
244 #if wxMAC_USE_CORE_GRAPHICS
245 CGContextRef cgContext
= cEvent
.GetParameter
<CGContextRef
>(kEventParamCGContextRef
) ;
246 thisWindow
->MacSetCGContextRef( cgContext
) ;
247 wxMacCGContextStateSaver
sg( cgContext
) ;
249 if ( thisWindow
->MacDoRedraw( updateRgn
, cEvent
.GetTicks() ) )
251 #if wxMAC_USE_CORE_GRAPHICS
252 thisWindow
->MacSetCGContextRef( NULL
) ;
256 DisposeRgn( allocatedRgn
) ;
259 case kEventControlVisibilityChanged
:
260 thisWindow
->MacVisibilityChanged() ;
262 case kEventControlEnabledStateChanged
:
263 thisWindow
->MacEnabledStateChanged() ;
265 case kEventControlHiliteChanged
:
266 thisWindow
->MacHiliteChanged() ;
269 // we emulate this event under Carbon CFM
270 case kEventControlSetFocusPart
:
272 Boolean focusEverything
= false ;
273 ControlPartCode controlPart
= cEvent
.GetParameter
<ControlPartCode
>(kEventParamControlPart
, typeControlPartCode
);
275 if ( cEvent
.GetParameter
<Boolean
>(kEventParamControlFocusEverything
, &focusEverything
) == noErr
)
279 if ( controlPart
== kControlFocusNoPart
)
282 if ( thisWindow
->GetCaret() )
284 thisWindow
->GetCaret()->OnKillFocus();
286 #endif // wxUSE_CARET
287 wxFocusEvent
event( wxEVT_KILL_FOCUS
, thisWindow
->GetId());
288 event
.SetEventObject(thisWindow
);
289 thisWindow
->GetEventHandler()->ProcessEvent(event
) ;
293 // panel wants to track the window which was the last to have focus in it
294 wxChildFocusEvent
eventFocus(thisWindow
);
295 thisWindow
->GetEventHandler()->ProcessEvent(eventFocus
);
298 if ( thisWindow
->GetCaret() )
300 thisWindow
->GetCaret()->OnSetFocus();
302 #endif // wxUSE_CARET
304 wxFocusEvent
event(wxEVT_SET_FOCUS
, thisWindow
->GetId());
305 event
.SetEventObject(thisWindow
);
306 thisWindow
->GetEventHandler()->ProcessEvent(event
) ;
308 if ( thisWindow
->MacIsUserPane() )
312 case kEventControlHit
:
314 result
= thisWindow
->MacControlHit( handler
, event
) ;
323 static pascal OSStatus
wxMacWindowServiceEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
325 OSStatus result
= eventNotHandledErr
;
327 wxMacCarbonEvent
cEvent( event
) ;
329 ControlRef controlRef
;
330 wxWindowMac
* thisWindow
= (wxWindowMac
*) data
;
331 wxTextCtrl
* textCtrl
= wxDynamicCast( thisWindow
, wxTextCtrl
) ;
332 cEvent
.GetParameter( kEventParamDirectObject
, &controlRef
) ;
334 switch( GetEventKind( event
) )
336 case kEventServiceGetTypes
:
340 textCtrl
->GetSelection( &from
, &to
) ;
342 CFMutableArrayRef copyTypes
= 0 , pasteTypes
= 0;
344 copyTypes
= cEvent
.GetParameter
< CFMutableArrayRef
>( kEventParamServiceCopyTypes
, typeCFMutableArrayRef
) ;
345 if ( textCtrl
->IsEditable() )
346 pasteTypes
= cEvent
.GetParameter
< CFMutableArrayRef
>( kEventParamServicePasteTypes
, typeCFMutableArrayRef
) ;
348 static const OSType textDataTypes
[] = { kTXNTextData
/* , 'utxt' , 'PICT', 'MooV', 'AIFF' */ };
349 for ( size_t i
= 0 ; i
< WXSIZEOF(textDataTypes
) ; ++i
)
351 CFStringRef typestring
= CreateTypeStringWithOSType(textDataTypes
[i
]);
355 CFArrayAppendValue (copyTypes
, typestring
) ;
357 CFArrayAppendValue (pasteTypes
, typestring
) ;
358 CFRelease( typestring
) ;
364 case kEventServiceCopy
:
368 textCtrl
->GetSelection( &from
, &to
) ;
369 wxString val
= textCtrl
->GetValue() ;
370 val
= val
.Mid( from
, to
- from
) ;
371 ScrapRef scrapRef
= cEvent
.GetParameter
< ScrapRef
> ( kEventParamScrapRef
, typeScrapRef
) ;
372 verify_noerr( ClearScrap( &scrapRef
) ) ;
373 verify_noerr( PutScrapFlavor( scrapRef
, kTXNTextData
, 0 , val
.Length() , val
.c_str() ) ) ;
377 case kEventServicePaste
:
380 ScrapRef scrapRef
= cEvent
.GetParameter
< ScrapRef
> ( kEventParamScrapRef
, typeScrapRef
) ;
381 Size textSize
, pastedSize
;
382 verify_noerr( GetScrapFlavorSize (scrapRef
, kTXNTextData
, &textSize
) ) ;
384 char *content
= new char[textSize
] ;
385 GetScrapFlavorData (scrapRef
, kTXNTextData
, &pastedSize
, content
);
386 content
[textSize
-1] = 0 ;
388 textCtrl
->WriteText( wxString( content
, wxConvLocal
) );
390 textCtrl
->WriteText( wxString( content
) ) ;
401 pascal OSStatus
wxMacWindowEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
403 EventRef formerEvent
= (EventRef
) wxTheApp
->MacGetCurrentEvent() ;
404 EventHandlerCallRef formerEventHandlerCallRef
= (EventHandlerCallRef
) wxTheApp
->MacGetCurrentEventHandlerCallRef() ;
405 wxTheApp
->MacSetCurrentEvent( event
, handler
) ;
406 OSStatus result
= eventNotHandledErr
;
408 switch ( GetEventClass( event
) )
410 case kEventClassControl
:
411 result
= wxMacWindowControlEventHandler( handler
, event
, data
) ;
413 case kEventClassService
:
414 result
= wxMacWindowServiceEventHandler( handler
, event
, data
) ;
418 wxTheApp
->MacSetCurrentEvent( formerEvent
, formerEventHandlerCallRef
) ;
422 DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacWindowEventHandler
)
424 #if !TARGET_API_MAC_OSX
426 // ---------------------------------------------------------------------------
427 // UserPane events for non OSX builds
428 // ---------------------------------------------------------------------------
430 static pascal void wxMacControlUserPaneDrawProc(ControlRef control
, SInt16 part
)
432 wxWindow
* win
= wxFindControlFromMacControl(control
) ;
434 win
->MacControlUserPaneDrawProc(part
) ;
437 static pascal ControlPartCode
wxMacControlUserPaneHitTestProc(ControlRef control
, Point where
)
439 wxWindow
* win
= wxFindControlFromMacControl(control
) ;
441 return win
->MacControlUserPaneHitTestProc(where
.h
, where
.v
) ;
443 return kControlNoPart
;
446 static pascal ControlPartCode
wxMacControlUserPaneTrackingProc(ControlRef control
, Point startPt
, ControlActionUPP actionProc
)
448 wxWindow
* win
= wxFindControlFromMacControl(control
) ;
450 return win
->MacControlUserPaneTrackingProc( startPt
.h
, startPt
.v
, (void*) actionProc
) ;
452 return kControlNoPart
;
455 static pascal void wxMacControlUserPaneIdleProc(ControlRef control
)
457 wxWindow
* win
= wxFindControlFromMacControl(control
) ;
459 win
->MacControlUserPaneIdleProc() ;
462 static pascal ControlPartCode
wxMacControlUserPaneKeyDownProc(ControlRef control
, SInt16 keyCode
, SInt16 charCode
, SInt16 modifiers
)
464 wxWindow
* win
= wxFindControlFromMacControl(control
) ;
466 return win
->MacControlUserPaneKeyDownProc(keyCode
,charCode
,modifiers
) ;
468 return kControlNoPart
;
471 static pascal void wxMacControlUserPaneActivateProc(ControlRef control
, Boolean activating
)
473 wxWindow
* win
= wxFindControlFromMacControl(control
) ;
475 win
->MacControlUserPaneActivateProc(activating
) ;
478 static pascal ControlPartCode
wxMacControlUserPaneFocusProc(ControlRef control
, ControlFocusPart action
)
480 wxWindow
* win
= wxFindControlFromMacControl(control
) ;
482 return win
->MacControlUserPaneFocusProc(action
) ;
484 return kControlNoPart
;
487 static pascal void wxMacControlUserPaneBackgroundProc(ControlRef control
, ControlBackgroundPtr info
)
489 wxWindow
* win
= wxFindControlFromMacControl(control
) ;
491 win
->MacControlUserPaneBackgroundProc(info
) ;
494 void wxWindowMac::MacControlUserPaneDrawProc(wxInt16 part
)
496 RgnHandle rgn
= NewRgn() ;
498 wxMacWindowStateSaver
sv( this ) ;
499 SectRgn( rgn
, (RgnHandle
) MacGetVisibleRegion().GetWXHRGN() , rgn
) ;
500 MacDoRedraw( rgn
, 0 ) ;
504 wxInt16
wxWindowMac::MacControlUserPaneHitTestProc(wxInt16 x
, wxInt16 y
)
506 return kControlNoPart
;
509 wxInt16
wxWindowMac::MacControlUserPaneTrackingProc(wxInt16 x
, wxInt16 y
, void* actionProc
)
511 return kControlNoPart
;
514 void wxWindowMac::MacControlUserPaneIdleProc()
518 wxInt16
wxWindowMac::MacControlUserPaneKeyDownProc(wxInt16 keyCode
, wxInt16 charCode
, wxInt16 modifiers
)
520 return kControlNoPart
;
523 void wxWindowMac::MacControlUserPaneActivateProc(bool activating
)
527 wxInt16
wxWindowMac::MacControlUserPaneFocusProc(wxInt16 action
)
529 return kControlNoPart
;
532 void wxWindowMac::MacControlUserPaneBackgroundProc(void* info
)
536 ControlUserPaneDrawUPP gControlUserPaneDrawUPP
= NULL
;
537 ControlUserPaneHitTestUPP gControlUserPaneHitTestUPP
= NULL
;
538 ControlUserPaneTrackingUPP gControlUserPaneTrackingUPP
= NULL
;
539 ControlUserPaneIdleUPP gControlUserPaneIdleUPP
= NULL
;
540 ControlUserPaneKeyDownUPP gControlUserPaneKeyDownUPP
= NULL
;
541 ControlUserPaneActivateUPP gControlUserPaneActivateUPP
= NULL
;
542 ControlUserPaneFocusUPP gControlUserPaneFocusUPP
= NULL
;
543 ControlUserPaneBackgroundUPP gControlUserPaneBackgroundUPP
= NULL
;
547 // ===========================================================================
549 // ===========================================================================
551 #if KEY_wxList_DEPRECATED
552 wxList
wxWinMacControlList(wxKEY_INTEGER
);
554 wxWindow
*wxFindControlFromMacControl(ControlRef inControl
)
556 wxNode
*node
= wxWinMacControlList
.Find((long)inControl
);
559 return (wxControl
*)node
->GetData();
562 void wxAssociateControlWithMacControl(ControlRef inControl
, wxWindow
*control
)
564 // adding NULL ControlRef is (first) surely a result of an error and
565 // (secondly) breaks native event processing
566 wxCHECK_RET( inControl
!= (ControlRef
) NULL
, wxT("attempt to add a NULL WindowRef to window list") );
568 if ( !wxWinMacControlList
.Find((long)inControl
) )
569 wxWinMacControlList
.Append((long)inControl
, control
);
572 void wxRemoveMacControlAssociation(wxWindow
*control
)
574 wxWinMacControlList
.DeleteObject(control
);
578 WX_DECLARE_HASH_MAP(ControlRef
, wxWindow
*, wxPointerHash
, wxPointerEqual
, MacControlMap
);
580 static MacControlMap wxWinMacControlList
;
582 wxWindow
*wxFindControlFromMacControl(ControlRef inControl
)
584 MacControlMap::iterator node
= wxWinMacControlList
.find(inControl
);
586 return (node
== wxWinMacControlList
.end()) ? NULL
: node
->second
;
589 void wxAssociateControlWithMacControl(ControlRef inControl
, wxWindow
*control
)
591 // adding NULL ControlRef is (first) surely a result of an error and
592 // (secondly) breaks native event processing
593 wxCHECK_RET( inControl
!= (ControlRef
) NULL
, wxT("attempt to add a NULL WindowRef to window list") );
595 wxWinMacControlList
[inControl
] = control
;
598 void wxRemoveMacControlAssociation(wxWindow
*control
)
600 // iterate over all the elements in the class
601 MacControlMap::iterator it
;
602 for ( it
= wxWinMacControlList
.begin(); it
!= wxWinMacControlList
.end(); ++it
)
604 if ( it
->second
== control
)
606 wxWinMacControlList
.erase(it
);
611 #endif // deprecated wxList
614 ControlActionUPP wxMacLiveScrollbarActionUPP
= NULL
;
616 ControlColorUPP wxMacSetupControlBackgroundUPP
= NULL
;
618 // we have to setup the brush in the current port and return noErr
619 // or return an error code so that the control manager walks further up the
620 // hierarchy to find a correct background
622 pascal OSStatus
wxMacSetupControlBackground( ControlRef iControl
, SInt16 iMessage
, SInt16 iDepth
, Boolean iIsColor
)
624 OSStatus status
= paramErr
;
627 case kControlMsgApplyTextColor
:
629 case kControlMsgSetUpBackground
:
631 wxWindow
* wx
= (wxWindow
*) wxFindControlFromMacControl( iControl
) ;
635 const wxBrush &brush = wx->MacGetBackgroundBrush() ;
638 wxDC::MacSetupBackgroundForCurrentPort( brush ) ;
640 // this clipping is only needed for non HIView
642 RgnHandle clip
= NewRgn() ;
645 wx
->MacWindowToRootWindow( &x
,&y
) ;
646 CopyRgn( (RgnHandle
) wx
->MacGetVisibleRegion().GetWXHRGN() , clip
) ;
647 OffsetRgn( clip
, x
, y
) ;
654 else if ( wx->MacIsUserPane() )
656 // if we don't have a valid brush for such a control, we have to call the
657 // setup of our parent ourselves
658 status = SetUpControlBackground( (ControlRef) wx->GetParent()->GetHandle() , iDepth , iIsColor ) ;
671 pascal void wxMacLiveScrollbarActionProc( ControlRef control
, ControlPartCode partCode
) ;
672 pascal void wxMacLiveScrollbarActionProc( ControlRef control
, ControlPartCode partCode
)
676 wxWindow
* wx
= wxFindControlFromMacControl( control
) ;
679 wx
->MacHandleControlClick( (WXWidget
) control
, partCode
, true /* stillDown */ ) ;
684 // ----------------------------------------------------------------------------
685 // constructors and such
686 // ----------------------------------------------------------------------------
688 wxWindowMac::wxWindowMac()
693 wxWindowMac::wxWindowMac(wxWindowMac
*parent
,
698 const wxString
& name
)
701 Create(parent
, id
, pos
, size
, style
, name
);
704 void wxWindowMac::Init()
708 #if WXWIN_COMPATIBILITY_2_4
709 m_backgroundTransparent
= FALSE
;
712 // as all windows are created with WS_VISIBLE style...
715 m_hScrollBar
= NULL
;
716 m_vScrollBar
= NULL
;
717 m_macBackgroundBrush
= wxNullBrush
;
719 m_macIsUserPane
= TRUE
;
720 #if wxMAC_USE_CORE_GRAPHICS
721 m_cgContextRef
= NULL
;
723 // make sure all proc ptrs are available
725 #if !TARGET_API_MAC_OSX
726 if ( gControlUserPaneDrawUPP
== NULL
)
728 gControlUserPaneDrawUPP
= NewControlUserPaneDrawUPP( wxMacControlUserPaneDrawProc
) ;
729 gControlUserPaneHitTestUPP
= NewControlUserPaneHitTestUPP( wxMacControlUserPaneHitTestProc
) ;
730 gControlUserPaneTrackingUPP
= NewControlUserPaneTrackingUPP( wxMacControlUserPaneTrackingProc
) ;
731 gControlUserPaneIdleUPP
= NewControlUserPaneIdleUPP( wxMacControlUserPaneIdleProc
) ;
732 gControlUserPaneKeyDownUPP
= NewControlUserPaneKeyDownUPP( wxMacControlUserPaneKeyDownProc
) ;
733 gControlUserPaneActivateUPP
= NewControlUserPaneActivateUPP( wxMacControlUserPaneActivateProc
) ;
734 gControlUserPaneFocusUPP
= NewControlUserPaneFocusUPP( wxMacControlUserPaneFocusProc
) ;
735 gControlUserPaneBackgroundUPP
= NewControlUserPaneBackgroundUPP( wxMacControlUserPaneBackgroundProc
) ;
738 if ( wxMacLiveScrollbarActionUPP
== NULL
)
740 wxMacLiveScrollbarActionUPP
= NewControlActionUPP( wxMacLiveScrollbarActionProc
);
743 if ( wxMacSetupControlBackgroundUPP
== NULL
)
745 wxMacSetupControlBackgroundUPP
= NewControlColorUPP( wxMacSetupControlBackground
) ;
748 // we need a valid font for the encodings
749 wxWindowBase::SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
753 wxWindowMac::~wxWindowMac()
757 m_isBeingDeleted
= TRUE
;
759 MacInvalidateBorders() ;
761 #ifndef __WXUNIVERSAL__
762 // VS: make sure there's no wxFrame with last focus set to us:
763 for ( wxWindow
*win
= GetParent(); win
; win
= win
->GetParent() )
765 wxFrame
*frame
= wxDynamicCast(win
, wxFrame
);
768 if ( frame
->GetLastFocus() == this )
770 frame
->SetLastFocus((wxWindow
*)NULL
);
775 #endif // __WXUNIVERSAL__
777 // destroy children before destroying this window itself
780 // wxRemoveMacControlAssociation( this ) ;
781 // If we delete an item, we should initialize the parent panel,
782 // because it could now be invalid.
783 wxWindow
*parent
= GetParent() ;
786 if (parent
->GetDefaultItem() == (wxButton
*) this)
787 parent
->SetDefaultItem(NULL
);
789 if ( m_peer
&& m_peer
->Ok() )
791 // in case the callback might be called during destruction
792 wxRemoveMacControlAssociation( this) ;
793 // we currently are not using this hook
794 // ::SetControlColorProc( *m_peer , NULL ) ;
798 if ( g_MacLastWindow
== this )
800 g_MacLastWindow
= NULL
;
803 wxFrame
* frame
= wxDynamicCast( wxGetTopLevelParent( this ) , wxFrame
) ;
806 if ( frame
->GetLastFocus() == this )
807 frame
->SetLastFocus( NULL
) ;
810 // delete our drop target if we've got one
811 #if wxUSE_DRAG_AND_DROP
812 if ( m_dropTarget
!= NULL
)
817 #endif // wxUSE_DRAG_AND_DROP
821 WXWidget
wxWindowMac::GetHandle() const
823 return (WXWidget
) m_peer
->GetControlRef() ;
827 void wxWindowMac::MacInstallEventHandler( WXWidget control
)
829 wxAssociateControlWithMacControl( (ControlRef
) control
, this ) ;
830 InstallControlEventHandler( (ControlRef
) control
, GetwxMacWindowEventHandlerUPP(),
831 GetEventTypeCount(eventList
), eventList
, this,
832 (EventHandlerRef
*)&m_macControlEventHandler
);
833 #if !TARGET_API_MAC_OSX
834 if ( (ControlRef
) control
== m_peer
->GetControlRef() )
836 m_peer
->SetData
<ControlUserPaneDrawUPP
>(kControlEntireControl
,kControlUserPaneDrawProcTag
,&gControlUserPaneDrawUPP
) ;
837 m_peer
->SetData
<ControlUserPaneHitTestUPP
>(kControlEntireControl
,kControlUserPaneHitTestProcTag
,&gControlUserPaneHitTestUPP
) ;
838 m_peer
->SetData
<ControlUserPaneTrackingUPP
>(kControlEntireControl
,kControlUserPaneTrackingProcTag
,&gControlUserPaneTrackingUPP
) ;
839 m_peer
->SetData
<ControlUserPaneIdleUPP
>(kControlEntireControl
,kControlUserPaneIdleProcTag
,&gControlUserPaneIdleUPP
) ;
840 m_peer
->SetData
<ControlUserPaneKeyDownUPP
>(kControlEntireControl
,kControlUserPaneKeyDownProcTag
,&gControlUserPaneKeyDownUPP
) ;
841 m_peer
->SetData
<ControlUserPaneActivateUPP
>(kControlEntireControl
,kControlUserPaneActivateProcTag
,&gControlUserPaneActivateUPP
) ;
842 m_peer
->SetData
<ControlUserPaneFocusUPP
>(kControlEntireControl
,kControlUserPaneFocusProcTag
,&gControlUserPaneFocusUPP
) ;
843 m_peer
->SetData
<ControlUserPaneBackgroundUPP
>(kControlEntireControl
,kControlUserPaneBackgroundProcTag
,&gControlUserPaneBackgroundUPP
) ;
850 bool wxWindowMac::Create(wxWindowMac
*parent
, wxWindowID id
,
854 const wxString
& name
)
856 wxCHECK_MSG( parent
, FALSE
, wxT("can't create wxWindowMac without parent") );
858 if ( !CreateBase(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
861 m_windowVariant
= parent
->GetWindowVariant() ;
863 if ( m_macIsUserPane
)
865 Rect bounds
= wxMacGetBoundsForControl( this , pos
, size
) ;
868 | kControlSupportsEmbedding
869 // | kControlSupportsLiveFeedback
870 // | kControlHasSpecialBackground
871 // | kControlSupportsCalcBestRect
872 // | kControlHandlesTracking
873 | kControlSupportsFocus
874 // | kControlWantsActivate
875 // | kControlWantsIdle
878 m_peer
= new wxMacControl(this) ;
879 ::CreateUserPaneControl( MAC_WXHWND(GetParent()->MacGetTopLevelWindowRef()) , &bounds
, features
, m_peer
->GetControlRefAddr() );
882 MacPostControlCreate(pos
,size
) ;
884 #ifndef __WXUNIVERSAL__
885 // Don't give scrollbars to wxControls unless they ask for them
886 if ( (! IsKindOf(CLASSINFO(wxControl
)) && ! IsKindOf(CLASSINFO(wxStatusBar
))) ||
887 (IsKindOf(CLASSINFO(wxControl
)) && ( style
& wxHSCROLL
|| style
& wxVSCROLL
)))
889 MacCreateScrollBars( style
) ;
893 wxWindowCreateEvent
event(this);
894 GetEventHandler()->AddPendingEvent(event
);
899 void wxWindowMac::MacChildAdded()
903 m_vScrollBar
->Raise() ;
907 m_hScrollBar
->Raise() ;
912 void wxWindowMac::MacPostControlCreate(const wxPoint
& pos
, const wxSize
& size
)
914 wxASSERT_MSG( m_peer
!= NULL
&& m_peer
->Ok() , wxT("No valid mac control") ) ;
916 m_peer
->SetReference( (long) this ) ;
917 GetParent()->AddChild(this);
919 MacInstallEventHandler( (WXWidget
) m_peer
->GetControlRef() );
921 ControlRef container
= (ControlRef
) GetParent()->GetHandle() ;
922 wxASSERT_MSG( container
!= NULL
, wxT("No valid mac container control") ) ;
923 ::EmbedControl( m_peer
->GetControlRef() , container
) ;
924 GetParent()->MacChildAdded() ;
926 // adjust font, controlsize etc
927 DoSetWindowVariant( m_windowVariant
) ;
929 #if !TARGET_API_MAC_OSX
930 // eventually we can fix some clipping issues be reactivating this hook
931 //if ( m_macIsUserPane )
932 // SetControlColorProc( m_peer->GetControlRef() , wxMacSetupControlBackgroundUPP ) ;
934 m_peer
->SetTitle( wxStripMenuCodes(m_label
) ) ;
936 if (!m_macIsUserPane
)
938 SetInitialBestSize(size
);
941 SetCursor( *wxSTANDARD_CURSOR
) ;
944 void wxWindowMac::DoSetWindowVariant( wxWindowVariant variant
)
946 // Don't assert, in case we set the window variant before
947 // the window is created
948 // wxASSERT( m_peer->Ok() ) ;
950 m_windowVariant
= variant
;
952 if (m_peer
== NULL
|| !m_peer
->Ok())
956 ThemeFontID themeFont
= kThemeSystemFont
;
958 // we will get that from the settings later
959 // and make this NORMAL later, but first
960 // we have a few calculations that we must fix
964 case wxWINDOW_VARIANT_NORMAL
:
965 size
= kControlSizeNormal
;
966 themeFont
= kThemeSystemFont
;
968 case wxWINDOW_VARIANT_SMALL
:
969 size
= kControlSizeSmall
;
970 themeFont
= kThemeSmallSystemFont
;
972 case wxWINDOW_VARIANT_MINI
:
973 if (UMAGetSystemVersion() >= 0x1030 )
975 // not always defined in the headers
981 size
= kControlSizeSmall
;
982 themeFont
= kThemeSmallSystemFont
;
985 case wxWINDOW_VARIANT_LARGE
:
986 size
= kControlSizeLarge
;
987 themeFont
= kThemeSystemFont
;
990 wxFAIL_MSG(_T("unexpected window variant"));
993 m_peer
->SetData
<ControlSize
>(kControlEntireControl
, kControlSizeTag
,&size
) ;
996 font
.MacCreateThemeFont( themeFont
) ;
1000 void wxWindowMac::MacUpdateControlFont()
1002 m_peer
->SetFont( GetFont() , GetForegroundColour() , GetWindowStyle() ) ;
1006 bool wxWindowMac::SetFont(const wxFont
& font
)
1008 bool retval
= wxWindowBase::SetFont( font
) ;
1010 MacUpdateControlFont() ;
1015 bool wxWindowMac::SetForegroundColour(const wxColour
& col
)
1017 if ( !wxWindowBase::SetForegroundColour(col
) )
1020 MacUpdateControlFont() ;
1025 bool wxWindowMac::SetBackgroundColour(const wxColour
& col
)
1027 if ( !wxWindowBase::SetBackgroundColour(col
) && m_hasBgCol
)
1031 wxColour
newCol(GetBackgroundColour());
1032 if ( newCol
== wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE
) )
1034 brush
.MacSetTheme( kThemeBrushDocumentWindowBackground
) ;
1036 else if ( newCol
== wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
) )
1038 brush
.MacSetTheme( kThemeBrushDialogBackgroundActive
) ;
1042 brush
.SetColour( newCol
) ;
1044 MacSetBackgroundBrush( brush
) ;
1046 MacUpdateControlFont() ;
1051 void wxWindowMac::MacSetBackgroundBrush( const wxBrush
&brush
)
1053 m_macBackgroundBrush
= brush
;
1054 m_peer
->SetBackground( brush
) ;
1057 bool wxWindowMac::MacCanFocus() const
1059 // there is currently no way to determine whether the window is running in full keyboard
1060 // access mode, therefore we cannot rely on these features, yet the only other way would be
1061 // to issue a SetKeyboardFocus event and verify after whether it succeeded, this would risk problems
1062 // in event handlers...
1063 UInt32 features
= 0 ;
1064 m_peer
->GetFeatures( & features
) ;
1065 return features
& ( kControlSupportsFocus
| kControlGetsFocusOnClick
) ;
1069 void wxWindowMac::SetFocus()
1071 if ( AcceptsFocus() )
1074 wxWindow
* former
= FindFocus() ;
1075 if ( former
== this )
1078 OSStatus err
= m_peer
->SetFocus( kControlFocusNextPart
) ;
1079 // as we cannot rely on the control features to find out whether we are in full keyboard mode, we can only
1080 // leave in case of an error
1081 if ( err
== errCouldntSetFocus
)
1084 #if !TARGET_API_MAC_OSX
1085 // emulate carbon events when running under carbonlib where they are not natively available
1088 EventRef evRef
= NULL
;
1089 verify_noerr( MacCreateEvent( NULL
, kEventClassControl
, kEventControlSetFocusPart
, TicksToEventTime( TickCount() ) , kEventAttributeUserEvent
,
1092 wxMacCarbonEvent
cEvent( evRef
) ;
1093 cEvent
.SetParameter
<ControlRef
>( kEventParamDirectObject
, (ControlRef
) former
->GetHandle() ) ;
1094 cEvent
.SetParameter
<ControlPartCode
>(kEventParamControlPart
, typeControlPartCode
, kControlFocusNoPart
) ;
1096 wxMacWindowEventHandler( NULL
, evRef
, former
) ;
1097 ReleaseEvent(evRef
) ;
1099 // send new focus event
1101 EventRef evRef
= NULL
;
1102 verify_noerr( MacCreateEvent( NULL
, kEventClassControl
, kEventControlSetFocusPart
, TicksToEventTime( TickCount() ) , kEventAttributeUserEvent
,
1105 wxMacCarbonEvent
cEvent( evRef
) ;
1106 cEvent
.SetParameter
<ControlRef
>( kEventParamDirectObject
, (ControlRef
) GetHandle() ) ;
1107 cEvent
.SetParameter
<ControlPartCode
>(kEventParamControlPart
, typeControlPartCode
, kControlFocusNextPart
) ;
1109 wxMacWindowEventHandler( NULL
, evRef
, this ) ;
1110 ReleaseEvent(evRef
) ;
1117 void wxWindowMac::DoCaptureMouse()
1119 wxTheApp
->s_captureWindow
= this ;
1122 wxWindow
* wxWindowBase::GetCapture()
1124 return wxTheApp
->s_captureWindow
;
1127 void wxWindowMac::DoReleaseMouse()
1129 wxTheApp
->s_captureWindow
= NULL
;
1132 #if wxUSE_DRAG_AND_DROP
1134 void wxWindowMac::SetDropTarget(wxDropTarget
*pDropTarget
)
1136 if ( m_dropTarget
!= 0 ) {
1137 delete m_dropTarget
;
1140 m_dropTarget
= pDropTarget
;
1141 if ( m_dropTarget
!= 0 )
1149 // Old style file-manager drag&drop
1150 void wxWindowMac::DragAcceptFiles(bool accept
)
1155 // Returns the size of the native control. In the case of the toplevel window
1156 // this is the content area root control
1158 void wxWindowMac::MacGetPositionAndSizeFromControl(int& x
, int& y
,
1159 int& w
, int& h
) const
1162 m_peer
->GetRect( &bounds
) ;
1167 w
= bounds
.right
- bounds
.left
;
1168 h
= bounds
.bottom
- bounds
.top
;
1171 // From a wx position / size calculate the appropriate size of the native control
1173 bool wxWindowMac::MacGetBoundsForControl(const wxPoint
& pos
,
1176 int& w
, int& h
, bool adjustOrigin
) const
1178 // the desired size, minus the border pixels gives the correct size of the control
1182 // todo the default calls may be used as soon as PostCreateControl Is moved here
1183 w
= wxMax(size
.x
,0) ; // WidthDefault( size.x );
1184 h
= wxMax(size
.y
,0) ; // HeightDefault( size.y ) ;
1185 #if !TARGET_API_MAC_OSX
1186 GetParent()->MacWindowToRootWindow( &x
, &y
) ;
1189 x
+= MacGetLeftBorderSize() ;
1190 y
+= MacGetTopBorderSize() ;
1191 w
-= MacGetLeftBorderSize() + MacGetRightBorderSize() ;
1192 h
-= MacGetTopBorderSize() + MacGetBottomBorderSize() ;
1195 AdjustForParentClientOrigin( x
, y
) ;
1196 #if TARGET_API_MAC_OSX
1197 // this is in window relative coordinate, as this parent may have a border, its physical position is offset by this border
1198 if ( ! GetParent()->IsTopLevel() )
1200 x
-= GetParent()->MacGetLeftBorderSize() ;
1201 y
-= GetParent()->MacGetTopBorderSize() ;
1207 // Get window size (not client size)
1208 void wxWindowMac::DoGetSize(int *x
, int *y
) const
1210 // take the size of the control and add the borders that have to be drawn outside
1211 int x1
, y1
, w1
, h1
;
1213 MacGetPositionAndSizeFromControl( x1
, y1
, w1
,h1
) ;
1215 w1
+= MacGetLeftBorderSize() + MacGetRightBorderSize() ;
1216 h1
+= MacGetTopBorderSize() + MacGetBottomBorderSize() ;
1222 // get the position of the bounds of this window in client coordinates of its parent
1223 void wxWindowMac::DoGetPosition(int *x
, int *y
) const
1225 int x1
, y1
, w1
,h1
;
1226 MacGetPositionAndSizeFromControl( x1
, y1
, w1
,h1
) ;
1227 x1
-= MacGetLeftBorderSize() ;
1228 y1
-= MacGetTopBorderSize() ;
1230 #if !TARGET_API_MAC_OSX
1231 if ( !GetParent()->IsTopLevel() )
1234 GetControlBounds( (ControlRef
) GetParent()->GetHandle() , &bounds
) ;
1239 if ( !IsTopLevel() )
1241 wxWindow
*parent
= GetParent();
1244 // we must first adjust it to be in window coordinates of the parent, as otherwise it gets lost by the clientareaorigin fix
1245 x1
+= parent
->MacGetLeftBorderSize() ;
1246 y1
+= parent
->MacGetTopBorderSize() ;
1247 // and now to client coordinates
1248 wxPoint
pt(parent
->GetClientAreaOrigin());
1257 void wxWindowMac::DoScreenToClient(int *x
, int *y
) const
1259 WindowRef window
= (WindowRef
) MacGetTopLevelWindowRef() ;
1261 wxCHECK_RET( window
, wxT("TopLevel Window Missing") ) ;
1264 Point localwhere
= {0,0} ;
1266 if(x
) localwhere
.h
= * x
;
1267 if(y
) localwhere
.v
= * y
;
1269 QDGlobalToLocalPoint( GetWindowPort( window
) , &localwhere
) ;
1270 if(x
) *x
= localwhere
.h
;
1271 if(y
) *y
= localwhere
.v
;
1274 MacRootWindowToWindow( x
, y
) ;
1276 wxPoint origin
= GetClientAreaOrigin() ;
1277 if(x
) *x
-= origin
.x
;
1278 if(y
) *y
-= origin
.y
;
1281 void wxWindowMac::DoClientToScreen(int *x
, int *y
) const
1283 WindowRef window
= (WindowRef
) MacGetTopLevelWindowRef() ;
1284 wxCHECK_RET( window
, wxT("TopLevel Window Missing") ) ;
1286 wxPoint origin
= GetClientAreaOrigin() ;
1287 if(x
) *x
+= origin
.x
;
1288 if(y
) *y
+= origin
.y
;
1290 MacWindowToRootWindow( x
, y
) ;
1293 Point localwhere
= { 0,0 };
1294 if(x
) localwhere
.h
= * x
;
1295 if(y
) localwhere
.v
= * y
;
1296 QDLocalToGlobalPoint( GetWindowPort( window
) , &localwhere
) ;
1297 if(x
) *x
= localwhere
.h
;
1298 if(y
) *y
= localwhere
.v
;
1302 void wxWindowMac::MacClientToRootWindow( int *x
, int *y
) const
1304 wxPoint origin
= GetClientAreaOrigin() ;
1305 if(x
) *x
+= origin
.x
;
1306 if(y
) *y
+= origin
.y
;
1308 MacWindowToRootWindow( x
, y
) ;
1311 void wxWindowMac::MacRootWindowToClient( int *x
, int *y
) const
1313 MacRootWindowToWindow( x
, y
) ;
1315 wxPoint origin
= GetClientAreaOrigin() ;
1316 if(x
) *x
-= origin
.x
;
1317 if(y
) *y
-= origin
.y
;
1320 void wxWindowMac::MacWindowToRootWindow( int *x
, int *y
) const
1323 if ( x
) pt
.x
= *x
;
1324 if ( y
) pt
.y
= *y
;
1326 if ( !IsTopLevel() )
1328 wxTopLevelWindowMac
* top
= MacGetTopLevelWindow();
1331 pt
.x
-= MacGetLeftBorderSize() ;
1332 pt
.y
-= MacGetTopBorderSize() ;
1333 wxMacControl::Convert( &pt
, m_peer
, top
->m_peer
) ;
1337 if ( x
) *x
= (int) pt
.x
;
1338 if ( y
) *y
= (int) pt
.y
;
1341 void wxWindowMac::MacWindowToRootWindow( short *x
, short *y
) const
1346 MacWindowToRootWindow( &x1
, &y1
) ;
1351 void wxWindowMac::MacRootWindowToWindow( int *x
, int *y
) const
1354 if ( x
) pt
.x
= *x
;
1355 if ( y
) pt
.y
= *y
;
1357 if ( !IsTopLevel() )
1359 wxMacControl::Convert( &pt
, MacGetTopLevelWindow()->m_peer
, m_peer
) ;
1360 pt
.x
+= MacGetLeftBorderSize() ;
1361 pt
.y
+= MacGetTopBorderSize() ;
1364 if ( x
) *x
= (int) pt
.x
;
1365 if ( y
) *y
= (int) pt
.y
;
1368 void wxWindowMac::MacRootWindowToWindow( short *x
, short *y
) const
1373 MacRootWindowToWindow( &x1
, &y1
) ;
1378 void wxWindowMac::MacGetContentAreaInset( int &left
, int &top
, int &right
, int &bottom
)
1380 RgnHandle rgn
= NewRgn() ;
1382 if ( m_peer
->GetRegion( kControlContentMetaPart
, rgn
) == noErr
)
1384 GetRegionBounds( rgn
, &content
) ;
1388 m_peer
->GetRect( &content
) ;
1392 m_peer
->GetRect( &structure
) ;
1393 #if !TARGET_API_MAC_OSX
1394 OffsetRect( &content
, -structure
.left
, -structure
.top
) ;
1396 left
= content
.left
- structure
.left
;
1397 top
= content
.top
- structure
.top
;
1398 right
= structure
.right
- content
.right
;
1399 bottom
= structure
.bottom
- content
.bottom
;
1402 wxSize
wxWindowMac::DoGetSizeFromClientSize( const wxSize
& size
) const
1404 wxSize sizeTotal
= size
;
1406 RgnHandle rgn
= NewRgn() ;
1410 if ( m_peer
->GetRegion( kControlContentMetaPart
, rgn
) == noErr
)
1412 GetRegionBounds( rgn
, &content
) ;
1416 m_peer
->GetRect( &content
) ;
1420 m_peer
->GetRect( &structure
) ;
1421 #if !TARGET_API_MAC_OSX
1422 OffsetRect( &content
, -structure
.left
, -structure
.top
) ;
1425 sizeTotal
.x
+= (structure
.right
- structure
.left
) - (content
.right
- content
.left
) ;
1426 sizeTotal
.y
+= (structure
.bottom
- structure
.top
) - (content
.bottom
- content
.top
) ;
1428 sizeTotal
.x
+= MacGetLeftBorderSize( ) + MacGetRightBorderSize( ) ;
1429 sizeTotal
.y
+= MacGetTopBorderSize( ) + MacGetBottomBorderSize( ) ;
1435 // Get size *available for subwindows* i.e. excluding menu bar etc.
1436 void wxWindowMac::DoGetClientSize(int *x
, int *y
) const
1440 RgnHandle rgn
= NewRgn() ;
1442 if ( m_peer
->GetRegion( kControlContentMetaPart
, rgn
) == noErr
)
1444 GetRegionBounds( rgn
, &content
) ;
1448 m_peer
->GetRect( &content
) ;
1451 #if !TARGET_API_MAC_OSX
1453 m_peer
->GetRect( &structure
) ;
1454 OffsetRect( &content
, -structure
.left
, -structure
.top
) ;
1456 ww
= content
.right
- content
.left
;
1457 hh
= content
.bottom
- content
.top
;
1459 ww -= MacGetLeftBorderSize( ) + MacGetRightBorderSize( ) ;
1460 hh -= MacGetTopBorderSize( ) + MacGetBottomBorderSize( );
1463 if ( (m_vScrollBar && m_vScrollBar->IsShown()) || (m_hScrollBar && m_hScrollBar->IsShown()) )
1469 GetSize( &w , &h ) ;
1471 MacClientToRootWindow( &x1 , &y1 ) ;
1472 MacClientToRootWindow( &w , &h ) ;
1474 wxWindowMac *iter = (wxWindowMac*)this ;
1476 int totW = 10000 , totH = 10000;
1479 if ( iter->IsTopLevel() )
1481 iter->GetSize( &totW , &totH ) ;
1485 iter = iter->GetParent() ;
1488 if (m_hScrollBar && m_hScrollBar->IsShown() )
1490 hh -= m_hScrollBar->GetSize().y ; // MAC_SCROLLBAR_SIZE ;
1496 if (m_vScrollBar && m_vScrollBar->IsShown() )
1498 ww -= m_vScrollBar->GetSize().x ; // MAC_SCROLLBAR_SIZE;
1506 if (m_hScrollBar
&& m_hScrollBar
->IsShown() )
1508 hh
-= m_hScrollBar
->GetSize().y
; // MAC_SCROLLBAR_SIZE ;
1510 if (m_vScrollBar
&& m_vScrollBar
->IsShown() )
1512 ww
-= m_vScrollBar
->GetSize().x
; // MAC_SCROLLBAR_SIZE;
1519 bool wxWindowMac::SetCursor(const wxCursor
& cursor
)
1521 if (m_cursor
== cursor
)
1524 if (wxNullCursor
== cursor
)
1526 if ( ! wxWindowBase::SetCursor( *wxSTANDARD_CURSOR
) )
1531 if ( ! wxWindowBase::SetCursor( cursor
) )
1535 wxASSERT_MSG( m_cursor
.Ok(),
1536 wxT("cursor must be valid after call to the base version"));
1539 wxWindowMac
*mouseWin
= 0 ;
1541 WindowRef window
= (WindowRef
) MacGetTopLevelWindowRef() ;
1543 Boolean swapped
= QDSwapPort( GetWindowPort( window
) , &savePort
) ;
1545 // TODO If we ever get a GetCurrentEvent.. replacement for the mouse
1546 // position, use it...
1550 ControlPartCode part
;
1551 ControlRef control
;
1552 control
= wxMacFindControlUnderMouse( pt
, window
, &part
) ;
1554 mouseWin
= wxFindControlFromMacControl( control
) ;
1557 QDSwapPort( savePort
, NULL
) ;
1560 if ( mouseWin
== this && !wxIsBusy() )
1562 m_cursor
.MacInstall() ;
1569 bool wxWindowMac::DoPopupMenu(wxMenu
*menu
, int x
, int y
)
1571 menu
->SetInvokingWindow(this);
1574 if ( x
== -1 && y
== -1 )
1576 wxPoint mouse
= wxGetMousePosition();
1577 x
= mouse
.x
; y
= mouse
.y
;
1581 ClientToScreen( &x
, &y
) ;
1584 menu
->MacBeforeDisplay( true ) ;
1585 long menuResult
= ::PopUpMenuSelect((MenuHandle
) menu
->GetHMenu() ,y
,x
, 0) ;
1586 if ( HiWord(menuResult
) != 0 )
1589 GetMenuItemCommandID( GetMenuHandle(HiWord(menuResult
)) , LoWord(menuResult
) , &id
) ;
1590 wxMenuItem
* item
= NULL
;
1592 item
= menu
->FindItem(id
, &realmenu
) ;
1593 if (item
->IsCheckable())
1595 item
->Check( !item
->IsChecked() ) ;
1597 menu
->SendEvent( id
, item
->IsCheckable() ? item
->IsChecked() : -1 ) ;
1599 menu
->MacAfterDisplay( true ) ;
1601 menu
->SetInvokingWindow(NULL
);
1607 // ----------------------------------------------------------------------------
1609 // ----------------------------------------------------------------------------
1613 void wxWindowMac::DoSetToolTip(wxToolTip
*tooltip
)
1615 wxWindowBase::DoSetToolTip(tooltip
);
1618 m_tooltip
->SetWindow(this);
1621 #endif // wxUSE_TOOLTIPS
1623 void wxWindowMac::MacInvalidateBorders()
1625 if ( m_peer
== NULL
)
1628 bool vis
= MacIsReallyShown() ;
1632 int outerBorder
= MacGetLeftBorderSize() ;
1633 if ( m_peer
->NeedsFocusRect() && m_peer
->HasFocus() )
1636 if ( outerBorder
== 0 )
1639 // now we know that we have something to do at all
1641 // as the borders are drawn on the parent we have to properly invalidate all these areas
1642 RgnHandle updateInner
= NewRgn() ,
1643 updateOuter
= NewRgn() ;
1645 // this rectangle is in HIViewCoordinates under OSX and in Window Coordinates under Carbon
1647 m_peer
->GetRect( &rect
) ;
1648 RectRgn( updateInner
, &rect
) ;
1649 InsetRect( &rect
, -outerBorder
, -outerBorder
) ;
1650 RectRgn( updateOuter
, &rect
) ;
1651 DiffRgn( updateOuter
, updateInner
,updateOuter
) ;
1652 #ifdef __WXMAC_OSX__
1653 GetParent()->m_peer
->SetNeedsDisplay( true , updateOuter
) ;
1655 WindowRef tlw
= (WindowRef
) MacGetTopLevelWindowRef() ;
1657 InvalWindowRgn( tlw
, updateOuter
) ;
1659 DisposeRgn(updateOuter
) ;
1660 DisposeRgn(updateInner
) ;
1662 RgnHandle updateInner = NewRgn() , updateOuter = NewRgn() ;
1663 RectRgn( updateInner , &rect ) ;
1664 InsetRect( &rect , -4 , -4 ) ;
1665 RectRgn( updateOuter , &rect ) ;
1666 DiffRgn( updateOuter , updateInner ,updateOuter ) ;
1667 wxPoint parent(0,0);
1668 GetParent()->MacWindowToRootWindow( &parent.x , &parent.y ) ;
1669 parent -= GetParent()->GetClientAreaOrigin() ;
1670 OffsetRgn( updateOuter , -parent.x , -parent.y ) ;
1671 GetParent()->m_peer->SetNeedsDisplay( true , updateOuter ) ;
1672 DisposeRgn(updateOuter) ;
1673 DisposeRgn(updateInner) ;
1678 // deleting a window while it is shown invalidates the region occupied by border or
1681 if ( IsShown() && ( outerBorder > 0 ) )
1683 // as the borders are drawn on the parent we have to properly invalidate all these areas
1684 RgnHandle updateInner = NewRgn() , updateOuter = NewRgn() , updateTotal = NewRgn() ;
1688 m_peer->GetRect( &rect ) ;
1689 RectRgn( updateInner , &rect ) ;
1690 InsetRect( &rect , -outerBorder , -outerBorder ) ;
1691 RectRgn( updateOuter , &rect ) ;
1692 DiffRgn( updateOuter , updateInner ,updateOuter ) ;
1693 wxPoint parent(0,0);
1694 GetParent()->MacWindowToRootWindow( &parent.x , &parent.y ) ;
1695 parent -= GetParent()->GetClientAreaOrigin() ;
1696 OffsetRgn( updateOuter , -parent.x , -parent.y ) ;
1697 CopyRgn( updateOuter , updateTotal ) ;
1699 GetParent()->m_peer->SetNeedsDisplay( true , updateTotal ) ;
1700 DisposeRgn(updateOuter) ;
1701 DisposeRgn(updateInner) ;
1702 DisposeRgn(updateTotal) ;
1707 Rect r
= wxMacGetBoundsForControl(this , wxPoint( actualX
,actualY
), wxSize( actualWidth
, actualHeight
) , false ) ;
1709 int outerBorder
= MacGetLeftBorderSize() ;
1710 if ( m_peer
->NeedsFocusRect() && m_peer
->HasFocus() )
1713 if ( vis
&& ( outerBorder
> 0 ) )
1715 // as the borders are drawn on the parent we have to properly invalidate all these areas
1716 RgnHandle updateInner
= NewRgn() , updateOuter
= NewRgn() , updateTotal
= NewRgn() ;
1720 m_peer
->GetRect( &rect
) ;
1721 RectRgn( updateInner
, &rect
) ;
1722 InsetRect( &rect
, -outerBorder
, -outerBorder
) ;
1723 RectRgn( updateOuter
, &rect
) ;
1724 DiffRgn( updateOuter
, updateInner
,updateOuter
) ;
1726 wxPoint parent(0,0);
1727 #if TARGET_API_MAC_OSX
1728 // no offsetting needed when compositing
1730 GetParent()->MacWindowToRootWindow( &parent.x , &parent.y ) ;
1731 parent -= GetParent()->GetClientAreaOrigin() ;
1732 OffsetRgn( updateOuter , -parent.x , -parent.y ) ;
1735 CopyRgn( updateOuter
, updateTotal
) ;
1738 RectRgn( updateInner
, &rect
) ;
1739 InsetRect( &rect
, -outerBorder
, -outerBorder
) ;
1740 RectRgn( updateOuter
, &rect
) ;
1741 DiffRgn( updateOuter
, updateInner
,updateOuter
) ;
1743 OffsetRgn( updateOuter , -parent.x , -parent.y ) ;
1745 UnionRgn( updateOuter
, updateTotal
, updateTotal
) ;
1747 GetParent()->m_peer
->SetNeedsDisplay( true , updateTotal
) ;
1748 DisposeRgn(updateOuter
) ;
1749 DisposeRgn(updateInner
) ;
1750 DisposeRgn(updateTotal
) ;
1755 void wxWindowMac::DoMoveWindow(int x
, int y
, int width
, int height
)
1757 // this is never called for a toplevel window, so we know we have a parent
1758 int former_x
, former_y
, former_w
, former_h
;
1760 // Get true coordinates of former position
1761 DoGetPosition( &former_x
, &former_y
) ;
1762 DoGetSize( &former_w
, &former_h
) ;
1764 wxWindow
*parent
= GetParent();
1767 wxPoint
pt(parent
->GetClientAreaOrigin());
1772 int actualWidth
= width
;
1773 int actualHeight
= height
;
1777 if ((m_minWidth
!= -1) && (actualWidth
< m_minWidth
))
1778 actualWidth
= m_minWidth
;
1779 if ((m_minHeight
!= -1) && (actualHeight
< m_minHeight
))
1780 actualHeight
= m_minHeight
;
1781 if ((m_maxWidth
!= -1) && (actualWidth
> m_maxWidth
))
1782 actualWidth
= m_maxWidth
;
1783 if ((m_maxHeight
!= -1) && (actualHeight
> m_maxHeight
))
1784 actualHeight
= m_maxHeight
;
1786 bool doMove
= false ;
1787 bool doResize
= false ;
1789 if ( actualX
!= former_x
|| actualY
!= former_y
)
1793 if ( actualWidth
!= former_w
|| actualHeight
!= former_h
)
1798 if ( doMove
|| doResize
)
1800 // we don't adjust twice for the origin
1801 Rect r
= wxMacGetBoundsForControl(this , wxPoint( actualX
,actualY
), wxSize( actualWidth
, actualHeight
) , false ) ;
1802 bool vis
= MacIsReallyShown() ;
1804 MacInvalidateBorders() ;
1806 // the HIViewSetFrame call itself should invalidate the areas, but when testing with the UnicodeTextCtrl it does not !
1808 m_peer
->SetVisibility( false , true ) ;
1810 m_peer
->SetRect( &r
) ;
1812 m_peer
->SetVisibility( true , true ) ;
1815 wxWindowMac::MacSuperChangedPosition() ; // like this only children will be notified
1817 MacInvalidateBorders() ;
1819 MacRepositionScrollBars() ;
1822 wxPoint
point(actualX
,actualY
);
1823 wxMoveEvent
event(point
, m_windowId
);
1824 event
.SetEventObject(this);
1825 GetEventHandler()->ProcessEvent(event
) ;
1829 MacRepositionScrollBars() ;
1830 wxSize
size(actualWidth
, actualHeight
);
1831 wxSizeEvent
event(size
, m_windowId
);
1832 event
.SetEventObject(this);
1833 GetEventHandler()->ProcessEvent(event
);
1839 wxSize
wxWindowMac::DoGetBestSize() const
1841 if ( m_macIsUserPane
|| IsTopLevel() )
1842 return wxWindowBase::DoGetBestSize() ;
1844 Rect bestsize
= { 0 , 0 , 0 , 0 } ;
1845 int bestWidth
, bestHeight
;
1846 m_peer
->GetBestRect( &bestsize
) ;
1848 if ( EmptyRect( &bestsize
) )
1850 bestsize
.left
= bestsize
.top
= 0 ;
1851 bestsize
.right
= 16 ;
1852 bestsize
.bottom
= 16 ;
1853 if ( IsKindOf( CLASSINFO( wxScrollBar
) ) )
1855 bestsize
.bottom
= 16 ;
1858 else if ( IsKindOf( CLASSINFO( wxSpinButton
) ) )
1860 bestsize
.bottom
= 24 ;
1862 #endif // wxUSE_SPINBTN
1865 // return wxWindowBase::DoGetBestSize() ;
1869 bestWidth
= bestsize
.right
- bestsize
.left
;
1870 bestHeight
= bestsize
.bottom
- bestsize
.top
;
1871 if ( bestHeight
< 10 )
1874 return wxSize(bestWidth
, bestHeight
);
1878 // set the size of the window: if the dimensions are positive, just use them,
1879 // but if any of them is equal to -1, it means that we must find the value for
1880 // it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in
1881 // which case -1 is a valid value for x and y)
1883 // If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate
1884 // the width/height to best suit our contents, otherwise we reuse the current
1886 void wxWindowMac::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
1888 // get the current size and position...
1889 int currentX
, currentY
;
1890 GetPosition(¤tX
, ¤tY
);
1892 int currentW
,currentH
;
1893 GetSize(¤tW
, ¤tH
);
1895 // ... and don't do anything (avoiding flicker) if it's already ok
1896 if ( x
== currentX
&& y
== currentY
&&
1897 width
== currentW
&& height
== currentH
&& ( height
!= -1 && width
!= -1 ) )
1900 MacRepositionScrollBars() ; // we might have a real position shift
1904 if ( x
== -1 && !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
1906 if ( y
== -1 && !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
1909 AdjustForParentClientOrigin(x
, y
, sizeFlags
);
1911 wxSize
size(-1, -1);
1914 if ( sizeFlags
& wxSIZE_AUTO_WIDTH
)
1916 size
= DoGetBestSize();
1921 // just take the current one
1928 if ( sizeFlags
& wxSIZE_AUTO_HEIGHT
)
1932 size
= DoGetBestSize();
1934 //else: already called DoGetBestSize() above
1940 // just take the current one
1945 DoMoveWindow(x
, y
, width
, height
);
1949 wxPoint
wxWindowMac::GetClientAreaOrigin() const
1951 RgnHandle rgn
= NewRgn() ;
1953 m_peer
->GetRegion( kControlContentMetaPart
, rgn
) ;
1954 GetRegionBounds( rgn
, &content
) ;
1956 #if !TARGET_API_MAC_OSX
1957 // if the content rgn is empty / not supported
1958 // don't attempt to correct the coordinates to wxWindow relative ones
1959 if (!::EmptyRect( &content
) )
1962 m_peer
->GetRect( &structure
) ;
1963 OffsetRect( &content
, -structure
.left
, -structure
.top
) ;
1967 return wxPoint( content
.left
+ MacGetLeftBorderSize( ) , content
.top
+ MacGetTopBorderSize( ) );
1970 void wxWindowMac::DoSetClientSize(int clientwidth
, int clientheight
)
1972 if ( clientheight
!= -1 || clientheight
!= -1 )
1974 int currentclientwidth
, currentclientheight
;
1975 int currentwidth
, currentheight
;
1977 GetClientSize( ¤tclientwidth
, ¤tclientheight
) ;
1978 GetSize( ¤twidth
, ¤theight
) ;
1980 DoSetSize( -1 , -1 , currentwidth
+ clientwidth
- currentclientwidth
,
1981 currentheight
+ clientheight
- currentclientheight
, wxSIZE_USE_EXISTING
) ;
1985 void wxWindowMac::SetTitle(const wxString
& title
)
1987 m_label
= wxStripMenuCodes(title
) ;
1989 if ( m_peer
&& m_peer
->Ok() )
1991 m_peer
->SetTitle( m_label
) ;
1996 wxString
wxWindowMac::GetTitle() const
2001 bool wxWindowMac::Show(bool show
)
2003 bool former
= MacIsReallyShown() ;
2004 if ( !wxWindowBase::Show(show
) )
2007 // TODO use visibilityChanged Carbon Event for OSX
2010 m_peer
->SetVisibility( show
, true ) ;
2012 if ( former
!= MacIsReallyShown() )
2013 MacPropagateVisibilityChanged() ;
2017 bool wxWindowMac::Enable(bool enable
)
2019 wxASSERT( m_peer
->Ok() ) ;
2020 bool former
= MacIsReallyEnabled() ;
2021 if ( !wxWindowBase::Enable(enable
) )
2024 m_peer
->Enable( enable
) ;
2026 if ( former
!= MacIsReallyEnabled() )
2027 MacPropagateEnabledStateChanged() ;
2032 // status change propagations (will be not necessary for OSX later )
2035 void wxWindowMac::MacPropagateVisibilityChanged()
2037 #if !TARGET_API_MAC_OSX
2038 MacVisibilityChanged() ;
2040 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
2043 wxWindowMac
*child
= node
->GetData();
2044 if ( child
->IsShown() )
2045 child
->MacPropagateVisibilityChanged( ) ;
2046 node
= node
->GetNext();
2051 void wxWindowMac::MacPropagateEnabledStateChanged( )
2053 #if !TARGET_API_MAC_OSX
2054 MacEnabledStateChanged() ;
2056 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
2059 wxWindowMac
*child
= node
->GetData();
2060 if ( child
->IsEnabled() )
2061 child
->MacPropagateEnabledStateChanged() ;
2062 node
= node
->GetNext();
2067 void wxWindowMac::MacPropagateHiliteChanged( )
2069 #if !TARGET_API_MAC_OSX
2070 MacHiliteChanged() ;
2072 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
2075 wxWindowMac
*child
= node
->GetData();
2076 // if ( child->IsEnabled() )
2077 child
->MacPropagateHiliteChanged() ;
2078 node
= node
->GetNext();
2084 // status change notifications
2087 void wxWindowMac::MacVisibilityChanged()
2091 void wxWindowMac::MacHiliteChanged()
2095 void wxWindowMac::MacEnabledStateChanged()
2100 // status queries on the inherited window's state
2103 bool wxWindowMac::MacIsReallyShown()
2105 // only under OSX the visibility of the TLW is taken into account
2106 if ( m_isBeingDeleted
)
2109 #if TARGET_API_MAC_OSX
2110 if ( m_peer
&& m_peer
->Ok() )
2111 return m_peer
->IsVisible();
2113 wxWindow
* win
= this ;
2114 while( win
->IsShown() )
2116 if ( win
->IsTopLevel() )
2119 win
= win
->GetParent() ;
2127 bool wxWindowMac::MacIsReallyEnabled()
2129 return m_peer
->IsEnabled() ;
2132 bool wxWindowMac::MacIsReallyHilited()
2134 return m_peer
->IsActive();
2137 void wxWindowMac::MacFlashInvalidAreas()
2139 #if TARGET_API_MAC_OSX
2140 HIViewFlashDirtyArea( (WindowRef
) MacGetTopLevelWindowRef() ) ;
2148 int wxWindowMac::GetCharHeight() const
2150 wxClientDC
dc ( (wxWindowMac
*)this ) ;
2151 return dc
.GetCharHeight() ;
2154 int wxWindowMac::GetCharWidth() const
2156 wxClientDC
dc ( (wxWindowMac
*)this ) ;
2157 return dc
.GetCharWidth() ;
2160 void wxWindowMac::GetTextExtent(const wxString
& string
, int *x
, int *y
,
2161 int *descent
, int *externalLeading
, const wxFont
*theFont
) const
2163 const wxFont
*fontToUse
= theFont
;
2165 fontToUse
= &m_font
;
2167 wxClientDC
dc( (wxWindowMac
*) this ) ;
2169 dc
.GetTextExtent( string
, &lx
, &ly
, &ld
, &le
, (wxFont
*)fontToUse
) ;
2170 if ( externalLeading
)
2171 *externalLeading
= le
;
2181 * Rect is given in client coordinates, for further reading, read wxTopLevelWindowMac::InvalidateRect
2182 * we always intersect with the entire window, not only with the client area
2185 void wxWindowMac::Refresh(bool eraseBack
, const wxRect
*rect
)
2187 if ( m_peer
== NULL
)
2190 #if TARGET_API_MAC_OSX
2192 m_peer
->SetNeedsDisplay( true ) ;
2195 RgnHandle update
= NewRgn() ;
2196 SetRectRgn( update
, rect
->x
, rect
->y
, rect
->x
+ rect
->width
, rect
->y
+ rect
->height
) ;
2197 SectRgn( (RgnHandle
) MacGetVisibleRegion().GetWXHRGN() , update
, update
) ;
2198 wxPoint origin
= GetClientAreaOrigin() ;
2199 OffsetRgn( update
, origin
.x
, origin
.y
) ;
2200 // right now this is wx' window coordinates, as our native peer does not have borders, this is
2202 OffsetRgn( update
, -MacGetLeftBorderSize() , -MacGetTopBorderSize() ) ;
2203 m_peer
->SetNeedsDisplay( true , update
) ;
2204 DisposeRgn( update
) ;
2208 RgnHandle updateRgn = NewRgn() ;
2211 CopyRgn( (RgnHandle) MacGetVisibleRegion().GetWXHRGN() , updateRgn ) ;
2215 SetRectRgn( updateRgn , rect->x , rect->y , rect->x + rect->width , rect->y + rect->height ) ;
2216 SectRgn( (RgnHandle) MacGetVisibleRegion().GetWXHRGN() , updateRgn , updateRgn ) ;
2218 InvalWindowRgn( (WindowRef) MacGetTopLevelWindowRef() , updateRgn ) ;
2219 DisposeRgn(updateRgn) ;
2221 if ( MacIsReallyShown() )
2223 m_peer
->SetVisibility( false , false ) ;
2224 m_peer
->SetVisibility( true , true ) ;
2227 if ( MacGetTopLevelWindow() == NULL )
2230 if ( !m_peer->IsVisible())
2233 wxPoint client = GetClientAreaOrigin();
2236 int x2 = m_width - client.x;
2237 int y2 = m_height - client.y;
2239 if (IsKindOf( CLASSINFO(wxButton)))
2241 // buttons have an "aura"
2248 Rect clientrect = { y1, x1, y2, x2 };
2252 Rect r = { rect->y , rect->x , rect->y + rect->height , rect->x + rect->width } ;
2253 SectRect( &clientrect , &r , &clientrect ) ;
2256 if ( !EmptyRect( &clientrect ) )
2258 int top = 0 , left = 0 ;
2260 MacClientToRootWindow( &left , &top ) ;
2261 OffsetRect( &clientrect , left , top ) ;
2263 MacGetTopLevelWindow()->MacInvalidate( &clientrect , eraseBack ) ;
2269 void wxWindowMac::Freeze()
2271 #if TARGET_API_MAC_OSX
2272 if ( !m_frozenness
++ )
2274 if ( m_peer
&& m_peer
->Ok() )
2275 m_peer
->SetDrawingEnabled( false ) ;
2281 void wxWindowMac::Thaw()
2283 #if TARGET_API_MAC_OSX
2284 wxASSERT_MSG( m_frozenness
> 0, _T("Thaw() without matching Freeze()") );
2286 if ( !--m_frozenness
)
2288 if ( m_peer
&& m_peer
->Ok() )
2290 m_peer
->SetDrawingEnabled( true ) ;
2291 m_peer
->InvalidateWithChildren() ;
2297 wxWindowMac
*wxGetActiveWindow()
2299 // actually this is a windows-only concept
2303 // Coordinates relative to the window
2304 void wxWindowMac::WarpPointer (int x_pos
, int y_pos
)
2306 // We really don't move the mouse programmatically under Mac.
2309 void wxWindowMac::OnEraseBackground(wxEraseEvent
& event
)
2311 #if TARGET_API_MAC_OSX
2312 if ( m_macBackgroundBrush
.Ok() == false || m_macBackgroundBrush
.GetStyle() == wxTRANSPARENT
)
2319 event
.GetDC()->Clear() ;
2323 void wxWindowMac::OnNcPaint( wxNcPaintEvent
& event
)
2328 int wxWindowMac::GetScrollPos(int orient
) const
2330 if ( orient
== wxHORIZONTAL
)
2333 return m_hScrollBar
->GetThumbPosition() ;
2338 return m_vScrollBar
->GetThumbPosition() ;
2343 // This now returns the whole range, not just the number
2344 // of positions that we can scroll.
2345 int wxWindowMac::GetScrollRange(int orient
) const
2347 if ( orient
== wxHORIZONTAL
)
2350 return m_hScrollBar
->GetRange() ;
2355 return m_vScrollBar
->GetRange() ;
2360 int wxWindowMac::GetScrollThumb(int orient
) const
2362 if ( orient
== wxHORIZONTAL
)
2365 return m_hScrollBar
->GetThumbSize() ;
2370 return m_vScrollBar
->GetThumbSize() ;
2375 void wxWindowMac::SetScrollPos(int orient
, int pos
, bool refresh
)
2377 if ( orient
== wxHORIZONTAL
)
2380 m_hScrollBar
->SetThumbPosition( pos
) ;
2385 m_vScrollBar
->SetThumbPosition( pos
) ;
2390 // we draw borders and grow boxes, are already set up and clipped in the current port / cgContextRef
2391 // our own window origin is at leftOrigin/rightOrigin
2394 void wxWindowMac::MacPaintBorders( int leftOrigin
, int rightOrigin
)
2400 bool hasFocus
= m_peer
->NeedsFocusRect() && m_peer
->HasFocus() ;
2401 bool hasBothScrollbars
= ( m_hScrollBar
&& m_hScrollBar
->IsShown()) && ( m_vScrollBar
&& m_vScrollBar
->IsShown()) ;
2403 m_peer
->GetRect( &rect
) ;
2404 InsetRect( &rect
, -MacGetLeftBorderSize() , -MacGetTopBorderSize() ) ;
2406 #if wxMAC_USE_CORE_GRAPHICS && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3
2407 if ( UMAGetSystemVersion() >= 0x1030 )
2410 HIThemeFrameDrawInfo info
;
2411 memset( &info
, 0 , sizeof( info
) ) ;
2415 info
.state
= IsEnabled() ? kThemeStateActive
: kThemeStateInactive
;
2416 info
.isFocused
= hasFocus
;
2419 CGContextRef cgContext
= (CGContextRef
) GetParent()->MacGetCGContextRef() ;
2420 wxASSERT( cgContext
) ;
2422 if (HasFlag(wxRAISED_BORDER
) || HasFlag( wxSUNKEN_BORDER
) || HasFlag(wxDOUBLE_BORDER
) )
2425 GetThemeMetric( kThemeMetricEditTextFrameOutset
, &border
) ;
2426 InsetRect( &srect
, border
, border
);
2427 info
.kind
= kHIThemeFrameTextFieldSquare
;
2430 else if (HasFlag(wxSIMPLE_BORDER
))
2433 GetThemeMetric( kThemeMetricListBoxFrameOutset
, &border
) ;
2434 InsetRect( &srect
, border
, border
);
2435 info
.kind
= kHIThemeFrameListBox
;
2441 CGRect cgrect
= CGRectMake( srect
.left
, srect
.top
, srect
.right
- srect
.left
,
2442 srect
.bottom
- srect
.top
) ;
2443 HIThemeDrawFrame( &cgrect
, &info
, cgContext
, kHIThemeOrientationNormal
) ;
2445 else if ( hasFocus
)
2448 CGRect cgrect
= CGRectMake( srect
.left
, srect
.top
, srect
.right
- srect
.left
,
2449 srect
.bottom
- srect
.top
) ;
2450 HIThemeDrawFocusRect( &cgrect
, true , cgContext
, kHIThemeOrientationNormal
) ;
2453 m_peer
->GetRect( &rect
) ;
2454 if ( hasBothScrollbars
)
2457 int size
= m_hScrollBar
->GetWindowVariant() == wxWINDOW_VARIANT_NORMAL
? 16 : 12 ;
2458 CGRect cgrect
= CGRectMake( srect
.right
- size
, srect
.bottom
- size
, size
, size
) ;
2459 CGPoint cgpoint
= CGPointMake( srect
.right
- size
, srect
.bottom
- size
) ;
2460 HIThemeGrowBoxDrawInfo info
;
2461 memset( &info
, 0 , sizeof( info
) ) ;
2463 info
.state
= IsEnabled() ? kThemeStateActive
: kThemeStateInactive
;
2464 info
.kind
= kHIThemeGrowBoxKindNone
;
2465 info
.size
= kHIThemeGrowBoxSizeNormal
;
2466 info
.direction
= kThemeGrowRight
| kThemeGrowDown
;
2467 HIThemeDrawGrowBox( &cgpoint
, &info
, cgContext
, kHIThemeOrientationNormal
) ;
2473 #ifdef __WXMAC_OSX__
2474 // as the non OSX Version is already working in window relative coordinates, it's not needed
2475 wxTopLevelWindowMac
* top
= MacGetTopLevelWindow();
2479 wxMacControl::Convert( &pt
, GetParent()->m_peer
, top
->m_peer
) ;
2481 rect
.right
+= pt
.x
;
2483 rect
.bottom
+= pt
.y
;
2487 if (HasFlag(wxRAISED_BORDER
) || HasFlag( wxSUNKEN_BORDER
) || HasFlag(wxDOUBLE_BORDER
) )
2491 GetThemeMetric( kThemeMetricEditTextFrameOutset
, &border
) ;
2492 InsetRect( &srect
, border
, border
);
2493 DrawThemeEditTextFrame(&srect
,IsEnabled() ? kThemeStateActive
: kThemeStateInactive
) ;
2495 else if (HasFlag(wxSIMPLE_BORDER
))
2499 GetThemeMetric( kThemeMetricListBoxFrameOutset
, &border
) ;
2500 InsetRect( &srect
, border
, border
);
2501 DrawThemeListBoxFrame(&rect
,IsEnabled() ? kThemeStateActive
: kThemeStateInactive
) ;
2507 DrawThemeFocusRect( &srect
, true ) ;
2509 if ( hasBothScrollbars
)
2511 // GetThemeStandaloneGrowBoxBounds
2512 //DrawThemeStandaloneNoGrowBox
2517 void wxWindowMac::RemoveChild( wxWindowBase
*child
)
2519 if ( child
== m_hScrollBar
)
2520 m_hScrollBar
= NULL
;
2521 if ( child
== m_vScrollBar
)
2522 m_vScrollBar
= NULL
;
2524 wxWindowBase::RemoveChild( child
) ;
2527 // New function that will replace some of the above.
2528 void wxWindowMac::SetScrollbar(int orient
, int pos
, int thumbVisible
,
2529 int range
, bool refresh
)
2531 if ( orient
== wxHORIZONTAL
)
2535 if ( range
== 0 || thumbVisible
>= range
)
2537 if ( m_hScrollBar
->IsShown() )
2538 m_hScrollBar
->Show(false) ;
2542 if ( !m_hScrollBar
->IsShown() )
2543 m_hScrollBar
->Show(true) ;
2545 m_hScrollBar
->SetScrollbar( pos
, thumbVisible
, range
, thumbVisible
, refresh
) ;
2552 if ( range
== 0 || thumbVisible
>= range
)
2554 if ( m_vScrollBar
->IsShown() )
2555 m_vScrollBar
->Show(false) ;
2559 if ( !m_vScrollBar
->IsShown() )
2560 m_vScrollBar
->Show(true) ;
2562 m_vScrollBar
->SetScrollbar( pos
, thumbVisible
, range
, thumbVisible
, refresh
) ;
2565 MacRepositionScrollBars() ;
2568 // Does a physical scroll
2569 void wxWindowMac::ScrollWindow(int dx
, int dy
, const wxRect
*rect
)
2571 if( dx
== 0 && dy
==0 )
2577 int width
, height
;
2578 GetClientSize( &width
, &height
) ;
2579 #if TARGET_API_MAC_OSX
2580 // note there currently is a bug in OSX which makes inefficient refreshes in case an entire control
2581 // area is scrolled, this does not occur if width and height are 2 pixels less,
2582 // TODO write optimal workaround
2583 wxRect
scrollrect( MacGetLeftBorderSize() , MacGetTopBorderSize() , width
, height
) ;
2586 scrollrect
.Intersect( *rect
) ;
2588 if ( m_peer
->GetNeedsDisplay() )
2590 // becuase HIViewScrollRect does not scroll the already invalidated area we have two options
2591 // either immediate redraw or full invalidate
2593 // is the better overall solution, as it does not slow down scrolling
2594 m_peer
->SetNeedsDisplay( true ) ;
2596 // this would be the preferred version for fast drawing controls
2597 if( UMAGetSystemVersion() < 0x1030 )
2600 HIViewRender(m_peer
->GetControlRef()) ;
2603 // as the native control might be not a 0/0 wx window coordinates, we have to offset
2604 scrollrect
.Offset( -MacGetLeftBorderSize() , -MacGetTopBorderSize() ) ;
2605 m_peer
->ScrollRect( scrollrect
, dx
, dy
) ;
2612 RgnHandle updateRgn
= NewRgn() ;
2615 wxClientDC
dc(this) ;
2616 wxMacPortSetter
helper(&dc
) ;
2618 m_peer
->GetRect( &scrollrect
) ;
2619 scrollrect
.top
+= MacGetTopBorderSize() ;
2620 scrollrect
.left
+= MacGetLeftBorderSize() ;
2621 scrollrect
.bottom
= scrollrect
.top
+ height
;
2622 scrollrect
.right
= scrollrect
.left
+ width
;
2626 Rect r
= { dc
.YLOG2DEVMAC(rect
->y
) , dc
.XLOG2DEVMAC(rect
->x
) , dc
.YLOG2DEVMAC(rect
->y
+ rect
->height
) ,
2627 dc
.XLOG2DEVMAC(rect
->x
+ rect
->width
) } ;
2628 SectRect( &scrollrect
, &r
, &scrollrect
) ;
2630 ScrollRect( &scrollrect
, dx
, dy
, updateRgn
) ;
2632 // now scroll the former update region as well and add the new update region
2634 WindowRef rootWindow
= (WindowRef
) MacGetTopLevelWindowRef() ;
2635 RgnHandle formerUpdateRgn
= NewRgn() ;
2636 RgnHandle scrollRgn
= NewRgn() ;
2637 RectRgn( scrollRgn
, &scrollrect
) ;
2638 GetWindowUpdateRgn( rootWindow
, formerUpdateRgn
) ;
2640 LocalToGlobal( &pt
) ;
2641 OffsetRgn( formerUpdateRgn
, -pt
.h
, -pt
.v
) ;
2642 SectRgn( formerUpdateRgn
, scrollRgn
, formerUpdateRgn
) ;
2643 if ( !EmptyRgn( formerUpdateRgn
) )
2645 MacOffsetRgn( formerUpdateRgn
, dx
, dy
) ;
2646 SectRgn( formerUpdateRgn
, scrollRgn
, formerUpdateRgn
) ;
2647 InvalWindowRgn(rootWindow
, formerUpdateRgn
) ;
2649 InvalWindowRgn(rootWindow
, updateRgn
) ;
2650 DisposeRgn( updateRgn
) ;
2651 DisposeRgn( formerUpdateRgn
) ;
2652 DisposeRgn( scrollRgn
) ;
2657 for (wxWindowList::compatibility_iterator node
= GetChildren().GetFirst(); node
; node
= node
->GetNext())
2659 wxWindowMac
*child
= node
->GetData();
2660 if (child
== m_vScrollBar
) continue;
2661 if (child
== m_hScrollBar
) continue;
2662 if (child
->IsTopLevel()) continue;
2665 child
->GetPosition( &x
, &y
);
2667 child
->GetSize( &w
, &h
);
2671 if (rect
->Intersects(rc
))
2672 child
->SetSize( x
+dx
, y
+dy
, w
, h
);
2676 child
->SetSize( x
+dx
, y
+dy
, w
, h
);
2681 void wxWindowMac::MacOnScroll(wxScrollEvent
&event
)
2683 if ( event
.GetEventObject() == m_vScrollBar
|| event
.GetEventObject() == m_hScrollBar
)
2685 wxScrollWinEvent wevent
;
2686 wevent
.SetPosition(event
.GetPosition());
2687 wevent
.SetOrientation(event
.GetOrientation());
2688 wevent
.SetEventObject(this);
2690 if (event
.GetEventType() == wxEVT_SCROLL_TOP
)
2691 wevent
.SetEventType( wxEVT_SCROLLWIN_TOP
);
2692 else if (event
.GetEventType() == wxEVT_SCROLL_BOTTOM
)
2693 wevent
.SetEventType( wxEVT_SCROLLWIN_BOTTOM
);
2694 else if (event
.GetEventType() == wxEVT_SCROLL_LINEUP
)
2695 wevent
.SetEventType( wxEVT_SCROLLWIN_LINEUP
);
2696 else if (event
.GetEventType() == wxEVT_SCROLL_LINEDOWN
)
2697 wevent
.SetEventType( wxEVT_SCROLLWIN_LINEDOWN
);
2698 else if (event
.GetEventType() == wxEVT_SCROLL_PAGEUP
)
2699 wevent
.SetEventType( wxEVT_SCROLLWIN_PAGEUP
);
2700 else if (event
.GetEventType() == wxEVT_SCROLL_PAGEDOWN
)
2701 wevent
.SetEventType( wxEVT_SCROLLWIN_PAGEDOWN
);
2702 else if (event
.GetEventType() == wxEVT_SCROLL_THUMBTRACK
)
2703 wevent
.SetEventType( wxEVT_SCROLLWIN_THUMBTRACK
);
2704 else if (event
.GetEventType() == wxEVT_SCROLL_THUMBRELEASE
)
2705 wevent
.SetEventType( wxEVT_SCROLLWIN_THUMBRELEASE
);
2707 GetEventHandler()->ProcessEvent(wevent
);
2711 // Get the window with the focus
2712 wxWindowMac
*wxWindowBase::DoFindFocus()
2714 ControlRef control
;
2715 GetKeyboardFocus( GetUserFocusWindow() , &control
) ;
2716 return wxFindControlFromMacControl( control
) ;
2719 void wxWindowMac::OnSetFocus(wxFocusEvent
& event
)
2721 // panel wants to track the window which was the last to have focus in it,
2722 // so we want to set ourselves as the window which last had focus
2724 // notice that it's also important to do it upwards the tree becaus
2725 // otherwise when the top level panel gets focus, it won't set it back to
2726 // us, but to some other sibling
2728 // CS:don't know if this is still needed:
2729 //wxChildFocusEvent eventFocus(this);
2730 //(void)GetEventHandler()->ProcessEvent(eventFocus);
2732 if ( MacGetTopLevelWindow() && m_peer
->NeedsFocusRect() )
2734 #if !wxMAC_USE_CORE_GRAPHICS
2735 wxMacWindowStateSaver
sv( this ) ;
2737 m_peer
->GetRect( &rect
) ;
2738 InsetRect( &rect
, -MacGetLeftBorderSize() , -MacGetTopBorderSize() ) ;
2739 #ifdef __WXMAC_OSX__
2740 // as the non OSX Version is already working in window relative coordinates, it's not needed
2741 wxTopLevelWindowMac
* top
= MacGetTopLevelWindow();
2745 wxMacControl::Convert( &pt
, GetParent()->m_peer
, top
->m_peer
) ;
2747 rect
.right
+= pt
.x
;
2749 rect
.bottom
+= pt
.y
;
2753 if ( event
.GetEventType() == wxEVT_SET_FOCUS
)
2754 DrawThemeFocusRect( &rect
, true ) ;
2757 DrawThemeFocusRect( &rect
, false ) ;
2759 // as this erases part of the frame we have to redraw borders
2760 // and because our z-ordering is not always correct (staticboxes)
2761 // we have to invalidate things, we cannot simple redraw
2762 MacInvalidateBorders() ;
2765 GetParent()->Refresh() ;
2772 void wxWindowMac::OnInternalIdle()
2774 // This calls the UI-update mechanism (querying windows for
2775 // menu/toolbar/control state information)
2776 if (wxUpdateUIEvent::CanUpdate(this))
2777 UpdateWindowUI(wxUPDATE_UI_FROMIDLE
);
2780 // Raise the window to the top of the Z order
2781 void wxWindowMac::Raise()
2783 m_peer
->SetZOrder( true , NULL
) ;
2786 // Lower the window to the bottom of the Z order
2787 void wxWindowMac::Lower()
2789 m_peer
->SetZOrder( false , NULL
) ;
2793 // static wxWindow *gs_lastWhich = NULL;
2795 bool wxWindowMac::MacSetupCursor( const wxPoint
& pt
)
2797 // first trigger a set cursor event
2799 wxPoint clientorigin
= GetClientAreaOrigin() ;
2800 wxSize clientsize
= GetClientSize() ;
2802 if ( wxRect2DInt( clientorigin
.x
, clientorigin
.y
, clientsize
.x
, clientsize
.y
).Contains( wxPoint2DInt( pt
) ) )
2804 wxSetCursorEvent
event( pt
.x
, pt
.y
);
2806 bool processedEvtSetCursor
= GetEventHandler()->ProcessEvent(event
);
2807 if ( processedEvtSetCursor
&& event
.HasCursor() )
2809 cursor
= event
.GetCursor() ;
2814 // the test for processedEvtSetCursor is here to prevent using m_cursor
2815 // if the user code caught EVT_SET_CURSOR() and returned nothing from
2816 // it - this is a way to say that our cursor shouldn't be used for this
2818 if ( !processedEvtSetCursor
&& m_cursor
.Ok() )
2828 cursor
= *wxSTANDARD_CURSOR
;
2832 cursor
.MacInstall() ;
2834 return cursor
.Ok() ;
2837 wxString
wxWindowMac::MacGetToolTipString( wxPoint
&pt
)
2841 return m_tooltip
->GetTip() ;
2843 return wxEmptyString
;
2846 void wxWindowMac::ClearBackground()
2852 void wxWindowMac::Update()
2854 #if TARGET_API_MAC_OSX
2856 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3
2857 WindowRef window
= (WindowRef
)MacGetTopLevelWindowRef() ;
2859 // for composited windows this also triggers a redraw of all
2860 // invalid views in the window
2861 if( UMAGetSystemVersion() >= 0x1030 )
2862 HIWindowFlush(window
) ;
2866 // the only way to trigger the redrawing on earlier systems is to call
2869 EventRef currentEvent
= (EventRef
) wxTheApp
->MacGetCurrentEvent() ;
2870 UInt32 currentEventClass
= 0 ;
2871 UInt32 currentEventKind
= 0 ;
2872 if ( currentEvent
!= NULL
)
2874 currentEventClass
= ::GetEventClass( currentEvent
) ;
2875 currentEventKind
= ::GetEventKind( currentEvent
) ;
2877 if ( currentEventClass
!= kEventClassMenu
)
2879 // when tracking a menu, strange redraw errors occur if we flush now, so leave..
2882 OSStatus status
= noErr
;
2883 status
= ReceiveNextEvent( 0 , NULL
, kEventDurationNoWait
, false , &theEvent
) ;
2886 m_peer
->SetNeedsDisplay( true ) ;
2889 ::Draw1Control( m_peer
->GetControlRef() ) ;
2893 wxTopLevelWindowMac
* wxWindowMac::MacGetTopLevelWindow() const
2895 wxTopLevelWindowMac
* win
= NULL
;
2896 WindowRef window
= (WindowRef
) MacGetTopLevelWindowRef() ;
2899 win
= wxFindWinFromMacWindow( window
) ;
2903 wxRegion
wxWindowMac::MacGetVisibleRegion( bool includeOuterStructures
)
2905 // includeOuterStructures is true if we try to draw somthing like a focus ring etc.
2906 // also a window dc uses this, in this case we only clip in the hierarchy for hard
2907 // borders like a scrollwindow, splitter etc otherwise we end up in a paranoia having
2908 // to add focus borders everywhere
2911 RgnHandle visRgn
= NewRgn() ;
2912 RgnHandle tempRgn
= NewRgn() ;
2913 if ( !m_isBeingDeleted
&& MacIsReallyShown() /*m_peer->IsVisible() */ )
2915 m_peer
->GetRect( &r
) ;
2916 r
.left
-= MacGetLeftBorderSize() ;
2917 r
.top
-= MacGetTopBorderSize() ;
2918 r
.bottom
+= MacGetBottomBorderSize() ;
2919 r
.right
+= MacGetRightBorderSize() ;
2921 if (! MacGetTopLevelWindow()->MacUsesCompositing() )
2923 MacRootWindowToWindow( &r
.left
, & r
.top
) ;
2924 MacRootWindowToWindow( &r
.right
, & r
.bottom
) ;
2933 if ( includeOuterStructures
)
2934 InsetRect( &r
, -4 , -4 ) ;
2935 RectRgn( visRgn
, &r
) ;
2937 if ( !IsTopLevel() )
2939 wxWindow
* child
= this ;
2940 wxWindow
* parent
= child
->GetParent() ;
2945 // we have to find a better clipping algorithm here, in order not to clip things
2946 // positioned like status and toolbar
2947 if ( 1 /* parent->IsTopLevel() && child->IsKindOf( CLASSINFO( wxToolBar ) ) */ )
2949 size
= parent
->GetSize() ;
2954 size
= parent
->GetClientSize() ;
2955 wxPoint origin
= parent
->GetClientAreaOrigin() ;
2959 parent
->MacWindowToRootWindow( &x
, &y
) ;
2960 MacRootWindowToWindow( &x
, &y
) ;
2962 if ( !includeOuterStructures
|| (
2963 parent
->MacClipChildren() ||
2964 ( parent
->GetParent() && parent
->GetParent()->MacClipGrandChildren() )
2967 SetRectRgn( tempRgn
,
2968 x
+ parent
->MacGetLeftBorderSize() , y
+ parent
->MacGetTopBorderSize() ,
2969 x
+ size
.x
- parent
->MacGetRightBorderSize(),
2970 y
+ size
.y
- parent
->MacGetBottomBorderSize()) ;
2972 SectRgn( visRgn
, tempRgn
, visRgn
) ;
2974 if ( parent
->IsTopLevel() )
2977 parent
= child
->GetParent() ;
2982 wxRegion vis
= visRgn
;
2983 DisposeRgn( visRgn
) ;
2984 DisposeRgn( tempRgn
) ;
2989 This function must not change the updatergn !
2991 bool wxWindowMac::MacDoRedraw( WXHRGN updatergnr
, long time
)
2993 RgnHandle updatergn
= (RgnHandle
) updatergnr
;
2994 bool handled
= false ;
2996 GetRegionBounds( updatergn
, &updatebounds
) ;
2998 // wxLogDebug(wxT("update for %s bounds %d , %d , %d , %d"),wxString(GetClassInfo()->GetClassName()).c_str(), updatebounds.left , updatebounds.top , updatebounds.right , updatebounds.bottom ) ;
3000 if ( !EmptyRgn(updatergn
) )
3002 RgnHandle newupdate
= NewRgn() ;
3003 wxSize point
= GetClientSize() ;
3004 wxPoint origin
= GetClientAreaOrigin() ;
3005 SetRectRgn( newupdate
, origin
.x
, origin
.y
, origin
.x
+ point
.x
, origin
.y
+point
.y
) ;
3006 SectRgn( newupdate
, updatergn
, newupdate
) ;
3008 // first send an erase event to the entire update area
3010 // for the toplevel window this really is the entire area
3011 // for all the others only their client area, otherwise they
3012 // might be drawing with full alpha and eg put blue into
3013 // the grow-box area of a scrolled window (scroll sample)
3016 dc
= new wxWindowDC(this);
3018 dc
= new wxClientDC(this);
3019 dc
->SetClippingRegion(wxRegion(updatergn
));
3020 wxEraseEvent
eevent( GetId(), dc
);
3021 eevent
.SetEventObject( this );
3022 GetEventHandler()->ProcessEvent( eevent
);
3026 // calculate a client-origin version of the update rgn and set m_updateRegion to that
3027 OffsetRgn( newupdate
, -origin
.x
, -origin
.y
) ;
3028 m_updateRegion
= newupdate
;
3029 DisposeRgn( newupdate
) ;
3031 if ( !m_updateRegion
.Empty() )
3033 // paint the window itself
3036 event
.SetTimestamp(time
);
3037 event
.SetEventObject(this);
3038 GetEventHandler()->ProcessEvent(event
);
3042 // now we cannot rely on having its borders drawn by a window itself, as it does not
3043 // get the updateRgn wide enough to always do so, so we do it from the parent
3044 // this would also be the place to draw any custom backgrounds for native controls
3045 // in Composited windowing
3046 wxPoint clientOrigin
= GetClientAreaOrigin() ;
3048 for (wxWindowList::compatibility_iterator node
= GetChildren().GetFirst(); node
; node
= node
->GetNext())
3050 wxWindowMac
*child
= node
->GetData();
3051 if (child
== m_vScrollBar
) continue;
3052 if (child
== m_hScrollBar
) continue;
3053 if (child
->IsTopLevel()) continue;
3054 if (!child
->IsShown()) continue;
3056 // only draw those in the update region (add a safety margin of 10 pixels for shadow effects
3059 child
->GetPosition( &x
, &y
);
3061 child
->GetSize( &w
, &h
);
3062 Rect childRect
= { y
, x
, y
+ h
, x
+ w
} ;
3063 OffsetRect( &childRect
, clientOrigin
.x
, clientOrigin
.y
) ;
3064 InsetRect( &childRect
, -10 , -10) ;
3066 if ( RectInRgn( &childRect
, updatergn
) )
3069 // paint custom borders
3070 wxNcPaintEvent
eventNc( child
->GetId() );
3071 eventNc
.SetEventObject( child
);
3072 if ( !child
->GetEventHandler()->ProcessEvent( eventNc
) )
3074 #if wxMAC_USE_CORE_GRAPHICS && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3
3075 if ( UMAGetSystemVersion() >= 0x1030 )
3077 child
->MacPaintBorders(0,0) ;
3082 wxWindowDC
dc(this) ;
3083 dc
.SetClippingRegion(wxRegion(updatergn
));
3084 wxMacPortSetter
helper(&dc
) ;
3085 child
->MacPaintBorders(0,0) ;
3095 WXWindow
wxWindowMac::MacGetTopLevelWindowRef() const
3097 wxWindowMac
*iter
= (wxWindowMac
*)this ;
3101 if ( iter
->IsTopLevel() )
3102 return ((wxTopLevelWindow
*)iter
)->MacGetWindowRef() ;
3104 iter
= iter
->GetParent() ;
3106 wxASSERT_MSG( 1 , wxT("No valid mac root window") ) ;
3110 void wxWindowMac::MacCreateScrollBars( long style
)
3112 wxASSERT_MSG( m_vScrollBar
== NULL
&& m_hScrollBar
== NULL
, wxT("attempt to create window twice") ) ;
3114 if ( style
& ( wxVSCROLL
| wxHSCROLL
) )
3116 bool hasBoth
= ( style
& wxVSCROLL
) && ( style
& wxHSCROLL
) ;
3117 int scrlsize
= MAC_SCROLLBAR_SIZE
;
3118 wxWindowVariant variant
= wxWINDOW_VARIANT_NORMAL
;
3119 if ( GetWindowVariant() == wxWINDOW_VARIANT_SMALL
|| GetWindowVariant() == wxWINDOW_VARIANT_MINI
)
3121 scrlsize
= MAC_SMALL_SCROLLBAR_SIZE
;
3122 variant
= wxWINDOW_VARIANT_SMALL
;
3125 int adjust
= hasBoth
? scrlsize
- 1: 0 ;
3127 GetClientSize( &width
, &height
) ;
3129 wxPoint
vPoint(width
-scrlsize
, 0) ;
3130 wxSize
vSize(scrlsize
, height
- adjust
) ;
3131 wxPoint
hPoint(0 , height
-scrlsize
) ;
3132 wxSize
hSize( width
- adjust
, scrlsize
) ;
3135 if ( style
& wxVSCROLL
)
3137 m_vScrollBar
= new wxScrollBar(this, wxID_ANY
, vPoint
,
3138 vSize
, wxVERTICAL
);
3141 if ( style
& wxHSCROLL
)
3143 m_hScrollBar
= new wxScrollBar(this, wxID_ANY
, hPoint
,
3144 hSize
, wxHORIZONTAL
);
3149 // because the create does not take into account the client area origin
3150 MacRepositionScrollBars() ; // we might have a real position shift
3153 void wxWindowMac::MacRepositionScrollBars()
3155 if ( !m_hScrollBar
&& !m_vScrollBar
)
3158 bool hasBoth
= ( m_hScrollBar
&& m_hScrollBar
->IsShown()) && ( m_vScrollBar
&& m_vScrollBar
->IsShown()) ;
3159 int scrlsize
= m_hScrollBar
? m_hScrollBar
->GetSize().y
: ( m_vScrollBar
? m_vScrollBar
->GetSize().x
: MAC_SCROLLBAR_SIZE
) ;
3160 int adjust
= hasBoth
? scrlsize
- 1 : 0 ;
3162 // get real client area
3166 GetSize( &width
, &height
) ;
3168 width
-= MacGetLeftBorderSize() + MacGetRightBorderSize();
3169 height
-= MacGetTopBorderSize() + MacGetBottomBorderSize();
3171 wxPoint
vPoint(width
-MAC_SCROLLBAR_SIZE
, 0) ;
3172 wxSize
vSize(MAC_SCROLLBAR_SIZE
, height
- adjust
) ;
3173 wxPoint
hPoint(0 , height
-MAC_SCROLLBAR_SIZE
) ;
3174 wxSize
hSize( width
- adjust
, MAC_SCROLLBAR_SIZE
) ;
3180 GetSize( &w , &h ) ;
3182 MacClientToRootWindow( &x , &y ) ;
3183 MacClientToRootWindow( &w , &h ) ;
3185 wxWindowMac *iter = (wxWindowMac*)this ;
3187 int totW = 10000 , totH = 10000;
3190 if ( iter->IsTopLevel() )
3192 iter->GetSize( &totW , &totH ) ;
3196 iter = iter->GetParent() ;
3224 m_vScrollBar
->SetSize( vPoint
.x
, vPoint
.y
, vSize
.x
, vSize
.y
, wxSIZE_ALLOW_MINUS_ONE
);
3228 m_hScrollBar
->SetSize( hPoint
.x
, hPoint
.y
, hSize
.x
, hSize
.y
, wxSIZE_ALLOW_MINUS_ONE
);
3232 bool wxWindowMac::AcceptsFocus() const
3234 return MacCanFocus() && wxWindowBase::AcceptsFocus();
3237 void wxWindowMac::MacSuperChangedPosition()
3239 // only window-absolute structures have to be moved i.e. controls
3241 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
3244 wxWindowMac
*child
= node
->GetData();
3245 child
->MacSuperChangedPosition() ;
3246 node
= node
->GetNext();
3250 void wxWindowMac::MacTopLevelWindowChangedPosition()
3252 // only screen-absolute structures have to be moved i.e. glcanvas
3254 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
3257 wxWindowMac
*child
= node
->GetData();
3258 child
->MacTopLevelWindowChangedPosition() ;
3259 node
= node
->GetNext();
3263 long wxWindowMac::MacGetLeftBorderSize( ) const
3268 if (m_windowStyle
& wxRAISED_BORDER
|| m_windowStyle
& wxSUNKEN_BORDER
)
3273 else if ( m_windowStyle
&wxDOUBLE_BORDER
)
3278 else if (m_windowStyle
&wxSIMPLE_BORDER
)
3285 long wxWindowMac::MacGetRightBorderSize( ) const
3287 // they are all symmetric in mac themes
3288 return MacGetLeftBorderSize() ;
3291 long wxWindowMac::MacGetTopBorderSize( ) const
3293 // they are all symmetric in mac themes
3294 return MacGetLeftBorderSize() ;
3297 long wxWindowMac::MacGetBottomBorderSize( ) const
3299 // they are all symmetric in mac themes
3300 return MacGetLeftBorderSize() ;
3303 long wxWindowMac::MacRemoveBordersFromStyle( long style
)
3305 return style
& ~wxBORDER_MASK
;
3308 // Find the wxWindowMac at the current mouse position, returning the mouse
3310 wxWindowMac
* wxFindWindowAtPointer(wxPoint
& pt
)
3312 pt
= wxGetMousePosition();
3313 wxWindowMac
* found
= wxFindWindowAtPoint(pt
);
3317 // Get the current mouse position.
3318 wxPoint
wxGetMousePosition()
3321 wxGetMousePosition(& x
, & y
);
3322 return wxPoint(x
, y
);
3325 void wxWindowMac::OnMouseEvent( wxMouseEvent
&event
)
3327 if ( event
.GetEventType() == wxEVT_RIGHT_DOWN
)
3329 // copied from wxGTK : CS
3330 // generate a "context menu" event: this is similar to wxEVT_RIGHT_DOWN
3333 // (a) it's a command event and so is propagated to the parent
3334 // (b) under MSW it can be generated from kbd too
3335 // (c) it uses screen coords (because of (a))
3336 wxContextMenuEvent
evtCtx(wxEVT_CONTEXT_MENU
,
3338 this->ClientToScreen(event
.GetPosition()));
3339 if ( ! GetEventHandler()->ProcessEvent(evtCtx
) )
3348 void wxWindowMac::OnPaint( wxPaintEvent
& event
)
3350 if ( wxTheApp
->MacGetCurrentEvent() != NULL
&& wxTheApp
->MacGetCurrentEventHandlerCallRef() != NULL
)
3352 CallNextEventHandler((EventHandlerCallRef
)wxTheApp
->MacGetCurrentEventHandlerCallRef() , (EventRef
) wxTheApp
->MacGetCurrentEvent() ) ;
3356 void wxWindowMac::MacHandleControlClick( WXWidget control
, wxInt16 controlpart
, bool WXUNUSED( mouseStillDown
) )
3360 Rect
wxMacGetBoundsForControl( wxWindow
* window
, const wxPoint
& pos
, const wxSize
&size
, bool adjustForOrigin
)
3364 window
->MacGetBoundsForControl( pos
, size
, x
, y
, w
, h
, adjustForOrigin
) ;
3365 Rect bounds
= { y
, x
, y
+h
, x
+w
};
3369 wxInt32
wxWindowMac::MacControlHit(WXEVENTHANDLERREF
WXUNUSED(handler
) , WXEVENTREF
WXUNUSED(event
) )
3371 return eventNotHandledErr
;