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 if ( m_peer
!= kOSXNoWidgetImpl
)
421 SetPeer(wxWidgetImpl::CreateUserPane( this, parent
, id
, pos
, size
, style
, GetExtraStyle() ));
422 MacPostControlCreate(pos
, size
) ;
425 #ifndef __WXUNIVERSAL__
426 // Don't give scrollbars to wxControls unless they ask for them
427 if ( (! IsKindOf(CLASSINFO(wxControl
))
429 && ! IsKindOf(CLASSINFO(wxStatusBar
))
432 || (IsKindOf(CLASSINFO(wxControl
)) && ((style
& wxHSCROLL
) || (style
& wxVSCROLL
))))
434 MacCreateScrollBars( style
) ;
438 wxWindowCreateEvent
event((wxWindow
*)this);
439 GetEventHandler()->AddPendingEvent(event
);
444 void wxWindowMac::MacChildAdded()
448 m_vScrollBar
->Raise() ;
450 m_hScrollBar
->Raise() ;
456 void wxWindowMac::MacPostControlCreate(const wxPoint
& WXUNUSED(pos
),
457 const wxSize
& WXUNUSED(size
))
459 // todo remove if refactoring works correctly
461 wxASSERT_MSG( GetPeer() != NULL
&& GetPeer()->IsOk() , wxT("No valid mac control") ) ;
463 if (!GetParent()->GetChildren().Find((wxWindow
*)this))
464 GetParent()->AddChild( this );
466 GetPeer()->InstallEventHandler();
467 GetPeer()->Embed(GetParent()->GetPeer());
469 GetParent()->MacChildAdded() ;
471 // adjust font, controlsize etc
472 DoSetWindowVariant( m_windowVariant
) ;
474 GetPeer()->SetLabel( wxStripMenuCodes(m_label
, wxStrip_Mnemonics
), GetFont().GetEncoding() ) ;
476 // for controls we want to use best size for wxDefaultSize params )
477 if ( !GetPeer()->IsUserPane() )
478 SetInitialSize(size
);
480 SetCursor( *wxSTANDARD_CURSOR
) ;
484 void wxWindowMac::DoSetWindowVariant( wxWindowVariant variant
)
486 // Don't assert, in case we set the window variant before
487 // the window is created
488 // wxASSERT( GetPeer()->IsOk() ) ;
490 m_windowVariant
= variant
;
492 if (GetPeer() == NULL
|| !GetPeer()->IsOk())
495 GetPeer()->SetControlSize( variant
);
499 case wxWINDOW_VARIANT_NORMAL
:
500 static wxFont
sysNormal(wxOSX_SYSTEM_FONT_NORMAL
);
504 case wxWINDOW_VARIANT_SMALL
:
505 static wxFont
sysSmall(wxOSX_SYSTEM_FONT_SMALL
);
509 case wxWINDOW_VARIANT_MINI
:
510 static wxFont
sysMini(wxOSX_SYSTEM_FONT_MINI
);
514 case wxWINDOW_VARIANT_LARGE
:
515 static wxFont
sysLarge(wxOSX_SYSTEM_FONT_NORMAL
);
520 wxFAIL_MSG(wxT("unexpected window variant"));
525 void wxWindowMac::MacUpdateControlFont()
528 GetPeer()->SetFont( GetFont() , GetForegroundColour() , GetWindowStyle() ) ;
530 // do not trigger refreshes upon invisible and possible partly created objects
531 if ( IsShownOnScreen() )
535 bool wxWindowMac::SetFont(const wxFont
& font
)
537 bool retval
= wxWindowBase::SetFont( font
);
539 MacUpdateControlFont() ;
544 bool wxWindowMac::SetForegroundColour(const wxColour
& col
)
546 bool retval
= wxWindowBase::SetForegroundColour( col
);
549 MacUpdateControlFont();
554 bool wxWindowMac::SetBackgroundStyle(wxBackgroundStyle style
)
556 if ( !wxWindowBase::SetBackgroundStyle(style
) )
560 GetPeer()->SetBackgroundStyle(style
);
564 bool wxWindowMac::SetBackgroundColour(const wxColour
& col
)
568 if ( m_backgroundColour
.IsOk() )
569 m_growBox
->SetBackgroundColour(m_backgroundColour
);
571 m_growBox
->SetBackgroundColour(*wxWHITE
);
574 if ( !wxWindowBase::SetBackgroundColour(col
) && m_hasBgCol
)
578 GetPeer()->SetBackgroundColour( col
) ;
583 static bool wxIsWindowOrParentDisabled(wxWindow
* w
)
585 while (w
&& !w
->IsTopLevel())
594 void wxWindowMac::SetFocus()
596 if ( !AcceptsFocus() )
599 if (wxIsWindowOrParentDisabled((wxWindow
*) this))
602 wxWindow
* former
= FindFocus() ;
603 if ( former
== this )
606 GetPeer()->SetFocus() ;
609 void wxWindowMac::OSXSimulateFocusEvents()
611 wxWindow
* former
= FindFocus() ;
612 if ( former
!= NULL
&& former
!= this )
615 wxFocusEvent
event( wxEVT_KILL_FOCUS
, former
->GetId());
616 event
.SetEventObject(former
);
617 former
->HandleWindowEvent(event
) ;
621 wxFocusEvent
event(wxEVT_SET_FOCUS
, former
->GetId());
622 event
.SetEventObject(former
);
623 former
->HandleWindowEvent(event
);
628 void wxWindowMac::DoCaptureMouse()
630 wxApp::s_captureWindow
= (wxWindow
*) this ;
631 GetPeer()->CaptureMouse() ;
634 wxWindow
* wxWindowBase::GetCapture()
636 return wxApp::s_captureWindow
;
639 void wxWindowMac::DoReleaseMouse()
641 wxApp::s_captureWindow
= NULL
;
643 GetPeer()->ReleaseMouse() ;
646 #if wxUSE_DRAG_AND_DROP
648 void wxWindowMac::SetDropTarget(wxDropTarget
*pDropTarget
)
652 m_dropTarget
= pDropTarget
;
654 GetPeer()->SetDropTarget(m_dropTarget
) ;
659 // Old-style File Manager Drag & Drop
660 void wxWindowMac::DragAcceptFiles(bool WXUNUSED(accept
))
665 // From a wx position / size calculate the appropriate size of the native control
667 bool wxWindowMac::MacGetBoundsForControl(
671 int& w
, int& h
, bool adjustOrigin
) const
673 // the desired size, minus the border pixels gives the correct size of the control
677 w
= WidthDefault( size
.x
);
678 h
= HeightDefault( size
.y
);
680 x
+= MacGetLeftBorderSize() ;
681 y
+= MacGetTopBorderSize() ;
682 w
-= MacGetLeftBorderSize() + MacGetRightBorderSize() ;
683 h
-= MacGetTopBorderSize() + MacGetBottomBorderSize() ;
686 AdjustForParentClientOrigin( x
, y
) ;
688 // this is in window relative coordinate, as this parent may have a border, its physical position is offset by this border
689 if ( GetParent() && !GetParent()->IsTopLevel() )
691 x
-= GetParent()->MacGetLeftBorderSize() ;
692 y
-= GetParent()->MacGetTopBorderSize() ;
698 // Get window size (not client size)
699 void wxWindowMac::DoGetSize(int *x
, int *y
) const
702 GetPeer()->GetSize( width
, height
);
705 *x
= width
+ MacGetLeftBorderSize() + MacGetRightBorderSize() ;
707 *y
= height
+ MacGetTopBorderSize() + MacGetBottomBorderSize() ;
710 // get the position of the bounds of this window in client coordinates of its parent
711 void wxWindowMac::DoGetPosition(int *x
, int *y
) const
715 GetPeer()->GetPosition( x1
, y1
) ;
717 // get the wx window position from the native one
718 x1
-= MacGetLeftBorderSize() ;
719 y1
-= MacGetTopBorderSize() ;
723 wxWindow
*parent
= GetParent();
726 // we must first adjust it to be in window coordinates of the parent,
727 // as otherwise it gets lost by the ClientAreaOrigin fix
728 x1
+= parent
->MacGetLeftBorderSize() ;
729 y1
+= parent
->MacGetTopBorderSize() ;
731 // and now to client coordinates
732 wxPoint
pt(parent
->GetClientAreaOrigin());
744 void wxWindowMac::DoScreenToClient(int *x
, int *y
) const
746 wxNonOwnedWindow
* tlw
= MacGetTopLevelWindow() ;
747 wxCHECK_RET( tlw
, wxT("TopLevel Window missing") ) ;
748 tlw
->GetNonOwnedPeer()->ScreenToWindow( x
, y
);
749 MacRootWindowToWindow( x
, y
) ;
751 wxPoint origin
= GetClientAreaOrigin() ;
758 void wxWindowMac::DoClientToScreen(int *x
, int *y
) const
760 wxNonOwnedWindow
* tlw
= MacGetTopLevelWindow() ;
761 wxCHECK_RET( tlw
, wxT("TopLevel window missing") ) ;
763 wxPoint origin
= GetClientAreaOrigin() ;
769 MacWindowToRootWindow( x
, y
) ;
770 tlw
->GetNonOwnedPeer()->WindowToScreen( x
, y
);
773 void wxWindowMac::MacClientToRootWindow( int *x
, int *y
) const
775 wxPoint origin
= GetClientAreaOrigin() ;
781 MacWindowToRootWindow( x
, y
) ;
784 void wxWindowMac::MacWindowToRootWindow( int *x
, int *y
) const
795 wxNonOwnedWindow
* top
= MacGetTopLevelWindow();
798 pt
.x
-= MacGetLeftBorderSize() ;
799 pt
.y
-= MacGetTopBorderSize() ;
800 wxWidgetImpl::Convert( &pt
, GetPeer() , top
->GetPeer() ) ;
810 void wxWindowMac::MacRootWindowToWindow( int *x
, int *y
) const
821 wxNonOwnedWindow
* top
= MacGetTopLevelWindow();
824 wxWidgetImpl::Convert( &pt
, top
->GetPeer() , GetPeer() ) ;
825 pt
.x
+= MacGetLeftBorderSize() ;
826 pt
.y
+= MacGetTopBorderSize() ;
836 wxSize
wxWindowMac::DoGetSizeFromClientSize( const wxSize
& size
) const
838 wxSize sizeTotal
= size
;
840 int innerwidth
, innerheight
;
842 int outerwidth
, outerheight
;
844 GetPeer()->GetContentArea( left
, top
, innerwidth
, innerheight
);
845 GetPeer()->GetSize( outerwidth
, outerheight
);
847 sizeTotal
.x
+= outerwidth
-innerwidth
;
848 sizeTotal
.y
+= outerheight
-innerheight
;
850 sizeTotal
.x
+= MacGetLeftBorderSize() + MacGetRightBorderSize() ;
851 sizeTotal
.y
+= MacGetTopBorderSize() + MacGetBottomBorderSize() ;
856 // Get size *available for subwindows* i.e. excluding menu bar etc.
857 void wxWindowMac::DoGetClientSize( int *x
, int *y
) const
863 GetPeer()->GetContentArea( left
, top
, ww
, hh
);
865 if (m_hScrollBar
&& m_hScrollBar
->IsShown() )
866 hh
-= m_hScrollBar
->GetSize().y
;
868 if (m_vScrollBar
&& m_vScrollBar
->IsShown() )
869 ww
-= m_vScrollBar
->GetSize().x
;
878 bool wxWindowMac::SetCursor(const wxCursor
& cursor
)
880 if (m_cursor
.IsSameAs(cursor
))
885 if ( ! wxWindowBase::SetCursor( *wxSTANDARD_CURSOR
) )
890 if ( ! wxWindowBase::SetCursor( cursor
) )
894 wxASSERT_MSG( m_cursor
.IsOk(),
895 wxT("cursor must be valid after call to the base version"));
897 if ( GetPeer() != NULL
)
898 GetPeer()->SetCursor( m_cursor
);
904 bool wxWindowMac::DoPopupMenu(wxMenu
*menu
, int x
, int y
)
906 #ifndef __WXUNIVERSAL__
909 if ( x
== wxDefaultCoord
&& y
== wxDefaultCoord
)
911 wxPoint mouse
= wxGetMousePosition();
917 ClientToScreen( &x
, &y
) ;
919 menu
->GetPeer()->PopUp(this, x
, y
);
922 // actually this shouldn't be called, because universal is having its own implementation
928 // ----------------------------------------------------------------------------
930 // ----------------------------------------------------------------------------
934 void wxWindowMac::DoSetToolTip(wxToolTip
*tooltip
)
936 wxWindowBase::DoSetToolTip(tooltip
);
939 m_tooltip
->SetWindow(this);
942 GetPeer()->SetToolTip(tooltip
);
947 void wxWindowMac::MacInvalidateBorders()
949 if ( GetPeer() == NULL
)
952 bool vis
= IsShownOnScreen() ;
956 int outerBorder
= MacGetLeftBorderSize() ;
958 if ( GetPeer()->NeedsFocusRect() )
961 if ( outerBorder
== 0 )
964 // now we know that we have something to do at all
968 GetPeer()->GetSize( tw
, th
);
969 GetPeer()->GetPosition( tx
, ty
);
971 wxRect
leftupdate( tx
-outerBorder
,ty
,outerBorder
,th
);
972 wxRect
rightupdate( tx
+tw
, ty
, outerBorder
, th
);
973 wxRect
topupdate( tx
-outerBorder
, ty
-outerBorder
, tw
+ 2 * outerBorder
, outerBorder
);
974 wxRect
bottomupdate( tx
-outerBorder
, ty
+ th
, tw
+ 2 * outerBorder
, outerBorder
);
977 GetParent()->GetPeer()->SetNeedsDisplay(&leftupdate
);
978 GetParent()->GetPeer()->SetNeedsDisplay(&rightupdate
);
979 GetParent()->GetPeer()->SetNeedsDisplay(&topupdate
);
980 GetParent()->GetPeer()->SetNeedsDisplay(&bottomupdate
);
984 void wxWindowMac::DoMoveWindow(int x
, int y
, int width
, int height
)
986 // this is never called for a toplevel window, so we know we have a parent
987 int former_x
, former_y
, former_w
, former_h
;
989 // Get true coordinates of former position
990 DoGetPosition( &former_x
, &former_y
) ;
991 DoGetSize( &former_w
, &former_h
) ;
993 wxWindow
*parent
= GetParent();
996 wxPoint
pt(parent
->GetClientAreaOrigin());
1001 int actualWidth
= width
;
1002 int actualHeight
= height
;
1007 // min and max sizes are only for sizers, not for explicit size setting
1008 if ((m_minWidth
!= -1) && (actualWidth
< m_minWidth
))
1009 actualWidth
= m_minWidth
;
1010 if ((m_minHeight
!= -1) && (actualHeight
< m_minHeight
))
1011 actualHeight
= m_minHeight
;
1012 if ((m_maxWidth
!= -1) && (actualWidth
> m_maxWidth
))
1013 actualWidth
= m_maxWidth
;
1014 if ((m_maxHeight
!= -1) && (actualHeight
> m_maxHeight
))
1015 actualHeight
= m_maxHeight
;
1018 bool doMove
= false, doResize
= false ;
1020 if ( actualX
!= former_x
|| actualY
!= former_y
)
1023 if ( actualWidth
!= former_w
|| actualHeight
!= former_h
)
1026 if ( doMove
|| doResize
)
1028 // as the borders are drawn outside the native control, we adjust now
1030 wxRect
bounds( wxPoint( actualX
+ MacGetLeftBorderSize() ,actualY
+ MacGetTopBorderSize() ),
1031 wxSize( actualWidth
- (MacGetLeftBorderSize() + MacGetRightBorderSize()) ,
1032 actualHeight
- (MacGetTopBorderSize() + MacGetBottomBorderSize()) ) ) ;
1034 if ( parent
&& !parent
->IsTopLevel() )
1036 bounds
.Offset( -parent
->MacGetLeftBorderSize(), -parent
->MacGetTopBorderSize() );
1039 MacInvalidateBorders() ;
1041 m_cachedClippedRectValid
= false ;
1043 GetPeer()->Move( bounds
.x
, bounds
.y
, bounds
.width
, bounds
.height
);
1045 wxWindowMac::MacSuperChangedPosition() ; // like this only children will be notified
1047 MacInvalidateBorders() ;
1049 MacRepositionScrollBars() ;
1052 wxPoint
point(actualX
, actualY
);
1053 wxMoveEvent
event(point
, m_windowId
);
1054 event
.SetEventObject(this);
1055 HandleWindowEvent(event
) ;
1060 MacRepositionScrollBars() ;
1061 MacOnInternalSize();
1062 wxSize
size(actualWidth
, actualHeight
);
1063 wxSizeEvent
event(size
, m_windowId
);
1064 event
.SetEventObject(this);
1065 HandleWindowEvent(event
);
1070 wxSize
wxWindowMac::DoGetBestSize() const
1072 if ( GetPeer() == NULL
|| GetPeer()->IsUserPane() || IsTopLevel() )
1074 return wxWindowBase::DoGetBestSize() ;
1080 GetPeer()->GetBestRect(&r
);
1082 if ( r
.GetWidth() == 0 && r
.GetHeight() == 0 )
1090 if ( IsKindOf( CLASSINFO( wxScrollBar
) ) )
1097 if ( IsKindOf( CLASSINFO( wxSpinButton
) ) )
1104 // return wxWindowBase::DoGetBestSize() ;
1108 int bestWidth
= r
.width
+ MacGetLeftBorderSize() +
1109 MacGetRightBorderSize();
1110 int bestHeight
= r
.height
+ MacGetTopBorderSize() +
1111 MacGetBottomBorderSize();
1112 if ( bestHeight
< 10 )
1115 return wxSize(bestWidth
, bestHeight
);
1119 // set the size of the window: if the dimensions are positive, just use them,
1120 // but if any of them is equal to -1, it means that we must find the value for
1121 // it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in
1122 // which case -1 is a valid value for x and y)
1124 // If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate
1125 // the width/height to best suit our contents, otherwise we reuse the current
1127 void wxWindowMac::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
1129 // get the current size and position...
1130 int currentX
, currentY
;
1131 int currentW
, currentH
;
1133 GetPosition(¤tX
, ¤tY
);
1134 GetSize(¤tW
, ¤tH
);
1136 // ... and don't do anything (avoiding flicker) if it's already ok
1137 if ( x
== currentX
&& y
== currentY
&&
1138 width
== currentW
&& height
== currentH
&& ( height
!= -1 && width
!= -1 ) )
1141 MacRepositionScrollBars() ; // we might have a real position shift
1143 if (sizeFlags
& wxSIZE_FORCE_EVENT
)
1145 MacOnInternalSize();
1146 wxSizeEvent
event( wxSize(width
,height
), GetId() );
1147 event
.SetEventObject( this );
1148 HandleWindowEvent( event
);
1154 if ( !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
1156 if ( x
== wxDefaultCoord
)
1158 if ( y
== wxDefaultCoord
)
1162 AdjustForParentClientOrigin( x
, y
, sizeFlags
);
1164 wxSize size
= wxDefaultSize
;
1165 if ( width
== wxDefaultCoord
)
1167 if ( sizeFlags
& wxSIZE_AUTO_WIDTH
)
1169 size
= DoGetBestSize();
1174 // just take the current one
1179 if ( height
== wxDefaultCoord
)
1181 if ( sizeFlags
& wxSIZE_AUTO_HEIGHT
)
1183 if ( size
.x
== wxDefaultCoord
)
1184 size
= DoGetBestSize();
1185 // else: already called DoGetBestSize() above
1191 // just take the current one
1196 DoMoveWindow( x
, y
, width
, height
);
1199 wxPoint
wxWindowMac::GetClientAreaOrigin() const
1201 int left
,top
,width
,height
;
1202 GetPeer()->GetContentArea( left
, top
, width
, height
);
1203 return wxPoint( left
+ MacGetLeftBorderSize() , top
+ MacGetTopBorderSize() );
1206 void wxWindowMac::DoSetClientSize(int clientwidth
, int clientheight
)
1208 if ( clientwidth
!= wxDefaultCoord
|| clientheight
!= wxDefaultCoord
)
1210 int currentclientwidth
, currentclientheight
;
1211 int currentwidth
, currentheight
;
1213 GetClientSize( ¤tclientwidth
, ¤tclientheight
) ;
1214 GetSize( ¤twidth
, ¤theight
) ;
1216 DoSetSize( wxDefaultCoord
, wxDefaultCoord
, currentwidth
+ clientwidth
- currentclientwidth
,
1217 currentheight
+ clientheight
- currentclientheight
, wxSIZE_USE_EXISTING
) ;
1221 float wxWindowMac::GetContentScaleFactor() const
1223 return GetPeer()->GetContentScaleFactor();
1226 void wxWindowMac::SetLabel(const wxString
& title
)
1228 if ( title
== m_label
)
1233 InvalidateBestSize();
1235 if ( GetPeer() && GetPeer()->IsOk() )
1236 GetPeer()->SetLabel( wxStripMenuCodes(m_label
, wxStrip_Mnemonics
), GetFont().GetEncoding() ) ;
1238 // do not trigger refreshes upon invisible and possible partly created objects
1239 if ( IsShownOnScreen() )
1243 wxString
wxWindowMac::GetLabel() const
1248 bool wxWindowMac::Show(bool show
)
1251 MacInvalidateBorders();
1253 if ( !wxWindowBase::Show(show
) )
1257 GetPeer()->SetVisibility( show
) ;
1260 MacInvalidateBorders();
1262 #ifdef __WXOSX_IPHONE__
1263 // only when there's no native event support
1264 if ( !IsTopLevel() )
1267 wxShowEvent
eventShow(GetId(), show
);
1268 eventShow
.SetEventObject(this);
1270 HandleWindowEvent(eventShow
);
1276 bool wxWindowMac::OSXShowWithEffect(bool show
,
1277 wxShowEffect effect
,
1280 if ( effect
== wxSHOW_EFFECT_NONE
||
1281 !GetPeer() || !GetPeer()->ShowWithEffect(show
, effect
, timeout
) )
1287 void wxWindowMac::DoEnable(bool enable
)
1289 GetPeer()->Enable( enable
) ;
1290 MacInvalidateBorders();
1294 // status change notifications
1297 void wxWindowMac::MacVisibilityChanged()
1301 void wxWindowMac::MacHiliteChanged()
1305 void wxWindowMac::MacEnabledStateChanged()
1310 // status queries on the inherited window's state
1313 bool wxWindowMac::MacIsReallyEnabled()
1315 return GetPeer()->IsEnabled() ;
1318 bool wxWindowMac::MacIsReallyHilited()
1320 #if wxOSX_USE_CARBON
1321 return GetPeer()->IsActive();
1323 return true; // TODO
1327 int wxWindowMac::GetCharHeight() const
1330 GetTextExtent( wxT("g") , NULL
, &height
, NULL
, NULL
, NULL
);
1335 int wxWindowMac::GetCharWidth() const
1338 GetTextExtent( wxT("g") , &width
, NULL
, NULL
, NULL
, NULL
);
1343 void wxWindowMac::DoGetTextExtent(const wxString
& str
,
1346 int *externalLeading
,
1347 const wxFont
*theFont
) const
1349 const wxFont
*fontToUse
= theFont
;
1353 tempFont
= GetFont();
1354 fontToUse
= &tempFont
;
1357 wxGraphicsContext
* ctx
= wxGraphicsContext::Create();
1358 ctx
->SetFont( *fontToUse
, *wxBLACK
);
1360 wxDouble h
, d
, e
, w
;
1361 ctx
->GetTextExtent( str
, &w
, &h
, &d
, &e
);
1365 if ( externalLeading
)
1366 *externalLeading
= (wxCoord
)(e
+0.5);
1368 *descent
= (wxCoord
)(d
+0.5);
1370 *x
= (wxCoord
)(w
+0.5);
1372 *y
= (wxCoord
)(h
+0.5);
1376 * Rect is given in client coordinates, for further reading, read wxTopLevelWindowMac::InvalidateRect
1377 * we always intersect with the entire window, not only with the client area
1380 void wxWindowMac::Refresh(bool WXUNUSED(eraseBack
), const wxRect
*rect
)
1382 if ( GetPeer() == NULL
)
1385 if ( !IsShownOnScreen() )
1391 GetPeer()->SetNeedsDisplay( rect
) ;
1394 void wxWindowMac::DoFreeze()
1396 if ( GetPeer() && GetPeer()->IsOk() )
1397 GetPeer()->SetDrawingEnabled( false ) ;
1400 void wxWindowMac::DoThaw()
1402 if ( GetPeer() && GetPeer()->IsOk() )
1403 GetPeer()->SetDrawingEnabled( true ) ;
1406 wxWindow
*wxGetActiveWindow()
1408 // actually this is a windows-only concept
1412 // Coordinates relative to the window
1413 void wxWindowMac::WarpPointer(int x_pos
, int y_pos
)
1415 #if wxOSX_USE_COCOA_OR_CARBON
1418 DoClientToScreen(&x
, &y
);
1419 CGPoint cgpoint
= CGPointMake( x
, y
);
1420 CGWarpMouseCursorPosition( cgpoint
);
1422 // At least GTK sends a mouse moved event after WarpMouse
1423 wxMouseEvent
event(wxEVT_MOTION
);
1426 wxMouseState mState
= ::wxGetMouseState();
1428 event
.m_altDown
= mState
.AltDown();
1429 event
.m_controlDown
= mState
.ControlDown();
1430 event
.m_leftDown
= mState
.LeftIsDown();
1431 event
.m_middleDown
= mState
.MiddleIsDown();
1432 event
.m_rightDown
= mState
.RightIsDown();
1433 event
.m_metaDown
= mState
.MetaDown();
1434 event
.m_shiftDown
= mState
.ShiftDown();
1435 event
.SetId(GetId());
1436 event
.SetEventObject(this);
1437 GetEventHandler()->ProcessEvent(event
);
1441 int wxWindowMac::GetScrollPos(int orient
) const
1444 if ( orient
== wxHORIZONTAL
)
1447 return m_hScrollBar
->GetThumbPosition() ;
1452 return m_vScrollBar
->GetThumbPosition() ;
1458 // This now returns the whole range, not just the number
1459 // of positions that we can scroll.
1460 int wxWindowMac::GetScrollRange(int orient
) const
1463 if ( orient
== wxHORIZONTAL
)
1466 return m_hScrollBar
->GetRange() ;
1471 return m_vScrollBar
->GetRange() ;
1477 int wxWindowMac::GetScrollThumb(int orient
) const
1480 if ( orient
== wxHORIZONTAL
)
1483 return m_hScrollBar
->GetThumbSize() ;
1488 return m_vScrollBar
->GetThumbSize() ;
1494 void wxWindowMac::SetScrollPos(int orient
, int pos
, bool WXUNUSED(refresh
))
1497 if ( orient
== wxHORIZONTAL
)
1500 m_hScrollBar
->SetThumbPosition( pos
) ;
1505 m_vScrollBar
->SetThumbPosition( pos
) ;
1511 wxWindowMac::AlwaysShowScrollbars(bool hflag
, bool vflag
)
1513 bool needVisibilityUpdate
= false;
1515 if ( m_hScrollBarAlwaysShown
!= hflag
)
1517 m_hScrollBarAlwaysShown
= hflag
;
1518 needVisibilityUpdate
= true;
1521 if ( m_vScrollBarAlwaysShown
!= vflag
)
1523 m_vScrollBarAlwaysShown
= vflag
;
1524 needVisibilityUpdate
= true;
1527 if ( needVisibilityUpdate
)
1528 DoUpdateScrollbarVisibility();
1532 // we draw borders and grow boxes, are already set up and clipped in the current port / cgContextRef
1533 // our own window origin is at leftOrigin/rightOrigin
1536 void wxWindowMac::MacPaintGrowBox()
1542 if ( MacHasScrollBarCorner() )
1545 CGContextRef cgContext
= (CGContextRef
) MacGetCGContextRef() ;
1546 wxASSERT( cgContext
) ;
1550 GetPeer()->GetSize( tw
, th
);
1551 GetPeer()->GetPosition( tx
, ty
);
1553 Rect rect
= { ty
,tx
, ty
+th
, tx
+tw
};
1556 int size
= m_hScrollBar
? m_hScrollBar
->GetSize().y
: ( m_vScrollBar
? m_vScrollBar
->GetSize().x
: MAC_SCROLLBAR_SIZE
) ;
1557 CGRect cgrect
= CGRectMake( rect
.right
- size
, rect
.bottom
- size
, size
, size
) ;
1558 CGContextSaveGState( cgContext
);
1560 if ( m_backgroundColour
.IsOk() )
1562 CGContextSetFillColorWithColor( cgContext
, m_backgroundColour
.GetCGColor() );
1566 CGContextSetRGBFillColor( cgContext
, (CGFloat
) 1.0, (CGFloat
)1.0 ,(CGFloat
) 1.0 , (CGFloat
)1.0 );
1568 CGContextFillRect( cgContext
, cgrect
);
1569 CGContextRestoreGState( cgContext
);
1573 if ( m_backgroundColour
.IsOk() )
1574 m_growBox
->SetBackgroundColour(m_backgroundColour
);
1576 m_growBox
->SetBackgroundColour(*wxWHITE
);
1584 void wxWindowMac::MacPaintBorders( int WXUNUSED(leftOrigin
) , int WXUNUSED(rightOrigin
) )
1589 bool hasFocus
= GetPeer()->NeedsFocusRect() && HasFocus();
1591 // back to the surrounding frame rectangle
1594 GetPeer()->GetSize( tw
, th
);
1595 GetPeer()->GetPosition( tx
, ty
);
1597 #if wxOSX_USE_COCOA_OR_CARBON
1600 CGRect cgrect
= CGRectMake( tx
-1 , ty
-1 , tw
+2 ,
1603 CGContextRef cgContext
= (CGContextRef
) GetParent()->MacGetCGContextRef() ;
1604 wxASSERT( cgContext
) ;
1606 if ( GetPeer()->NeedsFrame() )
1608 HIThemeFrameDrawInfo info
;
1609 memset( &info
, 0 , sizeof(info
) ) ;
1613 info
.state
= IsEnabled() ? kThemeStateActive
: kThemeStateInactive
;
1614 info
.isFocused
= hasFocus
;
1616 if ( HasFlag(wxRAISED_BORDER
) || HasFlag(wxSUNKEN_BORDER
) || HasFlag(wxDOUBLE_BORDER
) )
1618 info
.kind
= kHIThemeFrameTextFieldSquare
;
1619 HIThemeDrawFrame( &cgrect
, &info
, cgContext
, kHIThemeOrientationNormal
) ;
1621 else if ( HasFlag(wxSIMPLE_BORDER
) )
1623 info
.kind
= kHIThemeFrameListBox
;
1624 HIThemeDrawFrame( &cgrect
, &info
, cgContext
, kHIThemeOrientationNormal
) ;
1630 HIThemeDrawFocusRect( &cgrect
, true , cgContext
, kHIThemeOrientationNormal
) ;
1633 #endif // wxOSX_USE_COCOA_OR_CARBON
1636 void wxWindowMac::RemoveChild( wxWindowBase
*child
)
1639 if ( child
== m_hScrollBar
)
1640 m_hScrollBar
= NULL
;
1641 if ( child
== m_vScrollBar
)
1642 m_vScrollBar
= NULL
;
1643 if ( child
== m_growBox
)
1646 wxWindowBase::RemoveChild( child
) ;
1649 void wxWindowMac::DoUpdateScrollbarVisibility()
1652 bool triggerSizeEvent
= false;
1656 bool showHScrollBar
= m_hScrollBarAlwaysShown
|| m_hScrollBar
->IsNeeded();
1658 if ( m_hScrollBar
->IsShown() != showHScrollBar
)
1660 m_hScrollBar
->Show( showHScrollBar
);
1661 triggerSizeEvent
= true;
1667 bool showVScrollBar
= m_vScrollBarAlwaysShown
|| m_vScrollBar
->IsNeeded();
1669 if ( m_vScrollBar
->IsShown() != showVScrollBar
)
1671 m_vScrollBar
->Show( showVScrollBar
) ;
1672 triggerSizeEvent
= true;
1676 MacRepositionScrollBars() ;
1677 if ( triggerSizeEvent
)
1679 MacOnInternalSize();
1680 wxSizeEvent
event(GetSize(), m_windowId
);
1681 event
.SetEventObject(this);
1682 HandleWindowEvent(event
);
1687 // New function that will replace some of the above.
1688 void wxWindowMac::SetScrollbar(int orient
, int pos
, int thumb
,
1689 int range
, bool refresh
)
1692 // Updating scrollbars when window is being deleted is useless and
1693 // currently results in asserts in client-to-screen coordinates conversion
1694 // code which is used by DoUpdateScrollbarVisibility() so just skip it.
1695 if ( m_isBeingDeleted
)
1698 if ( orient
== wxHORIZONTAL
&& m_hScrollBar
)
1699 m_hScrollBar
->SetScrollbar(pos
, thumb
, range
, thumb
, refresh
);
1700 else if ( orient
== wxVERTICAL
&& m_vScrollBar
)
1701 m_vScrollBar
->SetScrollbar(pos
, thumb
, range
, thumb
, refresh
);
1703 DoUpdateScrollbarVisibility();
1707 // Does a physical scroll
1708 void wxWindowMac::ScrollWindow(int dx
, int dy
, const wxRect
*rect
)
1710 if ( dx
== 0 && dy
== 0 )
1713 int width
, height
;
1714 GetClientSize( &width
, &height
) ;
1717 wxRect
scrollrect( MacGetLeftBorderSize() , MacGetTopBorderSize() , width
, height
) ;
1719 scrollrect
.Intersect( *rect
) ;
1720 // as the native control might be not a 0/0 wx window coordinates, we have to offset
1721 scrollrect
.Offset( -MacGetLeftBorderSize() , -MacGetTopBorderSize() ) ;
1723 GetPeer()->ScrollRect( &scrollrect
, dx
, dy
);
1728 for (wxWindowList::compatibility_iterator node
= GetChildren().GetFirst(); node
; node
= node
->GetNext())
1730 child
= node
->GetData();
1734 if (child
->IsTopLevel())
1737 if ( !IsClientAreaChild(child
) )
1740 child
->GetPosition( &x
, &y
);
1741 child
->GetSize( &w
, &h
);
1744 wxRect
rc( x
, y
, w
, h
);
1745 if (rect
->Intersects( rc
))
1746 child
->SetSize( x
+ dx
, y
+ dy
, w
, h
, wxSIZE_AUTO
|wxSIZE_ALLOW_MINUS_ONE
);
1750 child
->SetSize( x
+ dx
, y
+ dy
, w
, h
, wxSIZE_AUTO
|wxSIZE_ALLOW_MINUS_ONE
);
1755 void wxWindowMac::MacOnScroll( wxScrollEvent
&event
)
1758 if ( event
.GetEventObject() == m_vScrollBar
|| event
.GetEventObject() == m_hScrollBar
)
1760 wxScrollWinEvent wevent
;
1761 wevent
.SetPosition(event
.GetPosition());
1762 wevent
.SetOrientation(event
.GetOrientation());
1763 wevent
.SetEventObject(this);
1765 if (event
.GetEventType() == wxEVT_SCROLL_TOP
)
1766 wevent
.SetEventType( wxEVT_SCROLLWIN_TOP
);
1767 else if (event
.GetEventType() == wxEVT_SCROLL_BOTTOM
)
1768 wevent
.SetEventType( wxEVT_SCROLLWIN_BOTTOM
);
1769 else if (event
.GetEventType() == wxEVT_SCROLL_LINEUP
)
1770 wevent
.SetEventType( wxEVT_SCROLLWIN_LINEUP
);
1771 else if (event
.GetEventType() == wxEVT_SCROLL_LINEDOWN
)
1772 wevent
.SetEventType( wxEVT_SCROLLWIN_LINEDOWN
);
1773 else if (event
.GetEventType() == wxEVT_SCROLL_PAGEUP
)
1774 wevent
.SetEventType( wxEVT_SCROLLWIN_PAGEUP
);
1775 else if (event
.GetEventType() == wxEVT_SCROLL_PAGEDOWN
)
1776 wevent
.SetEventType( wxEVT_SCROLLWIN_PAGEDOWN
);
1777 else if (event
.GetEventType() == wxEVT_SCROLL_THUMBTRACK
)
1778 wevent
.SetEventType( wxEVT_SCROLLWIN_THUMBTRACK
);
1779 else if (event
.GetEventType() == wxEVT_SCROLL_THUMBRELEASE
)
1780 wevent
.SetEventType( wxEVT_SCROLLWIN_THUMBRELEASE
);
1782 HandleWindowEvent(wevent
);
1787 wxWindow
*wxWindowBase::DoFindFocus()
1789 return wxFindWindowFromWXWidget(wxWidgetImpl::FindFocus());
1792 // Raise the window to the top of the Z order
1793 void wxWindowMac::Raise()
1798 // Lower the window to the bottom of the Z order
1799 void wxWindowMac::Lower()
1804 // static wxWindow *gs_lastWhich = NULL;
1806 bool wxWindowMac::MacSetupCursor( const wxPoint
& pt
)
1808 // first trigger a set cursor event
1810 wxPoint clientorigin
= GetClientAreaOrigin() ;
1811 wxSize clientsize
= GetClientSize() ;
1813 if ( wxRect2DInt( clientorigin
.x
, clientorigin
.y
, clientsize
.x
, clientsize
.y
).Contains( wxPoint2DInt( pt
) ) )
1815 wxSetCursorEvent
event( pt
.x
, pt
.y
);
1816 event
.SetId(GetId());
1817 event
.SetEventObject(this);
1819 bool processedEvtSetCursor
= HandleWindowEvent(event
);
1820 if ( processedEvtSetCursor
&& event
.HasCursor() )
1822 cursor
= event
.GetCursor() ;
1826 // the test for processedEvtSetCursor is here to prevent using m_cursor
1827 // if the user code caught EVT_SET_CURSOR() and returned nothing from
1828 // it - this is a way to say that our cursor shouldn't be used for this
1830 if ( !processedEvtSetCursor
&& m_cursor
.IsOk() )
1833 if ( !wxIsBusy() && !GetParent() )
1834 cursor
= *wxSTANDARD_CURSOR
;
1837 if ( cursor
.IsOk() )
1838 cursor
.MacInstall() ;
1841 return cursor
.IsOk() ;
1844 wxString
wxWindowMac::MacGetToolTipString( wxPoint
&WXUNUSED(pt
) )
1848 return m_tooltip
->GetTip() ;
1851 return wxEmptyString
;
1854 void wxWindowMac::ClearBackground()
1860 void wxWindowMac::Update()
1862 wxNonOwnedWindow
* top
= MacGetTopLevelWindow();
1867 wxNonOwnedWindow
* wxWindowMac::MacGetTopLevelWindow() const
1869 wxWindowMac
*iter
= (wxWindowMac
*)this ;
1873 if ( iter
->IsTopLevel() )
1875 wxTopLevelWindow
* toplevel
= wxDynamicCast(iter
,wxTopLevelWindow
);
1879 wxPopupWindow
* popupwin
= wxDynamicCast(iter
,wxPopupWindow
);
1884 iter
= iter
->GetParent() ;
1890 const wxRect
& wxWindowMac::MacGetClippedClientRect() const
1892 MacUpdateClippedRects() ;
1894 return m_cachedClippedClientRect
;
1897 const wxRect
& wxWindowMac::MacGetClippedRect() const
1899 MacUpdateClippedRects() ;
1901 return m_cachedClippedRect
;
1904 const wxRect
&wxWindowMac:: MacGetClippedRectWithOuterStructure() const
1906 MacUpdateClippedRects() ;
1908 return m_cachedClippedRectWithOuterStructure
;
1911 const wxRegion
& wxWindowMac::MacGetVisibleRegion( bool includeOuterStructures
)
1913 static wxRegion emptyrgn
;
1915 if ( !m_isBeingDeleted
&& IsShownOnScreen() )
1917 MacUpdateClippedRects() ;
1918 if ( includeOuterStructures
)
1919 return m_cachedClippedRegionWithOuterStructure
;
1921 return m_cachedClippedRegion
;
1929 void wxWindowMac::MacUpdateClippedRects() const
1931 #if wxOSX_USE_CARBON
1932 if ( m_cachedClippedRectValid
)
1935 // includeOuterStructures is true if we try to draw somthing like a focus ring etc.
1936 // also a window dc uses this, in this case we only clip in the hierarchy for hard
1937 // borders like a scrollwindow, splitter etc otherwise we end up in a paranoia having
1938 // to add focus borders everywhere
1940 Rect rIncludingOuterStructures
;
1944 GetPeer()->GetSize( tw
, th
);
1945 GetPeer()->GetPosition( tx
, ty
);
1947 Rect r
= { ty
,tx
, ty
+th
, tx
+tw
};
1949 r
.left
-= MacGetLeftBorderSize() ;
1950 r
.top
-= MacGetTopBorderSize() ;
1951 r
.bottom
+= MacGetBottomBorderSize() ;
1952 r
.right
+= MacGetRightBorderSize() ;
1959 rIncludingOuterStructures
= r
;
1960 InsetRect( &rIncludingOuterStructures
, -4 , -4 ) ;
1962 wxRect cl
= GetClientRect() ;
1963 Rect rClient
= { cl
.y
, cl
.x
, cl
.y
+ cl
.height
, cl
.x
+ cl
.width
} ;
1967 const wxWindow
* child
= (wxWindow
*) this ;
1968 const wxWindow
* parent
= NULL
;
1970 while ( !child
->IsTopLevel() && ( parent
= child
->GetParent() ) != NULL
)
1972 if ( parent
->MacIsChildOfClientArea(child
) )
1974 size
= parent
->GetClientSize() ;
1975 wxPoint origin
= parent
->GetClientAreaOrigin() ;
1981 // this will be true for scrollbars, toolbars etc.
1982 size
= parent
->GetSize() ;
1983 y
= parent
->MacGetTopBorderSize() ;
1984 x
= parent
->MacGetLeftBorderSize() ;
1985 size
.x
-= parent
->MacGetLeftBorderSize() + parent
->MacGetRightBorderSize() ;
1986 size
.y
-= parent
->MacGetTopBorderSize() + parent
->MacGetBottomBorderSize() ;
1989 parent
->MacWindowToRootWindow( &x
, &y
) ;
1990 MacRootWindowToWindow( &x
, &y
) ;
1992 Rect rparent
= { y
, x
, y
+ size
.y
, x
+ size
.x
} ;
1994 // the wxwindow and client rects will always be clipped
1995 SectRect( &r
, &rparent
, &r
) ;
1996 SectRect( &rClient
, &rparent
, &rClient
) ;
1998 // the structure only at 'hard' borders
1999 if ( parent
->MacClipChildren() ||
2000 ( parent
->GetParent() && parent
->GetParent()->MacClipGrandChildren() ) )
2002 SectRect( &rIncludingOuterStructures
, &rparent
, &rIncludingOuterStructures
) ;
2008 m_cachedClippedRect
= wxRect( r
.left
, r
.top
, r
.right
- r
.left
, r
.bottom
- r
.top
) ;
2009 m_cachedClippedClientRect
= wxRect( rClient
.left
, rClient
.top
,
2010 rClient
.right
- rClient
.left
, rClient
.bottom
- rClient
.top
) ;
2011 m_cachedClippedRectWithOuterStructure
= wxRect(
2012 rIncludingOuterStructures
.left
, rIncludingOuterStructures
.top
,
2013 rIncludingOuterStructures
.right
- rIncludingOuterStructures
.left
,
2014 rIncludingOuterStructures
.bottom
- rIncludingOuterStructures
.top
) ;
2016 m_cachedClippedRegionWithOuterStructure
= wxRegion( m_cachedClippedRectWithOuterStructure
) ;
2017 m_cachedClippedRegion
= wxRegion( m_cachedClippedRect
) ;
2018 m_cachedClippedClientRegion
= wxRegion( m_cachedClippedClientRect
) ;
2020 m_cachedClippedRectValid
= true ;
2025 This function must not change the updatergn !
2027 bool wxWindowMac::MacDoRedraw( long time
)
2029 bool handled
= false ;
2031 wxRegion formerUpdateRgn
= m_updateRegion
;
2032 wxRegion clientUpdateRgn
= formerUpdateRgn
;
2034 const wxRect clientRect
= GetClientRect();
2036 clientUpdateRgn
.Intersect(clientRect
);
2038 // first send an erase event to the entire update area
2039 const wxBackgroundStyle bgStyle
= GetBackgroundStyle();
2042 case wxBG_STYLE_ERASE
:
2043 case wxBG_STYLE_SYSTEM
:
2044 case wxBG_STYLE_COLOUR
:
2046 // for the toplevel window this really is the entire area for
2047 // all the others only their client area, otherwise they might
2048 // be drawing with full alpha and eg put blue into the grow-box
2049 // area of a scrolled window (scroll sample)
2050 wxWindowDC
dc(this);
2052 dc
.SetDeviceClippingRegion(formerUpdateRgn
);
2054 dc
.SetDeviceClippingRegion(clientUpdateRgn
);
2056 if ( bgStyle
== wxBG_STYLE_ERASE
)
2058 wxEraseEvent
eevent( GetId(), &dc
);
2059 eevent
.SetEventObject( this );
2060 if ( ProcessWindowEvent( eevent
) )
2066 dc
.SetBackground(GetBackgroundColour());
2072 case wxBG_STYLE_PAINT
:
2073 case wxBG_STYLE_TRANSPARENT
:
2074 // nothing to do, user-defined EVT_PAINT handler will overwrite the
2075 // entire window client area
2079 wxFAIL_MSG( "unsupported background style" );
2082 // as this is a full window, shouldn't be necessary anymore
2083 // MacPaintGrowBox();
2085 // calculate a client-origin version of the update rgn and set
2086 // m_updateRegion to that
2087 clientUpdateRgn
.Offset(-clientRect
.GetPosition());
2088 m_updateRegion
= clientUpdateRgn
;
2090 if ( !m_updateRegion
.Empty() )
2092 // paint the window itself
2094 wxPaintEvent
event(GetId());
2095 event
.SetTimestamp(time
);
2096 event
.SetEventObject(this);
2097 handled
= HandleWindowEvent(event
);
2100 m_updateRegion
= formerUpdateRgn
;
2102 wxNonOwnedWindow
* top
= MacGetTopLevelWindow();
2104 top
->WindowWasPainted() ;
2109 void wxWindowMac::MacPaintChildrenBorders()
2111 // now we cannot rely on having its borders drawn by a window itself, as it does not
2112 // get the updateRgn wide enough to always do so, so we do it from the parent
2113 // this would also be the place to draw any custom backgrounds for native controls
2114 // in Composited windowing
2115 wxPoint clientOrigin
= GetClientAreaOrigin() ;
2119 for (wxWindowList::compatibility_iterator node
= GetChildren().GetFirst(); node
; node
= node
->GetNext())
2121 child
= node
->GetData();
2125 if (child
== m_vScrollBar
)
2127 if (child
== m_hScrollBar
)
2129 if (child
== m_growBox
)
2132 if (child
->IsTopLevel())
2134 if (!child
->IsShown())
2137 // only draw those in the update region (add a safety margin of 10 pixels for shadow effects
2139 child
->GetPosition( &x
, &y
);
2140 child
->GetSize( &w
, &h
);
2142 if ( m_updateRegion
.Contains(clientOrigin
.x
+x
-10, clientOrigin
.y
+y
-10, w
+20, h
+20) )
2144 // paint custom borders
2145 wxNcPaintEvent
eventNc( child
->GetId() );
2146 eventNc
.SetEventObject( child
);
2147 if ( !child
->HandleWindowEvent( eventNc
) )
2149 child
->MacPaintBorders(0, 0) ;
2156 WXWindow
wxWindowMac::MacGetTopLevelWindowRef() const
2158 wxNonOwnedWindow
* tlw
= MacGetTopLevelWindow();
2159 return tlw
? tlw
->GetWXWindow() : NULL
;
2162 bool wxWindowMac::MacHasScrollBarCorner() const
2165 /* Returns whether the scroll bars in a wxScrolledWindow should be
2166 * shortened. Scroll bars should be shortened if either:
2168 * - both scroll bars are visible, or
2170 * - there is a resize box in the parent frame's corner and this
2171 * window shares the bottom and right edge with the parent
2175 if ( m_hScrollBar
== NULL
&& m_vScrollBar
== NULL
)
2178 if ( ( m_hScrollBar
&& m_hScrollBar
->IsShown() )
2179 && ( m_vScrollBar
&& m_vScrollBar
->IsShown() ) )
2181 // Both scroll bars visible
2186 wxPoint thisWindowBottomRight
= GetScreenRect().GetBottomRight();
2188 for ( const wxWindow
*win
= (wxWindow
*)this; win
; win
= win
->GetParent() )
2190 const wxFrame
*frame
= wxDynamicCast( win
, wxFrame
) ;
2193 if ( frame
->GetWindowStyleFlag() & wxRESIZE_BORDER
)
2195 // Parent frame has resize handle
2196 wxPoint frameBottomRight
= frame
->GetScreenRect().GetBottomRight();
2198 // Note: allow for some wiggle room here as wxMac's
2199 // window rect calculations seem to be imprecise
2200 if ( abs( thisWindowBottomRight
.x
- frameBottomRight
.x
) <= 2
2201 && abs( thisWindowBottomRight
.y
- frameBottomRight
.y
) <= 2 )
2203 // Parent frame has resize handle and shares
2204 // right bottom corner
2209 // Parent frame has resize handle but doesn't
2210 // share right bottom corner
2216 // Parent frame doesn't have resize handle
2222 // No parent frame found
2230 void wxWindowMac::MacCreateScrollBars( long style
)
2233 wxASSERT_MSG( m_vScrollBar
== NULL
&& m_hScrollBar
== NULL
, wxT("attempt to create window twice") ) ;
2235 if ( style
& ( wxVSCROLL
| wxHSCROLL
) )
2237 int scrlsize
= MAC_SCROLLBAR_SIZE
;
2238 if ( GetWindowVariant() == wxWINDOW_VARIANT_SMALL
|| GetWindowVariant() == wxWINDOW_VARIANT_MINI
)
2240 scrlsize
= MAC_SMALL_SCROLLBAR_SIZE
;
2243 int adjust
= MacHasScrollBarCorner() ? scrlsize
- 1: 0 ;
2245 GetClientSize( &width
, &height
) ;
2247 wxPoint
vPoint(width
- scrlsize
, 0) ;
2248 wxSize
vSize(scrlsize
, height
- adjust
) ;
2249 wxPoint
hPoint(0, height
- scrlsize
) ;
2250 wxSize
hSize(width
- adjust
, scrlsize
) ;
2252 // we have to set the min size to a smaller value, otherwise they cannot get smaller (InitialSize sets MinSize)
2253 if ( style
& wxVSCROLL
)
2255 m_vScrollBar
= new wxScrollBar((wxWindow
*)this, wxID_ANY
, vPoint
, vSize
, wxVERTICAL
);
2256 m_vScrollBar
->SetMinSize( wxDefaultSize
);
2259 if ( style
& wxHSCROLL
)
2261 m_hScrollBar
= new wxScrollBar((wxWindow
*)this, wxID_ANY
, hPoint
, hSize
, wxHORIZONTAL
);
2262 m_hScrollBar
->SetMinSize( wxDefaultSize
);
2265 wxPoint
gPoint(width
- scrlsize
, height
- scrlsize
);
2266 wxSize
gSize(scrlsize
, scrlsize
);
2267 m_growBox
= new wxBlindPlateWindow((wxWindow
*)this, wxID_ANY
, gPoint
, gSize
, 0);
2270 // because the create does not take into account the client area origin
2271 // we might have a real position shift
2272 MacRepositionScrollBars() ;
2276 bool wxWindowMac::MacIsChildOfClientArea( const wxWindow
* child
) const
2278 bool result
= ((child
== NULL
)
2280 || ((child
!= m_hScrollBar
) && (child
!= m_vScrollBar
) && (child
!= m_growBox
))
2287 void wxWindowMac::MacRepositionScrollBars()
2290 if ( !m_hScrollBar
&& !m_vScrollBar
)
2293 int scrlsize
= m_hScrollBar
? m_hScrollBar
->GetSize().y
: ( m_vScrollBar
? m_vScrollBar
->GetSize().x
: MAC_SCROLLBAR_SIZE
) ;
2294 int adjust
= MacHasScrollBarCorner() ? scrlsize
- 1 : 0 ;
2296 // get real client area
2298 GetSize( &width
, &height
);
2300 width
-= MacGetLeftBorderSize() + MacGetRightBorderSize();
2301 height
-= MacGetTopBorderSize() + MacGetBottomBorderSize();
2303 wxPoint
vPoint( width
- scrlsize
, 0 ) ;
2304 wxSize
vSize( scrlsize
, height
- adjust
) ;
2305 wxPoint
hPoint( 0 , height
- scrlsize
) ;
2306 wxSize
hSize( width
- adjust
, scrlsize
) ;
2309 m_vScrollBar
->SetSize( vPoint
.x
, vPoint
.y
, vSize
.x
, vSize
.y
, wxSIZE_ALLOW_MINUS_ONE
);
2311 m_hScrollBar
->SetSize( hPoint
.x
, hPoint
.y
, hSize
.x
, hSize
.y
, wxSIZE_ALLOW_MINUS_ONE
);
2314 if ( MacHasScrollBarCorner() )
2316 m_growBox
->SetSize( width
- scrlsize
, height
- scrlsize
, wxDefaultCoord
, wxDefaultCoord
, wxSIZE_USE_EXISTING
);
2317 if ( !m_growBox
->IsShown() )
2322 if ( m_growBox
->IsShown() )
2329 bool wxWindowMac::AcceptsFocus() const
2331 if ( GetPeer() == NULL
|| GetPeer()->IsUserPane() )
2332 return wxWindowBase::AcceptsFocus();
2334 return GetPeer()->CanFocus();
2337 void wxWindowMac::MacSuperChangedPosition()
2339 // only window-absolute structures have to be moved i.e. controls
2341 m_cachedClippedRectValid
= false ;
2344 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
2347 child
= node
->GetData();
2348 child
->MacSuperChangedPosition() ;
2350 node
= node
->GetNext();
2354 void wxWindowMac::MacTopLevelWindowChangedPosition()
2356 // only screen-absolute structures have to be moved i.e. glcanvas
2359 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
2362 child
= node
->GetData();
2363 child
->MacTopLevelWindowChangedPosition() ;
2365 node
= node
->GetNext();
2369 long wxWindowMac::MacGetWXBorderSize() const
2376 if ( GetPeer() && GetPeer()->NeedsFrame() )
2378 if (HasFlag(wxRAISED_BORDER
) || HasFlag( wxSUNKEN_BORDER
) || HasFlag(wxDOUBLE_BORDER
))
2380 #if wxOSX_USE_COCOA_OR_CARBON
2381 // this metric is only the 'outset' outside the simple frame rect
2382 GetThemeMetric( kThemeMetricEditTextFrameOutset
, &border
) ;
2388 else if (HasFlag(wxSIMPLE_BORDER
))
2390 #if wxOSX_USE_COCOA_OR_CARBON
2391 // this metric is only the 'outset' outside the simple frame rect
2392 GetThemeMetric( kThemeMetricListBoxFrameOutset
, &border
) ;
2403 long wxWindowMac::MacGetLeftBorderSize() const
2405 // the wx borders are all symmetric in mac themes
2406 long border
= MacGetWXBorderSize() ;
2410 int left
, top
, right
, bottom
;
2411 GetPeer()->GetLayoutInset( left
, top
, right
, bottom
);
2419 long wxWindowMac::MacGetRightBorderSize() const
2421 // the wx borders are all symmetric in mac themes
2422 long border
= MacGetWXBorderSize() ;
2426 int left
, top
, right
, bottom
;
2427 GetPeer()->GetLayoutInset( left
, top
, right
, bottom
);
2434 long wxWindowMac::MacGetTopBorderSize() 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::MacGetBottomBorderSize() 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::MacRemoveBordersFromStyle( long style
)
2466 return style
& ~wxBORDER_MASK
;
2469 // Find the wxWindowMac at the current mouse position, returning the mouse
2471 wxWindow
* wxFindWindowAtPointer( wxPoint
& pt
)
2473 pt
= wxGetMousePosition();
2474 wxWindowMac
* found
= wxFindWindowAtPoint(pt
);
2476 return (wxWindow
*) found
;
2479 // Get the current mouse position.
2480 wxPoint
wxGetMousePosition()
2484 wxGetMousePosition( &x
, &y
);
2486 return wxPoint(x
, y
);
2489 void wxWindowMac::OnMouseEvent( wxMouseEvent
&event
)
2491 if ( event
.GetEventType() == wxEVT_RIGHT_DOWN
)
2493 // copied from wxGTK : CS
2494 // VZ: shouldn't we move this to base class then?
2496 // generate a "context menu" event: this is similar to wxEVT_RIGHT_DOWN
2499 // (a) it's a command event and so is propagated to the parent
2500 // (b) under MSW it can be generated from kbd too
2501 // (c) it uses screen coords (because of (a))
2502 wxContextMenuEvent
evtCtx(wxEVT_CONTEXT_MENU
,
2504 this->ClientToScreen(event
.GetPosition()));
2505 evtCtx
.SetEventObject(this);
2506 if ( ! HandleWindowEvent(evtCtx
) )
2515 void wxWindowMac::TriggerScrollEvent( wxEventType
WXUNUSED(scrollEvent
) )
2519 Rect
wxMacGetBoundsForControl( wxWindowMac
* window
, const wxPoint
& pos
, const wxSize
&size
, bool adjustForOrigin
)
2523 window
->MacGetBoundsForControl( pos
, size
, x
, y
, w
, h
, adjustForOrigin
) ;
2524 Rect bounds
= { static_cast<short>(y
), static_cast<short>(x
), static_cast<short>(y
+ h
), static_cast<short>(x
+ w
) };
2529 bool wxWindowMac::OSXHandleClicked( double WXUNUSED(timestampsec
) )
2534 wxInt32
wxWindowMac::MacControlHit(WXEVENTHANDLERREF
WXUNUSED(handler
) , WXEVENTREF event
)
2536 #if wxOSX_USE_COCOA_OR_CARBON
2537 if ( OSXHandleClicked( GetEventTime((EventRef
)event
) ) )
2540 return eventNotHandledErr
;
2546 bool wxWindowMac::Reparent(wxWindowBase
*newParentBase
)
2548 wxWindowMac
*newParent
= (wxWindowMac
*)newParentBase
;
2549 if ( !wxWindowBase::Reparent(newParent
) )
2552 GetPeer()->RemoveFromParent();
2553 GetPeer()->Embed( GetParent()->GetPeer() );
2559 bool wxWindowMac::SetTransparent(wxByte alpha
)
2561 SetBackgroundStyle(wxBG_STYLE_TRANSPARENT
);
2563 if ( alpha
!= m_macAlpha
)
2565 m_macAlpha
= alpha
;
2572 bool wxWindowMac::CanSetTransparent()
2577 wxByte
wxWindowMac::GetTransparent() const
2582 bool wxWindowMac::IsShownOnScreen() const
2584 if ( GetPeer() && GetPeer()->IsOk() )
2586 bool peerVis
= GetPeer()->IsVisible();
2587 bool wxVis
= wxWindowBase::IsShownOnScreen();
2588 if( peerVis
!= wxVis
)
2590 // CS : put a breakpoint here to investigate differences
2591 // between native an wx visibilities
2592 // the only place where I've encountered them until now
2593 // are the hiding/showing sequences where the vis-changed event is
2594 // first sent to the innermost control, while wx does things
2595 // from the outmost control
2596 wxVis
= wxWindowBase::IsShownOnScreen();
2600 return GetPeer()->IsVisible();
2602 return wxWindowBase::IsShownOnScreen();
2605 #if wxUSE_HOTKEY && wxOSX_USE_COCOA_OR_CARBON
2608 wxHotKeyHandler(EventHandlerCallRef
WXUNUSED(nextHandler
),
2610 void* WXUNUSED(userData
))
2612 EventHotKeyID hotKeyId
;
2614 GetEventParameter( event
, kEventParamDirectObject
, typeEventHotKeyID
, NULL
, sizeof(hotKeyId
), NULL
, &hotKeyId
);
2616 for ( unsigned i
= 0; i
< s_hotkeys
.size(); ++i
)
2618 if ( s_hotkeys
[i
].keyId
== static_cast<int>(hotKeyId
.id
) )
2620 unsigned char charCode
;
2623 UInt32 when
= EventTimeToTicks( GetEventTime( event
) ) ;
2625 GetEventParameter( event
, kEventParamKeyMacCharCodes
, typeChar
, NULL
, 1, NULL
, &charCode
);
2626 GetEventParameter( event
, kEventParamKeyCode
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &keyCode
);
2627 GetEventParameter( event
, kEventParamKeyModifiers
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &modifiers
);
2629 UInt32 keymessage
= (keyCode
<< 8) + charCode
;
2631 wxKeyEvent
wxevent(wxEVT_HOTKEY
);
2632 wxevent
.SetId(hotKeyId
.id
);
2633 wxTheApp
->MacCreateKeyEvent( wxevent
, s_hotkeys
[i
].window
, keymessage
,
2634 modifiers
, when
, 0 ) ;
2636 s_hotkeys
[i
].window
->HandleWindowEvent(wxevent
);
2643 bool wxWindowMac::RegisterHotKey(int hotkeyId
, int modifiers
, int keycode
)
2645 for ( unsigned i
= 0; i
< s_hotkeys
.size(); ++i
)
2647 if ( s_hotkeys
[i
].keyId
== hotkeyId
)
2649 wxLogLastError(wxT("hotkeyId already registered"));
2655 static bool installed
= false;
2658 EventTypeSpec eventType
;
2659 eventType
.eventClass
=kEventClassKeyboard
;
2660 eventType
.eventKind
=kEventHotKeyPressed
;
2662 InstallApplicationEventHandler(&wxHotKeyHandler
, 1, &eventType
, NULL
, NULL
);
2666 UInt32 mac_modifiers
=0;
2667 if ( modifiers
& wxMOD_ALT
)
2668 mac_modifiers
|= optionKey
;
2669 if ( modifiers
& wxMOD_SHIFT
)
2670 mac_modifiers
|= shiftKey
;
2671 if ( modifiers
& wxMOD_RAW_CONTROL
)
2672 mac_modifiers
|= controlKey
;
2673 if ( modifiers
& wxMOD_CONTROL
)
2674 mac_modifiers
|= cmdKey
;
2676 EventHotKeyRef hotKeyRef
;
2677 EventHotKeyID hotKeyIDmac
;
2679 hotKeyIDmac
.signature
= 'WXMC';
2680 hotKeyIDmac
.id
= hotkeyId
;
2682 if ( RegisterEventHotKey(wxCharCodeWXToOSX((wxKeyCode
)keycode
), mac_modifiers
, hotKeyIDmac
,
2683 GetApplicationEventTarget(), 0, &hotKeyRef
) != noErr
)
2685 wxLogLastError(wxT("RegisterHotKey"));
2696 s_hotkeys
.push_back(v
);
2702 bool wxWindowMac::UnregisterHotKey(int hotkeyId
)
2704 for ( int i
= ((int)s_hotkeys
.size())-1; i
>=0; -- i
)
2706 if ( s_hotkeys
[i
].keyId
== hotkeyId
)
2708 EventHotKeyRef ref
= s_hotkeys
[i
].ref
;
2709 s_hotkeys
.erase(s_hotkeys
.begin() + i
);
2710 if ( UnregisterEventHotKey(ref
) != noErr
)
2712 wxLogLastError(wxT("UnregisterHotKey"));
2724 #endif // wxUSE_HOTKEY
2726 bool wxWindowMac::OSXHandleKeyEvent( wxKeyEvent
& event
)
2728 bool handled
= false;
2730 // moved the ordinary key event sending AFTER the accel evaluation
2733 if ( !handled
&& event
.GetEventType() == wxEVT_KEY_DOWN
)
2735 wxWindow
*ancestor
= this;
2738 int command
= ancestor
->GetAcceleratorTable()->GetCommand( event
);
2741 wxEvtHandler
* const handler
= ancestor
->GetEventHandler();
2743 wxCommandEvent
command_event( wxEVT_COMMAND_MENU_SELECTED
, command
);
2744 handled
= handler
->ProcessEvent( command_event
);
2748 // accelerators can also be used with buttons, try them too
2749 command_event
.SetEventType(wxEVT_COMMAND_BUTTON_CLICKED
);
2750 handled
= handler
->ProcessEvent( command_event
);
2756 if (ancestor
->IsTopLevel())
2759 ancestor
= ancestor
->GetParent();
2762 #endif // wxUSE_ACCEL
2766 handled
= HandleWindowEvent( event
) ;
2767 if ( handled
&& event
.GetSkipped() )
2778 WX_DECLARE_HASH_MAP(WXWidget
, wxWidgetImpl
*, wxPointerHash
, wxPointerEqual
, MacControlMap
);
2780 static MacControlMap wxWinMacControlList
;
2782 wxWindowMac
*wxFindWindowFromWXWidget(WXWidget inControl
)
2784 wxWidgetImpl
* impl
= wxWidgetImpl::FindFromWXWidget( inControl
);
2786 return impl
->GetWXPeer();
2791 wxWidgetImpl
*wxWidgetImpl::FindFromWXWidget(WXWidget inControl
)
2793 MacControlMap::iterator node
= wxWinMacControlList
.find(inControl
);
2795 return (node
== wxWinMacControlList
.end()) ? NULL
: node
->second
;
2798 void wxWidgetImpl::Associate(WXWidget inControl
, wxWidgetImpl
*impl
)
2800 // adding NULL ControlRef is (first) surely a result of an error and
2801 // (secondly) breaks native event processing
2802 wxCHECK_RET( inControl
!= (WXWidget
) NULL
, wxT("attempt to add a NULL WXWidget to control map") );
2804 wxWinMacControlList
[inControl
] = impl
;
2807 void wxWidgetImpl::RemoveAssociations(wxWidgetImpl
* impl
)
2809 // iterate over all the elements in the class
2810 // is the iterator stable ? as we might have two associations pointing to the same wxWindow
2811 // we should go on...
2817 MacControlMap::iterator it
;
2818 for ( it
= wxWinMacControlList
.begin(); it
!= wxWinMacControlList
.end(); ++it
)
2820 if ( it
->second
== impl
)
2822 wxWinMacControlList
.erase(it
);
2830 IMPLEMENT_ABSTRACT_CLASS( wxWidgetImpl
, wxObject
)
2832 wxWidgetImpl::wxWidgetImpl( wxWindowMac
* peer
, bool isRootControl
, bool isUserPane
)
2835 m_isRootControl
= isRootControl
;
2836 m_isUserPane
= isUserPane
;
2838 m_shouldSendEvents
= true;
2841 wxWidgetImpl::wxWidgetImpl()
2846 wxWidgetImpl::~wxWidgetImpl()
2850 void wxWidgetImpl::Init()
2852 m_isRootControl
= false;
2854 m_needsFocusRect
= false;
2855 m_needsFrame
= true;
2858 void wxWidgetImpl::SetNeedsFocusRect( bool needs
)
2860 m_needsFocusRect
= needs
;
2863 bool wxWidgetImpl::NeedsFocusRect() const
2865 return m_needsFocusRect
;
2868 void wxWidgetImpl::SetNeedsFrame( bool needs
)
2870 m_needsFrame
= needs
;
2873 bool wxWidgetImpl::NeedsFrame() const
2875 return m_needsFrame
;
2878 void wxWidgetImpl::SetDrawingEnabled(bool WXUNUSED(enabled
))