1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxWindowMac
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "window.h"
18 #include "wx/window.h"
20 #include "wx/dcclient.h"
24 #include "wx/layout.h"
25 #include "wx/dialog.h"
26 #include "wx/scrolbar.h"
27 #include "wx/statbox.h"
28 #include "wx/button.h"
29 #include "wx/settings.h"
30 #include "wx/msgdlg.h"
32 #include "wx/tooltip.h"
33 #include "wx/statusbr.h"
34 #include "wx/menuitem.h"
35 #include "wx/spinctrl.h"
37 #include "wx/geometry.h"
39 #include "wx/toolbar.h"
46 #define wxWINDOW_HSCROLL 5998
47 #define wxWINDOW_VSCROLL 5997
48 #define MAC_SCROLLBAR_SIZE 16
50 #include "wx/mac/uma.h"
53 #include <ToolUtils.h>
56 #if TARGET_API_MAC_OSX
58 #include <HIToolbox/HIView.h>
62 #if wxUSE_DRAG_AND_DROP
68 extern wxList wxPendingDelete
;
69 wxWindowMac
* gFocusWindow
= NULL
;
71 #ifdef __WXUNIVERSAL__
72 IMPLEMENT_ABSTRACT_CLASS(wxWindowMac
, wxWindowBase
)
74 IMPLEMENT_DYNAMIC_CLASS(wxWindow
, wxWindowBase
)
75 #endif // __WXUNIVERSAL__/__WXMAC__
77 #if !USE_SHARED_LIBRARY
79 BEGIN_EVENT_TABLE(wxWindowMac
, wxWindowBase
)
80 EVT_NC_PAINT(wxWindowMac::OnNcPaint
)
81 EVT_ERASE_BACKGROUND(wxWindowMac::OnEraseBackground
)
82 // TODO EVT_PAINT(wxWindowMac::OnPaint)
83 EVT_SYS_COLOUR_CHANGED(wxWindowMac::OnSysColourChanged
)
84 EVT_INIT_DIALOG(wxWindowMac::OnInitDialog
)
85 EVT_SET_FOCUS(wxWindowMac::OnSetFocus
)
86 EVT_MOUSE_EVENTS(wxWindowMac::OnMouseEvent
)
91 #define wxMAC_DEBUG_REDRAW 0
92 #ifndef wxMAC_DEBUG_REDRAW
93 #define wxMAC_DEBUG_REDRAW 0
96 #define wxMAC_USE_THEME_BORDER 0
98 // ---------------------------------------------------------------------------
100 // ---------------------------------------------------------------------------
102 extern long wxMacTranslateKey(unsigned char key
, unsigned char code
) ;
103 pascal OSStatus
wxMacSetupControlBackground( ControlRef iControl
, SInt16 iMessage
, SInt16 iDepth
, Boolean iIsColor
) ;
105 static const EventTypeSpec eventList
[] =
107 #if TARGET_API_MAC_OSX
108 { kEventClassControl
, kEventControlDraw
} ,
109 { kEventClassControl
, kEventControlVisibilityChanged
} ,
110 { kEventClassControl
, kEventControlEnabledStateChanged
} ,
111 { kEventClassControl
, kEventControlHiliteChanged
} ,
112 // { kEventClassControl , kEventControlInvalidateForSizeChange } , // 10.3 only
113 // { kEventClassControl , kEventControlBoundsChanged } ,
121 static pascal OSStatus
wxMacWindowControlEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
123 OSStatus result
= eventNotHandledErr
;
125 wxMacCarbonEvent
cEvent( event
) ;
127 ControlRef controlRef
;
128 wxWindowMac
* thisWindow
= (wxWindowMac
*) data
;
130 cEvent
.GetParameter( kEventParamDirectObject
, &controlRef
) ;
132 switch( GetEventKind( event
) )
134 case kEventControlDraw
:
136 RgnHandle updateRgn
= cEvent
.GetParameter
<RgnHandle
>(kEventParamRgnHandle
) ;
137 // GrafPtr myport = cEvent.GetParameter<GrafPtr>(kEventParamGrafPort,typeGrafPtr) ;
139 #if 0 // in case we would need a coregraphics compliant background erase first
140 CGContextRef cgContext
= cEvent
.GetParameter
<CGContextRef
>(kEventParamCGContextRef
) ;
141 if ( thisWindow
->MacIsUserPane() )
144 err
= HIViewGetBounds( controlRef
, &bounds
);
145 CGContextSetRGBFillColor( cgContext
, 1 , 1 , 1 , 1 );
146 // CGContextSetRGBFillColor( cgContext, .95, .95, .95, 1 );
147 CGContextFillRect( cgContext
, bounds
);
150 if ( thisWindow
->MacDoRedraw( updateRgn
, cEvent
.GetTicks() ) )
153 result
= eventNotHandledErr
;
156 case kEventControlVisibilityChanged
:
157 thisWindow
->MacVisibilityChanged() ;
159 case kEventControlEnabledStateChanged
:
160 thisWindow
->MacEnabledStateChanged() ;
162 case kEventControlHiliteChanged
:
163 thisWindow
->MacHiliteChanged() ;
171 pascal OSStatus
wxMacWindowEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
173 OSStatus result
= eventNotHandledErr
;
175 switch ( GetEventClass( event
) )
177 case kEventClassControl
:
178 result
= wxMacWindowControlEventHandler( handler
, event
, data
) ;
186 DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacWindowEventHandler
)
188 // ---------------------------------------------------------------------------
189 // UserPane events for non OSX builds
190 // ---------------------------------------------------------------------------
192 static pascal void wxMacControlUserPaneDrawProc(ControlRef control
, SInt16 part
)
194 wxWindow
* win
= wxFindControlFromMacControl(control
) ;
195 wxCHECK_RET( win
, wxT("Callback from unkown control") ) ;
196 win
->MacControlUserPaneDrawProc(part
) ;
199 static pascal ControlPartCode
wxMacControlUserPaneHitTestProc(ControlRef control
, Point where
)
201 wxWindow
* win
= wxFindControlFromMacControl(control
) ;
202 wxCHECK_MSG( win
, kControlNoPart
, wxT("Callback from unkown control") ) ;
203 return win
->MacControlUserPaneHitTestProc(where
.h
, where
.v
) ;
206 static pascal ControlPartCode
wxMacControlUserPaneTrackingProc(ControlRef control
, Point startPt
, ControlActionUPP actionProc
)
208 wxWindow
* win
= wxFindControlFromMacControl(control
) ;
209 wxCHECK_MSG( win
, kControlNoPart
, wxT("Callback from unkown control") ) ;
210 return win
->MacControlUserPaneTrackingProc( startPt
.h
, startPt
.v
, (void*) actionProc
) ;
213 static pascal void wxMacControlUserPaneIdleProc(ControlRef control
)
215 wxWindow
* win
= wxFindControlFromMacControl(control
) ;
216 wxCHECK_RET( win
, wxT("Callback from unkown control") ) ;
217 win
->MacControlUserPaneIdleProc() ;
220 static pascal ControlPartCode
wxMacControlUserPaneKeyDownProc(ControlRef control
, SInt16 keyCode
, SInt16 charCode
, SInt16 modifiers
)
222 wxWindow
* win
= wxFindControlFromMacControl(control
) ;
223 wxCHECK_MSG( win
, kControlNoPart
, wxT("Callback from unkown control") ) ;
224 return win
->MacControlUserPaneKeyDownProc(keyCode
,charCode
,modifiers
) ;
227 static pascal void wxMacControlUserPaneActivateProc(ControlRef control
, Boolean activating
)
229 wxWindow
* win
= wxFindControlFromMacControl(control
) ;
230 wxCHECK_RET( win
, wxT("Callback from unkown control") ) ;
231 win
->MacControlUserPaneActivateProc(activating
) ;
234 static pascal ControlPartCode
wxMacControlUserPaneFocusProc(ControlRef control
, ControlFocusPart action
)
236 wxWindow
* win
= wxFindControlFromMacControl(control
) ;
237 wxCHECK_MSG( win
, kControlNoPart
, wxT("Callback from unkown control") ) ;
238 return win
->MacControlUserPaneFocusProc(action
) ;
241 static pascal void wxMacControlUserPaneBackgroundProc(ControlRef control
, ControlBackgroundPtr info
)
243 wxWindow
* win
= wxFindControlFromMacControl(control
) ;
244 wxCHECK_RET( win
, wxT("Callback from unkown control") ) ;
245 win
->MacControlUserPaneBackgroundProc(info
) ;
248 void wxWindowMac::MacControlUserPaneDrawProc(wxInt16 part
)
250 MacDoRedraw( MacGetVisibleRegion().GetWXHRGN() , 0 ) ;
253 wxInt16
wxWindowMac::MacControlUserPaneHitTestProc(wxInt16 x
, wxInt16 y
)
255 return kControlNoPart
;
258 wxInt16
wxWindowMac::MacControlUserPaneTrackingProc(wxInt16 x
, wxInt16 y
, void* actionProc
)
260 return kControlNoPart
;
263 void wxWindowMac::MacControlUserPaneIdleProc()
267 wxInt16
wxWindowMac::MacControlUserPaneKeyDownProc(wxInt16 keyCode
, wxInt16 charCode
, wxInt16 modifiers
)
269 return kControlNoPart
;
272 void wxWindowMac::MacControlUserPaneActivateProc(bool activating
)
276 wxInt16
wxWindowMac::MacControlUserPaneFocusProc(wxInt16 action
)
278 return kControlNoPart
;
281 void wxWindowMac::MacControlUserPaneBackgroundProc(void* info
)
285 ControlUserPaneDrawUPP gControlUserPaneDrawUPP
= NULL
;
286 ControlUserPaneHitTestUPP gControlUserPaneHitTestUPP
= NULL
;
287 ControlUserPaneTrackingUPP gControlUserPaneTrackingUPP
= NULL
;
288 ControlUserPaneIdleUPP gControlUserPaneIdleUPP
= NULL
;
289 ControlUserPaneKeyDownUPP gControlUserPaneKeyDownUPP
= NULL
;
290 ControlUserPaneActivateUPP gControlUserPaneActivateUPP
= NULL
;
291 ControlUserPaneFocusUPP gControlUserPaneFocusUPP
= NULL
;
292 ControlUserPaneBackgroundUPP gControlUserPaneBackgroundUPP
= NULL
;
294 // ===========================================================================
296 // ===========================================================================
298 wxList
wxWinMacControlList(wxKEY_INTEGER
);
300 wxWindow
*wxFindControlFromMacControl(ControlRef inControl
)
302 wxNode
*node
= wxWinMacControlList
.Find((long)inControl
);
305 return (wxControl
*)node
->GetData();
308 void wxAssociateControlWithMacControl(ControlRef inControl
, wxWindow
*control
)
310 // adding NULL ControlRef is (first) surely a result of an error and
311 // (secondly) breaks native event processing
312 wxCHECK_RET( inControl
!= (ControlRef
) NULL
, wxT("attempt to add a NULL WindowRef to window list") );
314 if ( !wxWinMacControlList
.Find((long)inControl
) )
315 wxWinMacControlList
.Append((long)inControl
, control
);
318 void wxRemoveMacControlAssociation(wxWindow
*control
)
320 wxWinMacControlList
.DeleteObject(control
);
324 ControlActionUPP wxMacLiveScrollbarActionUPP
= NULL
;
326 ControlColorUPP wxMacSetupControlBackgroundUPP
= NULL
;
328 // we have to setup the brush in the current port and return noErr
329 // or return an error code so that the control manager walks further up the
330 // hierarchy to find a correct background
332 pascal OSStatus
wxMacSetupControlBackground( ControlRef iControl
, SInt16 iMessage
, SInt16 iDepth
, Boolean iIsColor
)
334 OSStatus status
= paramErr
;
337 case kControlMsgApplyTextColor
:
339 case kControlMsgSetUpBackground
:
341 wxWindow
* wx
= (wxWindow
*) wxFindControlFromMacControl( iControl
) ;
345 const wxBrush &brush = wx->MacGetBackgroundBrush() ;
349 wxDC::MacSetupBackgroundForCurrentPort( brush ) ;
351 // this clipping is only needed for non HIView
353 RgnHandle clip
= NewRgn() ;
356 wx
->MacWindowToRootWindow( &x
,&y
) ;
357 CopyRgn( (RgnHandle
) wx
->MacGetVisibleRegion().GetWXHRGN() , clip
) ;
358 OffsetRgn( clip
, x
, y
) ;
365 else if ( wx->MacIsUserPane() )
367 // if we don't have a valid brush for such a control, we have to call the
368 // setup of our parent ourselves
369 status = SetUpControlBackground( (ControlRef) wx->GetParent()->GetHandle() , iDepth , iIsColor ) ;
382 pascal void wxMacLiveScrollbarActionProc( ControlRef control
, ControlPartCode partCode
) ;
383 pascal void wxMacLiveScrollbarActionProc( ControlRef control
, ControlPartCode partCode
)
387 wxWindow
* wx
= wxFindControlFromMacControl( control
) ;
390 wx
->MacHandleControlClick( (WXWidget
) control
, partCode
, true /* stillDown */ ) ;
395 // ----------------------------------------------------------------------------
396 // constructors and such
397 // ----------------------------------------------------------------------------
399 void wxWindowMac::Init()
401 m_backgroundTransparent
= FALSE
;
403 // as all windows are created with WS_VISIBLE style...
406 m_hScrollBar
= NULL
;
407 m_vScrollBar
= NULL
;
408 m_macBackgroundBrush
= wxNullBrush
;
410 m_macControl
= NULL
;
412 m_macIsUserPane
= TRUE
;
414 // make sure all proc ptrs are available
416 if ( gControlUserPaneDrawUPP
== NULL
)
418 gControlUserPaneDrawUPP
= NewControlUserPaneDrawUPP( wxMacControlUserPaneDrawProc
) ;
419 gControlUserPaneHitTestUPP
= NewControlUserPaneHitTestUPP( wxMacControlUserPaneHitTestProc
) ;
420 gControlUserPaneTrackingUPP
= NewControlUserPaneTrackingUPP( wxMacControlUserPaneTrackingProc
) ;
421 gControlUserPaneIdleUPP
= NewControlUserPaneIdleUPP( wxMacControlUserPaneIdleProc
) ;
422 gControlUserPaneKeyDownUPP
= NewControlUserPaneKeyDownUPP( wxMacControlUserPaneKeyDownProc
) ;
423 gControlUserPaneActivateUPP
= NewControlUserPaneActivateUPP( wxMacControlUserPaneActivateProc
) ;
424 gControlUserPaneFocusUPP
= NewControlUserPaneFocusUPP( wxMacControlUserPaneFocusProc
) ;
425 gControlUserPaneBackgroundUPP
= NewControlUserPaneBackgroundUPP( wxMacControlUserPaneBackgroundProc
) ;
427 if ( wxMacLiveScrollbarActionUPP
== NULL
)
429 wxMacLiveScrollbarActionUPP
= NewControlActionUPP( wxMacLiveScrollbarActionProc
);
432 if ( wxMacSetupControlBackgroundUPP
== NULL
)
434 wxMacSetupControlBackgroundUPP
= NewControlColorUPP( wxMacSetupControlBackground
) ;
440 wxWindowMac::~wxWindowMac()
444 m_isBeingDeleted
= TRUE
;
446 #ifndef __WXUNIVERSAL__
447 // VS: make sure there's no wxFrame with last focus set to us:
448 for ( wxWindow
*win
= GetParent(); win
; win
= win
->GetParent() )
450 wxFrame
*frame
= wxDynamicCast(win
, wxFrame
);
453 if ( frame
->GetLastFocus() == this )
455 frame
->SetLastFocus((wxWindow
*)NULL
);
460 #endif // __WXUNIVERSAL__
462 // wxRemoveMacControlAssociation( this ) ;
463 // If we delete an item, we should initialize the parent panel,
464 // because it could now be invalid.
465 wxWindow
*parent
= GetParent() ;
468 if (parent
->GetDefaultItem() == (wxButton
*) this)
469 parent
->SetDefaultItem(NULL
);
471 if ( (ControlRef
) m_macControl
)
473 // in case the callback might be called during destruction
474 wxRemoveMacControlAssociation( this) ;
475 ::SetControlColorProc( (ControlRef
) m_macControl
, NULL
) ;
476 ::DisposeControl( (ControlRef
) m_macControl
) ;
477 m_macControl
= NULL
;
480 if ( g_MacLastWindow
== this )
482 g_MacLastWindow
= NULL
;
485 wxFrame
* frame
= wxDynamicCast( wxGetTopLevelParent( this ) , wxFrame
) ;
488 if ( frame
->GetLastFocus() == this )
489 frame
->SetLastFocus( NULL
) ;
492 if ( gFocusWindow
== this )
494 gFocusWindow
= NULL
;
499 // delete our drop target if we've got one
500 #if wxUSE_DRAG_AND_DROP
501 if ( m_dropTarget
!= NULL
)
506 #endif // wxUSE_DRAG_AND_DROP
511 void wxWindowMac::MacInstallEventHandler()
513 InstallControlEventHandler( (ControlRef
) m_macControl
, GetwxMacWindowEventHandlerUPP(),
514 GetEventTypeCount(eventList
), eventList
, this,
515 (EventHandlerRef
*)&m_macControlEventHandler
);
520 bool wxWindowMac::Create(wxWindowMac
*parent
, wxWindowID id
,
524 const wxString
& name
)
526 wxCHECK_MSG( parent
, FALSE
, wxT("can't create wxWindowMac without parent") );
528 if ( !CreateBase(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
531 parent
->AddChild(this);
533 m_windowVariant
= parent
->GetWindowVariant() ;
535 if ( m_macIsUserPane
)
537 Rect bounds
= wxMacGetBoundsForControl( this , pos
, size
) ;
539 UInt32 features
= kControlSupportsEmbedding
| kControlSupportsLiveFeedback
/*| kControlHasSpecialBackground */ | kControlSupportsCalcBestRect
| kControlHandlesTracking
| kControlSupportsFocus
| kControlWantsActivate
| kControlWantsIdle
;
541 ::CreateUserPaneControl( MAC_WXHWND(GetParent()->MacGetTopLevelWindowRef()) , &bounds
, features
, (ControlRef
*) &m_macControl
);
543 MacPostControlCreate(pos
,size
) ;
544 #if !TARGET_API_MAC_OSX
545 SetControlData((ControlRef
) m_macControl
,kControlEntireControl
,kControlUserPaneDrawProcTag
,
546 sizeof(gControlUserPaneDrawUPP
),(Ptr
) &gControlUserPaneDrawUPP
);
547 SetControlData((ControlRef
) m_macControl
,kControlEntireControl
,kControlUserPaneHitTestProcTag
,
548 sizeof(gControlUserPaneHitTestUPP
),(Ptr
) &gControlUserPaneHitTestUPP
);
549 SetControlData((ControlRef
) m_macControl
,kControlEntireControl
,kControlUserPaneTrackingProcTag
,
550 sizeof(gControlUserPaneTrackingUPP
),(Ptr
) &gControlUserPaneTrackingUPP
);
551 SetControlData((ControlRef
) m_macControl
,kControlEntireControl
,kControlUserPaneIdleProcTag
,
552 sizeof(gControlUserPaneIdleUPP
),(Ptr
) &gControlUserPaneIdleUPP
);
553 SetControlData((ControlRef
) m_macControl
,kControlEntireControl
,kControlUserPaneKeyDownProcTag
,
554 sizeof(gControlUserPaneKeyDownUPP
),(Ptr
) &gControlUserPaneKeyDownUPP
);
555 SetControlData((ControlRef
) m_macControl
,kControlEntireControl
,kControlUserPaneActivateProcTag
,
556 sizeof(gControlUserPaneActivateUPP
),(Ptr
) &gControlUserPaneActivateUPP
);
557 SetControlData((ControlRef
) m_macControl
,kControlEntireControl
,kControlUserPaneFocusProcTag
,
558 sizeof(gControlUserPaneFocusUPP
),(Ptr
) &gControlUserPaneFocusUPP
);
559 SetControlData((ControlRef
) m_macControl
,kControlEntireControl
,kControlUserPaneBackgroundProcTag
,
560 sizeof(gControlUserPaneBackgroundUPP
),(Ptr
) &gControlUserPaneBackgroundUPP
);
563 #ifndef __WXUNIVERSAL__
564 // Don't give scrollbars to wxControls unless they ask for them
565 if ( (! IsKindOf(CLASSINFO(wxControl
)) && ! IsKindOf(CLASSINFO(wxStatusBar
))) ||
566 (IsKindOf(CLASSINFO(wxControl
)) && ( style
& wxHSCROLL
|| style
& wxVSCROLL
)))
568 MacCreateScrollBars( style
) ;
572 wxWindowCreateEvent
event(this);
573 GetEventHandler()->AddPendingEvent(event
);
578 void wxWindowMac::MacPostControlCreate(const wxPoint
& pos
, const wxSize
& size
)
580 wxASSERT_MSG( (ControlRef
) m_macControl
!= NULL
, wxT("No valid mac control") ) ;
582 wxAssociateControlWithMacControl( (ControlRef
) m_macControl
, this ) ;
583 ::SetControlReference( (ControlRef
) m_macControl
, (long) this ) ;
585 MacInstallEventHandler();
587 ControlRef container
= (ControlRef
) GetParent()->GetHandle() ;
588 wxASSERT_MSG( container
!= NULL
, wxT("No valid mac container control") ) ;
589 ::EmbedControl( (ControlRef
) m_macControl
, container
) ;
591 // adjust font, controlsize etc
592 DoSetWindowVariant( m_windowVariant
) ;
594 #if !TARGET_API_MAC_OSX
595 // eventually we can fix some clipping issues be reactivating this hook
596 //if ( m_macIsUserPane )
597 // SetControlColorProc( (ControlRef) m_macControl , wxMacSetupControlBackgroundUPP ) ;
600 UMASetControlTitle( (ControlRef
) m_macControl
, wxStripMenuCodes(m_label
) , m_font
.GetEncoding() ) ;
602 wxSize new_size
= size
;
603 if (!m_macIsUserPane
)
605 wxSize
best_size( DoGetBestSize() );
608 new_size
.x
= best_size
.x
;
611 new_size
.y
= best_size
.y
;
613 SetSize( pos
.x
, pos
.y
, new_size
.x
, new_size
.y
,wxSIZE_USE_EXISTING
);
616 SetCursor( *wxSTANDARD_CURSOR
) ;
620 void wxWindowMac::DoSetWindowVariant( wxWindowVariant variant
)
622 wxASSERT( m_macControl
!= NULL
) ;
624 m_windowVariant
= variant
;
627 ThemeFontID themeFont
= kThemeSystemFont
;
629 // we will get that from the settings later
630 // and make this NORMAL later, but first
631 // we have a few calculations that we must fix
635 case wxWINDOW_VARIANT_NORMAL
:
636 size
= kControlSizeNormal
;
637 themeFont
= kThemeSystemFont
;
639 case wxWINDOW_VARIANT_SMALL
:
640 size
= kControlSizeSmall
;
641 themeFont
= kThemeSmallSystemFont
;
643 case wxWINDOW_VARIANT_MINI
:
644 if (UMAGetSystemVersion() >= 0x1030 )
646 // not always defined in the headers
652 size
= kControlSizeSmall
;
653 themeFont
= kThemeSmallSystemFont
;
656 case wxWINDOW_VARIANT_LARGE
:
657 size
= kControlSizeLarge
;
658 themeFont
= kThemeSystemFont
;
661 wxFAIL_MSG(_T("unexpected window variant"));
664 ::SetControlData( (ControlRef
) m_macControl
, kControlEntireControl
, kControlSizeTag
, sizeof( ControlSize
), &size
);
667 font
.MacCreateThemeFont( themeFont
) ;
671 void wxWindowMac::MacUpdateControlFont()
673 ControlFontStyleRec fontStyle
;
674 if ( m_font
.MacGetThemeFontID() != kThemeCurrentPortFont
)
676 switch( m_font
.MacGetThemeFontID() )
678 case kThemeSmallSystemFont
: fontStyle
.font
= kControlFontSmallSystemFont
; break ;
679 case 109 /*mini font */ : fontStyle
.font
= -5 ; break ;
680 case kThemeSystemFont
: fontStyle
.font
= kControlFontBigSystemFont
; break ;
681 default : fontStyle
.font
= kControlFontBigSystemFont
; break ;
683 fontStyle
.flags
= kControlUseFontMask
;
687 fontStyle
.font
= m_font
.MacGetFontNum() ;
688 fontStyle
.style
= m_font
.MacGetFontStyle() ;
689 fontStyle
.size
= m_font
.MacGetFontSize() ;
690 fontStyle
.flags
= kControlUseFontMask
| kControlUseFaceMask
| kControlUseSizeMask
;
693 fontStyle
.just
= teJustLeft
;
694 fontStyle
.flags
|= kControlUseJustMask
;
695 if ( ( GetWindowStyle() & wxALIGN_MASK
) & wxALIGN_CENTER_HORIZONTAL
)
696 fontStyle
.just
= teJustCenter
;
697 else if ( ( GetWindowStyle() & wxALIGN_MASK
) & wxALIGN_RIGHT
)
698 fontStyle
.just
= teJustRight
;
701 fontStyle
.foreColor
= MAC_WXCOLORREF(GetForegroundColour().GetPixel() ) ;
702 fontStyle
.flags
|= kControlUseForeColorMask
;
704 ::SetControlFontStyle( (ControlRef
) m_macControl
, &fontStyle
);
708 bool wxWindowMac::SetFont(const wxFont
& font
)
710 bool retval
= !wxWindowBase::SetFont( font
) ;
712 MacUpdateControlFont() ;
717 bool wxWindowMac::SetForegroundColour(const wxColour
& col
)
719 if ( !wxWindowBase::SetForegroundColour(col
) )
722 MacUpdateControlFont() ;
727 bool wxWindowMac::SetBackgroundColour(const wxColour
& col
)
729 if ( !wxWindowBase::SetBackgroundColour(col
) && m_hasBgCol
)
733 if ( col
== wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE
) )
735 brush
.MacSetTheme( kThemeBrushDocumentWindowBackground
) ;
737 else if ( col
== wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
) )
739 brush
.MacSetTheme( kThemeBrushDialogBackgroundActive
) ;
743 brush
.SetColour( col
) ;
745 MacSetBackgroundBrush( brush
) ;
747 MacUpdateControlFont() ;
753 bool wxWindowMac::MacCanFocus() const
755 wxASSERT( m_macControl
!= NULL
) ;
761 void wxWindowMac::SetFocus()
763 if ( gFocusWindow
== this )
766 if ( AcceptsFocus() )
772 if ( gFocusWindow
->m_caret
)
774 gFocusWindow
->m_caret
->OnKillFocus();
776 #endif // wxUSE_CARET
777 #ifndef __WXUNIVERSAL__
778 wxWindow
* control
= wxDynamicCast( gFocusWindow
, wxWindow
) ;
779 // TODO we must use the built-in focusing
780 if ( control
&& control
->GetHandle() /* && control->MacIsReallyShown() */ )
782 UMASetKeyboardFocus( (WindowRef
) gFocusWindow
->MacGetTopLevelWindowRef() , (ControlRef
) control
->GetHandle() , kControlFocusNoPart
) ;
783 control
->MacRedrawControl() ;
786 // Without testing the window id, for some reason
787 // a kill focus event can still be sent to
788 // the control just being focussed.
789 int thisId
= this->m_windowId
;
790 int gFocusWindowId
= gFocusWindow
->m_windowId
;
791 if (gFocusWindowId
!= thisId
)
793 wxFocusEvent
event(wxEVT_KILL_FOCUS
, gFocusWindow
->m_windowId
);
794 event
.SetEventObject(gFocusWindow
);
795 gFocusWindow
->GetEventHandler()->ProcessEvent(event
) ;
798 gFocusWindow
= this ;
804 m_caret
->OnSetFocus();
806 #endif // wxUSE_CARET
807 // panel wants to track the window which was the last to have focus in it
808 wxChildFocusEvent
eventFocus(this);
809 GetEventHandler()->ProcessEvent(eventFocus
);
811 #ifndef __WXUNIVERSAL__
812 wxControl
* control
= wxDynamicCast( gFocusWindow
, wxControl
) ;
813 if ( control
&& control
->GetHandle() )
815 UMASetKeyboardFocus( (WindowRef
) gFocusWindow
->MacGetTopLevelWindowRef() , (ControlRef
) control
->GetHandle() , kControlFocusNextPart
) ;
818 wxFocusEvent
event(wxEVT_SET_FOCUS
, m_windowId
);
819 event
.SetEventObject(this);
820 GetEventHandler()->ProcessEvent(event
) ;
826 void wxWindowMac::DoCaptureMouse()
828 wxTheApp
->s_captureWindow
= this ;
831 wxWindow
* wxWindowBase::GetCapture()
833 return wxTheApp
->s_captureWindow
;
836 void wxWindowMac::DoReleaseMouse()
838 wxTheApp
->s_captureWindow
= NULL
;
841 #if wxUSE_DRAG_AND_DROP
843 void wxWindowMac::SetDropTarget(wxDropTarget
*pDropTarget
)
845 if ( m_dropTarget
!= 0 ) {
849 m_dropTarget
= pDropTarget
;
850 if ( m_dropTarget
!= 0 )
858 // Old style file-manager drag&drop
859 void wxWindowMac::DragAcceptFiles(bool accept
)
864 void wxWindowMac::MacGetPositionAndSizeFromControl(int& x
, int& y
,
865 int& w
, int& h
) const
868 GetControlBounds( (ControlRef
) m_macControl
, &bounds
) ;
873 w
= bounds
.right
- bounds
.left
;
874 h
= bounds
.bottom
- bounds
.top
;
876 wxTopLevelWindow
* tlw
= wxDynamicCast( this , wxTopLevelWindow
) ;
879 Point tlworigin
= { 0 , 0 } ;
882 ::SetPort( UMAGetWindowPort( (WindowRef
) tlw
->MacGetWindowRef() ) ) ;
883 ::LocalToGlobal( &tlworigin
) ;
890 bool wxWindowMac::MacGetBoundsForControl(const wxPoint
& pos
,
893 int& w
, int& h
) const
897 // todo the default calls may be used as soon as PostCreateControl Is moved here
898 w
= size
.x
; // WidthDefault( size.x );
899 h
= size
.y
; // HeightDefault( size.y ) ;
900 #if !TARGET_API_MAC_OSX
901 GetParent()->MacWindowToRootWindow( &x
, &y
) ;
908 void wxWindowMac::DoGetSize(int *x
, int *y
) const
910 #if TARGET_API_MAC_OSX
911 int x1
, y1
, w1
,h1
;
912 MacGetPositionAndSizeFromControl( x1
, y1
, w1
,h1
) ;
918 GetControlBounds( (ControlRef
) m_macControl
, &bounds
) ;
919 if(x
) *x
= bounds
.right
- bounds
.left
;
920 if(y
) *y
= bounds
.bottom
- bounds
.top
;
924 void wxWindowMac::DoGetPosition(int *x
, int *y
) const
926 #if TARGET_API_MAC_OSX
927 int x1
, y1
, w1
,h1
;
928 MacGetPositionAndSizeFromControl( x1
, y1
, w1
,h1
) ;
931 wxWindow
*parent
= GetParent();
934 wxPoint
pt(parent
->GetClientAreaOrigin());
943 GetControlBounds( (ControlRef
) m_macControl
, &bounds
) ;
944 wxCHECK_RET( GetParent() , wxT("Missing Parent") ) ;
946 int xx
= bounds
.left
;
947 int yy
= bounds
.top
;
949 if ( !GetParent()->IsTopLevel() )
951 GetControlBounds( (ControlRef
) GetParent()->GetHandle() , &bounds
) ;
957 wxPoint
pt(GetParent()->GetClientAreaOrigin());
966 void wxWindowMac::DoScreenToClient(int *x
, int *y
) const
968 WindowRef window
= (WindowRef
) MacGetTopLevelWindowRef() ;
970 wxCHECK_RET( window
, wxT("TopLevel Window Missing") ) ;
973 Point localwhere
= {0,0} ;
975 if(x
) localwhere
.h
= * x
;
976 if(y
) localwhere
.v
= * y
;
978 wxMacPortSaver
s((GrafPtr
)GetWindowPort( window
)) ;
979 ::GlobalToLocal( &localwhere
) ;
980 if(x
) *x
= localwhere
.h
;
981 if(y
) *y
= localwhere
.v
;
984 MacRootWindowToWindow( x
, y
) ;
986 wxPoint origin
= GetClientAreaOrigin() ;
987 if(x
) *x
-= origin
.x
;
988 if(y
) *y
-= origin
.y
;
991 void wxWindowMac::DoClientToScreen(int *x
, int *y
) const
993 WindowRef window
= (WindowRef
) MacGetTopLevelWindowRef() ;
994 wxCHECK_RET( window
, wxT("TopLevel Window Missing") ) ;
996 wxPoint origin
= GetClientAreaOrigin() ;
997 if(x
) *x
+= origin
.x
;
998 if(y
) *y
+= origin
.y
;
1000 MacWindowToRootWindow( x
, y
) ;
1003 Point localwhere
= { 0,0 };
1004 if(x
) localwhere
.h
= * x
;
1005 if(y
) localwhere
.v
= * y
;
1007 wxMacPortSaver
s((GrafPtr
)GetWindowPort( window
)) ;
1008 ::LocalToGlobal( &localwhere
) ;
1009 if(x
) *x
= localwhere
.h
;
1010 if(y
) *y
= localwhere
.v
;
1014 void wxWindowMac::MacClientToRootWindow( int *x
, int *y
) const
1016 wxPoint origin
= GetClientAreaOrigin() ;
1017 if(x
) *x
+= origin
.x
;
1018 if(y
) *y
+= origin
.y
;
1020 MacWindowToRootWindow( x
, y
) ;
1023 void wxWindowMac::MacRootWindowToClient( int *x
, int *y
) const
1025 MacRootWindowToWindow( x
, y
) ;
1027 wxPoint origin
= GetClientAreaOrigin() ;
1028 if(x
) *x
-= origin
.x
;
1029 if(y
) *y
-= origin
.y
;
1032 void wxWindowMac::MacWindowToRootWindow( int *x
, int *y
) const
1034 #if TARGET_API_MAC_OSX
1036 if ( x
) pt
.x
= *x
;
1037 if ( y
) pt
.y
= *y
;
1039 HIViewConvertPoint( &pt
, (ControlRef
) m_macControl
, (ControlRef
) MacGetTopLevelWindow()->GetHandle() ) ;
1041 if ( x
) *x
= (int) pt
.x
;
1042 if ( y
) *y
= (int) pt
.y
;
1044 if ( !IsTopLevel() )
1047 GetControlBounds( (ControlRef
) m_macControl
, &bounds
) ;
1048 if(x
) *x
+= bounds
.left
;
1049 if(y
) *y
+= bounds
.top
;
1054 void wxWindowMac::MacWindowToRootWindow( short *x
, short *y
) const
1059 MacWindowToRootWindow( &x1
, &y1
) ;
1064 void wxWindowMac::MacRootWindowToWindow( int *x
, int *y
) const
1066 #if TARGET_API_MAC_OSX
1068 if ( x
) pt
.x
= *x
;
1069 if ( y
) pt
.y
= *y
;
1071 HIViewConvertPoint( &pt
, (ControlRef
) MacGetTopLevelWindow()->GetHandle() , (ControlRef
) m_macControl
) ;
1073 if ( x
) *x
= (int) pt
.x
;
1074 if ( y
) *y
= (int) pt
.y
;
1076 if ( !IsTopLevel() )
1079 GetControlBounds( (ControlRef
) m_macControl
, &bounds
) ;
1080 if(x
) *x
-= bounds
.left
;
1081 if(y
) *y
-= bounds
.top
;
1086 void wxWindowMac::MacRootWindowToWindow( short *x
, short *y
) const
1091 MacRootWindowToWindow( &x1
, &y1
) ;
1096 wxSize
wxWindowMac::DoGetSizeFromClientSize( const wxSize
& size
) const
1098 wxSize sizeTotal
= size
;
1100 RgnHandle rgn
= NewRgn() ;
1104 if ( GetControlRegion( (ControlRef
) m_macControl
, kControlContentMetaPart
, rgn
) == noErr
)
1106 GetRegionBounds( rgn
, &content
) ;
1111 GetControlBounds( (ControlRef
) m_macControl
, &content
) ;
1114 GetControlBounds( (ControlRef
) m_macControl
, &structure
) ;
1115 #if !TARGET_API_MAC_OSX
1116 OffsetRect( &content
, -structure
.left
, -structure
.top
) ;
1119 sizeTotal
.x
+= (structure
.right
- structure
.left
) - (content
.right
- content
.left
) ;
1120 sizeTotal
.y
+= (structure
.bottom
- structure
.top
) - (content
.bottom
- content
.top
) ;
1122 sizeTotal
.x
+= MacGetLeftBorderSize( ) + MacGetRightBorderSize( ) ;
1123 sizeTotal
.y
+= MacGetTopBorderSize( ) + MacGetBottomBorderSize( ) ;
1129 // Get size *available for subwindows* i.e. excluding menu bar etc.
1130 void wxWindowMac::DoGetClientSize(int *x
, int *y
) const
1134 RgnHandle rgn
= NewRgn() ;
1136 if ( GetControlRegion( (ControlRef
) m_macControl
, kControlContentMetaPart
, rgn
) == noErr
)
1138 GetRegionBounds( rgn
, &content
) ;
1143 GetControlBounds( (ControlRef
) m_macControl
, &content
) ;
1145 #if !TARGET_API_MAC_OSX
1147 GetControlBounds( (ControlRef
) m_macControl
, &structure
) ;
1148 OffsetRect( &content
, -structure
.left
, -structure
.top
) ;
1150 ww
= content
.right
- content
.left
;
1151 hh
= content
.bottom
- content
.top
;
1153 ww
-= MacGetLeftBorderSize( ) + MacGetRightBorderSize( ) ;
1154 hh
-= MacGetTopBorderSize( ) + MacGetBottomBorderSize( );
1156 if ( (m_vScrollBar
&& m_vScrollBar
->IsShown()) || (m_hScrollBar
&& m_hScrollBar
->IsShown()) )
1162 GetSize( &w
, &h
) ;
1164 MacClientToRootWindow( &x1
, &y1
) ;
1165 MacClientToRootWindow( &w
, &h
) ;
1167 wxWindowMac
*iter
= (wxWindowMac
*)this ;
1169 int totW
= 10000 , totH
= 10000;
1172 if ( iter
->IsTopLevel() )
1174 iter
->GetSize( &totW
, &totH
) ;
1178 iter
= iter
->GetParent() ;
1181 if (m_hScrollBar
&& m_hScrollBar
->IsShown() )
1183 hh
-= MAC_SCROLLBAR_SIZE
;
1189 if (m_vScrollBar
&& m_vScrollBar
->IsShown() )
1191 ww
-= MAC_SCROLLBAR_SIZE
;
1203 bool wxWindowMac::SetCursor(const wxCursor
& cursor
)
1205 if (m_cursor
== cursor
)
1208 if (wxNullCursor
== cursor
)
1210 if ( ! wxWindowBase::SetCursor( *wxSTANDARD_CURSOR
) )
1215 if ( ! wxWindowBase::SetCursor( cursor
) )
1219 wxASSERT_MSG( m_cursor
.Ok(),
1220 wxT("cursor must be valid after call to the base version"));
1224 TODO why do we have to use current coordinates ?
1227 wxWindowMac *mouseWin ;
1230 // Change the cursor NOW if we're within the correct window
1233 if ( MacGetWindowFromPoint( wxPoint( pt.h , pt.v ) , &mouseWin ) )
1235 if ( mouseWin == this && !wxIsBusy() )
1237 m_cursor.MacInstall() ;
1243 m_cursor
.MacInstall() ;
1250 bool wxWindowMac::DoPopupMenu(wxMenu
*menu
, int x
, int y
)
1252 menu
->SetInvokingWindow(this);
1254 ClientToScreen( &x
, &y
) ;
1256 menu
->MacBeforeDisplay( true ) ;
1257 long menuResult
= ::PopUpMenuSelect((MenuHandle
) menu
->GetHMenu() ,y
,x
, 0) ;
1258 if ( HiWord(menuResult
) != 0 )
1261 GetMenuItemCommandID( GetMenuHandle(HiWord(menuResult
)) , LoWord(menuResult
) , &id
) ;
1262 wxMenuItem
* item
= NULL
;
1264 item
= menu
->FindItem(id
, &realmenu
) ;
1265 if (item
->IsCheckable())
1267 item
->Check( !item
->IsChecked() ) ;
1269 menu
->SendEvent( id
, item
->IsCheckable() ? item
->IsChecked() : -1 ) ;
1271 menu
->MacAfterDisplay( true ) ;
1273 menu
->SetInvokingWindow(NULL
);
1279 // ----------------------------------------------------------------------------
1281 // ----------------------------------------------------------------------------
1285 void wxWindowMac::DoSetToolTip(wxToolTip
*tooltip
)
1287 wxWindowBase::DoSetToolTip(tooltip
);
1290 m_tooltip
->SetWindow(this);
1293 #endif // wxUSE_TOOLTIPS
1295 void wxWindowMac::DoMoveWindow(int x
, int y
, int width
, int height
)
1297 int former_x
, former_y
, former_w
, former_h
;
1298 #if !TARGET_API_MAC_OSX
1299 DoGetPosition( &former_x
, &former_y
) ;
1300 DoGetSize( &former_w
, &former_h
) ;
1302 MacGetPositionAndSizeFromControl( former_x
, former_y
, former_w
, former_h
) ;
1305 int actualWidth
= width
;
1306 int actualHeight
= height
;
1310 if ((m_minWidth
!= -1) && (actualWidth
< m_minWidth
))
1311 actualWidth
= m_minWidth
;
1312 if ((m_minHeight
!= -1) && (actualHeight
< m_minHeight
))
1313 actualHeight
= m_minHeight
;
1314 if ((m_maxWidth
!= -1) && (actualWidth
> m_maxWidth
))
1315 actualWidth
= m_maxWidth
;
1316 if ((m_maxHeight
!= -1) && (actualHeight
> m_maxHeight
))
1317 actualHeight
= m_maxHeight
;
1319 bool doMove
= false ;
1320 bool doResize
= false ;
1322 if ( actualX
!= former_x
|| actualY
!= former_y
)
1326 if ( actualWidth
!= former_w
|| actualHeight
!= former_h
)
1331 if ( doMove
|| doResize
)
1333 Rect r
= wxMacGetBoundsForControl(this , wxPoint( actualX
,actualY
), wxSize( actualWidth
, actualHeight
) ) ;
1334 #if TARGET_API_MAC_OSX
1335 SetControlBounds( (ControlRef
) m_macControl
, &r
) ;
1338 MoveControl( (ControlRef
) m_macControl
, r
.left
, r
.top
) ;
1340 SizeControl( (ControlRef
) m_macControl
, r
.right
-r
.left
, r
.bottom
-r
.top
) ;
1342 MacRepositionScrollBars() ;
1345 wxPoint
point(actualX
,actualY
);
1346 wxMoveEvent
event(point
, m_windowId
);
1347 event
.SetEventObject(this);
1348 GetEventHandler()->ProcessEvent(event
) ;
1352 MacRepositionScrollBars() ;
1353 wxSize
size(actualWidth
, actualHeight
);
1354 wxSizeEvent
event(size
, m_windowId
);
1355 event
.SetEventObject(this);
1356 GetEventHandler()->ProcessEvent(event
);
1362 wxSize
wxWindowMac::DoGetBestSize() const
1365 Rect bestsize = { 0 , 0 , 0 , 0 } ;
1366 short baselineoffset ;
1367 int bestWidth, bestHeight ;
1368 ::GetBestControlRect( (ControlRef) m_macControl , &bestsize , &baselineoffset ) ;
1370 if ( EmptyRect( &bestsize ) )
1373 bestsize.left = bestsize.top = 0 ;
1374 bestsize.right = 16 ;
1375 bestsize.bottom = 16 ;
1376 if ( IsKindOf( CLASSINFO( wxScrollBar ) ) )
1378 bestsize.bottom = 16 ;
1380 else if ( IsKindOf( CLASSINFO( wxSpinButton ) ) )
1382 bestsize.bottom = 24 ;
1386 // return wxWindowBase::DoGetBestSize() ;
1390 bestWidth = bestsize.right - bestsize.left ;
1391 bestHeight = bestsize.bottom - bestsize.top ;
1392 if ( bestHeight < 10 )
1395 return wxSize(bestWidth, bestHeight);
1397 return wxWindowBase::DoGetBestSize() ;
1401 // set the size of the window: if the dimensions are positive, just use them,
1402 // but if any of them is equal to -1, it means that we must find the value for
1403 // it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in
1404 // which case -1 is a valid value for x and y)
1406 // If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate
1407 // the width/height to best suit our contents, otherwise we reuse the current
1409 void wxWindowMac::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
1411 // get the current size and position...
1412 int currentX
, currentY
;
1413 GetPosition(¤tX
, ¤tY
);
1415 int currentW
,currentH
;
1416 GetSize(¤tW
, ¤tH
);
1418 // ... and don't do anything (avoiding flicker) if it's already ok
1419 if ( x
== currentX
&& y
== currentY
&&
1420 width
== currentW
&& height
== currentH
)
1423 MacRepositionScrollBars() ; // we might have a real position shift
1427 if ( x
== -1 && !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
1429 if ( y
== -1 && !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
1432 AdjustForParentClientOrigin(x
, y
, sizeFlags
);
1434 wxSize
size(-1, -1);
1437 if ( sizeFlags
& wxSIZE_AUTO_WIDTH
)
1439 size
= DoGetBestSize();
1444 // just take the current one
1451 if ( sizeFlags
& wxSIZE_AUTO_HEIGHT
)
1455 size
= DoGetBestSize();
1457 //else: already called DoGetBestSize() above
1463 // just take the current one
1468 DoMoveWindow(x
, y
, width
, height
);
1472 wxPoint
wxWindowMac::GetClientAreaOrigin() const
1474 RgnHandle rgn
= NewRgn() ;
1476 GetControlRegion( (ControlRef
) m_macControl
, kControlContentMetaPart
, rgn
) ;
1477 GetRegionBounds( rgn
, &content
) ;
1479 #if !TARGET_API_MAC_OSX
1481 GetControlBounds( (ControlRef
) m_macControl
, &structure
) ;
1482 OffsetRect( &content
, -structure
.left
, -structure
.top
) ;
1485 return wxPoint( content
.left
+ MacGetLeftBorderSize( ) , content
.top
+ MacGetTopBorderSize( ) );
1488 void wxWindowMac::DoSetClientSize(int clientwidth
, int clientheight
)
1490 if ( clientheight
!= -1 || clientheight
!= -1 )
1492 int currentclientwidth
, currentclientheight
;
1493 int currentwidth
, currentheight
;
1495 GetClientSize( ¤tclientwidth
, ¤tclientheight
) ;
1496 GetSize( ¤twidth
, ¤theight
) ;
1498 DoSetSize( -1 , -1 , currentwidth
+ clientwidth
- currentclientwidth
,
1499 currentheight
+ clientheight
- currentclientheight
, wxSIZE_USE_EXISTING
) ;
1503 void wxWindowMac::SetTitle(const wxString
& title
)
1505 m_label
= wxStripMenuCodes(title
) ;
1509 UMASetControlTitle( (ControlRef
) m_macControl
, m_label
, m_font
.GetEncoding() ) ;
1514 wxString
wxWindowMac::GetTitle() const
1519 bool wxWindowMac::Show(bool show
)
1521 if ( !wxWindowBase::Show(show
) )
1524 // TODO use visibilityChanged Carbon Event for OSX
1525 bool former
= MacIsReallyShown() ;
1527 SetControlVisibility( (ControlRef
) m_macControl
, show
, true ) ;
1528 if ( former
!= MacIsReallyShown() )
1529 MacPropagateVisibilityChanged() ;
1533 bool wxWindowMac::Enable(bool enable
)
1535 wxASSERT( m_macControl
!= NULL
) ;
1536 if ( !wxWindowBase::Enable(enable
) )
1539 bool former
= MacIsReallyEnabled() ;
1541 EnableControl( (ControlRef
) m_macControl
) ;
1543 DisableControl( (ControlRef
) m_macControl
) ;
1545 if ( former
!= MacIsReallyEnabled() )
1546 MacPropagateEnabledStateChanged() ;
1551 // status change propagations (will be not necessary for OSX later )
1554 void wxWindowMac::MacPropagateVisibilityChanged()
1556 #if !TARGET_API_MAC_OSX
1557 MacVisibilityChanged() ;
1559 wxWindowListNode
*node
= GetChildren().GetFirst();
1562 wxWindowMac
*child
= node
->GetData();
1563 if ( child
->IsShown() )
1564 child
->MacPropagateVisibilityChanged( ) ;
1565 node
= node
->GetNext();
1570 void wxWindowMac::MacPropagateEnabledStateChanged( )
1572 #if !TARGET_API_MAC_OSX
1573 MacEnabledStateChanged() ;
1575 wxWindowListNode
*node
= GetChildren().GetFirst();
1578 wxWindowMac
*child
= node
->GetData();
1579 if ( child
->IsEnabled() )
1580 child
->MacPropagateEnabledStateChanged() ;
1581 node
= node
->GetNext();
1586 void wxWindowMac::MacPropagateHiliteChanged( )
1588 #if !TARGET_API_MAC_OSX
1589 MacHiliteChanged() ;
1591 wxWindowListNode
*node
= GetChildren().GetFirst();
1594 wxWindowMac
*child
= node
->GetData();
1595 // if ( child->IsEnabled() )
1596 child
->MacPropagateHiliteChanged() ;
1597 node
= node
->GetNext();
1603 // status change notifications
1606 void wxWindowMac::MacVisibilityChanged()
1610 void wxWindowMac::MacHiliteChanged()
1614 void wxWindowMac::MacEnabledStateChanged()
1619 // status queries on the inherited window's state
1622 bool wxWindowMac::MacIsReallyShown()
1624 // only under OSX the visibility of the TLW is taken into account
1625 #if TARGET_API_MAC_OSX
1626 return IsControlVisible( (ControlRef
) m_macControl
) ;
1628 wxWindow
* win
= this ;
1629 while( win
->IsShown() )
1631 if ( win
->IsTopLevel() )
1634 win
= win
->GetParent() ;
1643 bool wxWindowMac::MacIsReallyEnabled()
1645 return IsControlEnabled( (ControlRef
) m_macControl
) ;
1648 bool wxWindowMac::MacIsReallyHilited()
1650 return IsControlActive( (ControlRef
) m_macControl
) ;
1657 int wxWindowMac::GetCharHeight() const
1659 wxClientDC
dc ( (wxWindowMac
*)this ) ;
1660 return dc
.GetCharHeight() ;
1663 int wxWindowMac::GetCharWidth() const
1665 wxClientDC
dc ( (wxWindowMac
*)this ) ;
1666 return dc
.GetCharWidth() ;
1669 void wxWindowMac::GetTextExtent(const wxString
& string
, int *x
, int *y
,
1670 int *descent
, int *externalLeading
, const wxFont
*theFont
) const
1672 const wxFont
*fontToUse
= theFont
;
1674 fontToUse
= &m_font
;
1676 wxClientDC
dc( (wxWindowMac
*) this ) ;
1678 dc
.GetTextExtent( string
, &lx
, &ly
, &ld
, &le
, (wxFont
*)fontToUse
) ;
1679 if ( externalLeading
)
1680 *externalLeading
= le
;
1690 * Rect is given in client coordinates, for further reading, read wxTopLevelWindowMac::InvalidateRect
1691 * we always intersect with the entire window, not only with the client area
1694 void wxWindowMac::Refresh(bool eraseBack
, const wxRect
*rect
)
1696 #if TARGET_API_MAC_OSX
1697 HIViewSetNeedsDisplay( (ControlRef
) m_macControl
, true ) ;
1699 if ( IsControlVisible( (ControlRef
) m_macControl
) )
1701 SetControlVisibility( (ControlRef
) m_macControl
, false , false ) ;
1702 SetControlVisibility( (ControlRef
) m_macControl
, true , true ) ;
1705 if ( MacGetTopLevelWindow() == NULL )
1708 if ( !IsControlVisible( (ControlRef) m_macControl ) )
1711 wxPoint client = GetClientAreaOrigin();
1714 int x2 = m_width - client.x;
1715 int y2 = m_height - client.y;
1717 if (IsKindOf( CLASSINFO(wxButton)))
1719 // buttons have an "aura"
1726 Rect clientrect = { y1, x1, y2, x2 };
1730 Rect r = { rect->y , rect->x , rect->y + rect->height , rect->x + rect->width } ;
1731 SectRect( &clientrect , &r , &clientrect ) ;
1734 if ( !EmptyRect( &clientrect ) )
1736 int top = 0 , left = 0 ;
1738 MacClientToRootWindow( &left , &top ) ;
1739 OffsetRect( &clientrect , left , top ) ;
1741 MacGetTopLevelWindow()->MacInvalidate( &clientrect , eraseBack ) ;
1747 void wxWindowMac::MacRedrawControl()
1750 if ( (ControlRef) m_macControl && MacGetTopLevelWindowRef() && IsControlVisible( (ControlRef) m_macControl ) )
1752 #if TARGET_API_MAC_CARBON
1755 wxClientDC dc(this) ;
1756 wxMacPortSetter helper(&dc) ;
1757 wxMacWindowClipper clipper(this) ;
1758 wxDC::MacSetupBackgroundForCurrentPort( MacGetBackgroundBrush() ) ;
1759 UMADrawControl( (ControlRef) m_macControl ) ;
1766 void wxWindowMac::OnPaint(wxPaintEvent& event)
1768 // why don't we skip that here ?
1772 wxWindowMac
*wxGetActiveWindow()
1774 // actually this is a windows-only concept
1778 // Coordinates relative to the window
1779 void wxWindowMac::WarpPointer (int x_pos
, int y_pos
)
1781 // We really don't move the mouse programmatically under Mac.
1784 void wxWindowMac::OnEraseBackground(wxEraseEvent
& event
)
1786 if ( m_macBackgroundBrush
.Ok() == false || m_macBackgroundBrush
.GetStyle() == wxTRANSPARENT
)
1791 event
.GetDC()->Clear() ;
1794 void wxWindowMac::OnNcPaint( wxNcPaintEvent
& event
)
1796 wxWindowDC
dc(this) ;
1797 wxMacPortSetter
helper(&dc
) ;
1799 MacPaintBorders( dc
.m_macLocalOrigin
.x
, dc
.m_macLocalOrigin
.y
) ;
1802 int wxWindowMac::GetScrollPos(int orient
) const
1804 if ( orient
== wxHORIZONTAL
)
1807 return m_hScrollBar
->GetThumbPosition() ;
1812 return m_vScrollBar
->GetThumbPosition() ;
1817 // This now returns the whole range, not just the number
1818 // of positions that we can scroll.
1819 int wxWindowMac::GetScrollRange(int orient
) const
1821 if ( orient
== wxHORIZONTAL
)
1824 return m_hScrollBar
->GetRange() ;
1829 return m_vScrollBar
->GetRange() ;
1834 int wxWindowMac::GetScrollThumb(int orient
) const
1836 if ( orient
== wxHORIZONTAL
)
1839 return m_hScrollBar
->GetThumbSize() ;
1844 return m_vScrollBar
->GetThumbSize() ;
1849 void wxWindowMac::SetScrollPos(int orient
, int pos
, bool refresh
)
1851 if ( orient
== wxHORIZONTAL
)
1854 m_hScrollBar
->SetThumbPosition( pos
) ;
1859 m_vScrollBar
->SetThumbPosition( pos
) ;
1863 void wxWindowMac::MacPaintBorders( int left
, int top
)
1869 wxGetOsVersion( &major
, &minor
);
1871 RGBColor white
= { 0xFFFF, 0xFFFF , 0xFFFF } ;
1872 RGBColor face
= { 0xDDDD, 0xDDDD , 0xDDDD } ;
1874 RGBColor darkShadow
= { 0x0000, 0x0000 , 0x0000 } ;
1875 RGBColor lightShadow
= { 0x4444, 0x4444 , 0x4444 } ;
1876 // OS X has lighter border edges than classic:
1879 darkShadow
.red
= 0x8E8E;
1880 darkShadow
.green
= 0x8E8E;
1881 darkShadow
.blue
= 0x8E8E;
1882 lightShadow
.red
= 0xBDBD;
1883 lightShadow
.green
= 0xBDBD;
1884 lightShadow
.blue
= 0xBDBD;
1890 GetSize( &w
, &h
) ;
1891 if (HasFlag(wxRAISED_BORDER
) || HasFlag( wxSUNKEN_BORDER
) || HasFlag(wxDOUBLE_BORDER
) )
1893 #if wxMAC_USE_THEME_BORDER
1894 Rect rect
= { top
, left
, m_height
+ top
, m_width
+ left
} ;
1897 GetThemeMetric( kThemeMetricListBoxFrameOutset , &border ) ;
1898 InsetRect( &rect , border , border );
1899 DrawThemeListBoxFrame(&rect,IsEnabled() ? kThemeStateActive : kThemeStateInactive) ;
1902 DrawThemePrimaryGroup(&rect
,IsEnabled() ? kThemeStateActive
: kThemeStateInactive
) ;
1904 bool sunken
= HasFlag( wxSUNKEN_BORDER
) ;
1905 RGBForeColor( &face
);
1906 MoveTo( left
+ 0 , top
+ h
- 2 );
1907 LineTo( left
+ 0 , top
+ 0 );
1908 LineTo( left
+ w
- 2 , top
+ 0 );
1910 MoveTo( left
+ 2 , top
+ h
- 3 );
1911 LineTo( left
+ w
- 3 , top
+ h
- 3 );
1912 LineTo( left
+ w
- 3 , top
+ 2 );
1914 RGBForeColor( sunken
? &face
: &darkShadow
);
1915 MoveTo( left
+ 0 , top
+ h
- 1 );
1916 LineTo( left
+ w
- 1 , top
+ h
- 1 );
1917 LineTo( left
+ w
- 1 , top
+ 0 );
1919 RGBForeColor( sunken
? &lightShadow
: &white
);
1920 MoveTo( left
+ 1 , top
+ h
- 3 );
1921 LineTo( left
+ 1, top
+ 1 );
1922 LineTo( left
+ w
- 3 , top
+ 1 );
1924 RGBForeColor( sunken
? &white
: &lightShadow
);
1925 MoveTo( left
+ 1 , top
+ h
- 2 );
1926 LineTo( left
+ w
- 2 , top
+ h
- 2 );
1927 LineTo( left
+ w
- 2 , top
+ 1 );
1929 RGBForeColor( sunken
? &darkShadow
: &face
);
1930 MoveTo( left
+ 2 , top
+ h
- 4 );
1931 LineTo( left
+ 2 , top
+ 2 );
1932 LineTo( left
+ w
- 4 , top
+ 2 );
1935 else if (HasFlag(wxSIMPLE_BORDER
))
1937 Rect rect
= { top
, left
, h
+ top
, w
+ left
} ;
1938 RGBForeColor( &darkShadow
) ;
1939 FrameRect( &rect
) ;
1943 void wxWindowMac::RemoveChild( wxWindowBase
*child
)
1945 if ( child
== m_hScrollBar
)
1946 m_hScrollBar
= NULL
;
1947 if ( child
== m_vScrollBar
)
1948 m_vScrollBar
= NULL
;
1950 wxWindowBase::RemoveChild( child
) ;
1953 // New function that will replace some of the above.
1954 void wxWindowMac::SetScrollbar(int orient
, int pos
, int thumbVisible
,
1955 int range
, bool refresh
)
1957 if ( orient
== wxHORIZONTAL
)
1961 if ( range
== 0 || thumbVisible
>= range
)
1963 if ( m_hScrollBar
->IsShown() )
1964 m_hScrollBar
->Show(false) ;
1968 if ( !m_hScrollBar
->IsShown() )
1969 m_hScrollBar
->Show(true) ;
1970 m_hScrollBar
->SetScrollbar( pos
, thumbVisible
, range
, thumbVisible
, refresh
) ;
1978 if ( range
== 0 || thumbVisible
>= range
)
1980 if ( m_vScrollBar
->IsShown() )
1981 m_vScrollBar
->Show(false) ;
1985 if ( !m_vScrollBar
->IsShown() )
1986 m_vScrollBar
->Show(true) ;
1987 m_vScrollBar
->SetScrollbar( pos
, thumbVisible
, range
, thumbVisible
, refresh
) ;
1991 MacRepositionScrollBars() ;
1994 // Does a physical scroll
1995 void wxWindowMac::ScrollWindow(int dx
, int dy
, const wxRect
*rect
)
1997 if( dx
== 0 && dy
==0 )
2002 wxClientDC
dc(this) ;
2003 wxMacPortSetter
helper(&dc
) ;
2005 int width
, height
;
2006 GetClientSize( &width
, &height
) ;
2013 // TODO take out the boundaries
2014 GetControlBounds( (ControlRef
) m_macControl
, &scrollrect
);
2016 RgnHandle updateRgn
= NewRgn() ;
2019 Rect r
= { dc
.YLOG2DEVMAC(rect
->y
) , dc
.XLOG2DEVMAC(rect
->x
) , dc
.YLOG2DEVMAC(rect
->y
+ rect
->height
) ,
2020 dc
.XLOG2DEVMAC(rect
->x
+ rect
->width
) } ;
2021 SectRect( &scrollrect
, &r
, &scrollrect
) ;
2023 ScrollRect( &scrollrect
, dx
, dy
, updateRgn
) ;
2025 //KO: The docs say ScrollRect creates an update region, which thus calls an update event
2026 // but it seems the update only refreshes the background of the control, rather than calling
2027 // kEventControlDraw, so we need to force a proper update here. There has to be a better
2028 // way of doing this... (Note that code below under !TARGET_CARBON does not work either...)
2031 // we also have to scroll the update rgn in this rectangle
2032 // in order not to loose updates
2034 WindowRef rootWindow
= (WindowRef
) MacGetTopLevelWindowRef() ;
2035 RgnHandle formerUpdateRgn
= NewRgn() ;
2036 RgnHandle scrollRgn
= NewRgn() ;
2037 RectRgn( scrollRgn
, &scrollrect
) ;
2038 GetWindowUpdateRgn( rootWindow
, formerUpdateRgn
) ;
2040 LocalToGlobal( &pt
) ;
2041 OffsetRgn( formerUpdateRgn
, -pt
.h
, -pt
.v
) ;
2042 SectRgn( formerUpdateRgn
, scrollRgn
, formerUpdateRgn
) ;
2043 if ( !EmptyRgn( formerUpdateRgn
) )
2045 MacOffsetRgn( formerUpdateRgn
, dx
, dy
) ;
2046 SectRgn( formerUpdateRgn
, scrollRgn
, formerUpdateRgn
) ;
2047 InvalWindowRgn(rootWindow
, formerUpdateRgn
) ;
2049 InvalWindowRgn(rootWindow
, updateRgn
) ;
2050 DisposeRgn( updateRgn
) ;
2051 DisposeRgn( formerUpdateRgn
) ;
2052 DisposeRgn( scrollRgn
) ;
2056 for (wxWindowListNode
*node
= GetChildren().GetFirst(); node
; node
= node
->GetNext())
2058 wxWindowMac
*child
= node
->GetData();
2059 if (child
== m_vScrollBar
) continue;
2060 if (child
== m_hScrollBar
) continue;
2061 if (child
->IsTopLevel()) continue;
2064 child
->GetPosition( &x
, &y
);
2066 child
->GetSize( &w
, &h
);
2070 if (rect
->Intersects(rc
))
2071 child
->SetSize( x
+dx
, y
+dy
, w
, h
);
2075 child
->SetSize( x
+dx
, y
+dy
, w
, h
);
2079 // TODO remove, was moved higher up Update() ;
2083 void wxWindowMac::MacOnScroll(wxScrollEvent
&event
)
2085 if ( event
.m_eventObject
== m_vScrollBar
|| event
.m_eventObject
== m_hScrollBar
)
2087 wxScrollWinEvent wevent
;
2088 wevent
.SetPosition(event
.GetPosition());
2089 wevent
.SetOrientation(event
.GetOrientation());
2090 wevent
.m_eventObject
= this;
2092 if (event
.m_eventType
== wxEVT_SCROLL_TOP
)
2093 wevent
.m_eventType
= wxEVT_SCROLLWIN_TOP
;
2094 else if (event
.m_eventType
== wxEVT_SCROLL_BOTTOM
)
2095 wevent
.m_eventType
= wxEVT_SCROLLWIN_BOTTOM
;
2096 else if (event
.m_eventType
== wxEVT_SCROLL_LINEUP
)
2097 wevent
.m_eventType
= wxEVT_SCROLLWIN_LINEUP
;
2098 else if (event
.m_eventType
== wxEVT_SCROLL_LINEDOWN
)
2099 wevent
.m_eventType
= wxEVT_SCROLLWIN_LINEDOWN
;
2100 else if (event
.m_eventType
== wxEVT_SCROLL_PAGEUP
)
2101 wevent
.m_eventType
= wxEVT_SCROLLWIN_PAGEUP
;
2102 else if (event
.m_eventType
== wxEVT_SCROLL_PAGEDOWN
)
2103 wevent
.m_eventType
= wxEVT_SCROLLWIN_PAGEDOWN
;
2104 else if (event
.m_eventType
== wxEVT_SCROLL_THUMBTRACK
)
2105 wevent
.m_eventType
= wxEVT_SCROLLWIN_THUMBTRACK
;
2106 else if (event
.m_eventType
== wxEVT_SCROLL_THUMBRELEASE
)
2107 wevent
.m_eventType
= wxEVT_SCROLLWIN_THUMBRELEASE
;
2109 GetEventHandler()->ProcessEvent(wevent
);
2113 // Get the window with the focus
2114 wxWindowMac
*wxWindowBase::FindFocus()
2116 return gFocusWindow
;
2119 void wxWindowMac::OnSetFocus(wxFocusEvent
& event
)
2121 // panel wants to track the window which was the last to have focus in it,
2122 // so we want to set ourselves as the window which last had focus
2124 // notice that it's also important to do it upwards the tree becaus
2125 // otherwise when the top level panel gets focus, it won't set it back to
2126 // us, but to some other sibling
2128 // CS:don't know if this is still needed:
2129 //wxChildFocusEvent eventFocus(this);
2130 //(void)GetEventHandler()->ProcessEvent(eventFocus);
2135 void wxWindowMac::OnInternalIdle()
2137 // This calls the UI-update mechanism (querying windows for
2138 // menu/toolbar/control state information)
2139 if (wxUpdateUIEvent::CanUpdate(this))
2140 UpdateWindowUI(wxUPDATE_UI_FROMIDLE
);
2143 // Raise the window to the top of the Z order
2144 void wxWindowMac::Raise()
2148 // Lower the window to the bottom of the Z order
2149 void wxWindowMac::Lower()
2154 // static wxWindow *gs_lastWhich = NULL;
2156 bool wxWindowMac::MacSetupCursor( const wxPoint
& pt
)
2158 // first trigger a set cursor event
2160 wxPoint clientorigin
= GetClientAreaOrigin() ;
2161 wxSize clientsize
= GetClientSize() ;
2163 if ( wxRect2DInt( clientorigin
.x
, clientorigin
.y
, clientsize
.x
, clientsize
.y
).Contains( wxPoint2DInt( pt
) ) )
2165 wxSetCursorEvent
event( pt
.x
, pt
.y
);
2167 bool processedEvtSetCursor
= GetEventHandler()->ProcessEvent(event
);
2168 if ( processedEvtSetCursor
&& event
.HasCursor() )
2170 cursor
= event
.GetCursor() ;
2175 // the test for processedEvtSetCursor is here to prevent using m_cursor
2176 // if the user code caught EVT_SET_CURSOR() and returned nothing from
2177 // it - this is a way to say that our cursor shouldn't be used for this
2179 if ( !processedEvtSetCursor
&& m_cursor
.Ok() )
2189 cursor
= *wxSTANDARD_CURSOR
;
2193 cursor
.MacInstall() ;
2195 return cursor
.Ok() ;
2198 wxString
wxWindowMac::MacGetToolTipString( wxPoint
&pt
)
2202 return m_tooltip
->GetTip() ;
2204 return wxEmptyString
;
2207 void wxWindowMac::Update()
2209 #if TARGET_API_MAC_OSX
2210 HIViewSetNeedsDisplay( (ControlRef
) m_macControl
, true ) ;
2212 ::Draw1Control( (ControlRef
) m_macControl
) ;
2216 wxTopLevelWindowMac
* wxWindowMac::MacGetTopLevelWindow() const
2218 wxTopLevelWindowMac
* win
= NULL
;
2219 WindowRef window
= (WindowRef
) MacGetTopLevelWindowRef() ;
2222 win
= wxFindWinFromMacWindow( window
) ;
2226 wxRegion
wxWindowMac::MacGetVisibleRegion( bool includeOuterStructures
)
2230 RgnHandle visRgn
= NewRgn() ;
2231 RgnHandle tempRgn
= NewRgn() ;
2232 if ( IsControlVisible( (ControlRef
) m_macControl
) )
2234 GetControlBounds( (ControlRef
) m_macControl
, &r
) ;
2235 if (! MacGetTopLevelWindow()->MacUsesCompositing() )
2237 MacRootWindowToWindow( &r
.left
, & r
.top
) ;
2238 MacRootWindowToWindow( &r
.right
, & r
.bottom
) ;
2247 if ( includeOuterStructures
)
2248 InsetRect( &r
, -3 , -3 ) ;
2249 RectRgn( visRgn
, &r
) ;
2250 if ( !IsTopLevel() )
2252 wxWindow
* child
= this ;
2253 wxWindow
* parent
= child
->GetParent() ;
2258 // we have to find a better clipping algorithm here, in order not to clip things
2259 // positioned like status and toolbar
2260 if ( 1 /* parent->IsTopLevel() && child->IsKindOf( CLASSINFO( wxToolBar ) ) */ )
2262 size
= parent
->GetSize() ;
2267 size
= parent
->GetClientSize() ;
2268 wxPoint origin
= parent
->GetClientAreaOrigin() ;
2272 parent
->MacWindowToRootWindow( &x
, &y
) ;
2273 MacRootWindowToWindow( &x
, &y
) ;
2275 SetRectRgn( tempRgn
,
2276 x
+ parent
->MacGetLeftBorderSize() , y
+ parent
->MacGetTopBorderSize() ,
2277 x
+ size
.x
- parent
->MacGetRightBorderSize(),
2278 y
+ size
.y
- parent
->MacGetBottomBorderSize()) ;
2280 SectRgn( visRgn
, tempRgn
, visRgn
) ;
2281 if ( parent
->IsTopLevel() )
2284 parent
= child
->GetParent() ;
2289 wxRegion vis
= visRgn
;
2290 DisposeRgn( visRgn
) ;
2291 DisposeRgn( tempRgn
) ;
2296 This function must not change the updatergn !
2298 bool wxWindowMac::MacDoRedraw( WXHRGN updatergnr
, long time
)
2300 RgnHandle updatergn
= (RgnHandle
) updatergnr
;
2301 bool handled
= false ;
2303 // calculate a client-origin version of the update rgn and set m_updateRegion to that
2305 RgnHandle newupdate
= NewRgn() ;
2306 wxSize point
= GetClientSize() ;
2307 wxPoint origin
= GetClientAreaOrigin() ;
2308 SetRectRgn( newupdate
, origin
.x
, origin
.y
, origin
.x
+ point
.x
, origin
.y
+point
.y
) ;
2309 SectRgn( newupdate
, updatergn
, newupdate
) ;
2310 OffsetRgn( newupdate
, -origin
.x
, -origin
.y
) ;
2311 m_updateRegion
= newupdate
;
2312 DisposeRgn( newupdate
) ;
2315 if ( !EmptyRgn(updatergn
) )
2317 wxWindowDC
dc(this);
2318 if (!EmptyRgn(updatergn
))
2319 dc
.SetClippingRegion(wxRegion(updatergn
));
2321 wxEraseEvent
eevent( GetId(), &dc
);
2322 eevent
.SetEventObject( this );
2323 GetEventHandler()->ProcessEvent( eevent
);
2325 if ( !m_updateRegion
.Empty() )
2327 // paint the window itself
2329 event
.m_timeStamp
= time
;
2330 event
.SetEventObject(this);
2331 handled
= GetEventHandler()->ProcessEvent(event
);
2333 // paint custom borders
2334 wxNcPaintEvent
eventNc( GetId() );
2335 eventNc
.SetEventObject( this );
2336 GetEventHandler()->ProcessEvent( eventNc
);
2342 void wxWindowMac::MacRedraw( WXHRGN updatergnr
, long time
, bool erase
)
2344 RgnHandle updatergn
= (RgnHandle
) updatergnr
;
2345 // updatergn is always already clipped to our boundaries
2346 // if we are in compositing mode then it is in relative to the upper left of the control
2347 // if we are in non-compositing, then it is relatvie to the uppder left of the content area
2348 // of the toplevel window
2349 // it is in window coordinates, not in client coordinates
2351 // ownUpdateRgn is the area that this window has to repaint, it is in window coordinates
2352 RgnHandle ownUpdateRgn
= NewRgn() ;
2353 CopyRgn( updatergn
, ownUpdateRgn
) ;
2355 if ( MacGetTopLevelWindow()->MacUsesCompositing() == false )
2358 UMAGetControlBoundsInWindowCoords( (ControlRef
)m_macControl
, &bounds
);
2359 RgnHandle controlRgn
= NewRgn();
2360 RectRgn( controlRgn
, &bounds
);
2361 //KO: This sets the ownUpdateRgn to the area of this control that is inside
2362 // the window update region
2363 SectRgn( ownUpdateRgn
, controlRgn
, ownUpdateRgn
);
2364 DisposeRgn( controlRgn
);
2366 //KO: convert ownUpdateRgn to local coordinates
2367 OffsetRgn( ownUpdateRgn
, -bounds
.left
, -bounds
.top
);
2370 MacDoRedraw( ownUpdateRgn
, time
) ;
2371 DisposeRgn( ownUpdateRgn
) ;
2375 WXWindow
wxWindowMac::MacGetTopLevelWindowRef() const
2377 wxWindowMac
*iter
= (wxWindowMac
*)this ;
2381 if ( iter
->IsTopLevel() )
2382 return ((wxTopLevelWindow
*)iter
)->MacGetWindowRef() ;
2384 iter
= iter
->GetParent() ;
2386 wxASSERT_MSG( 1 , wxT("No valid mac root window") ) ;
2390 void wxWindowMac::MacCreateScrollBars( long style
)
2392 wxASSERT_MSG( m_vScrollBar
== NULL
&& m_hScrollBar
== NULL
, wxT("attempt to create window twice") ) ;
2394 bool hasBoth
= ( style
& wxVSCROLL
) && ( style
& wxHSCROLL
) ;
2395 int adjust
= hasBoth
? MAC_SCROLLBAR_SIZE
- 1: 0 ;
2397 GetClientSize( &width
, &height
) ;
2399 wxPoint
vPoint(width
-MAC_SCROLLBAR_SIZE
, 0) ;
2400 wxSize
vSize(MAC_SCROLLBAR_SIZE
, height
- adjust
) ;
2401 wxPoint
hPoint(0 , height
-MAC_SCROLLBAR_SIZE
) ;
2402 wxSize
hSize( width
- adjust
, MAC_SCROLLBAR_SIZE
) ;
2404 m_vScrollBar
= new wxScrollBar(this, wxWINDOW_VSCROLL
, vPoint
,
2405 vSize
, wxVERTICAL
);
2407 if ( style
& wxVSCROLL
)
2413 m_vScrollBar
->Show(false) ;
2415 m_hScrollBar
= new wxScrollBar(this, wxWINDOW_HSCROLL
, hPoint
,
2416 hSize
, wxHORIZONTAL
);
2417 if ( style
& wxHSCROLL
)
2422 m_hScrollBar
->Show(false) ;
2425 // because the create does not take into account the client area origin
2426 MacRepositionScrollBars() ; // we might have a real position shift
2429 void wxWindowMac::MacRepositionScrollBars()
2431 bool hasBoth
= ( m_hScrollBar
&& m_hScrollBar
->IsShown()) && ( m_vScrollBar
&& m_vScrollBar
->IsShown()) ;
2432 int adjust
= hasBoth
? MAC_SCROLLBAR_SIZE
- 1 : 0 ;
2434 // get real client area
2438 GetSize( &width
, &height
) ;
2440 width
-= MacGetLeftBorderSize() + MacGetRightBorderSize();
2441 height
-= MacGetTopBorderSize() + MacGetBottomBorderSize();
2443 wxPoint
vPoint(width
-MAC_SCROLLBAR_SIZE
, 0) ;
2444 wxSize
vSize(MAC_SCROLLBAR_SIZE
, height
- adjust
) ;
2445 wxPoint
hPoint(0 , height
-MAC_SCROLLBAR_SIZE
) ;
2446 wxSize
hSize( width
- adjust
, MAC_SCROLLBAR_SIZE
) ;
2452 GetSize( &w
, &h
) ;
2454 MacClientToRootWindow( &x
, &y
) ;
2455 MacClientToRootWindow( &w
, &h
) ;
2457 wxWindowMac
*iter
= (wxWindowMac
*)this ;
2459 int totW
= 10000 , totH
= 10000;
2462 if ( iter
->IsTopLevel() )
2464 iter
->GetSize( &totW
, &totH
) ;
2468 iter
= iter
->GetParent() ;
2496 m_vScrollBar
->SetSize( vPoint
.x
, vPoint
.y
, vSize
.x
, vSize
.y
, wxSIZE_ALLOW_MINUS_ONE
);
2500 m_hScrollBar
->SetSize( hPoint
.x
, hPoint
.y
, hSize
.x
, hSize
.y
, wxSIZE_ALLOW_MINUS_ONE
);
2504 bool wxWindowMac::AcceptsFocus() const
2506 return MacCanFocus() && wxWindowBase::AcceptsFocus();
2509 void wxWindowMac::MacSuperChangedPosition()
2511 // only window-absolute structures have to be moved i.e. controls
2513 wxWindowListNode
*node
= GetChildren().GetFirst();
2516 wxWindowMac
*child
= node
->GetData();
2517 child
->MacSuperChangedPosition() ;
2518 node
= node
->GetNext();
2522 void wxWindowMac::MacTopLevelWindowChangedPosition()
2524 // only screen-absolute structures have to be moved i.e. glcanvas
2526 wxWindowListNode
*node
= GetChildren().GetFirst();
2529 wxWindowMac
*child
= node
->GetData();
2530 child
->MacTopLevelWindowChangedPosition() ;
2531 node
= node
->GetNext();
2535 long wxWindowMac::MacGetLeftBorderSize( ) const
2540 if (m_windowStyle
& wxRAISED_BORDER
|| m_windowStyle
& wxSUNKEN_BORDER
)
2543 #if wxMAC_USE_THEME_BORDER
2544 GetThemeMetric( kThemeMetricListBoxFrameOutset
, &border
) ;
2548 else if ( m_windowStyle
&wxDOUBLE_BORDER
)
2551 #if wxMAC_USE_THEME_BORDER
2552 GetThemeMetric( kThemeMetricListBoxFrameOutset
, &border
) ;
2556 else if (m_windowStyle
&wxSIMPLE_BORDER
)
2563 long wxWindowMac::MacGetRightBorderSize( ) const
2565 // they are all symmetric in mac themes
2566 return MacGetLeftBorderSize() ;
2569 long wxWindowMac::MacGetTopBorderSize( ) const
2571 // they are all symmetric in mac themes
2572 return MacGetLeftBorderSize() ;
2575 long wxWindowMac::MacGetBottomBorderSize( ) const
2577 // they are all symmetric in mac themes
2578 return MacGetLeftBorderSize() ;
2581 long wxWindowMac::MacRemoveBordersFromStyle( long style
)
2583 return style
& ~( wxDOUBLE_BORDER
| wxSUNKEN_BORDER
| wxRAISED_BORDER
| wxBORDER
| wxSTATIC_BORDER
) ;
2586 // Find the wxWindowMac at the current mouse position, returning the mouse
2588 wxWindowMac
* wxFindWindowAtPointer(wxPoint
& pt
)
2590 pt
= wxGetMousePosition();
2591 wxWindowMac
* found
= wxFindWindowAtPoint(pt
);
2595 // Get the current mouse position.
2596 wxPoint
wxGetMousePosition()
2599 wxGetMousePosition(& x
, & y
);
2600 return wxPoint(x
, y
);
2603 void wxWindowMac::OnMouseEvent( wxMouseEvent
&event
)
2605 if ( event
.GetEventType() == wxEVT_RIGHT_DOWN
)
2607 // copied from wxGTK : CS
2608 // generate a "context menu" event: this is similar to wxEVT_RIGHT_DOWN
2611 // (a) it's a command event and so is propagated to the parent
2612 // (b) under MSW it can be generated from kbd too
2613 // (c) it uses screen coords (because of (a))
2614 wxContextMenuEvent
evtCtx(wxEVT_CONTEXT_MENU
,
2616 this->ClientToScreen(event
.GetPosition()));
2617 if ( ! GetEventHandler()->ProcessEvent(evtCtx
) )
2620 else if (event
.GetEventType() == wxEVT_LEFT_DOWN
|| event
.GetEventType() == wxEVT_LEFT_DCLICK
)
2626 if ( MacGetTopLevelWindow()->MacUsesCompositing() == false )
2628 // OS Needs it in tlw content area coordinates
2629 MacClientToRootWindow( &x
, &y
) ;
2633 // OS Needs it in window not client coordinates
2634 wxPoint origin
= GetClientAreaOrigin() ;
2639 SInt16 controlpart
;
2644 short modifiers
= 0;
2646 if ( !event
.m_leftDown
&& !event
.m_rightDown
)
2647 modifiers
|= btnState
;
2649 if ( event
.m_shiftDown
)
2650 modifiers
|= shiftKey
;
2652 if ( event
.m_controlDown
)
2653 modifiers
|= controlKey
;
2655 if ( event
.m_altDown
)
2656 modifiers
|= optionKey
;
2658 if ( event
.m_metaDown
)
2659 modifiers
|= cmdKey
;
2661 bool handled
= false ;
2663 if ( ::IsControlActive( (ControlRef
) m_macControl
) )
2665 controlpart
= ::HandleControlClick( (ControlRef
) m_macControl
, localwhere
, modifiers
, (ControlActionUPP
) -1 ) ;
2666 wxTheApp
->s_lastMouseDown
= 0 ;
2667 if ( controlpart
!= kControlNoPart
)
2669 MacHandleControlClick((WXWidget
) (ControlRef
) m_macControl
, controlpart
, false /* mouse not down anymore */ ) ;
2682 void wxWindowMac::MacHandleControlClick( WXWidget control
, wxInt16 controlpart
, bool WXUNUSED( mouseStillDown
) )
2684 wxASSERT_MSG( (ControlRef
) m_macControl
!= NULL
, wxT("No valid mac control") ) ;
2687 Rect
wxMacGetBoundsForControl( wxWindow
* window
, const wxPoint
& pos
, const wxSize
&size
)
2691 window
->MacGetBoundsForControl( pos
, size
, x
, y
, w
, h
) ;
2692 Rect bounds
= { y
, x
, y
+h
, x
+w
};