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() ;
268 case kEventControlSetFocusPart
:
270 Boolean focusEverything
= false ;
271 ControlPartCode controlPart
= cEvent
.GetParameter
<ControlPartCode
>(kEventParamControlPart
, typeControlPartCode
);
272 if ( cEvent
.GetParameter
<Boolean
>(kEventParamControlFocusEverything
, &focusEverything
) == noErr
)
275 if ( controlPart
== kControlFocusNoPart
)
278 if ( thisWindow
->GetCaret() )
280 thisWindow
->GetCaret()->OnKillFocus();
282 #endif // wxUSE_CARET
283 wxFocusEvent
event( wxEVT_KILL_FOCUS
, thisWindow
->GetId());
284 event
.SetEventObject(thisWindow
);
285 thisWindow
->GetEventHandler()->ProcessEvent(event
) ;
289 // panel wants to track the window which was the last to have focus in it
290 wxChildFocusEvent
eventFocus(thisWindow
);
291 thisWindow
->GetEventHandler()->ProcessEvent(eventFocus
);
294 if ( thisWindow
->GetCaret() )
296 thisWindow
->GetCaret()->OnSetFocus();
298 #endif // wxUSE_CARET
300 wxFocusEvent
event(wxEVT_SET_FOCUS
, thisWindow
->GetId());
301 event
.SetEventObject(thisWindow
);
302 thisWindow
->GetEventHandler()->ProcessEvent(event
) ;
304 if ( thisWindow
->MacIsUserPane() )
309 case kEventControlHit
:
311 result
= thisWindow
->MacControlHit( handler
, event
) ;
320 static pascal OSStatus
wxMacWindowServiceEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
322 OSStatus result
= eventNotHandledErr
;
324 wxMacCarbonEvent
cEvent( event
) ;
326 ControlRef controlRef
;
327 wxWindowMac
* thisWindow
= (wxWindowMac
*) data
;
328 wxTextCtrl
* textCtrl
= wxDynamicCast( thisWindow
, wxTextCtrl
) ;
329 cEvent
.GetParameter( kEventParamDirectObject
, &controlRef
) ;
331 switch( GetEventKind( event
) )
333 case kEventServiceGetTypes
:
337 textCtrl
->GetSelection( &from
, &to
) ;
339 CFMutableArrayRef copyTypes
= 0 , pasteTypes
= 0;
341 copyTypes
= cEvent
.GetParameter
< CFMutableArrayRef
>( kEventParamServiceCopyTypes
, typeCFMutableArrayRef
) ;
342 if ( textCtrl
->IsEditable() )
343 pasteTypes
= cEvent
.GetParameter
< CFMutableArrayRef
>( kEventParamServicePasteTypes
, typeCFMutableArrayRef
) ;
345 static const OSType textDataTypes
[] = { kTXNTextData
/* , 'utxt' , 'PICT', 'MooV', 'AIFF' */ };
346 for ( size_t i
= 0 ; i
< WXSIZEOF(textDataTypes
) ; ++i
)
348 CFStringRef typestring
= CreateTypeStringWithOSType(textDataTypes
[i
]);
352 CFArrayAppendValue (copyTypes
, typestring
) ;
354 CFArrayAppendValue (pasteTypes
, typestring
) ;
355 CFRelease( typestring
) ;
361 case kEventServiceCopy
:
365 textCtrl
->GetSelection( &from
, &to
) ;
366 wxString val
= textCtrl
->GetValue() ;
367 val
= val
.Mid( from
, to
- from
) ;
368 ScrapRef scrapRef
= cEvent
.GetParameter
< ScrapRef
> ( kEventParamScrapRef
, typeScrapRef
) ;
369 verify_noerr( ClearScrap( &scrapRef
) ) ;
370 verify_noerr( PutScrapFlavor( scrapRef
, kTXNTextData
, 0 , val
.Length() , val
.c_str() ) ) ;
374 case kEventServicePaste
:
377 ScrapRef scrapRef
= cEvent
.GetParameter
< ScrapRef
> ( kEventParamScrapRef
, typeScrapRef
) ;
378 Size textSize
, pastedSize
;
379 verify_noerr( GetScrapFlavorSize (scrapRef
, kTXNTextData
, &textSize
) ) ;
381 char *content
= new char[textSize
] ;
382 GetScrapFlavorData (scrapRef
, kTXNTextData
, &pastedSize
, content
);
383 content
[textSize
-1] = 0 ;
385 textCtrl
->WriteText( wxString( content
, wxConvLocal
) );
387 textCtrl
->WriteText( wxString( content
) ) ;
398 pascal OSStatus
wxMacWindowEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
400 EventRef formerEvent
= (EventRef
) wxTheApp
->MacGetCurrentEvent() ;
401 EventHandlerCallRef formerEventHandlerCallRef
= (EventHandlerCallRef
) wxTheApp
->MacGetCurrentEventHandlerCallRef() ;
402 wxTheApp
->MacSetCurrentEvent( event
, handler
) ;
403 OSStatus result
= eventNotHandledErr
;
405 switch ( GetEventClass( event
) )
407 case kEventClassControl
:
408 result
= wxMacWindowControlEventHandler( handler
, event
, data
) ;
410 case kEventClassService
:
411 result
= wxMacWindowServiceEventHandler( handler
, event
, data
) ;
415 wxTheApp
->MacSetCurrentEvent( formerEvent
, formerEventHandlerCallRef
) ;
419 DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacWindowEventHandler
)
421 #if !TARGET_API_MAC_OSX
423 // ---------------------------------------------------------------------------
424 // UserPane events for non OSX builds
425 // ---------------------------------------------------------------------------
427 static pascal void wxMacControlUserPaneDrawProc(ControlRef control
, SInt16 part
)
429 wxWindow
* win
= wxFindControlFromMacControl(control
) ;
431 win
->MacControlUserPaneDrawProc(part
) ;
434 static pascal ControlPartCode
wxMacControlUserPaneHitTestProc(ControlRef control
, Point where
)
436 wxWindow
* win
= wxFindControlFromMacControl(control
) ;
438 return win
->MacControlUserPaneHitTestProc(where
.h
, where
.v
) ;
440 return kControlNoPart
;
443 static pascal ControlPartCode
wxMacControlUserPaneTrackingProc(ControlRef control
, Point startPt
, ControlActionUPP actionProc
)
445 wxWindow
* win
= wxFindControlFromMacControl(control
) ;
447 return win
->MacControlUserPaneTrackingProc( startPt
.h
, startPt
.v
, (void*) actionProc
) ;
449 return kControlNoPart
;
452 static pascal void wxMacControlUserPaneIdleProc(ControlRef control
)
454 wxWindow
* win
= wxFindControlFromMacControl(control
) ;
456 win
->MacControlUserPaneIdleProc() ;
459 static pascal ControlPartCode
wxMacControlUserPaneKeyDownProc(ControlRef control
, SInt16 keyCode
, SInt16 charCode
, SInt16 modifiers
)
461 wxWindow
* win
= wxFindControlFromMacControl(control
) ;
463 return win
->MacControlUserPaneKeyDownProc(keyCode
,charCode
,modifiers
) ;
465 return kControlNoPart
;
468 static pascal void wxMacControlUserPaneActivateProc(ControlRef control
, Boolean activating
)
470 wxWindow
* win
= wxFindControlFromMacControl(control
) ;
472 win
->MacControlUserPaneActivateProc(activating
) ;
475 static pascal ControlPartCode
wxMacControlUserPaneFocusProc(ControlRef control
, ControlFocusPart action
)
477 wxWindow
* win
= wxFindControlFromMacControl(control
) ;
479 return win
->MacControlUserPaneFocusProc(action
) ;
481 return kControlNoPart
;
484 static pascal void wxMacControlUserPaneBackgroundProc(ControlRef control
, ControlBackgroundPtr info
)
486 wxWindow
* win
= wxFindControlFromMacControl(control
) ;
488 win
->MacControlUserPaneBackgroundProc(info
) ;
491 void wxWindowMac::MacControlUserPaneDrawProc(wxInt16 part
)
493 RgnHandle rgn
= NewRgn() ;
495 wxMacWindowStateSaver
sv( this ) ;
496 SectRgn( rgn
, (RgnHandle
) MacGetVisibleRegion().GetWXHRGN() , rgn
) ;
497 MacDoRedraw( rgn
, 0 ) ;
501 wxInt16
wxWindowMac::MacControlUserPaneHitTestProc(wxInt16 x
, wxInt16 y
)
503 return kControlNoPart
;
506 wxInt16
wxWindowMac::MacControlUserPaneTrackingProc(wxInt16 x
, wxInt16 y
, void* actionProc
)
508 return kControlNoPart
;
511 void wxWindowMac::MacControlUserPaneIdleProc()
515 wxInt16
wxWindowMac::MacControlUserPaneKeyDownProc(wxInt16 keyCode
, wxInt16 charCode
, wxInt16 modifiers
)
517 return kControlNoPart
;
520 void wxWindowMac::MacControlUserPaneActivateProc(bool activating
)
524 wxInt16
wxWindowMac::MacControlUserPaneFocusProc(wxInt16 action
)
526 return kControlNoPart
;
529 void wxWindowMac::MacControlUserPaneBackgroundProc(void* info
)
533 ControlUserPaneDrawUPP gControlUserPaneDrawUPP
= NULL
;
534 ControlUserPaneHitTestUPP gControlUserPaneHitTestUPP
= NULL
;
535 ControlUserPaneTrackingUPP gControlUserPaneTrackingUPP
= NULL
;
536 ControlUserPaneIdleUPP gControlUserPaneIdleUPP
= NULL
;
537 ControlUserPaneKeyDownUPP gControlUserPaneKeyDownUPP
= NULL
;
538 ControlUserPaneActivateUPP gControlUserPaneActivateUPP
= NULL
;
539 ControlUserPaneFocusUPP gControlUserPaneFocusUPP
= NULL
;
540 ControlUserPaneBackgroundUPP gControlUserPaneBackgroundUPP
= NULL
;
544 // ===========================================================================
546 // ===========================================================================
548 #if KEY_wxList_DEPRECATED
549 wxList
wxWinMacControlList(wxKEY_INTEGER
);
551 wxWindow
*wxFindControlFromMacControl(ControlRef inControl
)
553 wxNode
*node
= wxWinMacControlList
.Find((long)inControl
);
556 return (wxControl
*)node
->GetData();
559 void wxAssociateControlWithMacControl(ControlRef inControl
, wxWindow
*control
)
561 // adding NULL ControlRef is (first) surely a result of an error and
562 // (secondly) breaks native event processing
563 wxCHECK_RET( inControl
!= (ControlRef
) NULL
, wxT("attempt to add a NULL WindowRef to window list") );
565 if ( !wxWinMacControlList
.Find((long)inControl
) )
566 wxWinMacControlList
.Append((long)inControl
, control
);
569 void wxRemoveMacControlAssociation(wxWindow
*control
)
571 wxWinMacControlList
.DeleteObject(control
);
575 WX_DECLARE_HASH_MAP(ControlRef
, wxWindow
*, wxPointerHash
, wxPointerEqual
, MacControlMap
);
577 static MacControlMap wxWinMacControlList
;
579 wxWindow
*wxFindControlFromMacControl(ControlRef inControl
)
581 MacControlMap::iterator node
= wxWinMacControlList
.find(inControl
);
583 return (node
== wxWinMacControlList
.end()) ? NULL
: node
->second
;
586 void wxAssociateControlWithMacControl(ControlRef inControl
, wxWindow
*control
)
588 // adding NULL ControlRef is (first) surely a result of an error and
589 // (secondly) breaks native event processing
590 wxCHECK_RET( inControl
!= (ControlRef
) NULL
, wxT("attempt to add a NULL WindowRef to window list") );
592 wxWinMacControlList
[inControl
] = control
;
595 void wxRemoveMacControlAssociation(wxWindow
*control
)
597 // iterate over all the elements in the class
598 MacControlMap::iterator it
;
599 for ( it
= wxWinMacControlList
.begin(); it
!= wxWinMacControlList
.end(); ++it
)
601 if ( it
->second
== control
)
603 wxWinMacControlList
.erase(it
);
608 #endif // deprecated wxList
611 ControlActionUPP wxMacLiveScrollbarActionUPP
= NULL
;
613 ControlColorUPP wxMacSetupControlBackgroundUPP
= NULL
;
615 // we have to setup the brush in the current port and return noErr
616 // or return an error code so that the control manager walks further up the
617 // hierarchy to find a correct background
619 pascal OSStatus
wxMacSetupControlBackground( ControlRef iControl
, SInt16 iMessage
, SInt16 iDepth
, Boolean iIsColor
)
621 OSStatus status
= paramErr
;
624 case kControlMsgApplyTextColor
:
626 case kControlMsgSetUpBackground
:
628 wxWindow
* wx
= (wxWindow
*) wxFindControlFromMacControl( iControl
) ;
632 const wxBrush &brush = wx->MacGetBackgroundBrush() ;
635 wxDC::MacSetupBackgroundForCurrentPort( brush ) ;
637 // this clipping is only needed for non HIView
639 RgnHandle clip
= NewRgn() ;
642 wx
->MacWindowToRootWindow( &x
,&y
) ;
643 CopyRgn( (RgnHandle
) wx
->MacGetVisibleRegion().GetWXHRGN() , clip
) ;
644 OffsetRgn( clip
, x
, y
) ;
651 else if ( wx->MacIsUserPane() )
653 // if we don't have a valid brush for such a control, we have to call the
654 // setup of our parent ourselves
655 status = SetUpControlBackground( (ControlRef) wx->GetParent()->GetHandle() , iDepth , iIsColor ) ;
668 pascal void wxMacLiveScrollbarActionProc( ControlRef control
, ControlPartCode partCode
) ;
669 pascal void wxMacLiveScrollbarActionProc( ControlRef control
, ControlPartCode partCode
)
673 wxWindow
* wx
= wxFindControlFromMacControl( control
) ;
676 wx
->MacHandleControlClick( (WXWidget
) control
, partCode
, true /* stillDown */ ) ;
681 // ----------------------------------------------------------------------------
682 // constructors and such
683 // ----------------------------------------------------------------------------
685 wxWindowMac::wxWindowMac()
690 wxWindowMac::wxWindowMac(wxWindowMac
*parent
,
695 const wxString
& name
)
698 Create(parent
, id
, pos
, size
, style
, name
);
701 void wxWindowMac::Init()
705 #if WXWIN_COMPATIBILITY_2_4
706 m_backgroundTransparent
= FALSE
;
709 // as all windows are created with WS_VISIBLE style...
712 m_hScrollBar
= NULL
;
713 m_vScrollBar
= NULL
;
714 m_macBackgroundBrush
= wxNullBrush
;
716 m_macIsUserPane
= TRUE
;
717 #if wxMAC_USE_CORE_GRAPHICS
718 m_cgContextRef
= NULL
;
720 // make sure all proc ptrs are available
722 #if !TARGET_API_MAC_OSX
723 if ( gControlUserPaneDrawUPP
== NULL
)
725 gControlUserPaneDrawUPP
= NewControlUserPaneDrawUPP( wxMacControlUserPaneDrawProc
) ;
726 gControlUserPaneHitTestUPP
= NewControlUserPaneHitTestUPP( wxMacControlUserPaneHitTestProc
) ;
727 gControlUserPaneTrackingUPP
= NewControlUserPaneTrackingUPP( wxMacControlUserPaneTrackingProc
) ;
728 gControlUserPaneIdleUPP
= NewControlUserPaneIdleUPP( wxMacControlUserPaneIdleProc
) ;
729 gControlUserPaneKeyDownUPP
= NewControlUserPaneKeyDownUPP( wxMacControlUserPaneKeyDownProc
) ;
730 gControlUserPaneActivateUPP
= NewControlUserPaneActivateUPP( wxMacControlUserPaneActivateProc
) ;
731 gControlUserPaneFocusUPP
= NewControlUserPaneFocusUPP( wxMacControlUserPaneFocusProc
) ;
732 gControlUserPaneBackgroundUPP
= NewControlUserPaneBackgroundUPP( wxMacControlUserPaneBackgroundProc
) ;
735 if ( wxMacLiveScrollbarActionUPP
== NULL
)
737 wxMacLiveScrollbarActionUPP
= NewControlActionUPP( wxMacLiveScrollbarActionProc
);
740 if ( wxMacSetupControlBackgroundUPP
== NULL
)
742 wxMacSetupControlBackgroundUPP
= NewControlColorUPP( wxMacSetupControlBackground
) ;
745 // we need a valid font for the encodings
746 wxWindowBase::SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
750 wxWindowMac::~wxWindowMac()
754 m_isBeingDeleted
= TRUE
;
758 // deleting a window while it is shown invalidates the region occupied by border or
760 int outerBorder
= MacGetLeftBorderSize() ;
761 if ( m_peer
->NeedsFocusRect() && m_peer
->HasFocus() )
764 if ( IsShown() && ( outerBorder
> 0 ) )
766 // as the borders are drawn on the parent we have to properly invalidate all these areas
767 RgnHandle updateInner
= NewRgn() , updateOuter
= NewRgn() , updateTotal
= NewRgn() ;
771 m_peer
->GetRect( &rect
) ;
772 RectRgn( updateInner
, &rect
) ;
773 InsetRect( &rect
, -outerBorder
, -outerBorder
) ;
774 RectRgn( updateOuter
, &rect
) ;
775 DiffRgn( updateOuter
, updateInner
,updateOuter
) ;
777 GetParent()->MacWindowToRootWindow( &parent
.x
, &parent
.y
) ;
778 parent
-= GetParent()->GetClientAreaOrigin() ;
779 OffsetRgn( updateOuter
, -parent
.x
, -parent
.y
) ;
780 CopyRgn( updateOuter
, updateTotal
) ;
782 GetParent()->m_peer
->SetNeedsDisplay( true , updateTotal
) ;
783 DisposeRgn(updateOuter
) ;
784 DisposeRgn(updateInner
) ;
785 DisposeRgn(updateTotal
) ;
789 #ifndef __WXUNIVERSAL__
790 // VS: make sure there's no wxFrame with last focus set to us:
791 for ( wxWindow
*win
= GetParent(); win
; win
= win
->GetParent() )
793 wxFrame
*frame
= wxDynamicCast(win
, wxFrame
);
796 if ( frame
->GetLastFocus() == this )
798 frame
->SetLastFocus((wxWindow
*)NULL
);
803 #endif // __WXUNIVERSAL__
805 // destroy children before destroying this window itself
808 // wxRemoveMacControlAssociation( this ) ;
809 // If we delete an item, we should initialize the parent panel,
810 // because it could now be invalid.
811 wxWindow
*parent
= GetParent() ;
814 if (parent
->GetDefaultItem() == (wxButton
*) this)
815 parent
->SetDefaultItem(NULL
);
817 if ( m_peer
&& m_peer
->Ok() )
819 // in case the callback might be called during destruction
820 wxRemoveMacControlAssociation( this) ;
821 // we currently are not using this hook
822 // ::SetControlColorProc( *m_peer , NULL ) ;
826 if ( g_MacLastWindow
== this )
828 g_MacLastWindow
= NULL
;
831 wxFrame
* frame
= wxDynamicCast( wxGetTopLevelParent( this ) , wxFrame
) ;
834 if ( frame
->GetLastFocus() == this )
835 frame
->SetLastFocus( NULL
) ;
838 // delete our drop target if we've got one
839 #if wxUSE_DRAG_AND_DROP
840 if ( m_dropTarget
!= NULL
)
845 #endif // wxUSE_DRAG_AND_DROP
849 WXWidget
wxWindowMac::GetHandle() const
851 return (WXWidget
) m_peer
->GetControlRef() ;
855 void wxWindowMac::MacInstallEventHandler( WXWidget control
)
857 wxAssociateControlWithMacControl( (ControlRef
) control
, this ) ;
858 InstallControlEventHandler( (ControlRef
) control
, GetwxMacWindowEventHandlerUPP(),
859 GetEventTypeCount(eventList
), eventList
, this,
860 (EventHandlerRef
*)&m_macControlEventHandler
);
861 #if !TARGET_API_MAC_OSX
862 if ( (ControlRef
) control
== m_peer
->GetControlRef() )
864 m_peer
->SetData
<ControlUserPaneDrawUPP
>(kControlEntireControl
,kControlUserPaneDrawProcTag
,&gControlUserPaneDrawUPP
) ;
865 m_peer
->SetData
<ControlUserPaneHitTestUPP
>(kControlEntireControl
,kControlUserPaneHitTestProcTag
,&gControlUserPaneHitTestUPP
) ;
866 m_peer
->SetData
<ControlUserPaneTrackingUPP
>(kControlEntireControl
,kControlUserPaneTrackingProcTag
,&gControlUserPaneTrackingUPP
) ;
867 m_peer
->SetData
<ControlUserPaneIdleUPP
>(kControlEntireControl
,kControlUserPaneIdleProcTag
,&gControlUserPaneIdleUPP
) ;
868 m_peer
->SetData
<ControlUserPaneKeyDownUPP
>(kControlEntireControl
,kControlUserPaneKeyDownProcTag
,&gControlUserPaneKeyDownUPP
) ;
869 m_peer
->SetData
<ControlUserPaneActivateUPP
>(kControlEntireControl
,kControlUserPaneActivateProcTag
,&gControlUserPaneActivateUPP
) ;
870 m_peer
->SetData
<ControlUserPaneFocusUPP
>(kControlEntireControl
,kControlUserPaneFocusProcTag
,&gControlUserPaneFocusUPP
) ;
871 m_peer
->SetData
<ControlUserPaneBackgroundUPP
>(kControlEntireControl
,kControlUserPaneBackgroundProcTag
,&gControlUserPaneBackgroundUPP
) ;
878 bool wxWindowMac::Create(wxWindowMac
*parent
, wxWindowID id
,
882 const wxString
& name
)
884 wxCHECK_MSG( parent
, FALSE
, wxT("can't create wxWindowMac without parent") );
886 if ( !CreateBase(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
889 m_windowVariant
= parent
->GetWindowVariant() ;
891 if ( m_macIsUserPane
)
893 Rect bounds
= wxMacGetBoundsForControl( this , pos
, size
) ;
896 | kControlSupportsEmbedding
897 // | kControlSupportsLiveFeedback
898 // | kControlHasSpecialBackground
899 // | kControlSupportsCalcBestRect
900 // | kControlHandlesTracking
901 | kControlSupportsFocus
902 // | kControlWantsActivate
903 // | kControlWantsIdle
906 m_peer
= new wxMacControl() ;
907 ::CreateUserPaneControl( MAC_WXHWND(GetParent()->MacGetTopLevelWindowRef()) , &bounds
, features
, m_peer
->GetControlRefAddr() );
910 MacPostControlCreate(pos
,size
) ;
912 #ifndef __WXUNIVERSAL__
913 // Don't give scrollbars to wxControls unless they ask for them
914 if ( (! IsKindOf(CLASSINFO(wxControl
)) && ! IsKindOf(CLASSINFO(wxStatusBar
))) ||
915 (IsKindOf(CLASSINFO(wxControl
)) && ( style
& wxHSCROLL
|| style
& wxVSCROLL
)))
917 MacCreateScrollBars( style
) ;
921 wxWindowCreateEvent
event(this);
922 GetEventHandler()->AddPendingEvent(event
);
927 void wxWindowMac::MacChildAdded()
931 m_vScrollBar
->Raise() ;
935 m_hScrollBar
->Raise() ;
940 void wxWindowMac::MacPostControlCreate(const wxPoint
& pos
, const wxSize
& size
)
942 wxASSERT_MSG( m_peer
!= NULL
&& m_peer
->Ok() , wxT("No valid mac control") ) ;
944 m_peer
->SetReference( (long) this ) ;
945 GetParent()->AddChild(this);
947 MacInstallEventHandler( (WXWidget
) m_peer
->GetControlRef() );
949 ControlRef container
= (ControlRef
) GetParent()->GetHandle() ;
950 wxASSERT_MSG( container
!= NULL
, wxT("No valid mac container control") ) ;
951 ::EmbedControl( m_peer
->GetControlRef() , container
) ;
952 GetParent()->MacChildAdded() ;
954 // adjust font, controlsize etc
955 DoSetWindowVariant( m_windowVariant
) ;
957 #if !TARGET_API_MAC_OSX
958 // eventually we can fix some clipping issues be reactivating this hook
959 //if ( m_macIsUserPane )
960 // SetControlColorProc( m_peer->GetControlRef() , wxMacSetupControlBackgroundUPP ) ;
962 m_peer
->SetTitle( wxStripMenuCodes(m_label
) ) ;
964 if (!m_macIsUserPane
)
966 SetInitialBestSize(size
);
969 SetCursor( *wxSTANDARD_CURSOR
) ;
972 void wxWindowMac::DoSetWindowVariant( wxWindowVariant variant
)
974 // Don't assert, in case we set the window variant before
975 // the window is created
976 // wxASSERT( m_peer->Ok() ) ;
978 m_windowVariant
= variant
;
980 if (m_peer
== NULL
|| !m_peer
->Ok())
984 ThemeFontID themeFont
= kThemeSystemFont
;
986 // we will get that from the settings later
987 // and make this NORMAL later, but first
988 // we have a few calculations that we must fix
992 case wxWINDOW_VARIANT_NORMAL
:
993 size
= kControlSizeNormal
;
994 themeFont
= kThemeSystemFont
;
996 case wxWINDOW_VARIANT_SMALL
:
997 size
= kControlSizeSmall
;
998 themeFont
= kThemeSmallSystemFont
;
1000 case wxWINDOW_VARIANT_MINI
:
1001 if (UMAGetSystemVersion() >= 0x1030 )
1003 // not always defined in the headers
1009 size
= kControlSizeSmall
;
1010 themeFont
= kThemeSmallSystemFont
;
1013 case wxWINDOW_VARIANT_LARGE
:
1014 size
= kControlSizeLarge
;
1015 themeFont
= kThemeSystemFont
;
1018 wxFAIL_MSG(_T("unexpected window variant"));
1021 m_peer
->SetData
<ControlSize
>(kControlEntireControl
, kControlSizeTag
,&size
) ;
1024 font
.MacCreateThemeFont( themeFont
) ;
1028 void wxWindowMac::MacUpdateControlFont()
1030 m_peer
->SetFont( GetFont() , GetForegroundColour() , GetWindowStyle() ) ;
1034 bool wxWindowMac::SetFont(const wxFont
& font
)
1036 bool retval
= wxWindowBase::SetFont( font
) ;
1038 MacUpdateControlFont() ;
1043 bool wxWindowMac::SetForegroundColour(const wxColour
& col
)
1045 if ( !wxWindowBase::SetForegroundColour(col
) )
1048 MacUpdateControlFont() ;
1053 bool wxWindowMac::SetBackgroundColour(const wxColour
& col
)
1055 if ( !wxWindowBase::SetBackgroundColour(col
) && m_hasBgCol
)
1059 wxColour
newCol(GetBackgroundColour());
1060 if ( newCol
== wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE
) )
1062 brush
.MacSetTheme( kThemeBrushDocumentWindowBackground
) ;
1064 else if ( newCol
== wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
) )
1066 brush
.MacSetTheme( kThemeBrushDialogBackgroundActive
) ;
1070 brush
.SetColour( newCol
) ;
1072 MacSetBackgroundBrush( brush
) ;
1074 MacUpdateControlFont() ;
1079 void wxWindowMac::MacSetBackgroundBrush( const wxBrush
&brush
)
1081 m_macBackgroundBrush
= brush
;
1082 m_peer
->SetBackground( brush
) ;
1085 bool wxWindowMac::MacCanFocus() const
1087 // there is currently no way to determine whether the window is running in full keyboard
1088 // access mode, therefore we cannot rely on these features, yet the only other way would be
1089 // to issue a SetKeyboardFocus event and verify after whether it succeeded, this would risk problems
1090 // in event handlers...
1091 UInt32 features
= 0 ;
1092 m_peer
->GetFeatures( & features
) ;
1093 return features
& ( kControlSupportsFocus
| kControlGetsFocusOnClick
) ;
1097 void wxWindowMac::SetFocus()
1099 if ( AcceptsFocus() )
1102 wxWindow
* former
= FindFocus() ;
1103 if ( former
== this )
1106 OSStatus err
= m_peer
->SetFocus( kControlFocusNextPart
) ;
1107 // as we cannot rely on the control features to find out whether we are in full keyboard mode, we can only
1108 // leave in case of an error
1109 if ( err
== errCouldntSetFocus
)
1112 #if !TARGET_API_MAC_OSX
1113 // emulate carbon events when running under carbonlib where they are not natively available
1116 EventRef evRef
= NULL
;
1117 verify_noerr( MacCreateEvent( NULL
, kEventClassControl
, kEventControlSetFocusPart
, TicksToEventTime( TickCount() ) , kEventAttributeUserEvent
,
1120 wxMacCarbonEvent
cEvent( evRef
) ;
1121 cEvent
.SetParameter
<ControlRef
>( kEventParamDirectObject
, (ControlRef
) former
->GetHandle() ) ;
1122 cEvent
.SetParameter
<ControlPartCode
>(kEventParamControlPart
, typeControlPartCode
, kControlFocusNoPart
) ;
1124 wxMacWindowEventHandler( NULL
, evRef
, former
) ;
1125 ReleaseEvent(evRef
) ;
1127 // send new focus event
1129 EventRef evRef
= NULL
;
1130 verify_noerr( MacCreateEvent( NULL
, kEventClassControl
, kEventControlSetFocusPart
, TicksToEventTime( TickCount() ) , kEventAttributeUserEvent
,
1133 wxMacCarbonEvent
cEvent( evRef
) ;
1134 cEvent
.SetParameter
<ControlRef
>( kEventParamDirectObject
, (ControlRef
) GetHandle() ) ;
1135 cEvent
.SetParameter
<ControlPartCode
>(kEventParamControlPart
, typeControlPartCode
, kControlFocusNextPart
) ;
1137 wxMacWindowEventHandler( NULL
, evRef
, this ) ;
1138 ReleaseEvent(evRef
) ;
1145 void wxWindowMac::DoCaptureMouse()
1147 wxTheApp
->s_captureWindow
= this ;
1150 wxWindow
* wxWindowBase::GetCapture()
1152 return wxTheApp
->s_captureWindow
;
1155 void wxWindowMac::DoReleaseMouse()
1157 wxTheApp
->s_captureWindow
= NULL
;
1160 #if wxUSE_DRAG_AND_DROP
1162 void wxWindowMac::SetDropTarget(wxDropTarget
*pDropTarget
)
1164 if ( m_dropTarget
!= 0 ) {
1165 delete m_dropTarget
;
1168 m_dropTarget
= pDropTarget
;
1169 if ( m_dropTarget
!= 0 )
1177 // Old style file-manager drag&drop
1178 void wxWindowMac::DragAcceptFiles(bool accept
)
1183 // Returns the size of the native control. In the case of the toplevel window
1184 // this is the content area root control
1186 void wxWindowMac::MacGetPositionAndSizeFromControl(int& x
, int& y
,
1187 int& w
, int& h
) const
1190 m_peer
->GetRect( &bounds
) ;
1195 w
= bounds
.right
- bounds
.left
;
1196 h
= bounds
.bottom
- bounds
.top
;
1199 // From a wx position / size calculate the appropriate size of the native control
1201 bool wxWindowMac::MacGetBoundsForControl(const wxPoint
& pos
,
1204 int& w
, int& h
, bool adjustOrigin
) const
1206 // the desired size, minus the border pixels gives the correct size of the control
1210 // todo the default calls may be used as soon as PostCreateControl Is moved here
1211 w
= size
.x
; // WidthDefault( size.x );
1212 h
= size
.y
; // HeightDefault( size.y ) ;
1213 #if !TARGET_API_MAC_OSX
1214 GetParent()->MacWindowToRootWindow( &x
, &y
) ;
1217 x
+= MacGetLeftBorderSize() ;
1218 y
+= MacGetTopBorderSize() ;
1219 w
-= MacGetLeftBorderSize() + MacGetRightBorderSize() ;
1220 h
-= MacGetTopBorderSize() + MacGetBottomBorderSize() ;
1223 AdjustForParentClientOrigin( x
, y
) ;
1224 #if TARGET_API_MAC_OSX
1225 // this is in window relative coordinate, as this parent may have a border, its physical position is offset by this border
1226 if ( ! GetParent()->IsTopLevel() )
1228 x
-= GetParent()->MacGetLeftBorderSize() ;
1229 y
-= GetParent()->MacGetTopBorderSize() ;
1235 // Get window size (not client size)
1236 void wxWindowMac::DoGetSize(int *x
, int *y
) const
1238 // take the size of the control and add the borders that have to be drawn outside
1239 int x1
, y1
, w1
, h1
;
1241 MacGetPositionAndSizeFromControl( x1
, y1
, w1
,h1
) ;
1243 w1
+= MacGetLeftBorderSize() + MacGetRightBorderSize() ;
1244 h1
+= MacGetTopBorderSize() + MacGetBottomBorderSize() ;
1250 // get the position of the bounds of this window in client coordinates of its parent
1251 void wxWindowMac::DoGetPosition(int *x
, int *y
) const
1253 int x1
, y1
, w1
,h1
;
1254 MacGetPositionAndSizeFromControl( x1
, y1
, w1
,h1
) ;
1255 x1
-= MacGetLeftBorderSize() ;
1256 y1
-= MacGetTopBorderSize() ;
1258 #if !TARGET_API_MAC_OSX
1259 if ( !GetParent()->IsTopLevel() )
1262 GetControlBounds( (ControlRef
) GetParent()->GetHandle() , &bounds
) ;
1267 if ( !IsTopLevel() )
1269 wxWindow
*parent
= GetParent();
1272 // we must first adjust it to be in window coordinates of the parent, as otherwise it gets lost by the clientareaorigin fix
1273 x1
+= parent
->MacGetLeftBorderSize() ;
1274 y1
+= parent
->MacGetTopBorderSize() ;
1275 // and now to client coordinates
1276 wxPoint
pt(parent
->GetClientAreaOrigin());
1285 void wxWindowMac::DoScreenToClient(int *x
, int *y
) const
1287 WindowRef window
= (WindowRef
) MacGetTopLevelWindowRef() ;
1289 wxCHECK_RET( window
, wxT("TopLevel Window Missing") ) ;
1292 Point localwhere
= {0,0} ;
1294 if(x
) localwhere
.h
= * x
;
1295 if(y
) localwhere
.v
= * y
;
1297 QDGlobalToLocalPoint( GetWindowPort( window
) , &localwhere
) ;
1298 if(x
) *x
= localwhere
.h
;
1299 if(y
) *y
= localwhere
.v
;
1302 MacRootWindowToWindow( x
, y
) ;
1304 wxPoint origin
= GetClientAreaOrigin() ;
1305 if(x
) *x
-= origin
.x
;
1306 if(y
) *y
-= origin
.y
;
1309 void wxWindowMac::DoClientToScreen(int *x
, int *y
) const
1311 WindowRef window
= (WindowRef
) MacGetTopLevelWindowRef() ;
1312 wxCHECK_RET( window
, wxT("TopLevel Window Missing") ) ;
1314 wxPoint origin
= GetClientAreaOrigin() ;
1315 if(x
) *x
+= origin
.x
;
1316 if(y
) *y
+= origin
.y
;
1318 MacWindowToRootWindow( x
, y
) ;
1321 Point localwhere
= { 0,0 };
1322 if(x
) localwhere
.h
= * x
;
1323 if(y
) localwhere
.v
= * y
;
1324 QDLocalToGlobalPoint( GetWindowPort( window
) , &localwhere
) ;
1325 if(x
) *x
= localwhere
.h
;
1326 if(y
) *y
= localwhere
.v
;
1330 void wxWindowMac::MacClientToRootWindow( int *x
, int *y
) const
1332 wxPoint origin
= GetClientAreaOrigin() ;
1333 if(x
) *x
+= origin
.x
;
1334 if(y
) *y
+= origin
.y
;
1336 MacWindowToRootWindow( x
, y
) ;
1339 void wxWindowMac::MacRootWindowToClient( int *x
, int *y
) const
1341 MacRootWindowToWindow( x
, y
) ;
1343 wxPoint origin
= GetClientAreaOrigin() ;
1344 if(x
) *x
-= origin
.x
;
1345 if(y
) *y
-= origin
.y
;
1348 void wxWindowMac::MacWindowToRootWindow( int *x
, int *y
) const
1350 #if TARGET_API_MAC_OSX
1352 if ( x
) pt
.x
= *x
;
1353 if ( y
) pt
.y
= *y
;
1355 if ( !IsTopLevel() )
1357 wxTopLevelWindowMac
* top
= MacGetTopLevelWindow();
1360 pt
.x
-= MacGetLeftBorderSize() ;
1361 pt
.y
-= MacGetTopBorderSize() ;
1362 wxMacControl::Convert( &pt
, m_peer
, top
->m_peer
) ;
1366 if ( x
) *x
= (int) pt
.x
;
1367 if ( y
) *y
= (int) pt
.y
;
1369 if ( !IsTopLevel() )
1372 m_peer
->GetRect( &bounds
) ;
1373 if(x
) *x
+= bounds
.left
- MacGetLeftBorderSize() ;
1374 if(y
) *y
+= bounds
.top
- MacGetTopBorderSize() ;
1379 void wxWindowMac::MacWindowToRootWindow( short *x
, short *y
) const
1384 MacWindowToRootWindow( &x1
, &y1
) ;
1389 void wxWindowMac::MacRootWindowToWindow( int *x
, int *y
) const
1391 #if TARGET_API_MAC_OSX
1393 if ( x
) pt
.x
= *x
;
1394 if ( y
) pt
.y
= *y
;
1396 if ( !IsTopLevel() )
1398 wxMacControl::Convert( &pt
, MacGetTopLevelWindow()->m_peer
, m_peer
) ;
1399 pt
.x
+= MacGetLeftBorderSize() ;
1400 pt
.y
+= MacGetTopBorderSize() ;
1403 if ( x
) *x
= (int) pt
.x
;
1404 if ( y
) *y
= (int) pt
.y
;
1406 if ( !IsTopLevel() )
1409 m_peer
->GetRect( &bounds
) ;
1410 if(x
) *x
-= bounds
.left
+ MacGetLeftBorderSize() ;
1411 if(y
) *y
-= bounds
.top
+ MacGetTopBorderSize() ;
1416 void wxWindowMac::MacRootWindowToWindow( short *x
, short *y
) const
1421 MacRootWindowToWindow( &x1
, &y1
) ;
1426 void wxWindowMac::MacGetContentAreaInset( int &left
, int &top
, int &right
, int &bottom
)
1428 RgnHandle rgn
= NewRgn() ;
1430 if ( m_peer
->GetRegion( kControlContentMetaPart
, rgn
) == noErr
)
1432 GetRegionBounds( rgn
, &content
) ;
1436 m_peer
->GetRect( &content
) ;
1440 m_peer
->GetRect( &structure
) ;
1441 #if !TARGET_API_MAC_OSX
1442 OffsetRect( &content
, -structure
.left
, -structure
.top
) ;
1444 left
= content
.left
- structure
.left
;
1445 top
= content
.top
- structure
.top
;
1446 right
= structure
.right
- content
.right
;
1447 bottom
= structure
.bottom
- content
.bottom
;
1450 wxSize
wxWindowMac::DoGetSizeFromClientSize( const wxSize
& size
) const
1452 wxSize sizeTotal
= size
;
1454 RgnHandle rgn
= NewRgn() ;
1458 if ( m_peer
->GetRegion( kControlContentMetaPart
, rgn
) == noErr
)
1460 GetRegionBounds( rgn
, &content
) ;
1464 m_peer
->GetRect( &content
) ;
1468 m_peer
->GetRect( &structure
) ;
1469 #if !TARGET_API_MAC_OSX
1470 OffsetRect( &content
, -structure
.left
, -structure
.top
) ;
1473 sizeTotal
.x
+= (structure
.right
- structure
.left
) - (content
.right
- content
.left
) ;
1474 sizeTotal
.y
+= (structure
.bottom
- structure
.top
) - (content
.bottom
- content
.top
) ;
1476 sizeTotal
.x
+= MacGetLeftBorderSize( ) + MacGetRightBorderSize( ) ;
1477 sizeTotal
.y
+= MacGetTopBorderSize( ) + MacGetBottomBorderSize( ) ;
1483 // Get size *available for subwindows* i.e. excluding menu bar etc.
1484 void wxWindowMac::DoGetClientSize(int *x
, int *y
) const
1488 RgnHandle rgn
= NewRgn() ;
1490 if ( m_peer
->GetRegion( kControlContentMetaPart
, rgn
) == noErr
)
1492 GetRegionBounds( rgn
, &content
) ;
1496 m_peer
->GetRect( &content
) ;
1499 #if !TARGET_API_MAC_OSX
1501 m_peer
->GetRect( &structure
) ;
1502 OffsetRect( &content
, -structure
.left
, -structure
.top
) ;
1504 ww
= content
.right
- content
.left
;
1505 hh
= content
.bottom
- content
.top
;
1507 ww -= MacGetLeftBorderSize( ) + MacGetRightBorderSize( ) ;
1508 hh -= MacGetTopBorderSize( ) + MacGetBottomBorderSize( );
1511 if ( (m_vScrollBar && m_vScrollBar->IsShown()) || (m_hScrollBar && m_hScrollBar->IsShown()) )
1517 GetSize( &w , &h ) ;
1519 MacClientToRootWindow( &x1 , &y1 ) ;
1520 MacClientToRootWindow( &w , &h ) ;
1522 wxWindowMac *iter = (wxWindowMac*)this ;
1524 int totW = 10000 , totH = 10000;
1527 if ( iter->IsTopLevel() )
1529 iter->GetSize( &totW , &totH ) ;
1533 iter = iter->GetParent() ;
1536 if (m_hScrollBar && m_hScrollBar->IsShown() )
1538 hh -= m_hScrollBar->GetSize().y ; // MAC_SCROLLBAR_SIZE ;
1544 if (m_vScrollBar && m_vScrollBar->IsShown() )
1546 ww -= m_vScrollBar->GetSize().x ; // MAC_SCROLLBAR_SIZE;
1554 if (m_hScrollBar
&& m_hScrollBar
->IsShown() )
1556 hh
-= m_hScrollBar
->GetSize().y
; // MAC_SCROLLBAR_SIZE ;
1558 if (m_vScrollBar
&& m_vScrollBar
->IsShown() )
1560 ww
-= m_vScrollBar
->GetSize().x
; // MAC_SCROLLBAR_SIZE;
1567 bool wxWindowMac::SetCursor(const wxCursor
& cursor
)
1569 if (m_cursor
== cursor
)
1572 if (wxNullCursor
== cursor
)
1574 if ( ! wxWindowBase::SetCursor( *wxSTANDARD_CURSOR
) )
1579 if ( ! wxWindowBase::SetCursor( cursor
) )
1583 wxASSERT_MSG( m_cursor
.Ok(),
1584 wxT("cursor must be valid after call to the base version"));
1587 wxWindowMac
*mouseWin
= 0 ;
1589 WindowRef window
= (WindowRef
) MacGetTopLevelWindowRef() ;
1591 Boolean swapped
= QDSwapPort( GetWindowPort( window
) , &savePort
) ;
1593 // TODO If we ever get a GetCurrentEvent.. replacement for the mouse
1594 // position, use it...
1598 ControlPartCode part
;
1599 ControlRef control
;
1600 control
= wxMacFindControlUnderMouse( pt
, window
, &part
) ;
1602 mouseWin
= wxFindControlFromMacControl( control
) ;
1605 QDSwapPort( savePort
, NULL
) ;
1608 if ( mouseWin
== this && !wxIsBusy() )
1610 m_cursor
.MacInstall() ;
1617 bool wxWindowMac::DoPopupMenu(wxMenu
*menu
, int x
, int y
)
1619 menu
->SetInvokingWindow(this);
1622 if ( x
== -1 && y
== -1 )
1624 wxPoint mouse
= wxGetMousePosition();
1625 x
= mouse
.x
; y
= mouse
.y
;
1629 ClientToScreen( &x
, &y
) ;
1632 menu
->MacBeforeDisplay( true ) ;
1633 long menuResult
= ::PopUpMenuSelect((MenuHandle
) menu
->GetHMenu() ,y
,x
, 0) ;
1634 if ( HiWord(menuResult
) != 0 )
1637 GetMenuItemCommandID( GetMenuHandle(HiWord(menuResult
)) , LoWord(menuResult
) , &id
) ;
1638 wxMenuItem
* item
= NULL
;
1640 item
= menu
->FindItem(id
, &realmenu
) ;
1641 if (item
->IsCheckable())
1643 item
->Check( !item
->IsChecked() ) ;
1645 menu
->SendEvent( id
, item
->IsCheckable() ? item
->IsChecked() : -1 ) ;
1647 menu
->MacAfterDisplay( true ) ;
1649 menu
->SetInvokingWindow(NULL
);
1655 // ----------------------------------------------------------------------------
1657 // ----------------------------------------------------------------------------
1661 void wxWindowMac::DoSetToolTip(wxToolTip
*tooltip
)
1663 wxWindowBase::DoSetToolTip(tooltip
);
1666 m_tooltip
->SetWindow(this);
1669 #endif // wxUSE_TOOLTIPS
1671 void wxWindowMac::DoMoveWindow(int x
, int y
, int width
, int height
)
1673 // this is never called for a toplevel window, so we know we have a parent
1674 int former_x
, former_y
, former_w
, former_h
;
1676 // Get true coordinates of former position
1677 DoGetPosition( &former_x
, &former_y
) ;
1678 DoGetSize( &former_w
, &former_h
) ;
1680 wxWindow
*parent
= GetParent();
1683 wxPoint
pt(parent
->GetClientAreaOrigin());
1688 int actualWidth
= width
;
1689 int actualHeight
= height
;
1693 if ((m_minWidth
!= -1) && (actualWidth
< m_minWidth
))
1694 actualWidth
= m_minWidth
;
1695 if ((m_minHeight
!= -1) && (actualHeight
< m_minHeight
))
1696 actualHeight
= m_minHeight
;
1697 if ((m_maxWidth
!= -1) && (actualWidth
> m_maxWidth
))
1698 actualWidth
= m_maxWidth
;
1699 if ((m_maxHeight
!= -1) && (actualHeight
> m_maxHeight
))
1700 actualHeight
= m_maxHeight
;
1702 bool doMove
= false ;
1703 bool doResize
= false ;
1705 if ( actualX
!= former_x
|| actualY
!= former_y
)
1709 if ( actualWidth
!= former_w
|| actualHeight
!= former_h
)
1714 if ( doMove
|| doResize
)
1716 // we don't adjust twice for the origin
1717 Rect r
= wxMacGetBoundsForControl(this , wxPoint( actualX
,actualY
), wxSize( actualWidth
, actualHeight
) , false ) ;
1718 bool vis
= m_peer
->IsVisible();
1720 int outerBorder
= MacGetLeftBorderSize() ;
1721 if ( m_peer
->NeedsFocusRect() && m_peer
->HasFocus() )
1724 if ( vis
&& ( outerBorder
> 0 ) )
1726 // as the borders are drawn on the parent we have to properly invalidate all these areas
1727 RgnHandle updateInner
= NewRgn() , updateOuter
= NewRgn() , updateTotal
= NewRgn() ;
1731 m_peer
->GetRect( &rect
) ;
1732 RectRgn( updateInner
, &rect
) ;
1733 InsetRect( &rect
, -outerBorder
, -outerBorder
) ;
1734 RectRgn( updateOuter
, &rect
) ;
1735 DiffRgn( updateOuter
, updateInner
,updateOuter
) ;
1736 wxPoint
parent(0,0);
1737 #if TARGET_API_MAC_OSX
1738 // no offsetting needed when compositing
1740 GetParent()->MacWindowToRootWindow( &parent
.x
, &parent
.y
) ;
1741 parent
-= GetParent()->GetClientAreaOrigin() ;
1742 OffsetRgn( updateOuter
, -parent
.x
, -parent
.y
) ;
1744 CopyRgn( updateOuter
, updateTotal
) ;
1747 RectRgn( updateInner
, &rect
) ;
1748 InsetRect( &rect
, -outerBorder
, -outerBorder
) ;
1749 RectRgn( updateOuter
, &rect
) ;
1750 DiffRgn( updateOuter
, updateInner
,updateOuter
) ;
1752 OffsetRgn( updateOuter
, -parent
.x
, -parent
.y
) ;
1753 UnionRgn( updateOuter
, updateTotal
, updateTotal
) ;
1755 GetParent()->m_peer
->SetNeedsDisplay( true , updateTotal
) ;
1756 DisposeRgn(updateOuter
) ;
1757 DisposeRgn(updateInner
) ;
1758 DisposeRgn(updateTotal
) ;
1761 // the HIViewSetFrame call itself should invalidate the areas, but when testing with the UnicodeTextCtrl it does not !
1763 m_peer
->SetVisibility( false , true ) ;
1765 m_peer
->SetRect( &r
) ;
1767 m_peer
->SetVisibility( true , true ) ;
1769 MacRepositionScrollBars() ;
1772 wxPoint
point(actualX
,actualY
);
1773 wxMoveEvent
event(point
, m_windowId
);
1774 event
.SetEventObject(this);
1775 GetEventHandler()->ProcessEvent(event
) ;
1779 MacRepositionScrollBars() ;
1780 wxSize
size(actualWidth
, actualHeight
);
1781 wxSizeEvent
event(size
, m_windowId
);
1782 event
.SetEventObject(this);
1783 GetEventHandler()->ProcessEvent(event
);
1789 wxSize
wxWindowMac::DoGetBestSize() const
1791 if ( m_macIsUserPane
|| IsTopLevel() )
1792 return wxWindowBase::DoGetBestSize() ;
1794 Rect bestsize
= { 0 , 0 , 0 , 0 } ;
1795 int bestWidth
, bestHeight
;
1796 m_peer
->GetBestRect( &bestsize
) ;
1798 if ( EmptyRect( &bestsize
) )
1800 bestsize
.left
= bestsize
.top
= 0 ;
1801 bestsize
.right
= 16 ;
1802 bestsize
.bottom
= 16 ;
1803 if ( IsKindOf( CLASSINFO( wxScrollBar
) ) )
1805 bestsize
.bottom
= 16 ;
1808 else if ( IsKindOf( CLASSINFO( wxSpinButton
) ) )
1810 bestsize
.bottom
= 24 ;
1812 #endif // wxUSE_SPINBTN
1815 // return wxWindowBase::DoGetBestSize() ;
1819 bestWidth
= bestsize
.right
- bestsize
.left
;
1820 bestHeight
= bestsize
.bottom
- bestsize
.top
;
1821 if ( bestHeight
< 10 )
1824 return wxSize(bestWidth
, bestHeight
);
1828 // set the size of the window: if the dimensions are positive, just use them,
1829 // but if any of them is equal to -1, it means that we must find the value for
1830 // it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in
1831 // which case -1 is a valid value for x and y)
1833 // If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate
1834 // the width/height to best suit our contents, otherwise we reuse the current
1836 void wxWindowMac::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
1838 // get the current size and position...
1839 int currentX
, currentY
;
1840 GetPosition(¤tX
, ¤tY
);
1842 int currentW
,currentH
;
1843 GetSize(¤tW
, ¤tH
);
1845 // ... and don't do anything (avoiding flicker) if it's already ok
1846 if ( x
== currentX
&& y
== currentY
&&
1847 width
== currentW
&& height
== currentH
&& ( height
!= -1 && width
!= -1 ) )
1850 MacRepositionScrollBars() ; // we might have a real position shift
1854 if ( x
== -1 && !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
1856 if ( y
== -1 && !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
1859 AdjustForParentClientOrigin(x
, y
, sizeFlags
);
1861 wxSize
size(-1, -1);
1864 if ( sizeFlags
& wxSIZE_AUTO_WIDTH
)
1866 size
= DoGetBestSize();
1871 // just take the current one
1878 if ( sizeFlags
& wxSIZE_AUTO_HEIGHT
)
1882 size
= DoGetBestSize();
1884 //else: already called DoGetBestSize() above
1890 // just take the current one
1895 DoMoveWindow(x
, y
, width
, height
);
1899 wxPoint
wxWindowMac::GetClientAreaOrigin() const
1901 RgnHandle rgn
= NewRgn() ;
1903 m_peer
->GetRegion( kControlContentMetaPart
, rgn
) ;
1904 GetRegionBounds( rgn
, &content
) ;
1906 #if !TARGET_API_MAC_OSX
1907 // if the content rgn is empty / not supported
1908 // don't attempt to correct the coordinates to wxWindow relative ones
1909 if (!::EmptyRect( &content
) )
1912 m_peer
->GetRect( &structure
) ;
1913 OffsetRect( &content
, -structure
.left
, -structure
.top
) ;
1917 return wxPoint( content
.left
+ MacGetLeftBorderSize( ) , content
.top
+ MacGetTopBorderSize( ) );
1920 void wxWindowMac::DoSetClientSize(int clientwidth
, int clientheight
)
1922 if ( clientheight
!= -1 || clientheight
!= -1 )
1924 int currentclientwidth
, currentclientheight
;
1925 int currentwidth
, currentheight
;
1927 GetClientSize( ¤tclientwidth
, ¤tclientheight
) ;
1928 GetSize( ¤twidth
, ¤theight
) ;
1930 DoSetSize( -1 , -1 , currentwidth
+ clientwidth
- currentclientwidth
,
1931 currentheight
+ clientheight
- currentclientheight
, wxSIZE_USE_EXISTING
) ;
1935 void wxWindowMac::SetTitle(const wxString
& title
)
1937 m_label
= wxStripMenuCodes(title
) ;
1939 if ( m_peer
&& m_peer
->Ok() )
1941 m_peer
->SetTitle( m_label
) ;
1946 wxString
wxWindowMac::GetTitle() const
1951 bool wxWindowMac::Show(bool show
)
1953 bool former
= MacIsReallyShown() ;
1954 if ( !wxWindowBase::Show(show
) )
1957 // TODO use visibilityChanged Carbon Event for OSX
1960 m_peer
->SetVisibility( show
, true ) ;
1962 if ( former
!= MacIsReallyShown() )
1963 MacPropagateVisibilityChanged() ;
1967 bool wxWindowMac::Enable(bool enable
)
1969 wxASSERT( m_peer
->Ok() ) ;
1970 bool former
= MacIsReallyEnabled() ;
1971 if ( !wxWindowBase::Enable(enable
) )
1974 m_peer
->Enable( enable
) ;
1976 if ( former
!= MacIsReallyEnabled() )
1977 MacPropagateEnabledStateChanged() ;
1982 // status change propagations (will be not necessary for OSX later )
1985 void wxWindowMac::MacPropagateVisibilityChanged()
1987 #if !TARGET_API_MAC_OSX
1988 MacVisibilityChanged() ;
1990 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
1993 wxWindowMac
*child
= node
->GetData();
1994 if ( child
->IsShown() )
1995 child
->MacPropagateVisibilityChanged( ) ;
1996 node
= node
->GetNext();
2001 void wxWindowMac::MacPropagateEnabledStateChanged( )
2003 #if !TARGET_API_MAC_OSX
2004 MacEnabledStateChanged() ;
2006 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
2009 wxWindowMac
*child
= node
->GetData();
2010 if ( child
->IsEnabled() )
2011 child
->MacPropagateEnabledStateChanged() ;
2012 node
= node
->GetNext();
2017 void wxWindowMac::MacPropagateHiliteChanged( )
2019 #if !TARGET_API_MAC_OSX
2020 MacHiliteChanged() ;
2022 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
2025 wxWindowMac
*child
= node
->GetData();
2026 // if ( child->IsEnabled() )
2027 child
->MacPropagateHiliteChanged() ;
2028 node
= node
->GetNext();
2034 // status change notifications
2037 void wxWindowMac::MacVisibilityChanged()
2041 void wxWindowMac::MacHiliteChanged()
2045 void wxWindowMac::MacEnabledStateChanged()
2050 // status queries on the inherited window's state
2053 bool wxWindowMac::MacIsReallyShown()
2055 // only under OSX the visibility of the TLW is taken into account
2056 if ( m_isBeingDeleted
)
2059 #if TARGET_API_MAC_OSX
2060 if ( m_peer
&& m_peer
->Ok() )
2061 return m_peer
->IsVisible();
2063 wxWindow
* win
= this ;
2064 while( win
->IsShown() )
2066 if ( win
->IsTopLevel() )
2069 win
= win
->GetParent() ;
2077 bool wxWindowMac::MacIsReallyEnabled()
2079 return m_peer
->IsEnabled() ;
2082 bool wxWindowMac::MacIsReallyHilited()
2084 return m_peer
->IsActive();
2087 void wxWindowMac::MacFlashInvalidAreas()
2089 #if TARGET_API_MAC_OSX
2090 HIViewFlashDirtyArea( (WindowRef
) MacGetTopLevelWindowRef() ) ;
2098 int wxWindowMac::GetCharHeight() const
2100 wxClientDC
dc ( (wxWindowMac
*)this ) ;
2101 return dc
.GetCharHeight() ;
2104 int wxWindowMac::GetCharWidth() const
2106 wxClientDC
dc ( (wxWindowMac
*)this ) ;
2107 return dc
.GetCharWidth() ;
2110 void wxWindowMac::GetTextExtent(const wxString
& string
, int *x
, int *y
,
2111 int *descent
, int *externalLeading
, const wxFont
*theFont
) const
2113 const wxFont
*fontToUse
= theFont
;
2115 fontToUse
= &m_font
;
2117 wxClientDC
dc( (wxWindowMac
*) this ) ;
2119 dc
.GetTextExtent( string
, &lx
, &ly
, &ld
, &le
, (wxFont
*)fontToUse
) ;
2120 if ( externalLeading
)
2121 *externalLeading
= le
;
2131 * Rect is given in client coordinates, for further reading, read wxTopLevelWindowMac::InvalidateRect
2132 * we always intersect with the entire window, not only with the client area
2135 void wxWindowMac::Refresh(bool eraseBack
, const wxRect
*rect
)
2137 if ( m_peer
== NULL
)
2140 #if TARGET_API_MAC_OSX
2142 m_peer
->SetNeedsDisplay( true ) ;
2145 RgnHandle update
= NewRgn() ;
2146 SetRectRgn( update
, rect
->x
, rect
->y
, rect
->x
+ rect
->width
, rect
->y
+ rect
->height
) ;
2147 SectRgn( (RgnHandle
) MacGetVisibleRegion().GetWXHRGN() , update
, update
) ;
2148 wxPoint origin
= GetClientAreaOrigin() ;
2149 OffsetRgn( update
, origin
.x
, origin
.y
) ;
2150 // right now this is wx' window coordinates, as our native peer does not have borders, this is
2152 OffsetRgn( update
, -MacGetLeftBorderSize() , -MacGetTopBorderSize() ) ;
2153 m_peer
->SetNeedsDisplay( true , update
) ;
2154 DisposeRgn( update
) ;
2158 RgnHandle updateRgn = NewRgn() ;
2161 CopyRgn( (RgnHandle) MacGetVisibleRegion().GetWXHRGN() , updateRgn ) ;
2165 SetRectRgn( updateRgn , rect->x , rect->y , rect->x + rect->width , rect->y + rect->height ) ;
2166 SectRgn( (RgnHandle) MacGetVisibleRegion().GetWXHRGN() , updateRgn , updateRgn ) ;
2168 InvalWindowRgn( (WindowRef) MacGetTopLevelWindowRef() , updateRgn ) ;
2169 DisposeRgn(updateRgn) ;
2171 if ( m_peer
->IsVisible())
2173 m_peer
->SetVisibility( false , false ) ;
2174 m_peer
->SetVisibility( true , true ) ;
2177 if ( MacGetTopLevelWindow() == NULL )
2180 if ( !m_peer->IsVisible())
2183 wxPoint client = GetClientAreaOrigin();
2186 int x2 = m_width - client.x;
2187 int y2 = m_height - client.y;
2189 if (IsKindOf( CLASSINFO(wxButton)))
2191 // buttons have an "aura"
2198 Rect clientrect = { y1, x1, y2, x2 };
2202 Rect r = { rect->y , rect->x , rect->y + rect->height , rect->x + rect->width } ;
2203 SectRect( &clientrect , &r , &clientrect ) ;
2206 if ( !EmptyRect( &clientrect ) )
2208 int top = 0 , left = 0 ;
2210 MacClientToRootWindow( &left , &top ) ;
2211 OffsetRect( &clientrect , left , top ) ;
2213 MacGetTopLevelWindow()->MacInvalidate( &clientrect , eraseBack ) ;
2219 void wxWindowMac::Freeze()
2221 #if TARGET_API_MAC_OSX
2222 if ( !m_frozenness
++ )
2224 if ( m_peer
&& m_peer
->Ok() )
2225 m_peer
->SetDrawingEnabled( false ) ;
2231 void wxWindowMac::Thaw()
2233 #if TARGET_API_MAC_OSX
2234 wxASSERT_MSG( m_frozenness
> 0, _T("Thaw() without matching Freeze()") );
2236 if ( !--m_frozenness
)
2238 if ( m_peer
&& m_peer
->Ok() )
2240 m_peer
->SetDrawingEnabled( true ) ;
2241 m_peer
->InvalidateWithChildren() ;
2247 wxWindowMac
*wxGetActiveWindow()
2249 // actually this is a windows-only concept
2253 // Coordinates relative to the window
2254 void wxWindowMac::WarpPointer (int x_pos
, int y_pos
)
2256 // We really don't move the mouse programmatically under Mac.
2259 void wxWindowMac::OnEraseBackground(wxEraseEvent
& event
)
2261 #if TARGET_API_MAC_OSX
2262 if ( m_macBackgroundBrush
.Ok() == false || m_macBackgroundBrush
.GetStyle() == wxTRANSPARENT
)
2269 event
.GetDC()->Clear() ;
2273 void wxWindowMac::OnNcPaint( wxNcPaintEvent
& event
)
2278 int wxWindowMac::GetScrollPos(int orient
) const
2280 if ( orient
== wxHORIZONTAL
)
2283 return m_hScrollBar
->GetThumbPosition() ;
2288 return m_vScrollBar
->GetThumbPosition() ;
2293 // This now returns the whole range, not just the number
2294 // of positions that we can scroll.
2295 int wxWindowMac::GetScrollRange(int orient
) const
2297 if ( orient
== wxHORIZONTAL
)
2300 return m_hScrollBar
->GetRange() ;
2305 return m_vScrollBar
->GetRange() ;
2310 int wxWindowMac::GetScrollThumb(int orient
) const
2312 if ( orient
== wxHORIZONTAL
)
2315 return m_hScrollBar
->GetThumbSize() ;
2320 return m_vScrollBar
->GetThumbSize() ;
2325 void wxWindowMac::SetScrollPos(int orient
, int pos
, bool refresh
)
2327 if ( orient
== wxHORIZONTAL
)
2330 m_hScrollBar
->SetThumbPosition( pos
) ;
2335 m_vScrollBar
->SetThumbPosition( pos
) ;
2340 // we draw borders and grow boxes, are already set up and clipped in the current port / cgContextRef
2341 // our own window origin is at leftOrigin/rightOrigin
2344 void wxWindowMac::MacPaintBorders( int leftOrigin
, int rightOrigin
)
2350 bool hasFocus
= m_peer
->NeedsFocusRect() && m_peer
->HasFocus() ;
2351 bool hasBothScrollbars
= ( m_hScrollBar
&& m_hScrollBar
->IsShown()) && ( m_vScrollBar
&& m_vScrollBar
->IsShown()) ;
2353 m_peer
->GetRect( &rect
) ;
2354 InsetRect( &rect
, -MacGetLeftBorderSize() , -MacGetTopBorderSize() ) ;
2356 #if wxMAC_USE_CORE_GRAPHICS && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3
2357 if ( HIThemeDrawFrame
!= 0)
2360 HIThemeFrameDrawInfo info
;
2361 memset( &info
, 0 , sizeof( info
) ) ;
2365 info
.state
= IsEnabled() ? kThemeStateActive
: kThemeStateInactive
;
2366 info
.isFocused
= hasFocus
;
2369 CGContextRef cgContext
= (CGContextRef
) GetParent()->MacGetCGContextRef() ;
2370 wxASSERT( cgContext
) ;
2372 if (HasFlag(wxRAISED_BORDER
) || HasFlag( wxSUNKEN_BORDER
) || HasFlag(wxDOUBLE_BORDER
) )
2375 GetThemeMetric( kThemeMetricEditTextFrameOutset
, &border
) ;
2376 InsetRect( &srect
, border
, border
);
2377 info
.kind
= kHIThemeFrameTextFieldSquare
;
2380 else if (HasFlag(wxSIMPLE_BORDER
))
2383 GetThemeMetric( kThemeMetricListBoxFrameOutset
, &border
) ;
2384 InsetRect( &srect
, border
, border
);
2385 info
.kind
= kHIThemeFrameListBox
;
2391 CGRect cgrect
= CGRectMake( srect
.left
, srect
.top
, srect
.right
- srect
.left
,
2392 srect
.bottom
- srect
.top
) ;
2393 HIThemeDrawFrame( &cgrect
, &info
, cgContext
, kHIThemeOrientationNormal
) ;
2395 else if ( hasFocus
)
2398 CGRect cgrect
= CGRectMake( srect
.left
, srect
.top
, srect
.right
- srect
.left
,
2399 srect
.bottom
- srect
.top
) ;
2400 HIThemeDrawFocusRect( &cgrect
, true , cgContext
, kHIThemeOrientationNormal
) ;
2403 m_peer
->GetRect( &rect
) ;
2404 if ( hasBothScrollbars
)
2407 int size
= m_hScrollBar
->GetWindowVariant() == wxWINDOW_VARIANT_NORMAL
? 16 : 12 ;
2408 CGRect cgrect
= CGRectMake( srect
.right
- size
, srect
.bottom
- size
, size
, size
) ;
2409 CGPoint cgpoint
= CGPointMake( srect
.right
- size
, srect
.bottom
- size
) ;
2410 HIThemeGrowBoxDrawInfo info
;
2411 memset( &info
, 0 , sizeof( info
) ) ;
2413 info
.state
= IsEnabled() ? kThemeStateActive
: kThemeStateInactive
;
2414 info
.kind
= kHIThemeGrowBoxKindNone
;
2415 info
.size
= kHIThemeGrowBoxSizeNormal
;
2416 info
.direction
= kThemeGrowRight
| kThemeGrowDown
;
2417 HIThemeDrawGrowBox( &cgpoint
, &info
, cgContext
, kHIThemeOrientationNormal
) ;
2423 wxTopLevelWindowMac
* top
= MacGetTopLevelWindow();
2427 wxMacControl::Convert( &pt
, GetParent()->m_peer
, top
->m_peer
) ;
2429 rect
.right
+= pt
.x
;
2431 rect
.bottom
+= pt
.y
;
2434 if (HasFlag(wxRAISED_BORDER
) || HasFlag( wxSUNKEN_BORDER
) || HasFlag(wxDOUBLE_BORDER
) )
2438 GetThemeMetric( kThemeMetricEditTextFrameOutset
, &border
) ;
2439 InsetRect( &srect
, border
, border
);
2440 DrawThemeEditTextFrame(&srect
,IsEnabled() ? kThemeStateActive
: kThemeStateInactive
) ;
2442 else if (HasFlag(wxSIMPLE_BORDER
))
2446 GetThemeMetric( kThemeMetricListBoxFrameOutset
, &border
) ;
2447 InsetRect( &srect
, border
, border
);
2448 DrawThemeListBoxFrame(&rect
,IsEnabled() ? kThemeStateActive
: kThemeStateInactive
) ;
2454 DrawThemeFocusRect( &srect
, true ) ;
2456 if ( hasBothScrollbars
)
2458 // GetThemeStandaloneGrowBoxBounds
2459 //DrawThemeStandaloneNoGrowBox
2464 void wxWindowMac::RemoveChild( wxWindowBase
*child
)
2466 if ( child
== m_hScrollBar
)
2467 m_hScrollBar
= NULL
;
2468 if ( child
== m_vScrollBar
)
2469 m_vScrollBar
= NULL
;
2471 wxWindowBase::RemoveChild( child
) ;
2474 // New function that will replace some of the above.
2475 void wxWindowMac::SetScrollbar(int orient
, int pos
, int thumbVisible
,
2476 int range
, bool refresh
)
2478 if ( orient
== wxHORIZONTAL
)
2482 if ( range
== 0 || thumbVisible
>= range
)
2484 if ( m_hScrollBar
->IsShown() )
2485 m_hScrollBar
->Show(false) ;
2489 if ( !m_hScrollBar
->IsShown() )
2490 m_hScrollBar
->Show(true) ;
2492 m_hScrollBar
->SetScrollbar( pos
, thumbVisible
, range
, thumbVisible
, refresh
) ;
2499 if ( range
== 0 || thumbVisible
>= range
)
2501 if ( m_vScrollBar
->IsShown() )
2502 m_vScrollBar
->Show(false) ;
2506 if ( !m_vScrollBar
->IsShown() )
2507 m_vScrollBar
->Show(true) ;
2509 m_vScrollBar
->SetScrollbar( pos
, thumbVisible
, range
, thumbVisible
, refresh
) ;
2512 MacRepositionScrollBars() ;
2515 // Does a physical scroll
2516 void wxWindowMac::ScrollWindow(int dx
, int dy
, const wxRect
*rect
)
2518 if( dx
== 0 && dy
==0 )
2524 int width
, height
;
2525 GetClientSize( &width
, &height
) ;
2526 #if TARGET_API_MAC_OSX
2527 // note there currently is a bug in OSX which makes inefficient refreshes in case an entire control
2528 // area is scrolled, this does not occur if width and height are 2 pixels less,
2529 // TODO write optimal workaround
2530 wxRect
scrollrect( MacGetLeftBorderSize() , MacGetTopBorderSize() , width
, height
) ;
2533 scrollrect
.Intersect( *rect
) ;
2535 if ( m_peer
->GetNeedsDisplay() )
2537 // becuase HIViewScrollRect does not scroll the already invalidated area we have two options
2538 // either immediate redraw or full invalidate
2540 // is the better overall solution, as it does not slow down scrolling
2541 m_peer
->SetNeedsDisplay( true ) ;
2543 // this would be the preferred version for fast drawing controls
2544 if( UMAGetSystemVersion() < 0x1030 )
2547 HIViewRender(m_peer
->GetControlRef()) ;
2550 // as the native control might be not a 0/0 wx window coordinates, we have to offset
2551 scrollrect
.Offset( -MacGetLeftBorderSize() , -MacGetTopBorderSize() ) ;
2552 m_peer
->ScrollRect( scrollrect
, dx
, dy
) ;
2559 RgnHandle updateRgn
= NewRgn() ;
2562 wxClientDC
dc(this) ;
2563 wxMacPortSetter
helper(&dc
) ;
2565 m_peer
->GetRect( &scrollrect
) ;
2566 scrollrect
.top
+= MacGetTopBorderSize() ;
2567 scrollrect
.left
+= MacGetLeftBorderSize() ;
2568 scrollrect
.bottom
= scrollrect
.top
+ height
;
2569 scrollrect
.right
= scrollrect
.left
+ width
;
2573 Rect r
= { dc
.YLOG2DEVMAC(rect
->y
) , dc
.XLOG2DEVMAC(rect
->x
) , dc
.YLOG2DEVMAC(rect
->y
+ rect
->height
) ,
2574 dc
.XLOG2DEVMAC(rect
->x
+ rect
->width
) } ;
2575 SectRect( &scrollrect
, &r
, &scrollrect
) ;
2577 ScrollRect( &scrollrect
, dx
, dy
, updateRgn
) ;
2579 // now scroll the former update region as well and add the new update region
2581 WindowRef rootWindow
= (WindowRef
) MacGetTopLevelWindowRef() ;
2582 RgnHandle formerUpdateRgn
= NewRgn() ;
2583 RgnHandle scrollRgn
= NewRgn() ;
2584 RectRgn( scrollRgn
, &scrollrect
) ;
2585 GetWindowUpdateRgn( rootWindow
, formerUpdateRgn
) ;
2587 LocalToGlobal( &pt
) ;
2588 OffsetRgn( formerUpdateRgn
, -pt
.h
, -pt
.v
) ;
2589 SectRgn( formerUpdateRgn
, scrollRgn
, formerUpdateRgn
) ;
2590 if ( !EmptyRgn( formerUpdateRgn
) )
2592 MacOffsetRgn( formerUpdateRgn
, dx
, dy
) ;
2593 SectRgn( formerUpdateRgn
, scrollRgn
, formerUpdateRgn
) ;
2594 InvalWindowRgn(rootWindow
, formerUpdateRgn
) ;
2596 InvalWindowRgn(rootWindow
, updateRgn
) ;
2597 DisposeRgn( updateRgn
) ;
2598 DisposeRgn( formerUpdateRgn
) ;
2599 DisposeRgn( scrollRgn
) ;
2604 for (wxWindowList::compatibility_iterator node
= GetChildren().GetFirst(); node
; node
= node
->GetNext())
2606 wxWindowMac
*child
= node
->GetData();
2607 if (child
== m_vScrollBar
) continue;
2608 if (child
== m_hScrollBar
) continue;
2609 if (child
->IsTopLevel()) continue;
2612 child
->GetPosition( &x
, &y
);
2614 child
->GetSize( &w
, &h
);
2618 if (rect
->Intersects(rc
))
2619 child
->SetSize( x
+dx
, y
+dy
, w
, h
);
2623 child
->SetSize( x
+dx
, y
+dy
, w
, h
);
2628 void wxWindowMac::MacOnScroll(wxScrollEvent
&event
)
2630 if ( event
.GetEventObject() == m_vScrollBar
|| event
.GetEventObject() == m_hScrollBar
)
2632 wxScrollWinEvent wevent
;
2633 wevent
.SetPosition(event
.GetPosition());
2634 wevent
.SetOrientation(event
.GetOrientation());
2635 wevent
.SetEventObject(this);
2637 if (event
.GetEventType() == wxEVT_SCROLL_TOP
)
2638 wevent
.SetEventType( wxEVT_SCROLLWIN_TOP
);
2639 else if (event
.GetEventType() == wxEVT_SCROLL_BOTTOM
)
2640 wevent
.SetEventType( wxEVT_SCROLLWIN_BOTTOM
);
2641 else if (event
.GetEventType() == wxEVT_SCROLL_LINEUP
)
2642 wevent
.SetEventType( wxEVT_SCROLLWIN_LINEUP
);
2643 else if (event
.GetEventType() == wxEVT_SCROLL_LINEDOWN
)
2644 wevent
.SetEventType( wxEVT_SCROLLWIN_LINEDOWN
);
2645 else if (event
.GetEventType() == wxEVT_SCROLL_PAGEUP
)
2646 wevent
.SetEventType( wxEVT_SCROLLWIN_PAGEUP
);
2647 else if (event
.GetEventType() == wxEVT_SCROLL_PAGEDOWN
)
2648 wevent
.SetEventType( wxEVT_SCROLLWIN_PAGEDOWN
);
2649 else if (event
.GetEventType() == wxEVT_SCROLL_THUMBTRACK
)
2650 wevent
.SetEventType( wxEVT_SCROLLWIN_THUMBTRACK
);
2651 else if (event
.GetEventType() == wxEVT_SCROLL_THUMBRELEASE
)
2652 wevent
.SetEventType( wxEVT_SCROLLWIN_THUMBRELEASE
);
2654 GetEventHandler()->ProcessEvent(wevent
);
2658 // Get the window with the focus
2659 wxWindowMac
*wxWindowBase::DoFindFocus()
2661 ControlRef control
;
2662 GetKeyboardFocus( GetUserFocusWindow() , &control
) ;
2663 return wxFindControlFromMacControl( control
) ;
2666 void wxWindowMac::OnSetFocus(wxFocusEvent
& event
)
2668 // panel wants to track the window which was the last to have focus in it,
2669 // so we want to set ourselves as the window which last had focus
2671 // notice that it's also important to do it upwards the tree becaus
2672 // otherwise when the top level panel gets focus, it won't set it back to
2673 // us, but to some other sibling
2675 // CS:don't know if this is still needed:
2676 //wxChildFocusEvent eventFocus(this);
2677 //(void)GetEventHandler()->ProcessEvent(eventFocus);
2679 if ( MacGetTopLevelWindow() && m_peer
->NeedsFocusRect() )
2681 #if !wxMAC_USE_CORE_GRAPHICS
2682 wxMacWindowStateSaver
sv( this ) ;
2687 MacWindowToRootWindow( &x
, &y
) ;
2688 GetSize( &w
, &h
) ;
2689 Rect rect
= {y
, x
, h
+ y
, w
+ x
} ;
2691 if ( event
.GetEventType() == wxEVT_SET_FOCUS
)
2692 DrawThemeFocusRect( &rect
, true ) ;
2695 DrawThemeFocusRect( &rect
, false ) ;
2697 // as this erases part of the frame we have to redraw borders
2698 // and because our z-ordering is not always correct (staticboxes)
2699 // we have to invalidate things, we cannot simple redraw
2700 RgnHandle updateInner
= NewRgn() , updateOuter
= NewRgn() ;
2701 RectRgn( updateInner
, &rect
) ;
2702 InsetRect( &rect
, -4 , -4 ) ;
2703 RectRgn( updateOuter
, &rect
) ;
2704 DiffRgn( updateOuter
, updateInner
,updateOuter
) ;
2705 wxPoint
parent(0,0);
2706 GetParent()->MacWindowToRootWindow( &parent
.x
, &parent
.y
) ;
2707 parent
-= GetParent()->GetClientAreaOrigin() ;
2708 OffsetRgn( updateOuter
, -parent
.x
, -parent
.y
) ;
2709 GetParent()->m_peer
->SetNeedsDisplay( true , updateOuter
) ;
2710 DisposeRgn(updateOuter
) ;
2711 DisposeRgn(updateInner
) ;
2714 GetParent()->Refresh() ;
2721 void wxWindowMac::OnInternalIdle()
2723 // This calls the UI-update mechanism (querying windows for
2724 // menu/toolbar/control state information)
2725 if (wxUpdateUIEvent::CanUpdate(this))
2726 UpdateWindowUI(wxUPDATE_UI_FROMIDLE
);
2729 // Raise the window to the top of the Z order
2730 void wxWindowMac::Raise()
2732 m_peer
->SetZOrder( true , NULL
) ;
2735 // Lower the window to the bottom of the Z order
2736 void wxWindowMac::Lower()
2738 m_peer
->SetZOrder( false , NULL
) ;
2742 // static wxWindow *gs_lastWhich = NULL;
2744 bool wxWindowMac::MacSetupCursor( const wxPoint
& pt
)
2746 // first trigger a set cursor event
2748 wxPoint clientorigin
= GetClientAreaOrigin() ;
2749 wxSize clientsize
= GetClientSize() ;
2751 if ( wxRect2DInt( clientorigin
.x
, clientorigin
.y
, clientsize
.x
, clientsize
.y
).Contains( wxPoint2DInt( pt
) ) )
2753 wxSetCursorEvent
event( pt
.x
, pt
.y
);
2755 bool processedEvtSetCursor
= GetEventHandler()->ProcessEvent(event
);
2756 if ( processedEvtSetCursor
&& event
.HasCursor() )
2758 cursor
= event
.GetCursor() ;
2763 // the test for processedEvtSetCursor is here to prevent using m_cursor
2764 // if the user code caught EVT_SET_CURSOR() and returned nothing from
2765 // it - this is a way to say that our cursor shouldn't be used for this
2767 if ( !processedEvtSetCursor
&& m_cursor
.Ok() )
2777 cursor
= *wxSTANDARD_CURSOR
;
2781 cursor
.MacInstall() ;
2783 return cursor
.Ok() ;
2786 wxString
wxWindowMac::MacGetToolTipString( wxPoint
&pt
)
2790 return m_tooltip
->GetTip() ;
2792 return wxEmptyString
;
2795 void wxWindowMac::ClearBackground()
2801 void wxWindowMac::Update()
2803 #if TARGET_API_MAC_OSX
2805 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3
2806 WindowRef window
= (WindowRef
)MacGetTopLevelWindowRef() ;
2808 // for composited windows this also triggers a redraw of all
2809 // invalid views in the window
2810 if( UMAGetSystemVersion() >= 0x1030 )
2811 HIWindowFlush(window
) ;
2815 // the only way to trigger the redrawing on earlier systems is to call
2818 EventRef currentEvent
= (EventRef
) wxTheApp
->MacGetCurrentEvent() ;
2819 UInt32 currentEventClass
= 0 ;
2820 UInt32 currentEventKind
= 0 ;
2821 if ( currentEvent
!= NULL
)
2823 currentEventClass
= ::GetEventClass( currentEvent
) ;
2824 currentEventKind
= ::GetEventKind( currentEvent
) ;
2826 if ( currentEventClass
!= kEventClassMenu
)
2828 // when tracking a menu, strange redraw errors occur if we flush now, so leave..
2831 OSStatus status
= noErr
;
2832 status
= ReceiveNextEvent( 0 , NULL
, kEventDurationNoWait
, false , &theEvent
) ;
2835 m_peer
->SetNeedsDisplay( true ) ;
2838 ::Draw1Control( m_peer
->GetControlRef() ) ;
2842 wxTopLevelWindowMac
* wxWindowMac::MacGetTopLevelWindow() const
2844 wxTopLevelWindowMac
* win
= NULL
;
2845 WindowRef window
= (WindowRef
) MacGetTopLevelWindowRef() ;
2848 win
= wxFindWinFromMacWindow( window
) ;
2852 wxRegion
wxWindowMac::MacGetVisibleRegion( bool includeOuterStructures
)
2854 // includeOuterStructures is true if we try to draw somthing like a focus ring etc.
2855 // also a window dc uses this, in this case we only clip in the hierarchy for hard
2856 // borders like a scrollwindow, splitter etc otherwise we end up in a paranoia having
2857 // to add focus borders everywhere
2860 RgnHandle visRgn
= NewRgn() ;
2861 RgnHandle tempRgn
= NewRgn() ;
2862 if ( !m_isBeingDeleted
&& m_peer
->IsVisible())
2864 m_peer
->GetRect( &r
) ;
2865 r
.left
-= MacGetLeftBorderSize() ;
2866 r
.top
-= MacGetTopBorderSize() ;
2867 r
.bottom
+= MacGetBottomBorderSize() ;
2868 r
.right
+= MacGetRightBorderSize() ;
2870 if (! MacGetTopLevelWindow()->MacUsesCompositing() )
2872 MacRootWindowToWindow( &r
.left
, & r
.top
) ;
2873 MacRootWindowToWindow( &r
.right
, & r
.bottom
) ;
2882 if ( includeOuterStructures
)
2883 InsetRect( &r
, -4 , -4 ) ;
2884 RectRgn( visRgn
, &r
) ;
2886 if ( !IsTopLevel() )
2888 wxWindow
* child
= this ;
2889 wxWindow
* parent
= child
->GetParent() ;
2894 // we have to find a better clipping algorithm here, in order not to clip things
2895 // positioned like status and toolbar
2896 if ( 1 /* parent->IsTopLevel() && child->IsKindOf( CLASSINFO( wxToolBar ) ) */ )
2898 size
= parent
->GetSize() ;
2903 size
= parent
->GetClientSize() ;
2904 wxPoint origin
= parent
->GetClientAreaOrigin() ;
2908 parent
->MacWindowToRootWindow( &x
, &y
) ;
2909 MacRootWindowToWindow( &x
, &y
) ;
2911 if ( !includeOuterStructures
|| (
2912 parent
->MacClipChildren() ||
2913 ( parent
->GetParent() && parent
->GetParent()->MacClipGrandChildren() )
2916 SetRectRgn( tempRgn
,
2917 x
+ parent
->MacGetLeftBorderSize() , y
+ parent
->MacGetTopBorderSize() ,
2918 x
+ size
.x
- parent
->MacGetRightBorderSize(),
2919 y
+ size
.y
- parent
->MacGetBottomBorderSize()) ;
2921 SectRgn( visRgn
, tempRgn
, visRgn
) ;
2923 if ( parent
->IsTopLevel() )
2926 parent
= child
->GetParent() ;
2931 wxRegion vis
= visRgn
;
2932 DisposeRgn( visRgn
) ;
2933 DisposeRgn( tempRgn
) ;
2938 This function must not change the updatergn !
2940 bool wxWindowMac::MacDoRedraw( WXHRGN updatergnr
, long time
)
2942 RgnHandle updatergn
= (RgnHandle
) updatergnr
;
2943 bool handled
= false ;
2945 GetRegionBounds( updatergn
, &updatebounds
) ;
2947 // wxLogDebug(wxT("update for %s bounds %d , %d , %d , %d"),wxString(GetClassInfo()->GetClassName()).c_str(), updatebounds.left , updatebounds.top , updatebounds.right , updatebounds.bottom ) ;
2949 if ( !EmptyRgn(updatergn
) )
2951 RgnHandle newupdate
= NewRgn() ;
2952 wxSize point
= GetClientSize() ;
2953 wxPoint origin
= GetClientAreaOrigin() ;
2954 SetRectRgn( newupdate
, origin
.x
, origin
.y
, origin
.x
+ point
.x
, origin
.y
+point
.y
) ;
2955 SectRgn( newupdate
, updatergn
, newupdate
) ;
2957 // first send an erase event to the entire update area
2959 // for the toplevel window this really is the entire area
2960 // for all the others only their client area, otherwise they
2961 // might be drawing with full alpha and eg put blue into
2962 // the grow-box area of a scrolled window (scroll sample)
2965 dc
= new wxWindowDC(this);
2967 dc
= new wxClientDC(this);
2968 dc
->SetClippingRegion(wxRegion(updatergn
));
2969 wxEraseEvent
eevent( GetId(), dc
);
2970 eevent
.SetEventObject( this );
2971 GetEventHandler()->ProcessEvent( eevent
);
2975 // calculate a client-origin version of the update rgn and set m_updateRegion to that
2976 OffsetRgn( newupdate
, -origin
.x
, -origin
.y
) ;
2977 m_updateRegion
= newupdate
;
2978 DisposeRgn( newupdate
) ;
2980 if ( !m_updateRegion
.Empty() )
2982 // paint the window itself
2985 event
.SetTimestamp(time
);
2986 event
.SetEventObject(this);
2987 GetEventHandler()->ProcessEvent(event
);
2991 // now we cannot rely on having its borders drawn by a window itself, as it does not
2992 // get the updateRgn wide enough to always do so, so we do it from the parent
2993 // this would also be the place to draw any custom backgrounds for native controls
2994 // in Composited windowing
2995 wxPoint clientOrigin
= GetClientAreaOrigin() ;
2997 for (wxWindowList::compatibility_iterator node
= GetChildren().GetFirst(); node
; node
= node
->GetNext())
2999 wxWindowMac
*child
= node
->GetData();
3000 if (child
== m_vScrollBar
) continue;
3001 if (child
== m_hScrollBar
) continue;
3002 if (child
->IsTopLevel()) continue;
3003 if (!child
->IsShown()) continue;
3005 // only draw those in the update region (add a safety margin of 10 pixels for shadow effects
3008 child
->GetPosition( &x
, &y
);
3010 child
->GetSize( &w
, &h
);
3011 Rect childRect
= { y
, x
, y
+ h
, x
+ w
} ;
3012 OffsetRect( &childRect
, clientOrigin
.x
, clientOrigin
.y
) ;
3013 InsetRect( &childRect
, -10 , -10) ;
3015 if ( RectInRgn( &childRect
, updatergn
) )
3018 // paint custom borders
3019 wxNcPaintEvent
eventNc( child
->GetId() );
3020 eventNc
.SetEventObject( child
);
3021 if ( !child
->GetEventHandler()->ProcessEvent( eventNc
) )
3023 #if wxMAC_USE_CORE_GRAPHICS && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3
3024 if ( HIThemeDrawFrame
!= 0)
3026 child
->MacPaintBorders(0,0) ;
3031 wxWindowDC
dc(this) ;
3032 dc
.SetClippingRegion(wxRegion(updatergn
));
3033 wxMacPortSetter
helper(&dc
) ;
3034 child
->MacPaintBorders(0,0) ;
3044 WXWindow
wxWindowMac::MacGetTopLevelWindowRef() const
3046 wxWindowMac
*iter
= (wxWindowMac
*)this ;
3050 if ( iter
->IsTopLevel() )
3051 return ((wxTopLevelWindow
*)iter
)->MacGetWindowRef() ;
3053 iter
= iter
->GetParent() ;
3055 wxASSERT_MSG( 1 , wxT("No valid mac root window") ) ;
3059 void wxWindowMac::MacCreateScrollBars( long style
)
3061 wxASSERT_MSG( m_vScrollBar
== NULL
&& m_hScrollBar
== NULL
, wxT("attempt to create window twice") ) ;
3063 if ( style
& ( wxVSCROLL
| wxHSCROLL
) )
3065 bool hasBoth
= ( style
& wxVSCROLL
) && ( style
& wxHSCROLL
) ;
3066 int scrlsize
= MAC_SCROLLBAR_SIZE
;
3067 wxWindowVariant variant
= wxWINDOW_VARIANT_NORMAL
;
3068 if ( GetWindowVariant() == wxWINDOW_VARIANT_SMALL
|| GetWindowVariant() == wxWINDOW_VARIANT_MINI
)
3070 scrlsize
= MAC_SMALL_SCROLLBAR_SIZE
;
3071 variant
= wxWINDOW_VARIANT_SMALL
;
3074 int adjust
= hasBoth
? scrlsize
- 1: 0 ;
3076 GetClientSize( &width
, &height
) ;
3078 wxPoint
vPoint(width
-scrlsize
, 0) ;
3079 wxSize
vSize(scrlsize
, height
- adjust
) ;
3080 wxPoint
hPoint(0 , height
-scrlsize
) ;
3081 wxSize
hSize( width
- adjust
, scrlsize
) ;
3084 if ( style
& wxVSCROLL
)
3086 m_vScrollBar
= new wxScrollBar(this, wxID_ANY
, vPoint
,
3087 vSize
, wxVERTICAL
);
3090 if ( style
& wxHSCROLL
)
3092 m_hScrollBar
= new wxScrollBar(this, wxID_ANY
, hPoint
,
3093 hSize
, wxHORIZONTAL
);
3098 // because the create does not take into account the client area origin
3099 MacRepositionScrollBars() ; // we might have a real position shift
3102 void wxWindowMac::MacRepositionScrollBars()
3104 if ( !m_hScrollBar
&& !m_vScrollBar
)
3107 bool hasBoth
= ( m_hScrollBar
&& m_hScrollBar
->IsShown()) && ( m_vScrollBar
&& m_vScrollBar
->IsShown()) ;
3108 int scrlsize
= m_hScrollBar
? m_hScrollBar
->GetSize().y
: ( m_vScrollBar
? m_vScrollBar
->GetSize().x
: MAC_SCROLLBAR_SIZE
) ;
3109 int adjust
= hasBoth
? scrlsize
- 1 : 0 ;
3111 // get real client area
3115 GetSize( &width
, &height
) ;
3117 width
-= MacGetLeftBorderSize() + MacGetRightBorderSize();
3118 height
-= MacGetTopBorderSize() + MacGetBottomBorderSize();
3120 wxPoint
vPoint(width
-MAC_SCROLLBAR_SIZE
, 0) ;
3121 wxSize
vSize(MAC_SCROLLBAR_SIZE
, height
- adjust
) ;
3122 wxPoint
hPoint(0 , height
-MAC_SCROLLBAR_SIZE
) ;
3123 wxSize
hSize( width
- adjust
, MAC_SCROLLBAR_SIZE
) ;
3129 GetSize( &w , &h ) ;
3131 MacClientToRootWindow( &x , &y ) ;
3132 MacClientToRootWindow( &w , &h ) ;
3134 wxWindowMac *iter = (wxWindowMac*)this ;
3136 int totW = 10000 , totH = 10000;
3139 if ( iter->IsTopLevel() )
3141 iter->GetSize( &totW , &totH ) ;
3145 iter = iter->GetParent() ;
3173 m_vScrollBar
->SetSize( vPoint
.x
, vPoint
.y
, vSize
.x
, vSize
.y
, wxSIZE_ALLOW_MINUS_ONE
);
3177 m_hScrollBar
->SetSize( hPoint
.x
, hPoint
.y
, hSize
.x
, hSize
.y
, wxSIZE_ALLOW_MINUS_ONE
);
3181 bool wxWindowMac::AcceptsFocus() const
3183 return MacCanFocus() && wxWindowBase::AcceptsFocus();
3186 void wxWindowMac::MacSuperChangedPosition()
3188 // only window-absolute structures have to be moved i.e. controls
3190 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
3193 wxWindowMac
*child
= node
->GetData();
3194 child
->MacSuperChangedPosition() ;
3195 node
= node
->GetNext();
3199 void wxWindowMac::MacTopLevelWindowChangedPosition()
3201 // only screen-absolute structures have to be moved i.e. glcanvas
3203 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
3206 wxWindowMac
*child
= node
->GetData();
3207 child
->MacTopLevelWindowChangedPosition() ;
3208 node
= node
->GetNext();
3212 long wxWindowMac::MacGetLeftBorderSize( ) const
3217 if (m_windowStyle
& wxRAISED_BORDER
|| m_windowStyle
& wxSUNKEN_BORDER
)
3222 else if ( m_windowStyle
&wxDOUBLE_BORDER
)
3227 else if (m_windowStyle
&wxSIMPLE_BORDER
)
3234 long wxWindowMac::MacGetRightBorderSize( ) const
3236 // they are all symmetric in mac themes
3237 return MacGetLeftBorderSize() ;
3240 long wxWindowMac::MacGetTopBorderSize( ) const
3242 // they are all symmetric in mac themes
3243 return MacGetLeftBorderSize() ;
3246 long wxWindowMac::MacGetBottomBorderSize( ) const
3248 // they are all symmetric in mac themes
3249 return MacGetLeftBorderSize() ;
3252 long wxWindowMac::MacRemoveBordersFromStyle( long style
)
3254 return style
& ~wxBORDER_MASK
;
3257 // Find the wxWindowMac at the current mouse position, returning the mouse
3259 wxWindowMac
* wxFindWindowAtPointer(wxPoint
& pt
)
3261 pt
= wxGetMousePosition();
3262 wxWindowMac
* found
= wxFindWindowAtPoint(pt
);
3266 // Get the current mouse position.
3267 wxPoint
wxGetMousePosition()
3270 wxGetMousePosition(& x
, & y
);
3271 return wxPoint(x
, y
);
3274 void wxWindowMac::OnMouseEvent( wxMouseEvent
&event
)
3276 if ( event
.GetEventType() == wxEVT_RIGHT_DOWN
)
3278 // copied from wxGTK : CS
3279 // generate a "context menu" event: this is similar to wxEVT_RIGHT_DOWN
3282 // (a) it's a command event and so is propagated to the parent
3283 // (b) under MSW it can be generated from kbd too
3284 // (c) it uses screen coords (because of (a))
3285 wxContextMenuEvent
evtCtx(wxEVT_CONTEXT_MENU
,
3287 this->ClientToScreen(event
.GetPosition()));
3288 if ( ! GetEventHandler()->ProcessEvent(evtCtx
) )
3297 void wxWindowMac::OnPaint( wxPaintEvent
& event
)
3299 if ( wxTheApp
->MacGetCurrentEvent() != NULL
&& wxTheApp
->MacGetCurrentEventHandlerCallRef() != NULL
)
3301 CallNextEventHandler((EventHandlerCallRef
)wxTheApp
->MacGetCurrentEventHandlerCallRef() , (EventRef
) wxTheApp
->MacGetCurrentEvent() ) ;
3305 void wxWindowMac::MacHandleControlClick( WXWidget control
, wxInt16 controlpart
, bool WXUNUSED( mouseStillDown
) )
3309 Rect
wxMacGetBoundsForControl( wxWindow
* window
, const wxPoint
& pos
, const wxSize
&size
, bool adjustForOrigin
)
3313 window
->MacGetBoundsForControl( pos
, size
, x
, y
, w
, h
, adjustForOrigin
) ;
3314 Rect bounds
= { y
, x
, y
+h
, x
+w
};
3318 wxInt32
wxWindowMac::MacControlHit(WXEVENTHANDLERREF
WXUNUSED(handler
) , WXEVENTREF
WXUNUSED(event
) )
3320 return eventNotHandledErr
;