1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/osx/window_osx.cpp
3 // Purpose: wxWindowMac
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
14 #include "wx/window.h"
23 #include "wx/dcclient.h"
24 #include "wx/button.h"
26 #include "wx/dialog.h"
27 #include "wx/settings.h"
28 #include "wx/msgdlg.h"
29 #include "wx/scrolbar.h"
30 #include "wx/statbox.h"
31 #include "wx/textctrl.h"
32 #include "wx/toolbar.h"
33 #include "wx/layout.h"
34 #include "wx/statusbr.h"
35 #include "wx/menuitem.h"
36 #include "wx/treectrl.h"
37 #include "wx/listctrl.h"
40 #include "wx/tooltip.h"
41 #include "wx/spinctrl.h"
42 #include "wx/geometry.h"
45 #include "wx/listctrl.h"
49 #include "wx/treectrl.h"
57 #include "wx/popupwin.h"
60 #if wxUSE_DRAG_AND_DROP
64 #include "wx/graphics.h"
67 #include "wx/osx/uma.h"
69 #include "wx/osx/private.h"
72 #define MAC_SCROLLBAR_SIZE 15
73 #define MAC_SMALL_SCROLLBAR_SIZE 11
77 #ifdef __WXUNIVERSAL__
78 IMPLEMENT_ABSTRACT_CLASS(wxWindowMac
, wxWindowBase
)
81 BEGIN_EVENT_TABLE(wxWindowMac
, wxWindowBase
)
82 EVT_MOUSE_EVENTS(wxWindowMac::OnMouseEvent
)
85 #define wxMAC_DEBUG_REDRAW 0
86 #ifndef wxMAC_DEBUG_REDRAW
87 #define wxMAC_DEBUG_REDRAW 0
90 wxWidgetImplType
* kOSXNoWidgetImpl
= (wxWidgetImplType
*) -1L;
92 #if wxUSE_HOTKEY && wxOSX_USE_COCOA_OR_CARBON
100 wxVector
<wxHotKeyRec
> s_hotkeys
;
104 // ===========================================================================
106 // ===========================================================================
108 // the grow box has to be implemented as an inactive window, so that nothing can direct
111 class WXDLLIMPEXP_CORE wxBlindPlateWindow
: public wxWindow
114 wxBlindPlateWindow() { Init(); }
116 // Old-style constructor (no default values for coordinates to avoid
117 // ambiguity with the new one)
118 wxBlindPlateWindow(wxWindow
*parent
,
119 int x
, int y
, int width
, int height
,
120 long style
= wxTAB_TRAVERSAL
| wxNO_BORDER
,
121 const wxString
& name
= wxPanelNameStr
)
125 Create(parent
, wxID_ANY
, wxPoint(x
, y
), wxSize(width
, height
), style
, name
);
129 wxBlindPlateWindow(wxWindow
*parent
,
130 wxWindowID winid
= wxID_ANY
,
131 const wxPoint
& pos
= wxDefaultPosition
,
132 const wxSize
& size
= wxDefaultSize
,
133 long style
= wxTAB_TRAVERSAL
| wxNO_BORDER
,
134 const wxString
& name
= wxPanelNameStr
)
138 Create(parent
, winid
, pos
, size
, style
, name
);
142 bool Create(wxWindow
*parent
,
143 wxWindowID winid
= wxID_ANY
,
144 const wxPoint
& pos
= wxDefaultPosition
,
145 const wxSize
& size
= wxDefaultSize
,
146 long style
= wxTAB_TRAVERSAL
| wxNO_BORDER
,
147 const wxString
& name
= wxPanelNameStr
)
149 if ( !wxWindow::Create(parent
, winid
, pos
, size
, style
, name
) )
152 // so that non-solid background renders correctly under GTK+:
153 SetThemeEnabled(true);
157 virtual ~wxBlindPlateWindow();
159 virtual bool AcceptsFocus() const
165 // common part of all ctors
170 DECLARE_DYNAMIC_CLASS_NO_COPY(wxBlindPlateWindow
)
171 DECLARE_EVENT_TABLE()
174 wxBlindPlateWindow::~wxBlindPlateWindow()
178 IMPLEMENT_DYNAMIC_CLASS(wxBlindPlateWindow
, wxWindow
)
180 BEGIN_EVENT_TABLE(wxBlindPlateWindow
, wxWindow
)
184 // ----------------------------------------------------------------------------
185 // constructors and such
186 // ----------------------------------------------------------------------------
188 wxWindowMac::wxWindowMac()
193 wxWindowMac::wxWindowMac(wxWindowMac
*parent
,
198 const wxString
& name
)
201 Create(parent
, id
, pos
, size
, style
, name
);
204 void wxWindowMac::Init()
208 m_cgContextRef
= NULL
;
210 // as all windows are created with WS_VISIBLE style...
213 m_hScrollBar
= NULL
;
214 m_vScrollBar
= NULL
;
215 m_hScrollBarAlwaysShown
= false;
216 m_vScrollBarAlwaysShown
= false;
219 m_clipChildren
= false ;
220 m_cachedClippedRectValid
= false ;
221 m_isNativeWindowWrapper
= false;
224 wxWindowMac::~wxWindowMac()
228 #if wxUSE_HOTKEY && wxOSX_USE_COCOA_OR_CARBON
229 for ( int i
= s_hotkeys
.size()-1; i
>=0; -- i
)
231 if ( s_hotkeys
[i
].window
== this )
233 EventHotKeyRef ref
= s_hotkeys
[i
].ref
;
234 s_hotkeys
.erase(s_hotkeys
.begin() + i
);
235 if ( UnregisterEventHotKey(ref
) != noErr
)
237 wxLogLastError(wxT("UnregisterHotKey"));
243 MacInvalidateBorders() ;
245 #ifndef __WXUNIVERSAL__
246 // VS: make sure there's no wxFrame with last focus set to us:
247 for ( wxWindow
*win
= GetParent(); win
; win
= win
->GetParent() )
249 wxFrame
*frame
= wxDynamicCast(win
, wxFrame
);
252 if ( frame
->GetLastFocus() == this )
253 frame
->SetLastFocus(NULL
);
259 // destroy children before destroying this window itself
262 // wxRemoveMacControlAssociation( this ) ;
263 // If we delete an item, we should initialize the parent panel,
264 // because it could now be invalid.
265 wxTopLevelWindow
*tlw
= wxDynamicCast(wxGetTopLevelParent((wxWindow
*)this), wxTopLevelWindow
);
268 if ( tlw
->GetDefaultItem() == (wxButton
*) this)
269 tlw
->SetDefaultItem(NULL
);
272 if ( g_MacLastWindow
== this )
273 g_MacLastWindow
= NULL
;
275 #ifndef __WXUNIVERSAL__
276 wxFrame
* frame
= wxDynamicCast( wxGetTopLevelParent( (wxWindow
*)this ) , wxFrame
) ;
279 if ( frame
->GetLastFocus() == this )
280 frame
->SetLastFocus( NULL
) ;
284 // delete our drop target if we've got one
285 #if wxUSE_DRAG_AND_DROP
286 wxDELETE(m_dropTarget
);
292 WXWidget
wxWindowMac::GetHandle() const
295 return (WXWidget
) GetPeer()->GetWXWidget() ;
299 wxOSXWidgetImpl
* wxWindowMac::GetPeer() const
301 return m_peer
== kOSXNoWidgetImpl
? NULL
: m_peer
;
304 bool wxWindowMac::ShouldCreatePeer() const
306 return m_peer
!= kOSXNoWidgetImpl
;
309 void wxWindowMac::DontCreatePeer()
311 m_peer
= kOSXNoWidgetImpl
;
314 void wxWindowMac::SetWrappingPeer(wxOSXWidgetImpl
* wrapper
)
316 wxOSXWidgetImpl
* inner
= GetPeer();
317 wxASSERT_MSG( inner
!= NULL
&& inner
->IsOk(), "missing or incomplete inner peer" );
318 wxASSERT_MSG( wrapper
!= NULL
&& wrapper
->IsOk(), "missing or incomplete wrapper" );
320 if ( !(inner
!= NULL
&& inner
->IsOk() && wrapper
!= NULL
&& wrapper
->IsOk()) )
323 inner
->RemoveFromParent();
324 wrapper
->InstallEventHandler();
325 wrapper
->Embed(inner
);
329 void wxWindowMac::SetPeer(wxOSXWidgetImpl
* peer
)
333 if ( !GetPeer()->IsRootControl() )
334 GetPeer()->RemoveFromParent();
340 if ( GetPeer() && !GetPeer()->IsRootControl())
342 wxASSERT_MSG( GetPeer()->IsOk() , wxT("The native control must exist already") ) ;
344 if (!GetParent()->GetChildren().Find((wxWindow
*)this))
345 GetParent()->AddChild( this );
347 GetPeer()->InstallEventHandler();
348 GetPeer()->Embed(GetParent()->GetPeer());
350 GetParent()->MacChildAdded() ;
352 // adjust font, controlsize etc
353 GetPeer()->SetControlSize( m_windowVariant
);
355 // in case nothing has been set, use the variant default fonts
357 DoSetWindowVariant( m_windowVariant
);
359 GetPeer()->SetLabel( wxStripMenuCodes(m_label
, wxStrip_Mnemonics
), GetFont().GetEncoding() ) ;
361 // for controls we want to use best size for wxDefaultSize params )
362 if ( !GetPeer()->IsUserPane() )
363 SetInitialSize(GetMinSize());
365 SetCursor( *wxSTANDARD_CURSOR
) ;
369 #if WXWIN_COMPATIBILITY_2_8
371 bool wxWindowMac::MacIsUserPane()
373 return GetPeer() == NULL
|| GetPeer()->IsUserPane();
378 bool wxWindowMac::MacIsUserPane() const
380 return GetPeer() == NULL
|| GetPeer()->IsUserPane();
383 // ---------------------------------------------------------------------------
384 // Utility Routines to move between different coordinate systems
385 // ---------------------------------------------------------------------------
388 * Right now we have the following setup :
389 * a border that is not part of the native control is always outside the
390 * control's border (otherwise we lose all native intelligence, future ways
391 * may be to have a second embedding control responsible for drawing borders
392 * and backgrounds eventually)
393 * so all this border calculations have to be taken into account when calling
394 * native methods or getting native oriented data
395 * so we have three coordinate systems here
396 * wx client coordinates
397 * wx window coordinates (including window frames)
405 bool wxWindowMac::Create(wxWindowMac
*parent
,
410 const wxString
& name
)
412 wxCHECK_MSG( parent
, false, wxT("can't create wxWindowMac without parent") );
414 if ( !CreateBase(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
417 m_windowVariant
= parent
->GetWindowVariant() ;
419 m_hScrollBarAlwaysShown
=
420 m_vScrollBarAlwaysShown
= HasFlag(wxALWAYS_SHOW_SB
);
422 if ( m_peer
!= kOSXNoWidgetImpl
)
424 SetPeer(wxWidgetImpl::CreateUserPane( this, parent
, id
, pos
, size
, style
, GetExtraStyle() ));
425 MacPostControlCreate(pos
, size
) ;
428 #ifndef __WXUNIVERSAL__
429 // Don't give scrollbars to wxControls unless they ask for them
430 if ( (! IsKindOf(CLASSINFO(wxControl
))
432 && ! IsKindOf(CLASSINFO(wxStatusBar
))
435 || (IsKindOf(CLASSINFO(wxControl
)) && ((style
& wxHSCROLL
) || (style
& wxVSCROLL
))))
437 MacCreateScrollBars( style
) ;
441 wxWindowCreateEvent
event((wxWindow
*)this);
442 GetEventHandler()->AddPendingEvent(event
);
447 void wxWindowMac::MacChildAdded()
451 m_vScrollBar
->Raise() ;
453 m_hScrollBar
->Raise() ;
459 void wxWindowMac::MacPostControlCreate(const wxPoint
& WXUNUSED(pos
),
460 const wxSize
& WXUNUSED(size
))
462 // todo remove if refactoring works correctly
464 wxASSERT_MSG( GetPeer() != NULL
&& GetPeer()->IsOk() , wxT("No valid mac control") ) ;
466 if (!GetParent()->GetChildren().Find((wxWindow
*)this))
467 GetParent()->AddChild( this );
469 GetPeer()->InstallEventHandler();
470 GetPeer()->Embed(GetParent()->GetPeer());
472 GetParent()->MacChildAdded() ;
474 // adjust font, controlsize etc
475 DoSetWindowVariant( m_windowVariant
) ;
477 GetPeer()->SetLabel( wxStripMenuCodes(m_label
, wxStrip_Mnemonics
), GetFont().GetEncoding() ) ;
479 // for controls we want to use best size for wxDefaultSize params )
480 if ( !GetPeer()->IsUserPane() )
481 SetInitialSize(size
);
483 SetCursor( *wxSTANDARD_CURSOR
) ;
487 void wxWindowMac::DoSetWindowVariant( wxWindowVariant variant
)
489 // Don't assert, in case we set the window variant before
490 // the window is created
491 // wxASSERT( GetPeer()->IsOk() ) ;
493 m_windowVariant
= variant
;
495 if (GetPeer() == NULL
|| !GetPeer()->IsOk())
498 GetPeer()->SetControlSize( variant
);
502 case wxWINDOW_VARIANT_NORMAL
:
503 static wxFont
sysNormal(wxOSX_SYSTEM_FONT_NORMAL
);
507 case wxWINDOW_VARIANT_SMALL
:
508 static wxFont
sysSmall(wxOSX_SYSTEM_FONT_SMALL
);
512 case wxWINDOW_VARIANT_MINI
:
513 static wxFont
sysMini(wxOSX_SYSTEM_FONT_MINI
);
517 case wxWINDOW_VARIANT_LARGE
:
518 static wxFont
sysLarge(wxOSX_SYSTEM_FONT_NORMAL
);
523 wxFAIL_MSG(wxT("unexpected window variant"));
528 void wxWindowMac::MacUpdateControlFont()
531 GetPeer()->SetFont( GetFont() , GetForegroundColour() , GetWindowStyle() ) ;
533 // do not trigger refreshes upon invisible and possible partly created objects
534 if ( IsShownOnScreen() )
538 bool wxWindowMac::SetFont(const wxFont
& font
)
540 bool retval
= wxWindowBase::SetFont( font
);
542 MacUpdateControlFont() ;
547 bool wxWindowMac::SetForegroundColour(const wxColour
& col
)
549 bool retval
= wxWindowBase::SetForegroundColour( col
);
552 MacUpdateControlFont();
557 bool wxWindowMac::SetBackgroundStyle(wxBackgroundStyle style
)
559 if ( !wxWindowBase::SetBackgroundStyle(style
) )
563 GetPeer()->SetBackgroundStyle(style
);
567 bool wxWindowMac::SetBackgroundColour(const wxColour
& col
)
571 if ( m_backgroundColour
.IsOk() )
572 m_growBox
->SetBackgroundColour(m_backgroundColour
);
574 m_growBox
->SetBackgroundColour(*wxWHITE
);
577 if ( !wxWindowBase::SetBackgroundColour(col
) && m_hasBgCol
)
581 GetPeer()->SetBackgroundColour( col
) ;
586 static bool wxIsWindowOrParentDisabled(wxWindow
* w
)
588 while (w
&& !w
->IsTopLevel())
597 void wxWindowMac::SetFocus()
599 if ( !AcceptsFocus() )
602 if (wxIsWindowOrParentDisabled((wxWindow
*) this))
605 wxWindow
* former
= FindFocus() ;
606 if ( former
== this )
609 GetPeer()->SetFocus() ;
612 void wxWindowMac::OSXSimulateFocusEvents()
614 wxWindow
* former
= FindFocus() ;
615 if ( former
!= NULL
&& former
!= this )
618 wxFocusEvent
event( wxEVT_KILL_FOCUS
, former
->GetId());
619 event
.SetEventObject(former
);
620 event
.SetWindow(this);
621 former
->HandleWindowEvent(event
) ;
625 wxFocusEvent
event(wxEVT_SET_FOCUS
, former
->GetId());
626 event
.SetEventObject(former
);
627 event
.SetWindow(this);
628 former
->HandleWindowEvent(event
);
633 void wxWindowMac::DoCaptureMouse()
635 wxApp::s_captureWindow
= (wxWindow
*) this ;
636 GetPeer()->CaptureMouse() ;
639 wxWindow
* wxWindowBase::GetCapture()
641 return wxApp::s_captureWindow
;
644 void wxWindowMac::DoReleaseMouse()
646 wxApp::s_captureWindow
= NULL
;
648 GetPeer()->ReleaseMouse() ;
651 #if wxUSE_DRAG_AND_DROP
653 void wxWindowMac::SetDropTarget(wxDropTarget
*pDropTarget
)
657 m_dropTarget
= pDropTarget
;
659 GetPeer()->SetDropTarget(m_dropTarget
) ;
664 // Old-style File Manager Drag & Drop
665 void wxWindowMac::DragAcceptFiles(bool WXUNUSED(accept
))
670 // From a wx position / size calculate the appropriate size of the native control
672 bool wxWindowMac::MacGetBoundsForControl(
676 int& w
, int& h
, bool adjustOrigin
) const
678 // the desired size, minus the border pixels gives the correct size of the control
682 w
= WidthDefault( size
.x
);
683 h
= HeightDefault( size
.y
);
685 x
+= MacGetLeftBorderSize() ;
686 y
+= MacGetTopBorderSize() ;
687 w
-= MacGetLeftBorderSize() + MacGetRightBorderSize() ;
688 h
-= MacGetTopBorderSize() + MacGetBottomBorderSize() ;
691 AdjustForParentClientOrigin( x
, y
) ;
693 // this is in window relative coordinate, as this parent may have a border, its physical position is offset by this border
694 if ( GetParent() && !GetParent()->IsTopLevel() )
696 x
-= GetParent()->MacGetLeftBorderSize() ;
697 y
-= GetParent()->MacGetTopBorderSize() ;
703 // Get window size (not client size)
704 void wxWindowMac::DoGetSize(int *x
, int *y
) const
707 GetPeer()->GetSize( width
, height
);
710 *x
= width
+ MacGetLeftBorderSize() + MacGetRightBorderSize() ;
712 *y
= height
+ MacGetTopBorderSize() + MacGetBottomBorderSize() ;
715 // get the position of the bounds of this window in client coordinates of its parent
716 void wxWindowMac::DoGetPosition(int *x
, int *y
) const
720 GetPeer()->GetPosition( x1
, y1
) ;
722 // get the wx window position from the native one
723 x1
-= MacGetLeftBorderSize() ;
724 y1
-= MacGetTopBorderSize() ;
728 wxWindow
*parent
= GetParent();
731 // we must first adjust it to be in window coordinates of the parent,
732 // as otherwise it gets lost by the ClientAreaOrigin fix
733 x1
+= parent
->MacGetLeftBorderSize() ;
734 y1
+= parent
->MacGetTopBorderSize() ;
736 // and now to client coordinates
737 wxPoint
pt(parent
->GetClientAreaOrigin());
749 void wxWindowMac::DoScreenToClient(int *x
, int *y
) const
751 wxNonOwnedWindow
* tlw
= MacGetTopLevelWindow() ;
752 wxCHECK_RET( tlw
, wxT("TopLevel Window missing") ) ;
753 tlw
->GetNonOwnedPeer()->ScreenToWindow( x
, y
);
754 MacRootWindowToWindow( x
, y
) ;
756 wxPoint origin
= GetClientAreaOrigin() ;
763 void wxWindowMac::DoClientToScreen(int *x
, int *y
) const
765 wxNonOwnedWindow
* tlw
= MacGetTopLevelWindow() ;
766 wxCHECK_RET( tlw
, wxT("TopLevel window missing") ) ;
768 wxPoint origin
= GetClientAreaOrigin() ;
774 MacWindowToRootWindow( x
, y
) ;
775 tlw
->GetNonOwnedPeer()->WindowToScreen( x
, y
);
778 void wxWindowMac::MacClientToRootWindow( int *x
, int *y
) const
780 wxPoint origin
= GetClientAreaOrigin() ;
786 MacWindowToRootWindow( x
, y
) ;
789 void wxWindowMac::MacWindowToRootWindow( int *x
, int *y
) const
800 wxNonOwnedWindow
* top
= MacGetTopLevelWindow();
803 pt
.x
-= MacGetLeftBorderSize() ;
804 pt
.y
-= MacGetTopBorderSize() ;
805 wxWidgetImpl::Convert( &pt
, GetPeer() , top
->GetPeer() ) ;
815 void wxWindowMac::MacRootWindowToWindow( int *x
, int *y
) const
826 wxNonOwnedWindow
* top
= MacGetTopLevelWindow();
829 wxWidgetImpl::Convert( &pt
, top
->GetPeer() , GetPeer() ) ;
830 pt
.x
+= MacGetLeftBorderSize() ;
831 pt
.y
+= MacGetTopBorderSize() ;
841 wxSize
wxWindowMac::DoGetSizeFromClientSize( const wxSize
& size
) const
843 wxSize sizeTotal
= size
;
845 int innerwidth
, innerheight
;
847 int outerwidth
, outerheight
;
849 GetPeer()->GetContentArea( left
, top
, innerwidth
, innerheight
);
850 GetPeer()->GetSize( outerwidth
, outerheight
);
852 sizeTotal
.x
+= outerwidth
-innerwidth
;
853 sizeTotal
.y
+= outerheight
-innerheight
;
855 sizeTotal
.x
+= MacGetLeftBorderSize() + MacGetRightBorderSize() ;
856 sizeTotal
.y
+= MacGetTopBorderSize() + MacGetBottomBorderSize() ;
861 // Get size *available for subwindows* i.e. excluding menu bar etc.
862 void wxWindowMac::DoGetClientSize( int *x
, int *y
) const
868 GetPeer()->GetContentArea( left
, top
, ww
, hh
);
870 if (m_hScrollBar
&& m_hScrollBar
->IsShown() )
871 hh
-= m_hScrollBar
->GetSize().y
;
873 if (m_vScrollBar
&& m_vScrollBar
->IsShown() )
874 ww
-= m_vScrollBar
->GetSize().x
;
879 // we shouldn't return invalid width
888 // we shouldn't return invalid height
896 bool wxWindowMac::SetCursor(const wxCursor
& cursor
)
898 if (m_cursor
.IsSameAs(cursor
))
903 if ( ! wxWindowBase::SetCursor( *wxSTANDARD_CURSOR
) )
908 if ( ! wxWindowBase::SetCursor( cursor
) )
912 wxASSERT_MSG( m_cursor
.IsOk(),
913 wxT("cursor must be valid after call to the base version"));
915 if ( GetPeer() != NULL
)
916 GetPeer()->SetCursor( m_cursor
);
922 bool wxWindowMac::DoPopupMenu(wxMenu
*menu
, int x
, int y
)
924 #ifndef __WXUNIVERSAL__
927 if ( x
== wxDefaultCoord
&& y
== wxDefaultCoord
)
929 wxPoint mouse
= wxGetMousePosition();
935 ClientToScreen( &x
, &y
) ;
937 menu
->GetPeer()->PopUp(this, x
, y
);
940 // actually this shouldn't be called, because universal is having its own implementation
946 // ----------------------------------------------------------------------------
948 // ----------------------------------------------------------------------------
952 void wxWindowMac::DoSetToolTip(wxToolTip
*tooltip
)
954 wxWindowBase::DoSetToolTip(tooltip
);
957 m_tooltip
->SetWindow(this);
960 GetPeer()->SetToolTip(tooltip
);
965 void wxWindowMac::MacInvalidateBorders()
967 if ( GetPeer() == NULL
)
970 bool vis
= IsShownOnScreen() ;
974 int outerBorder
= MacGetLeftBorderSize() ;
976 if ( GetPeer()->NeedsFocusRect() )
979 if ( outerBorder
== 0 )
982 // now we know that we have something to do at all
986 GetPeer()->GetSize( tw
, th
);
987 GetPeer()->GetPosition( tx
, ty
);
989 wxRect
leftupdate( tx
-outerBorder
,ty
,outerBorder
,th
);
990 wxRect
rightupdate( tx
+tw
, ty
, outerBorder
, th
);
991 wxRect
topupdate( tx
-outerBorder
, ty
-outerBorder
, tw
+ 2 * outerBorder
, outerBorder
);
992 wxRect
bottomupdate( tx
-outerBorder
, ty
+ th
, tw
+ 2 * outerBorder
, outerBorder
);
995 GetParent()->GetPeer()->SetNeedsDisplay(&leftupdate
);
996 GetParent()->GetPeer()->SetNeedsDisplay(&rightupdate
);
997 GetParent()->GetPeer()->SetNeedsDisplay(&topupdate
);
998 GetParent()->GetPeer()->SetNeedsDisplay(&bottomupdate
);
1002 void wxWindowMac::DoMoveWindow(int x
, int y
, int width
, int height
)
1004 // this is never called for a toplevel window, so we know we have a parent
1005 int former_x
, former_y
, former_w
, former_h
;
1007 // Get true coordinates of former position
1008 DoGetPosition( &former_x
, &former_y
) ;
1009 DoGetSize( &former_w
, &former_h
) ;
1011 wxWindow
*parent
= GetParent();
1014 wxPoint
pt(parent
->GetClientAreaOrigin());
1019 int actualWidth
= width
;
1020 int actualHeight
= height
;
1025 // min and max sizes are only for sizers, not for explicit size setting
1026 if ((m_minWidth
!= -1) && (actualWidth
< m_minWidth
))
1027 actualWidth
= m_minWidth
;
1028 if ((m_minHeight
!= -1) && (actualHeight
< m_minHeight
))
1029 actualHeight
= m_minHeight
;
1030 if ((m_maxWidth
!= -1) && (actualWidth
> m_maxWidth
))
1031 actualWidth
= m_maxWidth
;
1032 if ((m_maxHeight
!= -1) && (actualHeight
> m_maxHeight
))
1033 actualHeight
= m_maxHeight
;
1036 bool doMove
= false, doResize
= false ;
1038 if ( actualX
!= former_x
|| actualY
!= former_y
)
1041 if ( actualWidth
!= former_w
|| actualHeight
!= former_h
)
1044 if ( doMove
|| doResize
)
1046 // as the borders are drawn outside the native control, we adjust now
1048 wxRect
bounds( wxPoint( actualX
+ MacGetLeftBorderSize() ,actualY
+ MacGetTopBorderSize() ),
1049 wxSize( actualWidth
- (MacGetLeftBorderSize() + MacGetRightBorderSize()) ,
1050 actualHeight
- (MacGetTopBorderSize() + MacGetBottomBorderSize()) ) ) ;
1052 if ( parent
&& !parent
->IsTopLevel() )
1054 bounds
.Offset( -parent
->MacGetLeftBorderSize(), -parent
->MacGetTopBorderSize() );
1057 MacInvalidateBorders() ;
1059 m_cachedClippedRectValid
= false ;
1061 GetPeer()->Move( bounds
.x
, bounds
.y
, bounds
.width
, bounds
.height
);
1063 wxWindowMac::MacSuperChangedPosition() ; // like this only children will be notified
1065 MacInvalidateBorders() ;
1067 MacRepositionScrollBars() ;
1070 wxPoint
point(actualX
, actualY
);
1071 wxMoveEvent
event(point
, m_windowId
);
1072 event
.SetEventObject(this);
1073 HandleWindowEvent(event
) ;
1078 MacRepositionScrollBars() ;
1084 wxSize
wxWindowMac::DoGetBestSize() const
1086 if ( GetPeer() == NULL
|| GetPeer()->IsUserPane() || IsTopLevel() )
1088 return wxWindowBase::DoGetBestSize() ;
1094 GetPeer()->GetBestRect(&r
);
1096 if ( r
.GetWidth() == 0 && r
.GetHeight() == 0 )
1104 if ( IsKindOf( CLASSINFO( wxScrollBar
) ) )
1111 if ( IsKindOf( CLASSINFO( wxSpinButton
) ) )
1118 // return wxWindowBase::DoGetBestSize() ;
1122 int bestWidth
= r
.width
+ MacGetLeftBorderSize() +
1123 MacGetRightBorderSize();
1124 int bestHeight
= r
.height
+ MacGetTopBorderSize() +
1125 MacGetBottomBorderSize();
1126 if ( bestHeight
< 10 )
1129 return wxSize(bestWidth
, bestHeight
);
1133 void wxWindowMac::SendSizeEvent(int flags
)
1135 MacOnInternalSize();
1136 wxWindowBase::SendSizeEvent(flags
);
1139 // set the size of the window: if the dimensions are positive, just use them,
1140 // but if any of them is equal to -1, it means that we must find the value for
1141 // it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in
1142 // which case -1 is a valid value for x and y)
1144 // If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate
1145 // the width/height to best suit our contents, otherwise we reuse the current
1147 void wxWindowMac::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
1149 // get the current size and position...
1150 int currentX
, currentY
;
1151 int currentW
, currentH
;
1153 GetPosition(¤tX
, ¤tY
);
1154 GetSize(¤tW
, ¤tH
);
1156 // ... and don't do anything (avoiding flicker) if it's already ok
1157 if ( x
== currentX
&& y
== currentY
&&
1158 width
== currentW
&& height
== currentH
&& ( height
!= -1 && width
!= -1 ) )
1161 MacRepositionScrollBars() ; // we might have a real position shift
1163 if (sizeFlags
& wxSIZE_FORCE_EVENT
)
1171 if ( !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
1173 if ( x
== wxDefaultCoord
)
1175 if ( y
== wxDefaultCoord
)
1179 AdjustForParentClientOrigin( x
, y
, sizeFlags
);
1181 wxSize size
= wxDefaultSize
;
1182 if ( width
== wxDefaultCoord
)
1184 if ( sizeFlags
& wxSIZE_AUTO_WIDTH
)
1186 size
= DoGetBestSize();
1191 // just take the current one
1196 if ( height
== wxDefaultCoord
)
1198 if ( sizeFlags
& wxSIZE_AUTO_HEIGHT
)
1200 if ( size
.x
== wxDefaultCoord
)
1201 size
= DoGetBestSize();
1202 // else: already called DoGetBestSize() above
1208 // just take the current one
1213 DoMoveWindow( x
, y
, width
, height
);
1216 wxPoint
wxWindowMac::GetClientAreaOrigin() const
1218 int left
,top
,width
,height
;
1219 GetPeer()->GetContentArea( left
, top
, width
, height
);
1220 return wxPoint( left
+ MacGetLeftBorderSize() , top
+ MacGetTopBorderSize() );
1223 void wxWindowMac::DoSetClientSize(int clientwidth
, int clientheight
)
1225 if ( clientwidth
!= wxDefaultCoord
|| clientheight
!= wxDefaultCoord
)
1227 int currentclientwidth
, currentclientheight
;
1228 int currentwidth
, currentheight
;
1230 GetClientSize( ¤tclientwidth
, ¤tclientheight
) ;
1231 GetSize( ¤twidth
, ¤theight
) ;
1233 DoSetSize( wxDefaultCoord
, wxDefaultCoord
, currentwidth
+ clientwidth
- currentclientwidth
,
1234 currentheight
+ clientheight
- currentclientheight
, wxSIZE_USE_EXISTING
) ;
1238 double wxWindowMac::GetContentScaleFactor() const
1240 return GetPeer()->GetContentScaleFactor();
1243 void wxWindowMac::SetLabel(const wxString
& title
)
1245 if ( title
== m_label
)
1250 InvalidateBestSize();
1252 if ( GetPeer() && GetPeer()->IsOk() )
1253 GetPeer()->SetLabel( wxStripMenuCodes(m_label
, wxStrip_Mnemonics
), GetFont().GetEncoding() ) ;
1255 // do not trigger refreshes upon invisible and possible partly created objects
1256 if ( IsShownOnScreen() )
1260 wxString
wxWindowMac::GetLabel() const
1265 bool wxWindowMac::Show(bool show
)
1268 MacInvalidateBorders();
1270 if ( !wxWindowBase::Show(show
) )
1274 GetPeer()->SetVisibility( show
) ;
1277 MacInvalidateBorders();
1279 #ifdef __WXOSX_IPHONE__
1280 // only when there's no native event support
1281 if ( !IsTopLevel() )
1284 wxShowEvent
eventShow(GetId(), show
);
1285 eventShow
.SetEventObject(this);
1287 HandleWindowEvent(eventShow
);
1293 bool wxWindowMac::OSXShowWithEffect(bool show
,
1294 wxShowEffect effect
,
1297 if ( effect
== wxSHOW_EFFECT_NONE
||
1298 !GetPeer() || !GetPeer()->ShowWithEffect(show
, effect
, timeout
) )
1304 void wxWindowMac::DoEnable(bool enable
)
1306 GetPeer()->Enable( enable
) ;
1307 MacInvalidateBorders();
1311 // status change notifications
1314 void wxWindowMac::MacVisibilityChanged()
1318 void wxWindowMac::MacHiliteChanged()
1322 void wxWindowMac::MacEnabledStateChanged()
1327 // status queries on the inherited window's state
1330 bool wxWindowMac::MacIsReallyEnabled()
1332 return GetPeer()->IsEnabled() ;
1335 bool wxWindowMac::MacIsReallyHilited()
1337 #if wxOSX_USE_CARBON
1338 return GetPeer()->IsActive();
1340 return true; // TODO
1344 int wxWindowMac::GetCharHeight() const
1347 GetTextExtent( wxT("g") , NULL
, &height
, NULL
, NULL
, NULL
);
1352 int wxWindowMac::GetCharWidth() const
1355 GetTextExtent( wxT("g") , &width
, NULL
, NULL
, NULL
, NULL
);
1360 void wxWindowMac::DoGetTextExtent(const wxString
& str
,
1363 int *externalLeading
,
1364 const wxFont
*theFont
) const
1366 const wxFont
*fontToUse
= theFont
;
1370 tempFont
= GetFont();
1371 fontToUse
= &tempFont
;
1374 wxGraphicsContext
* ctx
= wxGraphicsContext::Create();
1375 ctx
->SetFont( *fontToUse
, *wxBLACK
);
1377 wxDouble h
, d
, e
, w
;
1378 ctx
->GetTextExtent( str
, &w
, &h
, &d
, &e
);
1382 if ( externalLeading
)
1383 *externalLeading
= (wxCoord
)(e
+0.5);
1385 *descent
= (wxCoord
)(d
+0.5);
1387 *x
= (wxCoord
)(w
+0.5);
1389 *y
= (wxCoord
)(h
+0.5);
1393 * Rect is given in client coordinates, for further reading, read wxTopLevelWindowMac::InvalidateRect
1394 * we always intersect with the entire window, not only with the client area
1397 void wxWindowMac::Refresh(bool WXUNUSED(eraseBack
), const wxRect
*rect
)
1399 if ( GetPeer() == NULL
)
1402 if ( !IsShownOnScreen() )
1408 GetPeer()->SetNeedsDisplay( rect
) ;
1411 void wxWindowMac::DoFreeze()
1413 if ( GetPeer() && GetPeer()->IsOk() )
1414 GetPeer()->SetDrawingEnabled( false ) ;
1417 void wxWindowMac::DoThaw()
1419 if ( GetPeer() && GetPeer()->IsOk() )
1420 GetPeer()->SetDrawingEnabled( true ) ;
1423 wxWindow
*wxGetActiveWindow()
1425 // actually this is a windows-only concept
1429 // Coordinates relative to the window
1430 void wxWindowMac::WarpPointer(int x_pos
, int y_pos
)
1432 #if wxOSX_USE_COCOA_OR_CARBON
1435 DoClientToScreen(&x
, &y
);
1436 CGPoint cgpoint
= CGPointMake( x
, y
);
1437 CGWarpMouseCursorPosition( cgpoint
);
1439 // At least GTK sends a mouse moved event after WarpMouse
1440 wxMouseEvent
event(wxEVT_MOTION
);
1443 wxMouseState mState
= ::wxGetMouseState();
1445 event
.m_altDown
= mState
.AltDown();
1446 event
.m_controlDown
= mState
.ControlDown();
1447 event
.m_leftDown
= mState
.LeftIsDown();
1448 event
.m_middleDown
= mState
.MiddleIsDown();
1449 event
.m_rightDown
= mState
.RightIsDown();
1450 event
.m_metaDown
= mState
.MetaDown();
1451 event
.m_shiftDown
= mState
.ShiftDown();
1452 event
.SetId(GetId());
1453 event
.SetEventObject(this);
1454 GetEventHandler()->ProcessEvent(event
);
1458 int wxWindowMac::GetScrollPos(int orient
) const
1461 if ( orient
== wxHORIZONTAL
)
1464 return m_hScrollBar
->GetThumbPosition() ;
1469 return m_vScrollBar
->GetThumbPosition() ;
1475 // This now returns the whole range, not just the number
1476 // of positions that we can scroll.
1477 int wxWindowMac::GetScrollRange(int orient
) const
1480 if ( orient
== wxHORIZONTAL
)
1483 return m_hScrollBar
->GetRange() ;
1488 return m_vScrollBar
->GetRange() ;
1494 int wxWindowMac::GetScrollThumb(int orient
) const
1497 if ( orient
== wxHORIZONTAL
)
1500 return m_hScrollBar
->GetThumbSize() ;
1505 return m_vScrollBar
->GetThumbSize() ;
1511 void wxWindowMac::SetScrollPos(int orient
, int pos
, bool WXUNUSED(refresh
))
1514 if ( orient
== wxHORIZONTAL
)
1517 m_hScrollBar
->SetThumbPosition( pos
) ;
1522 m_vScrollBar
->SetThumbPosition( pos
) ;
1528 wxWindowMac::AlwaysShowScrollbars(bool hflag
, bool vflag
)
1530 bool needVisibilityUpdate
= false;
1532 if ( m_hScrollBarAlwaysShown
!= hflag
)
1534 m_hScrollBarAlwaysShown
= hflag
;
1535 needVisibilityUpdate
= true;
1538 if ( m_vScrollBarAlwaysShown
!= vflag
)
1540 m_vScrollBarAlwaysShown
= vflag
;
1541 needVisibilityUpdate
= true;
1544 if ( needVisibilityUpdate
)
1545 DoUpdateScrollbarVisibility();
1549 // we draw borders and grow boxes, are already set up and clipped in the current port / cgContextRef
1550 // our own window origin is at leftOrigin/rightOrigin
1553 void wxWindowMac::MacPaintGrowBox()
1559 if ( MacHasScrollBarCorner() )
1562 CGContextRef cgContext
= (CGContextRef
) MacGetCGContextRef() ;
1563 wxASSERT( cgContext
) ;
1567 GetPeer()->GetSize( tw
, th
);
1568 GetPeer()->GetPosition( tx
, ty
);
1570 Rect rect
= { ty
,tx
, ty
+th
, tx
+tw
};
1573 int size
= m_hScrollBar
? m_hScrollBar
->GetSize().y
: ( m_vScrollBar
? m_vScrollBar
->GetSize().x
: MAC_SCROLLBAR_SIZE
) ;
1574 CGRect cgrect
= CGRectMake( rect
.right
- size
, rect
.bottom
- size
, size
, size
) ;
1575 CGContextSaveGState( cgContext
);
1577 if ( m_backgroundColour
.IsOk() )
1579 CGContextSetFillColorWithColor( cgContext
, m_backgroundColour
.GetCGColor() );
1583 CGContextSetRGBFillColor( cgContext
, (CGFloat
) 1.0, (CGFloat
)1.0 ,(CGFloat
) 1.0 , (CGFloat
)1.0 );
1585 CGContextFillRect( cgContext
, cgrect
);
1586 CGContextRestoreGState( cgContext
);
1590 if ( m_backgroundColour
.IsOk() )
1591 m_growBox
->SetBackgroundColour(m_backgroundColour
);
1593 m_growBox
->SetBackgroundColour(*wxWHITE
);
1601 void wxWindowMac::MacPaintBorders( int WXUNUSED(leftOrigin
) , int WXUNUSED(rightOrigin
) )
1606 bool hasFocus
= GetPeer()->NeedsFocusRect() && HasFocus();
1608 // back to the surrounding frame rectangle
1611 GetPeer()->GetSize( tw
, th
);
1612 GetPeer()->GetPosition( tx
, ty
);
1614 #if wxOSX_USE_COCOA_OR_CARBON
1617 CGRect cgrect
= CGRectMake( tx
-1 , ty
-1 , tw
+2 ,
1620 CGContextRef cgContext
= (CGContextRef
) GetParent()->MacGetCGContextRef() ;
1621 wxASSERT( cgContext
) ;
1623 if ( GetPeer()->NeedsFrame() )
1625 HIThemeFrameDrawInfo info
;
1626 memset( &info
, 0 , sizeof(info
) ) ;
1630 info
.state
= IsEnabled() ? kThemeStateActive
: kThemeStateInactive
;
1631 info
.isFocused
= hasFocus
;
1633 if ( HasFlag(wxRAISED_BORDER
) || HasFlag(wxSUNKEN_BORDER
) || HasFlag(wxDOUBLE_BORDER
) )
1635 info
.kind
= kHIThemeFrameTextFieldSquare
;
1636 HIThemeDrawFrame( &cgrect
, &info
, cgContext
, kHIThemeOrientationNormal
) ;
1638 else if ( HasFlag(wxSIMPLE_BORDER
) )
1640 info
.kind
= kHIThemeFrameListBox
;
1641 HIThemeDrawFrame( &cgrect
, &info
, cgContext
, kHIThemeOrientationNormal
) ;
1647 HIThemeDrawFocusRect( &cgrect
, true , cgContext
, kHIThemeOrientationNormal
) ;
1650 #endif // wxOSX_USE_COCOA_OR_CARBON
1653 void wxWindowMac::RemoveChild( wxWindowBase
*child
)
1656 if ( child
== m_hScrollBar
)
1657 m_hScrollBar
= NULL
;
1658 if ( child
== m_vScrollBar
)
1659 m_vScrollBar
= NULL
;
1660 if ( child
== m_growBox
)
1663 wxWindowBase::RemoveChild( child
) ;
1666 void wxWindowMac::DoUpdateScrollbarVisibility()
1669 bool triggerSizeEvent
= false;
1673 bool showHScrollBar
= m_hScrollBarAlwaysShown
|| m_hScrollBar
->IsNeeded();
1675 if ( m_hScrollBar
->IsShown() != showHScrollBar
)
1677 m_hScrollBar
->Show( showHScrollBar
);
1678 triggerSizeEvent
= true;
1684 bool showVScrollBar
= m_vScrollBarAlwaysShown
|| m_vScrollBar
->IsNeeded();
1686 if ( m_vScrollBar
->IsShown() != showVScrollBar
)
1688 m_vScrollBar
->Show( showVScrollBar
) ;
1689 triggerSizeEvent
= true;
1693 MacRepositionScrollBars() ;
1694 if ( triggerSizeEvent
)
1701 // New function that will replace some of the above.
1702 void wxWindowMac::SetScrollbar(int orient
, int pos
, int thumb
,
1703 int range
, bool refresh
)
1706 // Updating scrollbars when window is being deleted is useless and
1707 // currently results in asserts in client-to-screen coordinates conversion
1708 // code which is used by DoUpdateScrollbarVisibility() so just skip it.
1709 if ( m_isBeingDeleted
)
1712 if ( orient
== wxHORIZONTAL
&& m_hScrollBar
)
1713 m_hScrollBar
->SetScrollbar(pos
, thumb
, range
, thumb
, refresh
);
1714 else if ( orient
== wxVERTICAL
&& m_vScrollBar
)
1715 m_vScrollBar
->SetScrollbar(pos
, thumb
, range
, thumb
, refresh
);
1717 DoUpdateScrollbarVisibility();
1721 // Does a physical scroll
1722 void wxWindowMac::ScrollWindow(int dx
, int dy
, const wxRect
*rect
)
1724 if ( dx
== 0 && dy
== 0 )
1727 int width
, height
;
1728 GetClientSize( &width
, &height
) ;
1731 wxRect
scrollrect( MacGetLeftBorderSize() , MacGetTopBorderSize() , width
, height
) ;
1733 scrollrect
.Intersect( *rect
) ;
1734 // as the native control might be not a 0/0 wx window coordinates, we have to offset
1735 scrollrect
.Offset( -MacGetLeftBorderSize() , -MacGetTopBorderSize() ) ;
1737 GetPeer()->ScrollRect( &scrollrect
, dx
, dy
);
1742 for (wxWindowList::compatibility_iterator node
= GetChildren().GetFirst(); node
; node
= node
->GetNext())
1744 child
= node
->GetData();
1748 if (child
->IsTopLevel())
1751 if ( !IsClientAreaChild(child
) )
1754 child
->GetPosition( &x
, &y
);
1755 child
->GetSize( &w
, &h
);
1758 wxRect
rc( x
, y
, w
, h
);
1759 if (rect
->Intersects( rc
))
1760 child
->SetSize( x
+ dx
, y
+ dy
, w
, h
, wxSIZE_AUTO
|wxSIZE_ALLOW_MINUS_ONE
);
1764 child
->SetSize( x
+ dx
, y
+ dy
, w
, h
, wxSIZE_AUTO
|wxSIZE_ALLOW_MINUS_ONE
);
1769 void wxWindowMac::MacOnScroll( wxScrollEvent
&event
)
1772 if ( event
.GetEventObject() == m_vScrollBar
|| event
.GetEventObject() == m_hScrollBar
)
1774 wxScrollWinEvent wevent
;
1775 wevent
.SetPosition(event
.GetPosition());
1776 wevent
.SetOrientation(event
.GetOrientation());
1777 wevent
.SetEventObject(this);
1779 if (event
.GetEventType() == wxEVT_SCROLL_TOP
)
1780 wevent
.SetEventType( wxEVT_SCROLLWIN_TOP
);
1781 else if (event
.GetEventType() == wxEVT_SCROLL_BOTTOM
)
1782 wevent
.SetEventType( wxEVT_SCROLLWIN_BOTTOM
);
1783 else if (event
.GetEventType() == wxEVT_SCROLL_LINEUP
)
1784 wevent
.SetEventType( wxEVT_SCROLLWIN_LINEUP
);
1785 else if (event
.GetEventType() == wxEVT_SCROLL_LINEDOWN
)
1786 wevent
.SetEventType( wxEVT_SCROLLWIN_LINEDOWN
);
1787 else if (event
.GetEventType() == wxEVT_SCROLL_PAGEUP
)
1788 wevent
.SetEventType( wxEVT_SCROLLWIN_PAGEUP
);
1789 else if (event
.GetEventType() == wxEVT_SCROLL_PAGEDOWN
)
1790 wevent
.SetEventType( wxEVT_SCROLLWIN_PAGEDOWN
);
1791 else if (event
.GetEventType() == wxEVT_SCROLL_THUMBTRACK
)
1792 wevent
.SetEventType( wxEVT_SCROLLWIN_THUMBTRACK
);
1793 else if (event
.GetEventType() == wxEVT_SCROLL_THUMBRELEASE
)
1794 wevent
.SetEventType( wxEVT_SCROLLWIN_THUMBRELEASE
);
1796 HandleWindowEvent(wevent
);
1801 wxWindow
*wxWindowBase::DoFindFocus()
1803 return wxFindWindowFromWXWidget(wxWidgetImpl::FindFocus());
1806 // Raise the window to the top of the Z order
1807 void wxWindowMac::Raise()
1812 // Lower the window to the bottom of the Z order
1813 void wxWindowMac::Lower()
1818 // static wxWindow *gs_lastWhich = NULL;
1820 bool wxWindowMac::MacSetupCursor( const wxPoint
& pt
)
1822 // first trigger a set cursor event
1824 wxPoint clientorigin
= GetClientAreaOrigin() ;
1825 wxSize clientsize
= GetClientSize() ;
1827 if ( wxRect2DInt( clientorigin
.x
, clientorigin
.y
, clientsize
.x
, clientsize
.y
).Contains( wxPoint2DInt( pt
) ) )
1829 wxSetCursorEvent
event( pt
.x
, pt
.y
);
1830 event
.SetId(GetId());
1831 event
.SetEventObject(this);
1833 bool processedEvtSetCursor
= HandleWindowEvent(event
);
1834 if ( processedEvtSetCursor
&& event
.HasCursor() )
1836 cursor
= event
.GetCursor() ;
1840 // the test for processedEvtSetCursor is here to prevent using m_cursor
1841 // if the user code caught EVT_SET_CURSOR() and returned nothing from
1842 // it - this is a way to say that our cursor shouldn't be used for this
1844 if ( !processedEvtSetCursor
&& m_cursor
.IsOk() )
1847 if ( !wxIsBusy() && !GetParent() )
1848 cursor
= *wxSTANDARD_CURSOR
;
1851 if ( cursor
.IsOk() )
1852 cursor
.MacInstall() ;
1855 return cursor
.IsOk() ;
1858 wxString
wxWindowMac::MacGetToolTipString( wxPoint
&WXUNUSED(pt
) )
1862 return m_tooltip
->GetTip() ;
1865 return wxEmptyString
;
1868 void wxWindowMac::ClearBackground()
1874 void wxWindowMac::Update()
1876 wxNonOwnedWindow
* top
= MacGetTopLevelWindow();
1881 wxNonOwnedWindow
* wxWindowMac::MacGetTopLevelWindow() const
1883 wxWindowMac
*iter
= (wxWindowMac
*)this ;
1887 if ( iter
->IsTopLevel() )
1889 wxTopLevelWindow
* toplevel
= wxDynamicCast(iter
,wxTopLevelWindow
);
1893 wxPopupWindow
* popupwin
= wxDynamicCast(iter
,wxPopupWindow
);
1898 iter
= iter
->GetParent() ;
1904 const wxRect
& wxWindowMac::MacGetClippedClientRect() const
1906 MacUpdateClippedRects() ;
1908 return m_cachedClippedClientRect
;
1911 const wxRect
& wxWindowMac::MacGetClippedRect() const
1913 MacUpdateClippedRects() ;
1915 return m_cachedClippedRect
;
1918 const wxRect
&wxWindowMac:: MacGetClippedRectWithOuterStructure() const
1920 MacUpdateClippedRects() ;
1922 return m_cachedClippedRectWithOuterStructure
;
1925 const wxRegion
& wxWindowMac::MacGetVisibleRegion( bool includeOuterStructures
)
1927 static wxRegion emptyrgn
;
1929 if ( !m_isBeingDeleted
&& IsShownOnScreen() )
1931 MacUpdateClippedRects() ;
1932 if ( includeOuterStructures
)
1933 return m_cachedClippedRegionWithOuterStructure
;
1935 return m_cachedClippedRegion
;
1943 void wxWindowMac::MacUpdateClippedRects() const
1945 #if wxOSX_USE_CARBON
1946 if ( m_cachedClippedRectValid
)
1949 // includeOuterStructures is true if we try to draw somthing like a focus ring etc.
1950 // also a window dc uses this, in this case we only clip in the hierarchy for hard
1951 // borders like a scrollwindow, splitter etc otherwise we end up in a paranoia having
1952 // to add focus borders everywhere
1954 Rect rIncludingOuterStructures
;
1958 GetPeer()->GetSize( tw
, th
);
1959 GetPeer()->GetPosition( tx
, ty
);
1961 Rect r
= { ty
,tx
, ty
+th
, tx
+tw
};
1963 r
.left
-= MacGetLeftBorderSize() ;
1964 r
.top
-= MacGetTopBorderSize() ;
1965 r
.bottom
+= MacGetBottomBorderSize() ;
1966 r
.right
+= MacGetRightBorderSize() ;
1973 rIncludingOuterStructures
= r
;
1974 InsetRect( &rIncludingOuterStructures
, -4 , -4 ) ;
1976 wxRect cl
= GetClientRect() ;
1977 Rect rClient
= { cl
.y
, cl
.x
, cl
.y
+ cl
.height
, cl
.x
+ cl
.width
} ;
1981 const wxWindow
* child
= (wxWindow
*) this ;
1982 const wxWindow
* parent
= NULL
;
1984 while ( !child
->IsTopLevel() && ( parent
= child
->GetParent() ) != NULL
)
1986 if ( parent
->MacIsChildOfClientArea(child
) )
1988 size
= parent
->GetClientSize() ;
1989 wxPoint origin
= parent
->GetClientAreaOrigin() ;
1995 // this will be true for scrollbars, toolbars etc.
1996 size
= parent
->GetSize() ;
1997 y
= parent
->MacGetTopBorderSize() ;
1998 x
= parent
->MacGetLeftBorderSize() ;
1999 size
.x
-= parent
->MacGetLeftBorderSize() + parent
->MacGetRightBorderSize() ;
2000 size
.y
-= parent
->MacGetTopBorderSize() + parent
->MacGetBottomBorderSize() ;
2003 parent
->MacWindowToRootWindow( &x
, &y
) ;
2004 MacRootWindowToWindow( &x
, &y
) ;
2006 Rect rparent
= { y
, x
, y
+ size
.y
, x
+ size
.x
} ;
2008 // the wxwindow and client rects will always be clipped
2009 SectRect( &r
, &rparent
, &r
) ;
2010 SectRect( &rClient
, &rparent
, &rClient
) ;
2012 // the structure only at 'hard' borders
2013 if ( parent
->MacClipChildren() ||
2014 ( parent
->GetParent() && parent
->GetParent()->MacClipGrandChildren() ) )
2016 SectRect( &rIncludingOuterStructures
, &rparent
, &rIncludingOuterStructures
) ;
2022 m_cachedClippedRect
= wxRect( r
.left
, r
.top
, r
.right
- r
.left
, r
.bottom
- r
.top
) ;
2023 m_cachedClippedClientRect
= wxRect( rClient
.left
, rClient
.top
,
2024 rClient
.right
- rClient
.left
, rClient
.bottom
- rClient
.top
) ;
2025 m_cachedClippedRectWithOuterStructure
= wxRect(
2026 rIncludingOuterStructures
.left
, rIncludingOuterStructures
.top
,
2027 rIncludingOuterStructures
.right
- rIncludingOuterStructures
.left
,
2028 rIncludingOuterStructures
.bottom
- rIncludingOuterStructures
.top
) ;
2030 m_cachedClippedRegionWithOuterStructure
= wxRegion( m_cachedClippedRectWithOuterStructure
) ;
2031 m_cachedClippedRegion
= wxRegion( m_cachedClippedRect
) ;
2032 m_cachedClippedClientRegion
= wxRegion( m_cachedClippedClientRect
) ;
2034 m_cachedClippedRectValid
= true ;
2039 This function must not change the updatergn !
2041 bool wxWindowMac::MacDoRedraw( long time
)
2043 bool handled
= false ;
2045 wxRegion formerUpdateRgn
= m_updateRegion
;
2046 wxRegion clientUpdateRgn
= formerUpdateRgn
;
2048 const wxRect clientRect
= GetClientRect();
2050 clientUpdateRgn
.Intersect(clientRect
);
2052 // first send an erase event to the entire update area
2053 const wxBackgroundStyle bgStyle
= GetBackgroundStyle();
2056 case wxBG_STYLE_ERASE
:
2057 case wxBG_STYLE_SYSTEM
:
2058 case wxBG_STYLE_COLOUR
:
2060 // for the toplevel window this really is the entire area for
2061 // all the others only their client area, otherwise they might
2062 // be drawing with full alpha and eg put blue into the grow-box
2063 // area of a scrolled window (scroll sample)
2064 wxWindowDC
dc(this);
2066 dc
.SetDeviceClippingRegion(formerUpdateRgn
);
2068 dc
.SetDeviceClippingRegion(clientUpdateRgn
);
2070 if ( bgStyle
== wxBG_STYLE_ERASE
)
2072 wxEraseEvent
eevent( GetId(), &dc
);
2073 eevent
.SetEventObject( this );
2074 if ( ProcessWindowEvent( eevent
) )
2080 dc
.SetBackground(GetBackgroundColour());
2086 case wxBG_STYLE_PAINT
:
2087 case wxBG_STYLE_TRANSPARENT
:
2088 // nothing to do, user-defined EVT_PAINT handler will overwrite the
2089 // entire window client area
2093 wxFAIL_MSG( "unsupported background style" );
2096 // as this is a full window, shouldn't be necessary anymore
2097 // MacPaintGrowBox();
2099 // calculate a client-origin version of the update rgn and set
2100 // m_updateRegion to that
2101 clientUpdateRgn
.Offset(-clientRect
.GetPosition());
2102 m_updateRegion
= clientUpdateRgn
;
2104 if ( !m_updateRegion
.Empty() )
2106 // paint the window itself
2108 wxPaintEvent
event(GetId());
2109 event
.SetTimestamp(time
);
2110 event
.SetEventObject(this);
2111 handled
= HandleWindowEvent(event
);
2114 m_updateRegion
= formerUpdateRgn
;
2116 wxNonOwnedWindow
* top
= MacGetTopLevelWindow();
2118 top
->WindowWasPainted() ;
2123 void wxWindowMac::MacPaintChildrenBorders()
2125 // now we cannot rely on having its borders drawn by a window itself, as it does not
2126 // get the updateRgn wide enough to always do so, so we do it from the parent
2127 // this would also be the place to draw any custom backgrounds for native controls
2128 // in Composited windowing
2129 wxPoint clientOrigin
= GetClientAreaOrigin() ;
2133 for (wxWindowList::compatibility_iterator node
= GetChildren().GetFirst(); node
; node
= node
->GetNext())
2135 child
= node
->GetData();
2139 if (child
== m_vScrollBar
)
2141 if (child
== m_hScrollBar
)
2143 if (child
== m_growBox
)
2146 if (child
->IsTopLevel())
2148 if (!child
->IsShown())
2151 // only draw those in the update region (add a safety margin of 10 pixels for shadow effects
2153 child
->GetPosition( &x
, &y
);
2154 child
->GetSize( &w
, &h
);
2156 if ( m_updateRegion
.Contains(clientOrigin
.x
+x
-10, clientOrigin
.y
+y
-10, w
+20, h
+20) )
2158 // paint custom borders
2159 wxNcPaintEvent
eventNc( child
->GetId() );
2160 eventNc
.SetEventObject( child
);
2161 if ( !child
->HandleWindowEvent( eventNc
) )
2163 child
->MacPaintBorders(0, 0) ;
2170 WXWindow
wxWindowMac::MacGetTopLevelWindowRef() const
2172 wxNonOwnedWindow
* tlw
= MacGetTopLevelWindow();
2173 return tlw
? tlw
->GetWXWindow() : NULL
;
2176 bool wxWindowMac::MacHasScrollBarCorner() const
2179 /* Returns whether the scroll bars in a wxScrolledWindow should be
2180 * shortened. Scroll bars should be shortened if either:
2182 * - both scroll bars are visible, or
2184 * - there is a resize box in the parent frame's corner and this
2185 * window shares the bottom and right edge with the parent
2189 if ( m_hScrollBar
== NULL
&& m_vScrollBar
== NULL
)
2192 if ( ( m_hScrollBar
&& m_hScrollBar
->IsShown() )
2193 && ( m_vScrollBar
&& m_vScrollBar
->IsShown() ) )
2195 // Both scroll bars visible
2200 wxPoint thisWindowBottomRight
= GetScreenRect().GetBottomRight();
2202 for ( const wxWindow
*win
= (wxWindow
*)this; win
; win
= win
->GetParent() )
2204 const wxFrame
*frame
= wxDynamicCast( win
, wxFrame
) ;
2207 // starting from 10.7 there are no resize indicators anymore
2208 if ( (frame
->GetWindowStyleFlag() & wxRESIZE_BORDER
) && UMAGetSystemVersion() < 0x1070)
2210 // Parent frame has resize handle
2211 wxPoint frameBottomRight
= frame
->GetScreenRect().GetBottomRight();
2213 // Note: allow for some wiggle room here as wxMac's
2214 // window rect calculations seem to be imprecise
2215 if ( abs( thisWindowBottomRight
.x
- frameBottomRight
.x
) <= 2
2216 && abs( thisWindowBottomRight
.y
- frameBottomRight
.y
) <= 2 )
2218 // Parent frame has resize handle and shares
2219 // right bottom corner
2224 // Parent frame has resize handle but doesn't
2225 // share right bottom corner
2231 // Parent frame doesn't have resize handle
2237 // No parent frame found
2245 void wxWindowMac::MacCreateScrollBars( long style
)
2248 wxASSERT_MSG( m_vScrollBar
== NULL
&& m_hScrollBar
== NULL
, wxT("attempt to create window twice") ) ;
2250 if ( style
& ( wxVSCROLL
| wxHSCROLL
) )
2252 int scrlsize
= MAC_SCROLLBAR_SIZE
;
2253 if ( GetWindowVariant() == wxWINDOW_VARIANT_SMALL
|| GetWindowVariant() == wxWINDOW_VARIANT_MINI
)
2255 scrlsize
= MAC_SMALL_SCROLLBAR_SIZE
;
2258 int adjust
= MacHasScrollBarCorner() ? scrlsize
- 1: 0 ;
2260 GetClientSize( &width
, &height
) ;
2262 wxPoint
vPoint(width
- scrlsize
, 0) ;
2263 wxSize
vSize(scrlsize
, height
- adjust
) ;
2264 wxPoint
hPoint(0, height
- scrlsize
) ;
2265 wxSize
hSize(width
- adjust
, scrlsize
) ;
2267 // we have to set the min size to a smaller value, otherwise they cannot get smaller (InitialSize sets MinSize)
2268 if ( style
& wxVSCROLL
)
2270 m_vScrollBar
= new wxScrollBar((wxWindow
*)this, wxID_ANY
, vPoint
, vSize
, wxVERTICAL
);
2271 m_vScrollBar
->SetMinSize( wxDefaultSize
);
2274 if ( style
& wxHSCROLL
)
2276 m_hScrollBar
= new wxScrollBar((wxWindow
*)this, wxID_ANY
, hPoint
, hSize
, wxHORIZONTAL
);
2277 m_hScrollBar
->SetMinSize( wxDefaultSize
);
2280 wxPoint
gPoint(width
- scrlsize
, height
- scrlsize
);
2281 wxSize
gSize(scrlsize
, scrlsize
);
2282 m_growBox
= new wxBlindPlateWindow((wxWindow
*)this, wxID_ANY
, gPoint
, gSize
, 0);
2285 // because the create does not take into account the client area origin
2286 // we might have a real position shift
2287 MacRepositionScrollBars() ;
2291 bool wxWindowMac::MacIsChildOfClientArea( const wxWindow
* child
) const
2293 bool result
= ((child
== NULL
)
2295 || ((child
!= m_hScrollBar
) && (child
!= m_vScrollBar
) && (child
!= m_growBox
))
2302 void wxWindowMac::MacRepositionScrollBars()
2305 if ( !m_hScrollBar
&& !m_vScrollBar
)
2308 int scrlsize
= m_hScrollBar
? m_hScrollBar
->GetSize().y
: ( m_vScrollBar
? m_vScrollBar
->GetSize().x
: MAC_SCROLLBAR_SIZE
) ;
2309 int adjust
= MacHasScrollBarCorner() ? scrlsize
- 1 : 0 ;
2311 // get real client area
2313 GetSize( &width
, &height
);
2315 width
-= MacGetLeftBorderSize() + MacGetRightBorderSize();
2316 height
-= MacGetTopBorderSize() + MacGetBottomBorderSize();
2318 wxPoint
vPoint( width
- scrlsize
, 0 ) ;
2319 wxSize
vSize( scrlsize
, height
- adjust
) ;
2320 wxPoint
hPoint( 0 , height
- scrlsize
) ;
2321 wxSize
hSize( width
- adjust
, scrlsize
) ;
2324 m_vScrollBar
->SetSize( vPoint
.x
, vPoint
.y
, vSize
.x
, vSize
.y
, wxSIZE_ALLOW_MINUS_ONE
);
2326 m_hScrollBar
->SetSize( hPoint
.x
, hPoint
.y
, hSize
.x
, hSize
.y
, wxSIZE_ALLOW_MINUS_ONE
);
2329 if ( MacHasScrollBarCorner() )
2331 m_growBox
->SetSize( width
- scrlsize
, height
- scrlsize
, wxDefaultCoord
, wxDefaultCoord
, wxSIZE_USE_EXISTING
);
2332 if ( !m_growBox
->IsShown() )
2337 if ( m_growBox
->IsShown() )
2344 bool wxWindowMac::AcceptsFocus() const
2346 if ( GetPeer() == NULL
|| GetPeer()->IsUserPane() )
2347 return wxWindowBase::AcceptsFocus();
2349 return GetPeer()->CanFocus();
2352 void wxWindowMac::MacSuperChangedPosition()
2354 // only window-absolute structures have to be moved i.e. controls
2356 m_cachedClippedRectValid
= false ;
2359 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
2362 child
= node
->GetData();
2363 child
->MacSuperChangedPosition() ;
2365 node
= node
->GetNext();
2369 void wxWindowMac::MacTopLevelWindowChangedPosition()
2371 // only screen-absolute structures have to be moved i.e. glcanvas
2374 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
2377 child
= node
->GetData();
2378 child
->MacTopLevelWindowChangedPosition() ;
2380 node
= node
->GetNext();
2384 long wxWindowMac::MacGetWXBorderSize() const
2391 if ( GetPeer() && GetPeer()->NeedsFrame() )
2393 if (HasFlag(wxRAISED_BORDER
) || HasFlag( wxSUNKEN_BORDER
) || HasFlag(wxDOUBLE_BORDER
))
2395 #if wxOSX_USE_COCOA_OR_CARBON
2396 // this metric is only the 'outset' outside the simple frame rect
2397 GetThemeMetric( kThemeMetricEditTextFrameOutset
, &border
) ;
2403 else if (HasFlag(wxSIMPLE_BORDER
))
2405 #if wxOSX_USE_COCOA_OR_CARBON
2406 // this metric is only the 'outset' outside the simple frame rect
2407 GetThemeMetric( kThemeMetricListBoxFrameOutset
, &border
) ;
2418 long wxWindowMac::MacGetLeftBorderSize() const
2420 // the wx borders are all symmetric in mac themes
2421 long border
= MacGetWXBorderSize() ;
2425 int left
, top
, right
, bottom
;
2426 GetPeer()->GetLayoutInset( left
, top
, right
, bottom
);
2434 long wxWindowMac::MacGetRightBorderSize() const
2436 // the wx borders are all symmetric in mac themes
2437 long border
= MacGetWXBorderSize() ;
2441 int left
, top
, right
, bottom
;
2442 GetPeer()->GetLayoutInset( left
, top
, right
, bottom
);
2449 long wxWindowMac::MacGetTopBorderSize() const
2451 // the wx borders are all symmetric in mac themes
2452 long border
= MacGetWXBorderSize() ;
2456 int left
, top
, right
, bottom
;
2457 GetPeer()->GetLayoutInset( left
, top
, right
, bottom
);
2464 long wxWindowMac::MacGetBottomBorderSize() const
2466 // the wx borders are all symmetric in mac themes
2467 long border
= MacGetWXBorderSize() ;
2471 int left
, top
, right
, bottom
;
2472 GetPeer()->GetLayoutInset( left
, top
, right
, bottom
);
2479 long wxWindowMac::MacRemoveBordersFromStyle( long style
)
2481 return style
& ~wxBORDER_MASK
;
2484 // Find the wxWindowMac at the current mouse position, returning the mouse
2486 wxWindow
* wxFindWindowAtPointer( wxPoint
& pt
)
2488 pt
= wxGetMousePosition();
2489 wxWindowMac
* found
= wxFindWindowAtPoint(pt
);
2491 return (wxWindow
*) found
;
2494 // Get the current mouse position.
2495 wxPoint
wxGetMousePosition()
2499 wxGetMousePosition( &x
, &y
);
2501 return wxPoint(x
, y
);
2504 void wxWindowMac::OnMouseEvent( wxMouseEvent
&event
)
2506 if ( event
.GetEventType() == wxEVT_RIGHT_DOWN
)
2508 // copied from wxGTK : CS
2509 // VZ: shouldn't we move this to base class then?
2511 // generate a "context menu" event: this is similar to wxEVT_RIGHT_DOWN
2514 // (a) it's a command event and so is propagated to the parent
2515 // (b) under MSW it can be generated from kbd too
2516 // (c) it uses screen coords (because of (a))
2517 wxContextMenuEvent
evtCtx(wxEVT_CONTEXT_MENU
,
2519 this->ClientToScreen(event
.GetPosition()));
2520 evtCtx
.SetEventObject(this);
2521 if ( ! HandleWindowEvent(evtCtx
) )
2530 void wxWindowMac::TriggerScrollEvent( wxEventType
WXUNUSED(scrollEvent
) )
2534 Rect
wxMacGetBoundsForControl( wxWindowMac
* window
, const wxPoint
& pos
, const wxSize
&size
, bool adjustForOrigin
)
2538 window
->MacGetBoundsForControl( pos
, size
, x
, y
, w
, h
, adjustForOrigin
) ;
2539 Rect bounds
= { static_cast<short>(y
), static_cast<short>(x
), static_cast<short>(y
+ h
), static_cast<short>(x
+ w
) };
2544 bool wxWindowMac::OSXHandleClicked( double WXUNUSED(timestampsec
) )
2549 wxInt32
wxWindowMac::MacControlHit(WXEVENTHANDLERREF
WXUNUSED(handler
) , WXEVENTREF event
)
2551 #if wxOSX_USE_COCOA_OR_CARBON
2552 if ( OSXHandleClicked( GetEventTime((EventRef
)event
) ) )
2555 return eventNotHandledErr
;
2561 bool wxWindowMac::Reparent(wxWindowBase
*newParentBase
)
2563 wxWindowMac
*newParent
= (wxWindowMac
*)newParentBase
;
2564 if ( !wxWindowBase::Reparent(newParent
) )
2567 GetPeer()->RemoveFromParent();
2568 GetPeer()->Embed( GetParent()->GetPeer() );
2574 bool wxWindowMac::SetTransparent(wxByte alpha
)
2576 SetBackgroundStyle(wxBG_STYLE_TRANSPARENT
);
2578 if ( alpha
!= m_macAlpha
)
2580 m_macAlpha
= alpha
;
2587 bool wxWindowMac::CanSetTransparent()
2592 wxByte
wxWindowMac::GetTransparent() const
2597 bool wxWindowMac::IsShownOnScreen() const
2599 if ( GetPeer() && GetPeer()->IsOk() )
2601 bool peerVis
= GetPeer()->IsVisible();
2602 bool wxVis
= wxWindowBase::IsShownOnScreen();
2603 if( peerVis
!= wxVis
)
2605 // CS : put a breakpoint here to investigate differences
2606 // between native an wx visibilities
2607 // the only place where I've encountered them until now
2608 // are the hiding/showing sequences where the vis-changed event is
2609 // first sent to the innermost control, while wx does things
2610 // from the outmost control
2611 wxVis
= wxWindowBase::IsShownOnScreen();
2615 return GetPeer()->IsVisible();
2617 return wxWindowBase::IsShownOnScreen();
2620 #if wxUSE_HOTKEY && wxOSX_USE_COCOA_OR_CARBON
2623 wxHotKeyHandler(EventHandlerCallRef
WXUNUSED(nextHandler
),
2625 void* WXUNUSED(userData
))
2627 EventHotKeyID hotKeyId
;
2629 GetEventParameter( event
, kEventParamDirectObject
, typeEventHotKeyID
, NULL
, sizeof(hotKeyId
), NULL
, &hotKeyId
);
2631 for ( unsigned i
= 0; i
< s_hotkeys
.size(); ++i
)
2633 if ( s_hotkeys
[i
].keyId
== static_cast<int>(hotKeyId
.id
) )
2635 unsigned char charCode
;
2638 UInt32 when
= EventTimeToTicks( GetEventTime( event
) ) ;
2640 GetEventParameter( event
, kEventParamKeyMacCharCodes
, typeChar
, NULL
, 1, NULL
, &charCode
);
2641 GetEventParameter( event
, kEventParamKeyCode
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &keyCode
);
2642 GetEventParameter( event
, kEventParamKeyModifiers
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &modifiers
);
2644 UInt32 keymessage
= (keyCode
<< 8) + charCode
;
2646 wxKeyEvent
wxevent(wxEVT_HOTKEY
);
2647 wxevent
.SetId(hotKeyId
.id
);
2648 wxTheApp
->MacCreateKeyEvent( wxevent
, s_hotkeys
[i
].window
, keymessage
,
2649 modifiers
, when
, 0 ) ;
2651 s_hotkeys
[i
].window
->HandleWindowEvent(wxevent
);
2658 bool wxWindowMac::RegisterHotKey(int hotkeyId
, int modifiers
, int keycode
)
2660 for ( unsigned i
= 0; i
< s_hotkeys
.size(); ++i
)
2662 if ( s_hotkeys
[i
].keyId
== hotkeyId
)
2664 wxLogLastError(wxT("hotkeyId already registered"));
2670 static bool installed
= false;
2673 EventTypeSpec eventType
;
2674 eventType
.eventClass
=kEventClassKeyboard
;
2675 eventType
.eventKind
=kEventHotKeyPressed
;
2677 InstallApplicationEventHandler(&wxHotKeyHandler
, 1, &eventType
, NULL
, NULL
);
2681 UInt32 mac_modifiers
=0;
2682 if ( modifiers
& wxMOD_ALT
)
2683 mac_modifiers
|= optionKey
;
2684 if ( modifiers
& wxMOD_SHIFT
)
2685 mac_modifiers
|= shiftKey
;
2686 if ( modifiers
& wxMOD_RAW_CONTROL
)
2687 mac_modifiers
|= controlKey
;
2688 if ( modifiers
& wxMOD_CONTROL
)
2689 mac_modifiers
|= cmdKey
;
2691 EventHotKeyRef hotKeyRef
;
2692 EventHotKeyID hotKeyIDmac
;
2694 hotKeyIDmac
.signature
= 'WXMC';
2695 hotKeyIDmac
.id
= hotkeyId
;
2697 if ( RegisterEventHotKey(wxCharCodeWXToOSX((wxKeyCode
)keycode
), mac_modifiers
, hotKeyIDmac
,
2698 GetApplicationEventTarget(), 0, &hotKeyRef
) != noErr
)
2700 wxLogLastError(wxT("RegisterHotKey"));
2711 s_hotkeys
.push_back(v
);
2717 bool wxWindowMac::UnregisterHotKey(int hotkeyId
)
2719 for ( int i
= ((int)s_hotkeys
.size())-1; i
>=0; -- i
)
2721 if ( s_hotkeys
[i
].keyId
== hotkeyId
)
2723 EventHotKeyRef ref
= s_hotkeys
[i
].ref
;
2724 s_hotkeys
.erase(s_hotkeys
.begin() + i
);
2725 if ( UnregisterEventHotKey(ref
) != noErr
)
2727 wxLogLastError(wxT("UnregisterHotKey"));
2739 #endif // wxUSE_HOTKEY
2741 bool wxWindowMac::OSXHandleKeyEvent( wxKeyEvent
& event
)
2743 bool handled
= false;
2745 // moved the ordinary key event sending AFTER the accel evaluation
2748 if ( !handled
&& event
.GetEventType() == wxEVT_KEY_DOWN
)
2750 wxWindow
*ancestor
= this;
2753 int command
= ancestor
->GetAcceleratorTable()->GetCommand( event
);
2756 wxEvtHandler
* const handler
= ancestor
->GetEventHandler();
2758 wxCommandEvent
command_event( wxEVT_MENU
, command
);
2759 handled
= handler
->ProcessEvent( command_event
);
2763 // accelerators can also be used with buttons, try them too
2764 command_event
.SetEventType(wxEVT_BUTTON
);
2765 handled
= handler
->ProcessEvent( command_event
);
2771 if (ancestor
->IsTopLevel())
2774 ancestor
= ancestor
->GetParent();
2777 #endif // wxUSE_ACCEL
2781 handled
= HandleWindowEvent( event
) ;
2782 if ( handled
&& event
.GetSkipped() )
2793 // we are maintaining a n:1 map from native controls (ControlRef / NSView*) to their wxWidgetImpl
2794 // n:1 because we might have an embedded view eg within a scrollview, both being part of the same impl
2795 // the impl is calling Associate with its newly created native control(s), e.g. in InstallHandler
2797 WX_DECLARE_HASH_MAP(WXWidget
, wxWidgetImpl
*, wxPointerHash
, wxPointerEqual
, MacControlMap
);
2799 static MacControlMap wxWinMacControlList
;
2801 wxWindowMac
*wxFindWindowFromWXWidget(WXWidget inControl
)
2803 wxWidgetImpl
* impl
= wxWidgetImpl::FindFromWXWidget( inControl
);
2805 return impl
->GetWXPeer();
2810 wxWidgetImpl
*wxWidgetImpl::FindFromWXWidget(WXWidget inControl
)
2812 MacControlMap::iterator node
= wxWinMacControlList
.find(inControl
);
2814 return (node
== wxWinMacControlList
.end()) ? NULL
: node
->second
;
2817 void wxWidgetImpl::Associate(WXWidget inControl
, wxWidgetImpl
*impl
)
2819 // adding NULL ControlRef is (first) surely a result of an error and
2820 // (secondly) breaks native event processing
2821 wxCHECK_RET( inControl
!= (WXWidget
) NULL
, wxT("attempt to add a NULL WXWidget to control map") );
2823 wxWinMacControlList
[inControl
] = impl
;
2826 void wxWidgetImpl::RemoveAssociations(wxWidgetImpl
* impl
)
2828 // iterate over all the elements in the class
2829 // is the iterator stable ? as we might have two associations pointing to the same wxWindow
2830 // we should go on...
2836 MacControlMap::iterator it
;
2837 for ( it
= wxWinMacControlList
.begin(); it
!= wxWinMacControlList
.end(); ++it
)
2839 if ( it
->second
== impl
)
2841 wxWinMacControlList
.erase(it
);
2849 IMPLEMENT_ABSTRACT_CLASS( wxWidgetImpl
, wxObject
)
2851 wxWidgetImpl::wxWidgetImpl( wxWindowMac
* peer
, bool isRootControl
, bool isUserPane
)
2854 m_isRootControl
= isRootControl
;
2855 m_isUserPane
= isUserPane
;
2857 m_shouldSendEvents
= true;
2860 wxWidgetImpl::wxWidgetImpl()
2865 wxWidgetImpl::~wxWidgetImpl()
2869 void wxWidgetImpl::Init()
2871 m_isRootControl
= false;
2873 m_needsFocusRect
= false;
2874 m_needsFrame
= true;
2877 void wxWidgetImpl::SetNeedsFocusRect( bool needs
)
2879 m_needsFocusRect
= needs
;
2882 bool wxWidgetImpl::NeedsFocusRect() const
2884 return m_needsFocusRect
;
2887 void wxWidgetImpl::SetNeedsFrame( bool needs
)
2889 m_needsFrame
= needs
;
2892 bool wxWidgetImpl::NeedsFrame() const
2894 return m_needsFrame
;
2897 void wxWidgetImpl::SetDrawingEnabled(bool WXUNUSED(enabled
))