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 void wxWindowMac::DontCreatePeer()
306 m_peer
= kOSXNoWidgetImpl
;
309 void wxWindowMac::SetWrappingPeer(wxOSXWidgetImpl
* wrapper
)
311 wxOSXWidgetImpl
* inner
= GetPeer();
312 wxASSERT_MSG( inner
!= NULL
&& inner
->IsOk(), "missing or incomplete inner peer" );
313 wxASSERT_MSG( wrapper
!= NULL
&& wrapper
->IsOk(), "missing or incomplete wrapper" );
315 if ( !(inner
!= NULL
&& inner
->IsOk() && wrapper
!= NULL
&& wrapper
->IsOk()) )
318 inner
->RemoveFromParent();
319 wrapper
->InstallEventHandler();
320 wrapper
->Embed(inner
);
324 void wxWindowMac::SetPeer(wxOSXWidgetImpl
* peer
)
328 if ( !GetPeer()->IsRootControl() )
329 GetPeer()->RemoveFromParent();
335 if ( GetPeer() && !GetPeer()->IsRootControl())
337 wxASSERT_MSG( GetPeer()->IsOk() , wxT("The native control must exist already") ) ;
339 if (!GetParent()->GetChildren().Find((wxWindow
*)this))
340 GetParent()->AddChild( this );
342 GetPeer()->InstallEventHandler();
343 GetPeer()->Embed(GetParent()->GetPeer());
345 GetParent()->MacChildAdded() ;
347 // adjust font, controlsize etc
348 DoSetWindowVariant( m_windowVariant
) ;
350 GetPeer()->SetLabel( wxStripMenuCodes(m_label
, wxStrip_Mnemonics
), GetFont().GetEncoding() ) ;
352 // for controls we want to use best size for wxDefaultSize params )
353 if ( !GetPeer()->IsUserPane() )
354 SetInitialSize(GetMinSize());
356 SetCursor( *wxSTANDARD_CURSOR
) ;
360 #if WXWIN_COMPATIBILITY_2_8
362 bool wxWindowMac::MacIsUserPane()
364 return GetPeer() == NULL
|| GetPeer()->IsUserPane();
369 bool wxWindowMac::MacIsUserPane() const
371 return GetPeer() == NULL
|| GetPeer()->IsUserPane();
374 // ---------------------------------------------------------------------------
375 // Utility Routines to move between different coordinate systems
376 // ---------------------------------------------------------------------------
379 * Right now we have the following setup :
380 * a border that is not part of the native control is always outside the
381 * control's border (otherwise we loose all native intelligence, future ways
382 * may be to have a second embedding control responsible for drawing borders
383 * and backgrounds eventually)
384 * so all this border calculations have to be taken into account when calling
385 * native methods or getting native oriented data
386 * so we have three coordinate systems here
387 * wx client coordinates
388 * wx window coordinates (including window frames)
396 bool wxWindowMac::Create(wxWindowMac
*parent
,
401 const wxString
& name
)
403 wxCHECK_MSG( parent
, false, wxT("can't create wxWindowMac without parent") );
405 if ( !CreateBase(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
408 m_windowVariant
= parent
->GetWindowVariant() ;
410 if ( m_peer
!= kOSXNoWidgetImpl
)
412 SetPeer(wxWidgetImpl::CreateUserPane( this, parent
, id
, pos
, size
, style
, GetExtraStyle() ));
413 MacPostControlCreate(pos
, size
) ;
416 #ifndef __WXUNIVERSAL__
417 // Don't give scrollbars to wxControls unless they ask for them
418 if ( (! IsKindOf(CLASSINFO(wxControl
))
420 && ! IsKindOf(CLASSINFO(wxStatusBar
))
423 || (IsKindOf(CLASSINFO(wxControl
)) && ((style
& wxHSCROLL
) || (style
& wxVSCROLL
))))
425 MacCreateScrollBars( style
) ;
429 wxWindowCreateEvent
event((wxWindow
*)this);
430 GetEventHandler()->AddPendingEvent(event
);
435 void wxWindowMac::MacChildAdded()
439 m_vScrollBar
->Raise() ;
441 m_hScrollBar
->Raise() ;
447 void wxWindowMac::MacPostControlCreate(const wxPoint
& WXUNUSED(pos
),
448 const wxSize
& WXUNUSED(size
))
450 // todo remove if refactoring works correctly
452 wxASSERT_MSG( GetPeer() != NULL
&& GetPeer()->IsOk() , wxT("No valid mac control") ) ;
454 if (!GetParent()->GetChildren().Find((wxWindow
*)this))
455 GetParent()->AddChild( this );
457 GetPeer()->InstallEventHandler();
458 GetPeer()->Embed(GetParent()->GetPeer());
460 GetParent()->MacChildAdded() ;
462 // adjust font, controlsize etc
463 DoSetWindowVariant( m_windowVariant
) ;
465 GetPeer()->SetLabel( wxStripMenuCodes(m_label
, wxStrip_Mnemonics
), GetFont().GetEncoding() ) ;
467 // for controls we want to use best size for wxDefaultSize params )
468 if ( !GetPeer()->IsUserPane() )
469 SetInitialSize(size
);
471 SetCursor( *wxSTANDARD_CURSOR
) ;
475 void wxWindowMac::DoSetWindowVariant( wxWindowVariant variant
)
477 // Don't assert, in case we set the window variant before
478 // the window is created
479 // wxASSERT( GetPeer()->IsOk() ) ;
481 m_windowVariant
= variant
;
483 if (GetPeer() == NULL
|| !GetPeer()->IsOk())
486 GetPeer()->SetControlSize( variant
);
490 // we will get that from the settings later
491 // and make this NORMAL later, but first
492 // we have a few calculations that we must fix
496 case wxWINDOW_VARIANT_NORMAL
:
497 size
= kControlSizeNormal
;
500 case wxWINDOW_VARIANT_SMALL
:
501 size
= kControlSizeSmall
;
504 case wxWINDOW_VARIANT_MINI
:
505 // not always defined in the headers
509 case wxWINDOW_VARIANT_LARGE
:
510 size
= kControlSizeLarge
;
514 wxFAIL_MSG(wxT("unexpected window variant"));
517 GetPeer()->SetData
<ControlSize
>(kControlEntireControl
, kControlSizeTag
, &size
) ;
523 case wxWINDOW_VARIANT_NORMAL
:
524 static wxFont
sysNormal(wxOSX_SYSTEM_FONT_NORMAL
);
528 case wxWINDOW_VARIANT_SMALL
:
529 static wxFont
sysSmall(wxOSX_SYSTEM_FONT_SMALL
);
533 case wxWINDOW_VARIANT_MINI
:
534 static wxFont
sysMini(wxOSX_SYSTEM_FONT_MINI
);
538 case wxWINDOW_VARIANT_LARGE
:
539 static wxFont
sysLarge(wxOSX_SYSTEM_FONT_NORMAL
);
544 wxFAIL_MSG(wxT("unexpected window variant"));
549 void wxWindowMac::MacUpdateControlFont()
552 GetPeer()->SetFont( GetFont() , GetForegroundColour() , GetWindowStyle() ) ;
554 // do not trigger refreshes upon invisible and possible partly created objects
555 if ( IsShownOnScreen() )
559 bool wxWindowMac::SetFont(const wxFont
& font
)
561 bool retval
= wxWindowBase::SetFont( font
);
563 MacUpdateControlFont() ;
568 bool wxWindowMac::SetForegroundColour(const wxColour
& col
)
570 bool retval
= wxWindowBase::SetForegroundColour( col
);
573 MacUpdateControlFont();
578 bool wxWindowMac::SetBackgroundStyle(wxBackgroundStyle style
)
580 if ( !wxWindowBase::SetBackgroundStyle(style
) )
584 GetPeer()->SetBackgroundStyle(style
);
588 bool wxWindowMac::SetBackgroundColour(const wxColour
& col
)
592 if ( m_backgroundColour
.IsOk() )
593 m_growBox
->SetBackgroundColour(m_backgroundColour
);
595 m_growBox
->SetBackgroundColour(*wxWHITE
);
598 if ( !wxWindowBase::SetBackgroundColour(col
) && m_hasBgCol
)
602 GetPeer()->SetBackgroundColour( col
) ;
607 static bool wxIsWindowOrParentDisabled(wxWindow
* w
)
609 while (w
&& !w
->IsTopLevel())
618 void wxWindowMac::SetFocus()
620 if ( !AcceptsFocus() )
623 if (wxIsWindowOrParentDisabled((wxWindow
*) this))
626 wxWindow
* former
= FindFocus() ;
627 if ( former
== this )
630 GetPeer()->SetFocus() ;
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
;
658 if ( m_dropTarget
!= NULL
)
666 // Old-style File Manager Drag & Drop
667 void wxWindowMac::DragAcceptFiles(bool WXUNUSED(accept
))
672 // From a wx position / size calculate the appropriate size of the native control
674 bool wxWindowMac::MacGetBoundsForControl(
678 int& w
, int& h
, bool adjustOrigin
) const
680 // the desired size, minus the border pixels gives the correct size of the control
684 w
= WidthDefault( size
.x
);
685 h
= HeightDefault( size
.y
);
687 x
+= MacGetLeftBorderSize() ;
688 y
+= MacGetTopBorderSize() ;
689 w
-= MacGetLeftBorderSize() + MacGetRightBorderSize() ;
690 h
-= MacGetTopBorderSize() + MacGetBottomBorderSize() ;
693 AdjustForParentClientOrigin( x
, y
) ;
695 // this is in window relative coordinate, as this parent may have a border, its physical position is offset by this border
696 if ( GetParent() && !GetParent()->IsTopLevel() )
698 x
-= GetParent()->MacGetLeftBorderSize() ;
699 y
-= GetParent()->MacGetTopBorderSize() ;
705 // Get window size (not client size)
706 void wxWindowMac::DoGetSize(int *x
, int *y
) const
709 GetPeer()->GetSize( width
, height
);
712 *x
= width
+ MacGetLeftBorderSize() + MacGetRightBorderSize() ;
714 *y
= height
+ MacGetTopBorderSize() + MacGetBottomBorderSize() ;
717 // get the position of the bounds of this window in client coordinates of its parent
718 void wxWindowMac::DoGetPosition(int *x
, int *y
) const
722 GetPeer()->GetPosition( x1
, y1
) ;
724 // get the wx window position from the native one
725 x1
-= MacGetLeftBorderSize() ;
726 y1
-= MacGetTopBorderSize() ;
730 wxWindow
*parent
= GetParent();
733 // we must first adjust it to be in window coordinates of the parent,
734 // as otherwise it gets lost by the ClientAreaOrigin fix
735 x1
+= parent
->MacGetLeftBorderSize() ;
736 y1
+= parent
->MacGetTopBorderSize() ;
738 // and now to client coordinates
739 wxPoint
pt(parent
->GetClientAreaOrigin());
751 void wxWindowMac::DoScreenToClient(int *x
, int *y
) const
753 wxNonOwnedWindow
* tlw
= MacGetTopLevelWindow() ;
754 wxCHECK_RET( tlw
, wxT("TopLevel Window missing") ) ;
755 tlw
->GetNonOwnedPeer()->ScreenToWindow( x
, y
);
756 MacRootWindowToWindow( x
, y
) ;
758 wxPoint origin
= GetClientAreaOrigin() ;
765 void wxWindowMac::DoClientToScreen(int *x
, int *y
) const
767 wxNonOwnedWindow
* tlw
= MacGetTopLevelWindow() ;
768 wxCHECK_RET( tlw
, wxT("TopLevel window missing") ) ;
770 wxPoint origin
= GetClientAreaOrigin() ;
776 MacWindowToRootWindow( x
, y
) ;
777 tlw
->GetNonOwnedPeer()->WindowToScreen( x
, y
);
780 void wxWindowMac::MacClientToRootWindow( int *x
, int *y
) const
782 wxPoint origin
= GetClientAreaOrigin() ;
788 MacWindowToRootWindow( x
, y
) ;
791 void wxWindowMac::MacWindowToRootWindow( int *x
, int *y
) const
802 wxNonOwnedWindow
* top
= MacGetTopLevelWindow();
805 pt
.x
-= MacGetLeftBorderSize() ;
806 pt
.y
-= MacGetTopBorderSize() ;
807 wxWidgetImpl::Convert( &pt
, GetPeer() , top
->GetPeer() ) ;
817 void wxWindowMac::MacRootWindowToWindow( int *x
, int *y
) const
828 wxNonOwnedWindow
* top
= MacGetTopLevelWindow();
831 wxWidgetImpl::Convert( &pt
, top
->GetPeer() , GetPeer() ) ;
832 pt
.x
+= MacGetLeftBorderSize() ;
833 pt
.y
+= MacGetTopBorderSize() ;
843 wxSize
wxWindowMac::DoGetSizeFromClientSize( const wxSize
& size
) const
845 wxSize sizeTotal
= size
;
847 int innerwidth
, innerheight
;
849 int outerwidth
, outerheight
;
851 GetPeer()->GetContentArea( left
, top
, innerwidth
, innerheight
);
852 GetPeer()->GetSize( outerwidth
, outerheight
);
854 sizeTotal
.x
+= outerwidth
-innerwidth
;
855 sizeTotal
.y
+= outerheight
-innerheight
;
857 sizeTotal
.x
+= MacGetLeftBorderSize() + MacGetRightBorderSize() ;
858 sizeTotal
.y
+= MacGetTopBorderSize() + MacGetBottomBorderSize() ;
863 // Get size *available for subwindows* i.e. excluding menu bar etc.
864 void wxWindowMac::DoGetClientSize( int *x
, int *y
) const
870 GetPeer()->GetContentArea( left
, top
, ww
, hh
);
872 if (m_hScrollBar
&& m_hScrollBar
->IsShown() )
873 hh
-= m_hScrollBar
->GetSize().y
;
875 if (m_vScrollBar
&& m_vScrollBar
->IsShown() )
876 ww
-= m_vScrollBar
->GetSize().x
;
885 bool wxWindowMac::SetCursor(const wxCursor
& cursor
)
887 if (m_cursor
.IsSameAs(cursor
))
892 if ( ! wxWindowBase::SetCursor( *wxSTANDARD_CURSOR
) )
897 if ( ! wxWindowBase::SetCursor( cursor
) )
901 wxASSERT_MSG( m_cursor
.IsOk(),
902 wxT("cursor must be valid after call to the base version"));
904 if ( GetPeer() != NULL
)
905 GetPeer()->SetCursor( m_cursor
);
911 bool wxWindowMac::DoPopupMenu(wxMenu
*menu
, int x
, int y
)
913 #ifndef __WXUNIVERSAL__
916 if ( x
== wxDefaultCoord
&& y
== wxDefaultCoord
)
918 wxPoint mouse
= wxGetMousePosition();
924 ClientToScreen( &x
, &y
) ;
926 menu
->GetPeer()->PopUp(this, x
, y
);
929 // actually this shouldn't be called, because universal is having its own implementation
935 // ----------------------------------------------------------------------------
937 // ----------------------------------------------------------------------------
941 void wxWindowMac::DoSetToolTip(wxToolTip
*tooltip
)
943 wxWindowBase::DoSetToolTip(tooltip
);
946 m_tooltip
->SetWindow(this);
949 GetPeer()->SetToolTip(tooltip
);
954 void wxWindowMac::MacInvalidateBorders()
956 if ( GetPeer() == NULL
)
959 bool vis
= IsShownOnScreen() ;
963 int outerBorder
= MacGetLeftBorderSize() ;
965 if ( GetPeer()->NeedsFocusRect() )
968 if ( outerBorder
== 0 )
971 // now we know that we have something to do at all
975 GetPeer()->GetSize( tw
, th
);
976 GetPeer()->GetPosition( tx
, ty
);
978 wxRect
leftupdate( tx
-outerBorder
,ty
,outerBorder
,th
);
979 wxRect
rightupdate( tx
+tw
, ty
, outerBorder
, th
);
980 wxRect
topupdate( tx
-outerBorder
, ty
-outerBorder
, tw
+ 2 * outerBorder
, outerBorder
);
981 wxRect
bottomupdate( tx
-outerBorder
, ty
+ th
, tw
+ 2 * outerBorder
, outerBorder
);
984 GetParent()->GetPeer()->SetNeedsDisplay(&leftupdate
);
985 GetParent()->GetPeer()->SetNeedsDisplay(&rightupdate
);
986 GetParent()->GetPeer()->SetNeedsDisplay(&topupdate
);
987 GetParent()->GetPeer()->SetNeedsDisplay(&bottomupdate
);
991 void wxWindowMac::DoMoveWindow(int x
, int y
, int width
, int height
)
993 // this is never called for a toplevel window, so we know we have a parent
994 int former_x
, former_y
, former_w
, former_h
;
996 // Get true coordinates of former position
997 DoGetPosition( &former_x
, &former_y
) ;
998 DoGetSize( &former_w
, &former_h
) ;
1000 wxWindow
*parent
= GetParent();
1003 wxPoint
pt(parent
->GetClientAreaOrigin());
1008 int actualWidth
= width
;
1009 int actualHeight
= height
;
1014 // min and max sizes are only for sizers, not for explicit size setting
1015 if ((m_minWidth
!= -1) && (actualWidth
< m_minWidth
))
1016 actualWidth
= m_minWidth
;
1017 if ((m_minHeight
!= -1) && (actualHeight
< m_minHeight
))
1018 actualHeight
= m_minHeight
;
1019 if ((m_maxWidth
!= -1) && (actualWidth
> m_maxWidth
))
1020 actualWidth
= m_maxWidth
;
1021 if ((m_maxHeight
!= -1) && (actualHeight
> m_maxHeight
))
1022 actualHeight
= m_maxHeight
;
1025 bool doMove
= false, doResize
= false ;
1027 if ( actualX
!= former_x
|| actualY
!= former_y
)
1030 if ( actualWidth
!= former_w
|| actualHeight
!= former_h
)
1033 if ( doMove
|| doResize
)
1035 // as the borders are drawn outside the native control, we adjust now
1037 wxRect
bounds( wxPoint( actualX
+ MacGetLeftBorderSize() ,actualY
+ MacGetTopBorderSize() ),
1038 wxSize( actualWidth
- (MacGetLeftBorderSize() + MacGetRightBorderSize()) ,
1039 actualHeight
- (MacGetTopBorderSize() + MacGetBottomBorderSize()) ) ) ;
1041 if ( parent
&& !parent
->IsTopLevel() )
1043 bounds
.Offset( -parent
->MacGetLeftBorderSize(), -parent
->MacGetTopBorderSize() );
1046 MacInvalidateBorders() ;
1048 m_cachedClippedRectValid
= false ;
1050 GetPeer()->Move( bounds
.x
, bounds
.y
, bounds
.width
, bounds
.height
);
1052 wxWindowMac::MacSuperChangedPosition() ; // like this only children will be notified
1054 MacInvalidateBorders() ;
1056 MacRepositionScrollBars() ;
1059 wxPoint
point(actualX
, actualY
);
1060 wxMoveEvent
event(point
, m_windowId
);
1061 event
.SetEventObject(this);
1062 HandleWindowEvent(event
) ;
1067 MacRepositionScrollBars() ;
1068 MacOnInternalSize();
1069 wxSize
size(actualWidth
, actualHeight
);
1070 wxSizeEvent
event(size
, m_windowId
);
1071 event
.SetEventObject(this);
1072 HandleWindowEvent(event
);
1077 wxSize
wxWindowMac::DoGetBestSize() const
1079 if ( GetPeer() == NULL
|| GetPeer()->IsUserPane() || IsTopLevel() )
1081 return wxWindowBase::DoGetBestSize() ;
1087 GetPeer()->GetBestRect(&r
);
1089 if ( r
.GetWidth() == 0 && r
.GetHeight() == 0 )
1097 if ( IsKindOf( CLASSINFO( wxScrollBar
) ) )
1104 if ( IsKindOf( CLASSINFO( wxSpinButton
) ) )
1111 // return wxWindowBase::DoGetBestSize() ;
1115 int bestWidth
= r
.width
+ MacGetLeftBorderSize() +
1116 MacGetRightBorderSize();
1117 int bestHeight
= r
.height
+ MacGetTopBorderSize() +
1118 MacGetBottomBorderSize();
1119 if ( bestHeight
< 10 )
1122 return wxSize(bestWidth
, bestHeight
);
1126 // set the size of the window: if the dimensions are positive, just use them,
1127 // but if any of them is equal to -1, it means that we must find the value for
1128 // it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in
1129 // which case -1 is a valid value for x and y)
1131 // If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate
1132 // the width/height to best suit our contents, otherwise we reuse the current
1134 void wxWindowMac::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
1136 // get the current size and position...
1137 int currentX
, currentY
;
1138 int currentW
, currentH
;
1140 GetPosition(¤tX
, ¤tY
);
1141 GetSize(¤tW
, ¤tH
);
1143 // ... and don't do anything (avoiding flicker) if it's already ok
1144 if ( x
== currentX
&& y
== currentY
&&
1145 width
== currentW
&& height
== currentH
&& ( height
!= -1 && width
!= -1 ) )
1148 MacRepositionScrollBars() ; // we might have a real position shift
1150 if (sizeFlags
& wxSIZE_FORCE_EVENT
)
1152 MacOnInternalSize();
1153 wxSizeEvent
event( wxSize(width
,height
), GetId() );
1154 event
.SetEventObject( this );
1155 HandleWindowEvent( event
);
1161 if ( !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
1163 if ( x
== wxDefaultCoord
)
1165 if ( y
== wxDefaultCoord
)
1169 AdjustForParentClientOrigin( x
, y
, sizeFlags
);
1171 wxSize size
= wxDefaultSize
;
1172 if ( width
== wxDefaultCoord
)
1174 if ( sizeFlags
& wxSIZE_AUTO_WIDTH
)
1176 size
= DoGetBestSize();
1181 // just take the current one
1186 if ( height
== wxDefaultCoord
)
1188 if ( sizeFlags
& wxSIZE_AUTO_HEIGHT
)
1190 if ( size
.x
== wxDefaultCoord
)
1191 size
= DoGetBestSize();
1192 // else: already called DoGetBestSize() above
1198 // just take the current one
1203 DoMoveWindow( x
, y
, width
, height
);
1206 wxPoint
wxWindowMac::GetClientAreaOrigin() const
1208 int left
,top
,width
,height
;
1209 GetPeer()->GetContentArea( left
, top
, width
, height
);
1210 return wxPoint( left
+ MacGetLeftBorderSize() , top
+ MacGetTopBorderSize() );
1213 void wxWindowMac::DoSetClientSize(int clientwidth
, int clientheight
)
1215 if ( clientwidth
!= wxDefaultCoord
|| clientheight
!= wxDefaultCoord
)
1217 int currentclientwidth
, currentclientheight
;
1218 int currentwidth
, currentheight
;
1220 GetClientSize( ¤tclientwidth
, ¤tclientheight
) ;
1221 GetSize( ¤twidth
, ¤theight
) ;
1223 DoSetSize( wxDefaultCoord
, wxDefaultCoord
, currentwidth
+ clientwidth
- currentclientwidth
,
1224 currentheight
+ clientheight
- currentclientheight
, wxSIZE_USE_EXISTING
) ;
1228 float wxWindowMac::GetContentScaleFactor() const
1230 return GetPeer()->GetContentScaleFactor();
1233 void wxWindowMac::SetLabel(const wxString
& title
)
1235 if ( title
== m_label
)
1240 InvalidateBestSize();
1242 if ( GetPeer() && GetPeer()->IsOk() )
1243 GetPeer()->SetLabel( wxStripMenuCodes(m_label
, wxStrip_Mnemonics
), GetFont().GetEncoding() ) ;
1245 // do not trigger refreshes upon invisible and possible partly created objects
1246 if ( IsShownOnScreen() )
1250 wxString
wxWindowMac::GetLabel() const
1255 bool wxWindowMac::Show(bool show
)
1258 MacInvalidateBorders();
1260 if ( !wxWindowBase::Show(show
) )
1264 GetPeer()->SetVisibility( show
) ;
1267 MacInvalidateBorders();
1269 #ifdef __WXOSX_IPHONE__
1270 // only when there's no native event support
1271 if ( !IsTopLevel() )
1274 wxShowEvent
eventShow(GetId(), show
);
1275 eventShow
.SetEventObject(this);
1277 HandleWindowEvent(eventShow
);
1283 bool wxWindowMac::OSXShowWithEffect(bool show
,
1284 wxShowEffect effect
,
1287 if ( effect
== wxSHOW_EFFECT_NONE
||
1288 !GetPeer() || !GetPeer()->ShowWithEffect(show
, effect
, timeout
) )
1294 void wxWindowMac::DoEnable(bool enable
)
1296 GetPeer()->Enable( enable
) ;
1297 MacInvalidateBorders();
1301 // status change notifications
1304 void wxWindowMac::MacVisibilityChanged()
1308 void wxWindowMac::MacHiliteChanged()
1312 void wxWindowMac::MacEnabledStateChanged()
1314 OnEnabled( GetPeer()->IsEnabled() );
1318 // status queries on the inherited window's state
1321 bool wxWindowMac::MacIsReallyEnabled()
1323 return GetPeer()->IsEnabled() ;
1326 bool wxWindowMac::MacIsReallyHilited()
1328 #if wxOSX_USE_CARBON
1329 return GetPeer()->IsActive();
1331 return true; // TODO
1335 int wxWindowMac::GetCharHeight() const
1338 GetTextExtent( wxT("g") , NULL
, &height
, NULL
, NULL
, NULL
);
1343 int wxWindowMac::GetCharWidth() const
1346 GetTextExtent( wxT("g") , &width
, NULL
, NULL
, NULL
, NULL
);
1351 void wxWindowMac::DoGetTextExtent(const wxString
& str
,
1354 int *externalLeading
,
1355 const wxFont
*theFont
) const
1357 const wxFont
*fontToUse
= theFont
;
1361 tempFont
= GetFont();
1362 fontToUse
= &tempFont
;
1365 wxGraphicsContext
* ctx
= wxGraphicsContext::Create();
1366 ctx
->SetFont( *fontToUse
, *wxBLACK
);
1368 wxDouble h
, d
, e
, w
;
1369 ctx
->GetTextExtent( str
, &w
, &h
, &d
, &e
);
1373 if ( externalLeading
)
1374 *externalLeading
= (wxCoord
)(e
+0.5);
1376 *descent
= (wxCoord
)(d
+0.5);
1378 *x
= (wxCoord
)(w
+0.5);
1380 *y
= (wxCoord
)(h
+0.5);
1384 * Rect is given in client coordinates, for further reading, read wxTopLevelWindowMac::InvalidateRect
1385 * we always intersect with the entire window, not only with the client area
1388 void wxWindowMac::Refresh(bool WXUNUSED(eraseBack
), const wxRect
*rect
)
1390 if ( GetPeer() == NULL
)
1393 if ( !IsShownOnScreen() )
1396 GetPeer()->SetNeedsDisplay( rect
) ;
1399 void wxWindowMac::DoFreeze()
1401 #if wxOSX_USE_CARBON
1402 if ( GetPeer() && GetPeer()->IsOk() )
1403 GetPeer()->SetDrawingEnabled( false ) ;
1407 void wxWindowMac::DoThaw()
1409 #if wxOSX_USE_CARBON
1410 if ( GetPeer() && GetPeer()->IsOk() )
1412 GetPeer()->SetDrawingEnabled( true ) ;
1413 GetPeer()->InvalidateWithChildren() ;
1418 wxWindow
*wxGetActiveWindow()
1420 // actually this is a windows-only concept
1424 // Coordinates relative to the window
1425 void wxWindowMac::WarpPointer(int x_pos
, int y_pos
)
1427 #if wxOSX_USE_COCOA_OR_CARBON
1430 DoClientToScreen(&x
, &y
);
1431 CGPoint cgpoint
= CGPointMake( x
, y
);
1432 CGWarpMouseCursorPosition( cgpoint
);
1434 // At least GTK sends a mouse moved event after WarpMouse
1435 wxMouseEvent
event(wxEVT_MOTION
);
1438 wxMouseState mState
= ::wxGetMouseState();
1440 event
.m_altDown
= mState
.AltDown();
1441 event
.m_controlDown
= mState
.ControlDown();
1442 event
.m_leftDown
= mState
.LeftIsDown();
1443 event
.m_middleDown
= mState
.MiddleIsDown();
1444 event
.m_rightDown
= mState
.RightIsDown();
1445 event
.m_metaDown
= mState
.MetaDown();
1446 event
.m_shiftDown
= mState
.ShiftDown();
1447 event
.SetId(GetId());
1448 event
.SetEventObject(this);
1449 GetEventHandler()->ProcessEvent(event
);
1453 int wxWindowMac::GetScrollPos(int orient
) const
1456 if ( orient
== wxHORIZONTAL
)
1459 return m_hScrollBar
->GetThumbPosition() ;
1464 return m_vScrollBar
->GetThumbPosition() ;
1470 // This now returns the whole range, not just the number
1471 // of positions that we can scroll.
1472 int wxWindowMac::GetScrollRange(int orient
) const
1475 if ( orient
== wxHORIZONTAL
)
1478 return m_hScrollBar
->GetRange() ;
1483 return m_vScrollBar
->GetRange() ;
1489 int wxWindowMac::GetScrollThumb(int orient
) const
1492 if ( orient
== wxHORIZONTAL
)
1495 return m_hScrollBar
->GetThumbSize() ;
1500 return m_vScrollBar
->GetThumbSize() ;
1506 void wxWindowMac::SetScrollPos(int orient
, int pos
, bool WXUNUSED(refresh
))
1509 if ( orient
== wxHORIZONTAL
)
1512 m_hScrollBar
->SetThumbPosition( pos
) ;
1517 m_vScrollBar
->SetThumbPosition( pos
) ;
1523 wxWindowMac::AlwaysShowScrollbars(bool hflag
, bool vflag
)
1525 bool needVisibilityUpdate
= false;
1527 if ( m_hScrollBarAlwaysShown
!= hflag
)
1529 m_hScrollBarAlwaysShown
= hflag
;
1530 needVisibilityUpdate
= true;
1533 if ( m_vScrollBarAlwaysShown
!= vflag
)
1535 m_vScrollBarAlwaysShown
= vflag
;
1536 needVisibilityUpdate
= true;
1539 if ( needVisibilityUpdate
)
1540 DoUpdateScrollbarVisibility();
1544 // we draw borders and grow boxes, are already set up and clipped in the current port / cgContextRef
1545 // our own window origin is at leftOrigin/rightOrigin
1548 void wxWindowMac::MacPaintGrowBox()
1554 if ( MacHasScrollBarCorner() )
1557 CGContextRef cgContext
= (CGContextRef
) MacGetCGContextRef() ;
1558 wxASSERT( cgContext
) ;
1562 GetPeer()->GetSize( tw
, th
);
1563 GetPeer()->GetPosition( tx
, ty
);
1565 Rect rect
= { ty
,tx
, ty
+th
, tx
+tw
};
1568 int size
= m_hScrollBar
? m_hScrollBar
->GetSize().y
: ( m_vScrollBar
? m_vScrollBar
->GetSize().x
: MAC_SCROLLBAR_SIZE
) ;
1569 CGRect cgrect
= CGRectMake( rect
.right
- size
, rect
.bottom
- size
, size
, size
) ;
1570 CGContextSaveGState( cgContext
);
1572 if ( m_backgroundColour
.IsOk() )
1574 CGContextSetFillColorWithColor( cgContext
, m_backgroundColour
.GetCGColor() );
1578 CGContextSetRGBFillColor( cgContext
, (CGFloat
) 1.0, (CGFloat
)1.0 ,(CGFloat
) 1.0 , (CGFloat
)1.0 );
1580 CGContextFillRect( cgContext
, cgrect
);
1581 CGContextRestoreGState( cgContext
);
1585 if ( m_backgroundColour
.IsOk() )
1586 m_growBox
->SetBackgroundColour(m_backgroundColour
);
1588 m_growBox
->SetBackgroundColour(*wxWHITE
);
1596 void wxWindowMac::MacPaintBorders( int WXUNUSED(leftOrigin
) , int WXUNUSED(rightOrigin
) )
1601 bool hasFocus
= GetPeer()->NeedsFocusRect() && HasFocus();
1603 // back to the surrounding frame rectangle
1606 GetPeer()->GetSize( tw
, th
);
1607 GetPeer()->GetPosition( tx
, ty
);
1609 #if wxOSX_USE_COCOA_OR_CARBON
1612 CGRect cgrect
= CGRectMake( tx
-1 , ty
-1 , tw
+2 ,
1615 CGContextRef cgContext
= (CGContextRef
) GetParent()->MacGetCGContextRef() ;
1616 wxASSERT( cgContext
) ;
1618 if ( GetPeer()->NeedsFrame() )
1620 HIThemeFrameDrawInfo info
;
1621 memset( &info
, 0 , sizeof(info
) ) ;
1625 info
.state
= IsEnabled() ? kThemeStateActive
: kThemeStateInactive
;
1626 info
.isFocused
= hasFocus
;
1628 if ( HasFlag(wxRAISED_BORDER
) || HasFlag(wxSUNKEN_BORDER
) || HasFlag(wxDOUBLE_BORDER
) )
1630 info
.kind
= kHIThemeFrameTextFieldSquare
;
1631 HIThemeDrawFrame( &cgrect
, &info
, cgContext
, kHIThemeOrientationNormal
) ;
1633 else if ( HasFlag(wxSIMPLE_BORDER
) )
1635 info
.kind
= kHIThemeFrameListBox
;
1636 HIThemeDrawFrame( &cgrect
, &info
, cgContext
, kHIThemeOrientationNormal
) ;
1642 HIThemeDrawFocusRect( &cgrect
, true , cgContext
, kHIThemeOrientationNormal
) ;
1645 #endif // wxOSX_USE_COCOA_OR_CARBON
1648 void wxWindowMac::RemoveChild( wxWindowBase
*child
)
1651 if ( child
== m_hScrollBar
)
1652 m_hScrollBar
= NULL
;
1653 if ( child
== m_vScrollBar
)
1654 m_vScrollBar
= NULL
;
1655 if ( child
== m_growBox
)
1658 wxWindowBase::RemoveChild( child
) ;
1661 void wxWindowMac::DoUpdateScrollbarVisibility()
1664 bool triggerSizeEvent
= false;
1668 bool showHScrollBar
= m_hScrollBarAlwaysShown
|| m_hScrollBar
->IsNeeded();
1670 if ( m_hScrollBar
->IsShown() != showHScrollBar
)
1672 m_hScrollBar
->Show( showHScrollBar
);
1673 triggerSizeEvent
= true;
1679 bool showVScrollBar
= m_vScrollBarAlwaysShown
|| m_vScrollBar
->IsNeeded();
1681 if ( m_vScrollBar
->IsShown() != showVScrollBar
)
1683 m_vScrollBar
->Show( showVScrollBar
) ;
1684 triggerSizeEvent
= true;
1688 MacRepositionScrollBars() ;
1689 if ( triggerSizeEvent
)
1691 MacOnInternalSize();
1692 wxSizeEvent
event(GetSize(), m_windowId
);
1693 event
.SetEventObject(this);
1694 HandleWindowEvent(event
);
1699 // New function that will replace some of the above.
1700 void wxWindowMac::SetScrollbar(int orient
, int pos
, int thumb
,
1701 int range
, bool refresh
)
1704 // Updating scrollbars when window is being deleted is useless and
1705 // currently results in asserts in client-to-screen coordinates conversion
1706 // code which is used by DoUpdateScrollbarVisibility() so just skip it.
1707 if ( m_isBeingDeleted
)
1710 if ( orient
== wxHORIZONTAL
&& m_hScrollBar
)
1711 m_hScrollBar
->SetScrollbar(pos
, thumb
, range
, thumb
, refresh
);
1712 else if ( orient
== wxVERTICAL
&& m_vScrollBar
)
1713 m_vScrollBar
->SetScrollbar(pos
, thumb
, range
, thumb
, refresh
);
1715 DoUpdateScrollbarVisibility();
1719 // Does a physical scroll
1720 void wxWindowMac::ScrollWindow(int dx
, int dy
, const wxRect
*rect
)
1722 if ( dx
== 0 && dy
== 0 )
1725 int width
, height
;
1726 GetClientSize( &width
, &height
) ;
1729 wxRect
scrollrect( MacGetLeftBorderSize() , MacGetTopBorderSize() , width
, height
) ;
1731 scrollrect
.Intersect( *rect
) ;
1732 // as the native control might be not a 0/0 wx window coordinates, we have to offset
1733 scrollrect
.Offset( -MacGetLeftBorderSize() , -MacGetTopBorderSize() ) ;
1735 GetPeer()->ScrollRect( &scrollrect
, dx
, dy
);
1740 for (wxWindowList::compatibility_iterator node
= GetChildren().GetFirst(); node
; node
= node
->GetNext())
1742 child
= node
->GetData();
1746 if (child
->IsTopLevel())
1749 if ( !IsClientAreaChild(child
) )
1752 child
->GetPosition( &x
, &y
);
1753 child
->GetSize( &w
, &h
);
1756 wxRect
rc( x
, y
, w
, h
);
1757 if (rect
->Intersects( rc
))
1758 child
->SetSize( x
+ dx
, y
+ dy
, w
, h
, wxSIZE_AUTO
|wxSIZE_ALLOW_MINUS_ONE
);
1762 child
->SetSize( x
+ dx
, y
+ dy
, w
, h
, wxSIZE_AUTO
|wxSIZE_ALLOW_MINUS_ONE
);
1767 void wxWindowMac::MacOnScroll( wxScrollEvent
&event
)
1770 if ( event
.GetEventObject() == m_vScrollBar
|| event
.GetEventObject() == m_hScrollBar
)
1772 wxScrollWinEvent wevent
;
1773 wevent
.SetPosition(event
.GetPosition());
1774 wevent
.SetOrientation(event
.GetOrientation());
1775 wevent
.SetEventObject(this);
1777 if (event
.GetEventType() == wxEVT_SCROLL_TOP
)
1778 wevent
.SetEventType( wxEVT_SCROLLWIN_TOP
);
1779 else if (event
.GetEventType() == wxEVT_SCROLL_BOTTOM
)
1780 wevent
.SetEventType( wxEVT_SCROLLWIN_BOTTOM
);
1781 else if (event
.GetEventType() == wxEVT_SCROLL_LINEUP
)
1782 wevent
.SetEventType( wxEVT_SCROLLWIN_LINEUP
);
1783 else if (event
.GetEventType() == wxEVT_SCROLL_LINEDOWN
)
1784 wevent
.SetEventType( wxEVT_SCROLLWIN_LINEDOWN
);
1785 else if (event
.GetEventType() == wxEVT_SCROLL_PAGEUP
)
1786 wevent
.SetEventType( wxEVT_SCROLLWIN_PAGEUP
);
1787 else if (event
.GetEventType() == wxEVT_SCROLL_PAGEDOWN
)
1788 wevent
.SetEventType( wxEVT_SCROLLWIN_PAGEDOWN
);
1789 else if (event
.GetEventType() == wxEVT_SCROLL_THUMBTRACK
)
1790 wevent
.SetEventType( wxEVT_SCROLLWIN_THUMBTRACK
);
1791 else if (event
.GetEventType() == wxEVT_SCROLL_THUMBRELEASE
)
1792 wevent
.SetEventType( wxEVT_SCROLLWIN_THUMBRELEASE
);
1794 HandleWindowEvent(wevent
);
1799 wxWindow
*wxWindowBase::DoFindFocus()
1801 return wxFindWindowFromWXWidget(wxWidgetImpl::FindFocus());
1804 // Raise the window to the top of the Z order
1805 void wxWindowMac::Raise()
1810 // Lower the window to the bottom of the Z order
1811 void wxWindowMac::Lower()
1816 // static wxWindow *gs_lastWhich = NULL;
1818 bool wxWindowMac::MacSetupCursor( const wxPoint
& pt
)
1820 // first trigger a set cursor event
1822 wxPoint clientorigin
= GetClientAreaOrigin() ;
1823 wxSize clientsize
= GetClientSize() ;
1825 if ( wxRect2DInt( clientorigin
.x
, clientorigin
.y
, clientsize
.x
, clientsize
.y
).Contains( wxPoint2DInt( pt
) ) )
1827 wxSetCursorEvent
event( pt
.x
, pt
.y
);
1829 bool processedEvtSetCursor
= HandleWindowEvent(event
);
1830 if ( processedEvtSetCursor
&& event
.HasCursor() )
1832 cursor
= event
.GetCursor() ;
1836 // the test for processedEvtSetCursor is here to prevent using m_cursor
1837 // if the user code caught EVT_SET_CURSOR() and returned nothing from
1838 // it - this is a way to say that our cursor shouldn't be used for this
1840 if ( !processedEvtSetCursor
&& m_cursor
.IsOk() )
1843 if ( !wxIsBusy() && !GetParent() )
1844 cursor
= *wxSTANDARD_CURSOR
;
1847 if ( cursor
.IsOk() )
1848 cursor
.MacInstall() ;
1851 return cursor
.IsOk() ;
1854 wxString
wxWindowMac::MacGetToolTipString( wxPoint
&WXUNUSED(pt
) )
1858 return m_tooltip
->GetTip() ;
1861 return wxEmptyString
;
1864 void wxWindowMac::ClearBackground()
1870 void wxWindowMac::Update()
1872 wxNonOwnedWindow
* top
= MacGetTopLevelWindow();
1877 wxNonOwnedWindow
* wxWindowMac::MacGetTopLevelWindow() const
1879 wxWindowMac
*iter
= (wxWindowMac
*)this ;
1883 if ( iter
->IsTopLevel() )
1885 wxTopLevelWindow
* toplevel
= wxDynamicCast(iter
,wxTopLevelWindow
);
1889 wxPopupWindow
* popupwin
= wxDynamicCast(iter
,wxPopupWindow
);
1894 iter
= iter
->GetParent() ;
1900 const wxRect
& wxWindowMac::MacGetClippedClientRect() const
1902 MacUpdateClippedRects() ;
1904 return m_cachedClippedClientRect
;
1907 const wxRect
& wxWindowMac::MacGetClippedRect() const
1909 MacUpdateClippedRects() ;
1911 return m_cachedClippedRect
;
1914 const wxRect
&wxWindowMac:: MacGetClippedRectWithOuterStructure() const
1916 MacUpdateClippedRects() ;
1918 return m_cachedClippedRectWithOuterStructure
;
1921 const wxRegion
& wxWindowMac::MacGetVisibleRegion( bool includeOuterStructures
)
1923 static wxRegion emptyrgn
;
1925 if ( !m_isBeingDeleted
&& IsShownOnScreen() )
1927 MacUpdateClippedRects() ;
1928 if ( includeOuterStructures
)
1929 return m_cachedClippedRegionWithOuterStructure
;
1931 return m_cachedClippedRegion
;
1939 void wxWindowMac::MacUpdateClippedRects() const
1941 #if wxOSX_USE_CARBON
1942 if ( m_cachedClippedRectValid
)
1945 // includeOuterStructures is true if we try to draw somthing like a focus ring etc.
1946 // also a window dc uses this, in this case we only clip in the hierarchy for hard
1947 // borders like a scrollwindow, splitter etc otherwise we end up in a paranoia having
1948 // to add focus borders everywhere
1950 Rect rIncludingOuterStructures
;
1954 GetPeer()->GetSize( tw
, th
);
1955 GetPeer()->GetPosition( tx
, ty
);
1957 Rect r
= { ty
,tx
, ty
+th
, tx
+tw
};
1959 r
.left
-= MacGetLeftBorderSize() ;
1960 r
.top
-= MacGetTopBorderSize() ;
1961 r
.bottom
+= MacGetBottomBorderSize() ;
1962 r
.right
+= MacGetRightBorderSize() ;
1969 rIncludingOuterStructures
= r
;
1970 InsetRect( &rIncludingOuterStructures
, -4 , -4 ) ;
1972 wxRect cl
= GetClientRect() ;
1973 Rect rClient
= { cl
.y
, cl
.x
, cl
.y
+ cl
.height
, cl
.x
+ cl
.width
} ;
1977 const wxWindow
* child
= (wxWindow
*) this ;
1978 const wxWindow
* parent
= NULL
;
1980 while ( !child
->IsTopLevel() && ( parent
= child
->GetParent() ) != NULL
)
1982 if ( parent
->MacIsChildOfClientArea(child
) )
1984 size
= parent
->GetClientSize() ;
1985 wxPoint origin
= parent
->GetClientAreaOrigin() ;
1991 // this will be true for scrollbars, toolbars etc.
1992 size
= parent
->GetSize() ;
1993 y
= parent
->MacGetTopBorderSize() ;
1994 x
= parent
->MacGetLeftBorderSize() ;
1995 size
.x
-= parent
->MacGetLeftBorderSize() + parent
->MacGetRightBorderSize() ;
1996 size
.y
-= parent
->MacGetTopBorderSize() + parent
->MacGetBottomBorderSize() ;
1999 parent
->MacWindowToRootWindow( &x
, &y
) ;
2000 MacRootWindowToWindow( &x
, &y
) ;
2002 Rect rparent
= { y
, x
, y
+ size
.y
, x
+ size
.x
} ;
2004 // the wxwindow and client rects will always be clipped
2005 SectRect( &r
, &rparent
, &r
) ;
2006 SectRect( &rClient
, &rparent
, &rClient
) ;
2008 // the structure only at 'hard' borders
2009 if ( parent
->MacClipChildren() ||
2010 ( parent
->GetParent() && parent
->GetParent()->MacClipGrandChildren() ) )
2012 SectRect( &rIncludingOuterStructures
, &rparent
, &rIncludingOuterStructures
) ;
2018 m_cachedClippedRect
= wxRect( r
.left
, r
.top
, r
.right
- r
.left
, r
.bottom
- r
.top
) ;
2019 m_cachedClippedClientRect
= wxRect( rClient
.left
, rClient
.top
,
2020 rClient
.right
- rClient
.left
, rClient
.bottom
- rClient
.top
) ;
2021 m_cachedClippedRectWithOuterStructure
= wxRect(
2022 rIncludingOuterStructures
.left
, rIncludingOuterStructures
.top
,
2023 rIncludingOuterStructures
.right
- rIncludingOuterStructures
.left
,
2024 rIncludingOuterStructures
.bottom
- rIncludingOuterStructures
.top
) ;
2026 m_cachedClippedRegionWithOuterStructure
= wxRegion( m_cachedClippedRectWithOuterStructure
) ;
2027 m_cachedClippedRegion
= wxRegion( m_cachedClippedRect
) ;
2028 m_cachedClippedClientRegion
= wxRegion( m_cachedClippedClientRect
) ;
2030 m_cachedClippedRectValid
= true ;
2035 This function must not change the updatergn !
2037 bool wxWindowMac::MacDoRedraw( long time
)
2039 bool handled
= false ;
2041 wxRegion formerUpdateRgn
= m_updateRegion
;
2042 wxRegion clientUpdateRgn
= formerUpdateRgn
;
2044 const wxRect clientRect
= GetClientRect();
2046 clientUpdateRgn
.Intersect(clientRect
);
2048 // first send an erase event to the entire update area
2049 const wxBackgroundStyle bgStyle
= GetBackgroundStyle();
2052 case wxBG_STYLE_ERASE
:
2053 case wxBG_STYLE_SYSTEM
:
2054 case wxBG_STYLE_COLOUR
:
2056 // for the toplevel window this really is the entire area for
2057 // all the others only their client area, otherwise they might
2058 // be drawing with full alpha and eg put blue into the grow-box
2059 // area of a scrolled window (scroll sample)
2060 wxWindowDC
dc(this);
2062 dc
.SetDeviceClippingRegion(formerUpdateRgn
);
2064 dc
.SetDeviceClippingRegion(clientUpdateRgn
);
2066 if ( bgStyle
== wxBG_STYLE_ERASE
)
2068 wxEraseEvent
eevent( GetId(), &dc
);
2069 eevent
.SetEventObject( this );
2070 if ( ProcessWindowEvent( eevent
) )
2076 dc
.SetBackground(GetBackgroundColour());
2082 case wxBG_STYLE_PAINT
:
2083 case wxBG_STYLE_TRANSPARENT
:
2084 // nothing to do, user-defined EVT_PAINT handler will overwrite the
2085 // entire window client area
2089 wxFAIL_MSG( "unsupported background style" );
2092 // as this is a full window, shouldn't be necessary anymore
2093 // MacPaintGrowBox();
2095 // calculate a client-origin version of the update rgn and set
2096 // m_updateRegion to that
2097 clientUpdateRgn
.Offset(-clientRect
.GetPosition());
2098 m_updateRegion
= clientUpdateRgn
;
2100 if ( !m_updateRegion
.Empty() )
2102 // paint the window itself
2104 wxPaintEvent
event(GetId());
2105 event
.SetTimestamp(time
);
2106 event
.SetEventObject(this);
2107 handled
= HandleWindowEvent(event
);
2110 m_updateRegion
= formerUpdateRgn
;
2112 wxNonOwnedWindow
* top
= MacGetTopLevelWindow();
2114 top
->WindowWasPainted() ;
2119 void wxWindowMac::MacPaintChildrenBorders()
2121 // now we cannot rely on having its borders drawn by a window itself, as it does not
2122 // get the updateRgn wide enough to always do so, so we do it from the parent
2123 // this would also be the place to draw any custom backgrounds for native controls
2124 // in Composited windowing
2125 wxPoint clientOrigin
= GetClientAreaOrigin() ;
2129 for (wxWindowList::compatibility_iterator node
= GetChildren().GetFirst(); node
; node
= node
->GetNext())
2131 child
= node
->GetData();
2135 if (child
== m_vScrollBar
)
2137 if (child
== m_hScrollBar
)
2139 if (child
== m_growBox
)
2142 if (child
->IsTopLevel())
2144 if (!child
->IsShown())
2147 // only draw those in the update region (add a safety margin of 10 pixels for shadow effects
2149 child
->GetPosition( &x
, &y
);
2150 child
->GetSize( &w
, &h
);
2152 if ( m_updateRegion
.Contains(clientOrigin
.x
+x
-10, clientOrigin
.y
+y
-10, w
+20, h
+20) )
2154 // paint custom borders
2155 wxNcPaintEvent
eventNc( child
->GetId() );
2156 eventNc
.SetEventObject( child
);
2157 if ( !child
->HandleWindowEvent( eventNc
) )
2159 child
->MacPaintBorders(0, 0) ;
2166 WXWindow
wxWindowMac::MacGetTopLevelWindowRef() const
2168 wxNonOwnedWindow
* tlw
= MacGetTopLevelWindow();
2169 return tlw
? tlw
->GetWXWindow() : NULL
;
2172 bool wxWindowMac::MacHasScrollBarCorner() const
2175 /* Returns whether the scroll bars in a wxScrolledWindow should be
2176 * shortened. Scroll bars should be shortened if either:
2178 * - both scroll bars are visible, or
2180 * - there is a resize box in the parent frame's corner and this
2181 * window shares the bottom and right edge with the parent
2185 if ( m_hScrollBar
== NULL
&& m_vScrollBar
== NULL
)
2188 if ( ( m_hScrollBar
&& m_hScrollBar
->IsShown() )
2189 && ( m_vScrollBar
&& m_vScrollBar
->IsShown() ) )
2191 // Both scroll bars visible
2196 wxPoint thisWindowBottomRight
= GetScreenRect().GetBottomRight();
2198 for ( const wxWindow
*win
= (wxWindow
*)this; win
; win
= win
->GetParent() )
2200 const wxFrame
*frame
= wxDynamicCast( win
, wxFrame
) ;
2203 if ( frame
->GetWindowStyleFlag() & wxRESIZE_BORDER
)
2205 // Parent frame has resize handle
2206 wxPoint frameBottomRight
= frame
->GetScreenRect().GetBottomRight();
2208 // Note: allow for some wiggle room here as wxMac's
2209 // window rect calculations seem to be imprecise
2210 if ( abs( thisWindowBottomRight
.x
- frameBottomRight
.x
) <= 2
2211 && abs( thisWindowBottomRight
.y
- frameBottomRight
.y
) <= 2 )
2213 // Parent frame has resize handle and shares
2214 // right bottom corner
2219 // Parent frame has resize handle but doesn't
2220 // share right bottom corner
2226 // Parent frame doesn't have resize handle
2232 // No parent frame found
2240 void wxWindowMac::MacCreateScrollBars( long style
)
2243 wxASSERT_MSG( m_vScrollBar
== NULL
&& m_hScrollBar
== NULL
, wxT("attempt to create window twice") ) ;
2245 if ( style
& ( wxVSCROLL
| wxHSCROLL
) )
2247 int scrlsize
= MAC_SCROLLBAR_SIZE
;
2248 if ( GetWindowVariant() == wxWINDOW_VARIANT_SMALL
|| GetWindowVariant() == wxWINDOW_VARIANT_MINI
)
2250 scrlsize
= MAC_SMALL_SCROLLBAR_SIZE
;
2253 int adjust
= MacHasScrollBarCorner() ? scrlsize
- 1: 0 ;
2255 GetClientSize( &width
, &height
) ;
2257 wxPoint
vPoint(width
- scrlsize
, 0) ;
2258 wxSize
vSize(scrlsize
, height
- adjust
) ;
2259 wxPoint
hPoint(0, height
- scrlsize
) ;
2260 wxSize
hSize(width
- adjust
, scrlsize
) ;
2262 // we have to set the min size to a smaller value, otherwise they cannot get smaller (InitialSize sets MinSize)
2263 if ( style
& wxVSCROLL
)
2265 m_vScrollBar
= new wxScrollBar((wxWindow
*)this, wxID_ANY
, vPoint
, vSize
, wxVERTICAL
);
2266 m_vScrollBar
->SetMinSize( wxDefaultSize
);
2269 if ( style
& wxHSCROLL
)
2271 m_hScrollBar
= new wxScrollBar((wxWindow
*)this, wxID_ANY
, hPoint
, hSize
, wxHORIZONTAL
);
2272 m_hScrollBar
->SetMinSize( wxDefaultSize
);
2275 wxPoint
gPoint(width
- scrlsize
, height
- scrlsize
);
2276 wxSize
gSize(scrlsize
, scrlsize
);
2277 m_growBox
= new wxBlindPlateWindow((wxWindow
*)this, wxID_ANY
, gPoint
, gSize
, 0);
2280 // because the create does not take into account the client area origin
2281 // we might have a real position shift
2282 MacRepositionScrollBars() ;
2286 bool wxWindowMac::MacIsChildOfClientArea( const wxWindow
* child
) const
2288 bool result
= ((child
== NULL
)
2290 || ((child
!= m_hScrollBar
) && (child
!= m_vScrollBar
) && (child
!= m_growBox
))
2297 void wxWindowMac::MacRepositionScrollBars()
2300 if ( !m_hScrollBar
&& !m_vScrollBar
)
2303 int scrlsize
= m_hScrollBar
? m_hScrollBar
->GetSize().y
: ( m_vScrollBar
? m_vScrollBar
->GetSize().x
: MAC_SCROLLBAR_SIZE
) ;
2304 int adjust
= MacHasScrollBarCorner() ? scrlsize
- 1 : 0 ;
2306 // get real client area
2308 GetSize( &width
, &height
);
2310 width
-= MacGetLeftBorderSize() + MacGetRightBorderSize();
2311 height
-= MacGetTopBorderSize() + MacGetBottomBorderSize();
2313 wxPoint
vPoint( width
- scrlsize
, 0 ) ;
2314 wxSize
vSize( scrlsize
, height
- adjust
) ;
2315 wxPoint
hPoint( 0 , height
- scrlsize
) ;
2316 wxSize
hSize( width
- adjust
, scrlsize
) ;
2319 m_vScrollBar
->SetSize( vPoint
.x
, vPoint
.y
, vSize
.x
, vSize
.y
, wxSIZE_ALLOW_MINUS_ONE
);
2321 m_hScrollBar
->SetSize( hPoint
.x
, hPoint
.y
, hSize
.x
, hSize
.y
, wxSIZE_ALLOW_MINUS_ONE
);
2324 if ( MacHasScrollBarCorner() )
2326 m_growBox
->SetSize( width
- scrlsize
, height
- scrlsize
, wxDefaultCoord
, wxDefaultCoord
, wxSIZE_USE_EXISTING
);
2327 if ( !m_growBox
->IsShown() )
2332 if ( m_growBox
->IsShown() )
2339 bool wxWindowMac::AcceptsFocus() const
2341 if ( GetPeer() == NULL
|| GetPeer()->IsUserPane() )
2342 return wxWindowBase::AcceptsFocus();
2344 return GetPeer()->CanFocus();
2347 void wxWindowMac::MacSuperChangedPosition()
2349 // only window-absolute structures have to be moved i.e. controls
2351 m_cachedClippedRectValid
= false ;
2354 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
2357 child
= node
->GetData();
2358 child
->MacSuperChangedPosition() ;
2360 node
= node
->GetNext();
2364 void wxWindowMac::MacTopLevelWindowChangedPosition()
2366 // only screen-absolute structures have to be moved i.e. glcanvas
2369 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
2372 child
= node
->GetData();
2373 child
->MacTopLevelWindowChangedPosition() ;
2375 node
= node
->GetNext();
2379 long wxWindowMac::MacGetWXBorderSize() const
2386 if ( GetPeer() && GetPeer()->NeedsFrame() )
2388 if (HasFlag(wxRAISED_BORDER
) || HasFlag( wxSUNKEN_BORDER
) || HasFlag(wxDOUBLE_BORDER
))
2390 #if wxOSX_USE_COCOA_OR_CARBON
2391 // this metric is only the 'outset' outside the simple frame rect
2392 GetThemeMetric( kThemeMetricEditTextFrameOutset
, &border
) ;
2398 else if (HasFlag(wxSIMPLE_BORDER
))
2400 #if wxOSX_USE_COCOA_OR_CARBON
2401 // this metric is only the 'outset' outside the simple frame rect
2402 GetThemeMetric( kThemeMetricListBoxFrameOutset
, &border
) ;
2413 long wxWindowMac::MacGetLeftBorderSize() const
2415 // the wx borders are all symmetric in mac themes
2416 long border
= MacGetWXBorderSize() ;
2420 int left
, top
, right
, bottom
;
2421 GetPeer()->GetLayoutInset( left
, top
, right
, bottom
);
2429 long wxWindowMac::MacGetRightBorderSize() const
2431 // the wx borders are all symmetric in mac themes
2432 long border
= MacGetWXBorderSize() ;
2436 int left
, top
, right
, bottom
;
2437 GetPeer()->GetLayoutInset( left
, top
, right
, bottom
);
2444 long wxWindowMac::MacGetTopBorderSize() const
2446 // the wx borders are all symmetric in mac themes
2447 long border
= MacGetWXBorderSize() ;
2451 int left
, top
, right
, bottom
;
2452 GetPeer()->GetLayoutInset( left
, top
, right
, bottom
);
2459 long wxWindowMac::MacGetBottomBorderSize() const
2461 // the wx borders are all symmetric in mac themes
2462 long border
= MacGetWXBorderSize() ;
2466 int left
, top
, right
, bottom
;
2467 GetPeer()->GetLayoutInset( left
, top
, right
, bottom
);
2474 long wxWindowMac::MacRemoveBordersFromStyle( long style
)
2476 return style
& ~wxBORDER_MASK
;
2479 // Find the wxWindowMac at the current mouse position, returning the mouse
2481 wxWindow
* wxFindWindowAtPointer( wxPoint
& pt
)
2483 pt
= wxGetMousePosition();
2484 wxWindowMac
* found
= wxFindWindowAtPoint(pt
);
2486 return (wxWindow
*) found
;
2489 // Get the current mouse position.
2490 wxPoint
wxGetMousePosition()
2494 wxGetMousePosition( &x
, &y
);
2496 return wxPoint(x
, y
);
2499 void wxWindowMac::OnMouseEvent( wxMouseEvent
&event
)
2501 if ( event
.GetEventType() == wxEVT_RIGHT_DOWN
)
2503 // copied from wxGTK : CS
2504 // VZ: shouldn't we move this to base class then?
2506 // generate a "context menu" event: this is similar to wxEVT_RIGHT_DOWN
2509 // (a) it's a command event and so is propagated to the parent
2510 // (b) under MSW it can be generated from kbd too
2511 // (c) it uses screen coords (because of (a))
2512 wxContextMenuEvent
evtCtx(wxEVT_CONTEXT_MENU
,
2514 this->ClientToScreen(event
.GetPosition()));
2515 evtCtx
.SetEventObject(this);
2516 if ( ! HandleWindowEvent(evtCtx
) )
2525 void wxWindowMac::TriggerScrollEvent( wxEventType
WXUNUSED(scrollEvent
) )
2529 Rect
wxMacGetBoundsForControl( wxWindowMac
* window
, const wxPoint
& pos
, const wxSize
&size
, bool adjustForOrigin
)
2533 window
->MacGetBoundsForControl( pos
, size
, x
, y
, w
, h
, adjustForOrigin
) ;
2534 Rect bounds
= { static_cast<short>(y
), static_cast<short>(x
), static_cast<short>(y
+ h
), static_cast<short>(x
+ w
) };
2539 bool wxWindowMac::OSXHandleClicked( double WXUNUSED(timestampsec
) )
2544 wxInt32
wxWindowMac::MacControlHit(WXEVENTHANDLERREF
WXUNUSED(handler
) , WXEVENTREF event
)
2546 #if wxOSX_USE_COCOA_OR_CARBON
2547 if ( OSXHandleClicked( GetEventTime((EventRef
)event
) ) )
2550 return eventNotHandledErr
;
2556 bool wxWindowMac::Reparent(wxWindowBase
*newParentBase
)
2558 wxWindowMac
*newParent
= (wxWindowMac
*)newParentBase
;
2559 if ( !wxWindowBase::Reparent(newParent
) )
2562 GetPeer()->RemoveFromParent();
2563 GetPeer()->Embed( GetParent()->GetPeer() );
2569 bool wxWindowMac::SetTransparent(wxByte alpha
)
2571 SetBackgroundStyle(wxBG_STYLE_TRANSPARENT
);
2573 if ( alpha
!= m_macAlpha
)
2575 m_macAlpha
= alpha
;
2582 bool wxWindowMac::CanSetTransparent()
2587 wxByte
wxWindowMac::GetTransparent() const
2592 bool wxWindowMac::IsShownOnScreen() const
2594 if ( GetPeer() && GetPeer()->IsOk() )
2596 bool peerVis
= GetPeer()->IsVisible();
2597 bool wxVis
= wxWindowBase::IsShownOnScreen();
2598 if( peerVis
!= wxVis
)
2600 // CS : put a breakpoint here to investigate differences
2601 // between native an wx visibilities
2602 // the only place where I've encountered them until now
2603 // are the hiding/showing sequences where the vis-changed event is
2604 // first sent to the innermost control, while wx does things
2605 // from the outmost control
2606 wxVis
= wxWindowBase::IsShownOnScreen();
2610 return GetPeer()->IsVisible();
2612 return wxWindowBase::IsShownOnScreen();
2615 #if wxUSE_HOTKEY && wxOSX_USE_COCOA_OR_CARBON
2618 wxHotKeyHandler(EventHandlerCallRef
WXUNUSED(nextHandler
),
2620 void* WXUNUSED(userData
))
2622 EventHotKeyID hotKeyId
;
2624 GetEventParameter( event
, kEventParamDirectObject
, typeEventHotKeyID
, NULL
, sizeof(hotKeyId
), NULL
, &hotKeyId
);
2626 for ( unsigned i
= 0; i
< s_hotkeys
.size(); ++i
)
2628 if ( s_hotkeys
[i
].keyId
== static_cast<int>(hotKeyId
.id
) )
2630 unsigned char charCode
;
2634 UInt32 when
= EventTimeToTicks( GetEventTime( event
) ) ;
2636 GetEventParameter( event
, kEventParamKeyMacCharCodes
, typeChar
, NULL
, sizeof(char), NULL
, &charCode
);
2637 GetEventParameter( event
, kEventParamKeyCode
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &keyCode
);
2638 GetEventParameter( event
, kEventParamKeyModifiers
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &modifiers
);
2639 GetEventParameter( event
, kEventParamMouseLocation
, typeQDPoint
, NULL
, sizeof(Point
), NULL
, &where
);
2641 UInt32 keymessage
= (keyCode
<< 8) + charCode
;
2643 wxKeyEvent
wxevent(wxEVT_HOTKEY
);
2644 wxevent
.SetId(hotKeyId
.id
);
2645 wxTheApp
->MacCreateKeyEvent( wxevent
, s_hotkeys
[i
].window
, keymessage
,
2646 modifiers
, when
, where
.h
, where
.v
, 0 ) ;
2648 s_hotkeys
[i
].window
->HandleWindowEvent(wxevent
);
2655 bool wxWindowMac::RegisterHotKey(int hotkeyId
, int modifiers
, int keycode
)
2657 for ( unsigned i
= 0; i
< s_hotkeys
.size(); ++i
)
2659 if ( s_hotkeys
[i
].keyId
== hotkeyId
)
2661 wxLogLastError(wxT("hotkeyId already registered"));
2667 static bool installed
= false;
2670 EventTypeSpec eventType
;
2671 eventType
.eventClass
=kEventClassKeyboard
;
2672 eventType
.eventKind
=kEventHotKeyPressed
;
2674 InstallApplicationEventHandler(&wxHotKeyHandler
, 1, &eventType
, NULL
, NULL
);
2678 UInt32 mac_modifiers
=0;
2679 if ( modifiers
& wxMOD_ALT
)
2680 mac_modifiers
|= optionKey
;
2681 if ( modifiers
& wxMOD_SHIFT
)
2682 mac_modifiers
|= shiftKey
;
2683 if ( modifiers
& wxMOD_RAW_CONTROL
)
2684 mac_modifiers
|= controlKey
;
2685 if ( modifiers
& wxMOD_CONTROL
)
2686 mac_modifiers
|= cmdKey
;
2688 EventHotKeyRef hotKeyRef
;
2689 EventHotKeyID hotKeyIDmac
;
2691 hotKeyIDmac
.signature
= 'WXMC';
2692 hotKeyIDmac
.id
= hotkeyId
;
2694 if ( RegisterEventHotKey(wxCharCodeWXToOSX((wxKeyCode
)keycode
), mac_modifiers
, hotKeyIDmac
,
2695 GetApplicationEventTarget(), 0, &hotKeyRef
) != noErr
)
2697 wxLogLastError(wxT("RegisterHotKey"));
2708 s_hotkeys
.push_back(v
);
2714 bool wxWindowMac::UnregisterHotKey(int hotkeyId
)
2716 for ( int i
= ((int)s_hotkeys
.size())-1; i
>=0; -- i
)
2718 if ( s_hotkeys
[i
].keyId
== hotkeyId
)
2720 EventHotKeyRef ref
= s_hotkeys
[i
].ref
;
2721 s_hotkeys
.erase(s_hotkeys
.begin() + i
);
2722 if ( UnregisterEventHotKey(ref
) != noErr
)
2724 wxLogLastError(wxT("UnregisterHotKey"));
2736 #endif // wxUSE_HOTKEY
2738 bool wxWindowMac::OSXHandleKeyEvent( wxKeyEvent
& event
)
2740 bool handled
= false;
2742 // moved the ordinary key event sending AFTER the accel evaluation
2745 if ( !handled
&& event
.GetEventType() == wxEVT_KEY_DOWN
)
2747 wxWindow
*ancestor
= this;
2750 int command
= ancestor
->GetAcceleratorTable()->GetCommand( event
);
2753 wxEvtHandler
* const handler
= ancestor
->GetEventHandler();
2755 wxCommandEvent
command_event( wxEVT_COMMAND_MENU_SELECTED
, command
);
2756 handled
= handler
->ProcessEvent( command_event
);
2760 // accelerators can also be used with buttons, try them too
2761 command_event
.SetEventType(wxEVT_COMMAND_BUTTON_CLICKED
);
2762 handled
= handler
->ProcessEvent( command_event
);
2768 if (ancestor
->IsTopLevel())
2771 ancestor
= ancestor
->GetParent();
2774 #endif // wxUSE_ACCEL
2778 handled
= HandleWindowEvent( event
) ;
2779 if ( handled
&& event
.GetSkipped() )
2790 WX_DECLARE_HASH_MAP(WXWidget
, wxWidgetImpl
*, wxPointerHash
, wxPointerEqual
, MacControlMap
);
2792 static MacControlMap wxWinMacControlList
;
2794 wxWindowMac
*wxFindWindowFromWXWidget(WXWidget inControl
)
2796 wxWidgetImpl
* impl
= wxWidgetImpl::FindFromWXWidget( inControl
);
2798 return impl
->GetWXPeer();
2803 wxWidgetImpl
*wxWidgetImpl::FindFromWXWidget(WXWidget inControl
)
2805 MacControlMap::iterator node
= wxWinMacControlList
.find(inControl
);
2807 return (node
== wxWinMacControlList
.end()) ? NULL
: node
->second
;
2810 void wxWidgetImpl::Associate(WXWidget inControl
, wxWidgetImpl
*impl
)
2812 // adding NULL ControlRef is (first) surely a result of an error and
2813 // (secondly) breaks native event processing
2814 wxCHECK_RET( inControl
!= (WXWidget
) NULL
, wxT("attempt to add a NULL WXWidget to control map") );
2816 wxWinMacControlList
[inControl
] = impl
;
2819 void wxWidgetImpl::RemoveAssociations(wxWidgetImpl
* impl
)
2821 // iterate over all the elements in the class
2822 // is the iterator stable ? as we might have two associations pointing to the same wxWindow
2823 // we should go on...
2829 MacControlMap::iterator it
;
2830 for ( it
= wxWinMacControlList
.begin(); it
!= wxWinMacControlList
.end(); ++it
)
2832 if ( it
->second
== impl
)
2834 wxWinMacControlList
.erase(it
);
2842 IMPLEMENT_ABSTRACT_CLASS( wxWidgetImpl
, wxObject
)
2844 wxWidgetImpl::wxWidgetImpl( wxWindowMac
* peer
, bool isRootControl
, bool isUserPane
)
2847 m_isRootControl
= isRootControl
;
2848 m_isUserPane
= isUserPane
;
2850 m_shouldSendEvents
= true;
2853 wxWidgetImpl::wxWidgetImpl()
2858 wxWidgetImpl::~wxWidgetImpl()
2862 void wxWidgetImpl::Init()
2864 m_isRootControl
= false;
2866 m_needsFocusRect
= false;
2867 m_needsFrame
= true;
2870 void wxWidgetImpl::SetNeedsFocusRect( bool needs
)
2872 m_needsFocusRect
= needs
;
2875 bool wxWidgetImpl::NeedsFocusRect() const
2877 return m_needsFocusRect
;
2880 void wxWidgetImpl::SetNeedsFrame( bool needs
)
2882 m_needsFrame
= needs
;
2885 bool wxWidgetImpl::NeedsFrame() const
2887 return m_needsFrame
;