1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxWindowMac
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "window.h"
18 #include "wx/window.h"
20 #include "wx/dcclient.h"
24 #include "wx/layout.h"
25 #include "wx/dialog.h"
26 #include "wx/listbox.h"
27 #include "wx/scrolbar.h"
28 #include "wx/statbox.h"
29 #include "wx/button.h"
30 #include "wx/settings.h"
31 #include "wx/msgdlg.h"
33 #include "wx/notebook.h"
34 #include "wx/tabctrl.h"
35 #include "wx/tooltip.h"
36 #include "wx/statusbr.h"
37 #include "wx/menuitem.h"
38 #include "wx/spinctrl.h"
40 #include "wx/geometry.h"
46 #define wxWINDOW_HSCROLL 5998
47 #define wxWINDOW_VSCROLL 5997
48 #define MAC_SCROLLBAR_SIZE 16
50 #include "wx/mac/uma.h"
53 #include <ToolUtils.h>
56 #if wxUSE_DRAG_AND_DROP
62 extern wxList wxPendingDelete
;
63 wxWindowMac
* gFocusWindow
= NULL
;
65 #ifdef __WXUNIVERSAL__
66 IMPLEMENT_ABSTRACT_CLASS(wxWindowMac
, wxWindowBase
)
68 IMPLEMENT_DYNAMIC_CLASS(wxWindow
, wxWindowBase
)
69 #endif // __WXUNIVERSAL__/__WXMAC__
71 #if !USE_SHARED_LIBRARY
73 BEGIN_EVENT_TABLE(wxWindowMac
, wxWindowBase
)
74 EVT_NC_PAINT(wxWindowMac::OnNcPaint
)
75 EVT_ERASE_BACKGROUND(wxWindowMac::OnEraseBackground
)
76 EVT_SYS_COLOUR_CHANGED(wxWindowMac::OnSysColourChanged
)
77 EVT_INIT_DIALOG(wxWindowMac::OnInitDialog
)
78 EVT_SET_FOCUS(wxWindowMac::OnSetFocus
)
79 EVT_MOUSE_EVENTS(wxWindowMac::OnMouseEvent
)
84 #define wxMAC_DEBUG_REDRAW 0
85 #ifndef wxMAC_DEBUG_REDRAW
86 #define wxMAC_DEBUG_REDRAW 0
89 #define wxMAC_USE_THEME_BORDER 0
92 // ===========================================================================
94 // ===========================================================================
97 // ----------------------------------------------------------------------------
98 // constructors and such
99 // ----------------------------------------------------------------------------
101 void wxWindowMac::Init()
106 m_isBeingDeleted
= FALSE
;
107 m_backgroundTransparent
= FALSE
;
109 // as all windows are created with WS_VISIBLE style...
117 m_hScrollBar
= NULL
;
118 m_vScrollBar
= NULL
;
120 m_label
= wxEmptyString
;
124 wxWindowMac::~wxWindowMac()
128 // deleting a window while it is shown invalidates the region
130 wxWindowMac
* iter
= this ;
132 if ( iter
->IsTopLevel() )
137 iter
= iter
->GetParent() ;
142 m_isBeingDeleted
= TRUE
;
144 #ifndef __WXUNIVERSAL__
145 // VS: make sure there's no wxFrame with last focus set to us:
146 for ( wxWindow
*win
= GetParent(); win
; win
= win
->GetParent() )
148 wxFrame
*frame
= wxDynamicCast(win
, wxFrame
);
151 if ( frame
->GetLastFocus() == this )
153 frame
->SetLastFocus((wxWindow
*)NULL
);
158 #endif // __WXUNIVERSAL__
160 if ( s_lastMouseWindow
== this )
162 s_lastMouseWindow
= NULL
;
165 wxFrame
* frame
= wxDynamicCast( wxGetTopLevelParent( this ) , wxFrame
) ;
168 if ( frame
->GetLastFocus() == this )
169 frame
->SetLastFocus( NULL
) ;
172 if ( gFocusWindow
== this )
174 gFocusWindow
= NULL
;
177 // CS: copied from MSW :
178 // VS: destroy children first and _then_ detach *this from its parent.
179 // If we'd do it the other way around, children wouldn't be able
180 // find their parent frame (see above).
184 m_parent
->RemoveChild(this);
186 // delete our drop target if we've got one
187 #if wxUSE_DRAG_AND_DROP
188 if ( m_dropTarget
!= NULL
)
193 #endif // wxUSE_DRAG_AND_DROP
197 bool wxWindowMac::Create(wxWindowMac
*parent
, wxWindowID id
,
201 const wxString
& name
)
203 wxCHECK_MSG( parent
, FALSE
, wxT("can't create wxWindowMac without parent") );
206 // wxGTK doesn't allow to create controls with static box as the parent so
207 // this will result in a crash when the program is ported to wxGTK - warn
210 // the correct solution is to create the controls as siblings of the
212 wxASSERT_MSG( !wxDynamicCast(parent
, wxStaticBox
),
213 _T("wxStaticBox can't be used as a window parent!") );
214 #endif // wxUSE_STATBOX
216 if ( !CreateBase(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
219 parent
->AddChild(this);
223 AdjustForParentClientOrigin(m_x
, m_y
, wxSIZE_USE_EXISTING
);
224 m_width
= WidthDefault( size
.x
);
225 m_height
= HeightDefault( size
.y
) ;
226 #ifndef __WXUNIVERSAL__
227 // Don't give scrollbars to wxControls unless they ask for them
228 if ( (! IsKindOf(CLASSINFO(wxControl
)) && ! IsKindOf(CLASSINFO(wxStatusBar
))) ||
229 (IsKindOf(CLASSINFO(wxControl
)) && ( style
& wxHSCROLL
|| style
& wxVSCROLL
)))
231 MacCreateScrollBars( style
) ;
237 void wxWindowMac::SetFocus()
239 if ( gFocusWindow
== this )
242 if ( AcceptsFocus() )
248 if ( gFocusWindow
->m_caret
)
250 gFocusWindow
->m_caret
->OnKillFocus();
252 #endif // wxUSE_CARET
253 #ifndef __WXUNIVERSAL__
254 wxControl
* control
= wxDynamicCast( gFocusWindow
, wxControl
) ;
255 if ( control
&& control
->GetMacControl() )
257 UMASetKeyboardFocus( (WindowRef
) gFocusWindow
->MacGetRootWindow() , (ControlHandle
) control
->GetMacControl() , kControlFocusNoPart
) ;
258 control
->MacRedrawControl() ;
261 // Without testing the window id, for some reason
262 // a kill focus event can still be sent to
263 // the control just being focussed.
264 int thisId
= this->m_windowId
;
265 int gFocusWindowId
= gFocusWindow
->m_windowId
;
266 if (gFocusWindowId
!= thisId
)
268 wxFocusEvent
event(wxEVT_KILL_FOCUS
, gFocusWindow
->m_windowId
);
269 event
.SetEventObject(gFocusWindow
);
270 gFocusWindow
->GetEventHandler()->ProcessEvent(event
) ;
273 gFocusWindow
= this ;
279 m_caret
->OnSetFocus();
281 #endif // wxUSE_CARET
282 // panel wants to track the window which was the last to have focus in it
283 wxChildFocusEvent
eventFocus(this);
284 GetEventHandler()->ProcessEvent(eventFocus
);
286 #ifndef __WXUNIVERSAL__
287 wxControl
* control
= wxDynamicCast( gFocusWindow
, wxControl
) ;
288 if ( control
&& control
->GetMacControl() )
290 UMASetKeyboardFocus( (WindowRef
) gFocusWindow
->MacGetRootWindow() , (ControlHandle
) control
->GetMacControl() , kControlFocusNextPart
) ;
293 wxFocusEvent
event(wxEVT_SET_FOCUS
, m_windowId
);
294 event
.SetEventObject(this);
295 GetEventHandler()->ProcessEvent(event
) ;
300 bool wxWindowMac::Enable(bool enable
)
302 if ( !wxWindowBase::Enable(enable
) )
305 MacSuperEnabled( enable
) ;
310 void wxWindowMac::DoCaptureMouse()
312 wxTheApp
->s_captureWindow
= this ;
315 wxWindow
* wxWindowBase::GetCapture()
317 return wxTheApp
->s_captureWindow
;
320 void wxWindowMac::DoReleaseMouse()
322 wxTheApp
->s_captureWindow
= NULL
;
325 #if wxUSE_DRAG_AND_DROP
327 void wxWindowMac::SetDropTarget(wxDropTarget
*pDropTarget
)
329 if ( m_dropTarget
!= 0 ) {
333 m_dropTarget
= pDropTarget
;
334 if ( m_dropTarget
!= 0 )
342 // Old style file-manager drag&drop
343 void wxWindowMac::DragAcceptFiles(bool accept
)
349 void wxWindowMac::DoGetSize(int *x
, int *y
) const
352 if(y
) *y
= m_height
;
355 void wxWindowMac::DoGetPosition(int *x
, int *y
) const
361 if ( !IsTopLevel() && GetParent())
363 wxPoint
pt(GetParent()->GetClientAreaOrigin());
372 bool wxWindowMac::DoPopupMenu(wxMenu
*menu
, int x
, int y
)
374 menu
->SetInvokingWindow(this);
376 ClientToScreen( &x
, &y
) ;
378 menu
->MacBeforeDisplay( true ) ;
379 long menuResult
= ::PopUpMenuSelect((MenuHandle
) menu
->GetHMenu() ,y
,x
, 0) ;
380 if ( HiWord(menuResult
) != 0 )
383 GetMenuItemCommandID( GetMenuHandle(HiWord(menuResult
)) , LoWord(menuResult
) , &id
) ;
384 wxMenuItem
* item
= NULL
;
386 item
= menu
->FindItem(id
, &realmenu
) ;
387 if (item
->IsCheckable())
389 item
->Check( !item
->IsChecked() ) ;
391 menu
->SendEvent( id
, item
->IsCheckable() ? item
->IsChecked() : -1 ) ;
393 menu
->MacAfterDisplay( true ) ;
395 menu
->SetInvokingWindow(NULL
);
401 void wxWindowMac::DoScreenToClient(int *x
, int *y
) const
403 WindowRef window
= (WindowRef
) MacGetRootWindow() ;
405 Point localwhere
= {0,0} ;
407 if(x
) localwhere
.h
= * x
;
408 if(y
) localwhere
.v
= * y
;
412 ::SetPort( UMAGetWindowPort( window
) ) ;
413 ::GlobalToLocal( &localwhere
) ;
416 if(x
) *x
= localwhere
.h
;
417 if(y
) *y
= localwhere
.v
;
419 MacRootWindowToWindow( x
, y
) ;
421 *x
-= MacGetLeftBorderSize() ;
423 *y
-= MacGetTopBorderSize() ;
426 void wxWindowMac::DoClientToScreen(int *x
, int *y
) const
428 WindowRef window
= (WindowRef
) MacGetRootWindow() ;
431 *x
+= MacGetLeftBorderSize() ;
433 *y
+= MacGetTopBorderSize() ;
435 MacWindowToRootWindow( x
, y
) ;
437 Point localwhere
= { 0,0 };
438 if(x
) localwhere
.h
= * x
;
439 if(y
) localwhere
.v
= * y
;
443 ::SetPort( UMAGetWindowPort( window
) ) ;
445 ::LocalToGlobal( &localwhere
) ;
447 if(x
) *x
= localwhere
.h
;
448 if(y
) *y
= localwhere
.v
;
451 void wxWindowMac::MacClientToRootWindow( int *x
, int *y
) const
453 wxPoint origin
= GetClientAreaOrigin() ;
454 if(x
) *x
+= origin
.x
;
455 if(y
) *y
+= origin
.y
;
457 MacWindowToRootWindow( x
, y
) ;
460 void wxWindowMac::MacRootWindowToClient( int *x
, int *y
) const
462 wxPoint origin
= GetClientAreaOrigin() ;
463 MacRootWindowToWindow( x
, y
) ;
464 if(x
) *x
-= origin
.x
;
465 if(y
) *y
-= origin
.y
;
468 void wxWindowMac::MacWindowToRootWindow( int *x
, int *y
) const
474 GetParent()->MacWindowToRootWindow( x
, y
) ;
478 void wxWindowMac::MacRootWindowToWindow( int *x
, int *y
) const
484 GetParent()->MacRootWindowToWindow( x
, y
) ;
488 bool wxWindowMac::SetCursor(const wxCursor
& cursor
)
490 if (m_cursor
== cursor
)
493 if (wxNullCursor
== cursor
)
495 if ( ! wxWindowBase::SetCursor( *wxSTANDARD_CURSOR
) )
500 if ( ! wxWindowBase::SetCursor( cursor
) )
504 wxASSERT_MSG( m_cursor
.Ok(),
505 wxT("cursor must be valid after call to the base version"));
508 wxWindowMac
*mouseWin
;
511 // Change the cursor NOW if we're within the correct window
513 if ( MacGetWindowFromPoint( wxPoint( pt
.h
, pt
.v
) , &mouseWin
) )
515 if ( mouseWin
== this && !wxIsBusy() )
517 m_cursor
.MacInstall() ;
525 // Get size *available for subwindows* i.e. excluding menu bar etc.
526 void wxWindowMac::DoGetClientSize(int *x
, int *y
) const
532 ww
-= MacGetLeftBorderSize( ) + MacGetRightBorderSize( ) ;
533 hh
-= MacGetTopBorderSize( ) + MacGetBottomBorderSize( );
535 if ( (m_vScrollBar
&& m_vScrollBar
->IsShown()) || (m_hScrollBar
&& m_hScrollBar
->IsShown()) )
542 MacClientToRootWindow( &x1
, &y1
) ;
543 MacClientToRootWindow( &w
, &h
) ;
545 wxWindowMac
*iter
= (wxWindowMac
*)this ;
547 int totW
= 10000 , totH
= 10000;
550 if ( iter
->IsTopLevel() )
552 totW
= iter
->m_width
;
553 totH
= iter
->m_height
;
557 iter
= iter
->GetParent() ;
560 if (m_hScrollBar
&& m_hScrollBar
->IsShown() )
562 hh
-= MAC_SCROLLBAR_SIZE
;
568 if (m_vScrollBar
&& m_vScrollBar
->IsShown() )
570 ww
-= MAC_SCROLLBAR_SIZE
;
582 // ----------------------------------------------------------------------------
584 // ----------------------------------------------------------------------------
588 void wxWindowMac::DoSetToolTip(wxToolTip
*tooltip
)
590 wxWindowBase::DoSetToolTip(tooltip
);
593 m_tooltip
->SetWindow(this);
596 #endif // wxUSE_TOOLTIPS
598 void wxWindowMac::DoMoveWindow(int x
, int y
, int width
, int height
)
602 int former_w
= m_width
;
603 int former_h
= m_height
;
605 int actualWidth
= width
;
606 int actualHeight
= height
;
610 if ((m_minWidth
!= -1) && (actualWidth
< m_minWidth
))
611 actualWidth
= m_minWidth
;
612 if ((m_minHeight
!= -1) && (actualHeight
< m_minHeight
))
613 actualHeight
= m_minHeight
;
614 if ((m_maxWidth
!= -1) && (actualWidth
> m_maxWidth
))
615 actualWidth
= m_maxWidth
;
616 if ((m_maxHeight
!= -1) && (actualHeight
> m_maxHeight
))
617 actualHeight
= m_maxHeight
;
619 bool doMove
= false ;
620 bool doResize
= false ;
622 if ( actualX
!= former_x
|| actualY
!= former_y
)
626 if ( actualWidth
!= former_w
|| actualHeight
!= former_h
)
631 if ( doMove
|| doResize
)
633 // erase former position
635 bool partialRepaint
= false ;
637 if ( HasFlag(wxNO_FULL_REPAINT_ON_RESIZE
) )
639 wxPoint
oldPos( m_x
, m_y
) ;
640 wxPoint
newPos( actualX
, actualY
) ;
641 MacWindowToRootWindow( &oldPos
.x
, &oldPos
.y
) ;
642 MacWindowToRootWindow( &newPos
.x
, &newPos
.y
) ;
643 if ( oldPos
== newPos
)
645 partialRepaint
= true ;
646 RgnHandle oldRgn
,newRgn
,diffRgn
;
650 SetRectRgn(oldRgn
, oldPos
.x
, oldPos
.y
, oldPos
.x
+ m_width
, oldPos
.y
+ m_height
) ;
651 SetRectRgn(newRgn
, newPos
.x
, newPos
.y
, newPos
.x
+ actualWidth
, newPos
.y
+ actualHeight
) ;
652 DiffRgn( newRgn
, oldRgn
, diffRgn
) ;
653 InvalWindowRgn( (WindowRef
) MacGetRootWindow() , diffRgn
) ;
654 DiffRgn( oldRgn
, newRgn
, diffRgn
) ;
655 InvalWindowRgn( (WindowRef
) MacGetRootWindow() , diffRgn
) ;
658 DisposeRgn(diffRgn
) ;
662 if ( !partialRepaint
)
667 m_width
= actualWidth
;
668 m_height
= actualHeight
;
670 // update any low-level frame-relative positions
672 MacUpdateDimensions() ;
673 // erase new position
675 if ( !partialRepaint
)
678 wxWindowMac::MacSuperChangedPosition() ; // like this only children will be notified
680 MacRepositionScrollBars() ;
683 wxPoint
point(m_x
, m_y
);
684 wxMoveEvent
event(point
, m_windowId
);
685 event
.SetEventObject(this);
686 GetEventHandler()->ProcessEvent(event
) ;
690 MacRepositionScrollBars() ;
691 wxSize
size(m_width
, m_height
);
692 wxSizeEvent
event(size
, m_windowId
);
693 event
.SetEventObject(this);
694 GetEventHandler()->ProcessEvent(event
);
700 // set the size of the window: if the dimensions are positive, just use them,
701 // but if any of them is equal to -1, it means that we must find the value for
702 // it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in
703 // which case -1 is a valid value for x and y)
705 // If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate
706 // the width/height to best suit our contents, otherwise we reuse the current
708 void wxWindowMac::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
710 // get the current size and position...
711 int currentX
, currentY
;
712 GetPosition(¤tX
, ¤tY
);
714 int currentW
,currentH
;
715 GetSize(¤tW
, ¤tH
);
717 // ... and don't do anything (avoiding flicker) if it's already ok
718 if ( x
== currentX
&& y
== currentY
&&
719 width
== currentW
&& height
== currentH
)
721 MacRepositionScrollBars() ; // we might have a real position shift
725 if ( x
== -1 && !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
727 if ( y
== -1 && !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
730 AdjustForParentClientOrigin(x
, y
, sizeFlags
);
735 if ( sizeFlags
& wxSIZE_AUTO_WIDTH
)
737 size
= DoGetBestSize();
742 // just take the current one
749 if ( sizeFlags
& wxSIZE_AUTO_HEIGHT
)
753 size
= DoGetBestSize();
755 //else: already called DoGetBestSize() above
761 // just take the current one
766 DoMoveWindow(x
, y
, width
, height
);
769 // For implementation purposes - sometimes decorations make the client area
772 wxPoint
wxWindowMac::GetClientAreaOrigin() const
774 return wxPoint(MacGetLeftBorderSize( ) , MacGetTopBorderSize( ) );
777 void wxWindowMac::SetTitle(const wxString
& title
)
782 wxString
wxWindowMac::GetTitle() const
787 bool wxWindowMac::Show(bool show
)
789 if ( !wxWindowBase::Show(show
) )
792 MacSuperShown( show
) ;
798 void wxWindowMac::MacSuperShown( bool show
)
800 wxWindowListNode
*node
= GetChildren().GetFirst();
803 wxWindowMac
*child
= node
->GetData();
804 if ( child
->m_isShown
)
805 child
->MacSuperShown( show
) ;
806 node
= node
->GetNext();
810 void wxWindowMac::MacSuperEnabled( bool enabled
)
814 // to be absolutely correct we'd have to invalidate (with eraseBkground
815 // because unter MacOSX the frames are drawn with an addXXX mode)
818 wxWindowListNode
*node
= GetChildren().GetFirst();
821 wxWindowMac
*child
= (wxWindowMac
*)node
->GetData();
822 if ( child
->m_isShown
)
823 child
->MacSuperEnabled( enabled
) ;
824 node
= node
->GetNext();
828 bool wxWindowMac::MacIsReallyShown() const
830 if ( m_isShown
&& (m_parent
!= NULL
) ) {
831 return m_parent
->MacIsReallyShown();
835 bool status = m_isShown ;
836 wxWindowMac * win = this ;
837 while ( status && win->m_parent != NULL )
839 win = win->m_parent ;
840 status = win->m_isShown ;
846 int wxWindowMac::GetCharHeight() const
848 wxClientDC
dc ( (wxWindowMac
*)this ) ;
849 return dc
.GetCharHeight() ;
852 int wxWindowMac::GetCharWidth() const
854 wxClientDC
dc ( (wxWindowMac
*)this ) ;
855 return dc
.GetCharWidth() ;
858 void wxWindowMac::GetTextExtent(const wxString
& string
, int *x
, int *y
,
859 int *descent
, int *externalLeading
, const wxFont
*theFont
) const
861 const wxFont
*fontToUse
= theFont
;
865 wxClientDC
dc( (wxWindowMac
*) this ) ;
867 dc
.GetTextExtent( string
, &lx
, &ly
, &ld
, &le
, (wxFont
*)fontToUse
) ;
868 if ( externalLeading
)
869 *externalLeading
= le
;
879 * Rect is given in client coordinates, for further reading, read wxTopLevelWindowMac::InvalidateRect
880 * we always intersect with the entire window, not only with the client area
883 void wxWindowMac::Refresh(bool eraseBack
, const wxRect
*rect
)
885 if ( MacGetTopLevelWindow() == NULL
)
888 if ( !MacIsReallyShown() )
891 wxPoint client
= GetClientAreaOrigin();
894 int x2
= m_width
- client
.x
;
895 int y2
= m_height
- client
.y
;
897 if (IsKindOf( CLASSINFO(wxButton
)))
899 // buttons have an "aura"
906 Rect clientrect
= { y1
, x1
, y2
, x2
};
910 Rect r
= { rect
->y
, rect
->x
, rect
->y
+ rect
->height
, rect
->x
+ rect
->width
} ;
911 SectRect( &clientrect
, &r
, &clientrect
) ;
914 if ( !EmptyRect( &clientrect
) )
916 int top
= 0 , left
= 0 ;
918 MacClientToRootWindow( &left
, &top
) ;
919 OffsetRect( &clientrect
, left
, top
) ;
921 MacGetTopLevelWindow()->MacInvalidate( &clientrect
, eraseBack
) ;
925 wxWindowMac
*wxGetActiveWindow()
927 // actually this is a windows-only concept
931 // Coordinates relative to the window
932 void wxWindowMac::WarpPointer (int x_pos
, int y_pos
)
934 // We really don't move the mouse programmatically under Mac.
937 const wxBrush
& wxWindowMac::MacGetBackgroundBrush()
939 if ( m_backgroundColour
== wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE
) )
941 m_macBackgroundBrush
.SetMacTheme( kThemeBrushDocumentWindowBackground
) ;
943 else if ( m_backgroundColour
== wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
) )
945 // on mac we have the difficult situation, that 3dface gray can be different colours, depending whether
946 // it is on a notebook panel or not, in order to take care of that we walk up the hierarchy until we have
947 // either a non gray background color or a non control window
949 WindowRef window
= (WindowRef
) MacGetRootWindow() ;
951 wxWindowMac
* parent
= GetParent() ;
954 if ( parent
->MacGetRootWindow() != window
)
956 // we are in a different window on the mac system
962 if ( parent
->m_backgroundColour
!= wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
)
963 && parent
->m_backgroundColour
!= wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE
) )
965 // if we have any other colours in the hierarchy
966 m_macBackgroundBrush
.SetColour( parent
->m_backgroundColour
) ;
969 // if we have the normal colours in the hierarchy but another control etc. -> use it's background
970 if ( parent
->IsKindOf( CLASSINFO( wxNotebook
) ) || parent
->IsKindOf( CLASSINFO( wxTabCtrl
) ))
972 Rect extent
= { 0 , 0 , 0 , 0 } ;
975 wxSize size
= parent
->GetSize() ;
976 parent
->MacClientToRootWindow( &x
, &y
) ;
980 extent
.right
= x
+ size
.x
;
981 extent
.bottom
= y
+ size
.y
;
982 m_macBackgroundBrush
.SetMacThemeBackground( kThemeBackgroundTabPane
, (WXRECTPTR
) &extent
) ; // todo eventually change for inactive
986 parent
= parent
->GetParent() ;
990 m_macBackgroundBrush
.SetMacTheme( kThemeBrushDialogBackgroundActive
) ; // todo eventually change for inactive
995 m_macBackgroundBrush
.SetColour( m_backgroundColour
) ;
998 return m_macBackgroundBrush
;
1001 void wxWindowMac::OnEraseBackground(wxEraseEvent
& event
)
1003 event
.GetDC()->Clear() ;
1006 void wxWindowMac::OnNcPaint( wxNcPaintEvent
& event
)
1008 wxWindowDC
dc(this) ;
1009 wxMacPortSetter
helper(&dc
) ;
1011 MacPaintBorders( dc
.m_macLocalOrigin
.x
, dc
.m_macLocalOrigin
.y
) ;
1014 int wxWindowMac::GetScrollPos(int orient
) const
1016 if ( orient
== wxHORIZONTAL
)
1019 return m_hScrollBar
->GetThumbPosition() ;
1024 return m_vScrollBar
->GetThumbPosition() ;
1029 // This now returns the whole range, not just the number
1030 // of positions that we can scroll.
1031 int wxWindowMac::GetScrollRange(int orient
) const
1033 if ( orient
== wxHORIZONTAL
)
1036 return m_hScrollBar
->GetRange() ;
1041 return m_vScrollBar
->GetRange() ;
1046 int wxWindowMac::GetScrollThumb(int orient
) const
1048 if ( orient
== wxHORIZONTAL
)
1051 return m_hScrollBar
->GetThumbSize() ;
1056 return m_vScrollBar
->GetThumbSize() ;
1061 void wxWindowMac::SetScrollPos(int orient
, int pos
, bool refresh
)
1063 if ( orient
== wxHORIZONTAL
)
1066 m_hScrollBar
->SetThumbPosition( pos
) ;
1071 m_vScrollBar
->SetThumbPosition( pos
) ;
1075 void wxWindowMac::MacPaintBorders( int left
, int top
)
1080 RGBColor white
= { 0xFFFF, 0xFFFF , 0xFFFF } ;
1081 RGBColor black
= { 0x0000, 0x0000 , 0x0000 } ;
1082 RGBColor face
= { 0xDDDD, 0xDDDD , 0xDDDD } ;
1083 RGBColor shadow
= { 0x4444, 0x4444 , 0x4444 } ;
1086 if (HasFlag(wxRAISED_BORDER
) || HasFlag( wxSUNKEN_BORDER
) || HasFlag(wxDOUBLE_BORDER
) )
1088 #if wxMAC_USE_THEME_BORDER
1089 Rect rect
= { top
, left
, m_height
+ top
, m_width
+ left
} ;
1092 GetThemeMetric( kThemeMetricListBoxFrameOutset , &border ) ;
1093 InsetRect( &rect , border , border );
1094 DrawThemeListBoxFrame(&rect,IsEnabled() ? kThemeStateActive : kThemeStateInactive) ;
1097 DrawThemePrimaryGroup(&rect
,IsEnabled() ? kThemeStateActive
: kThemeStateInactive
) ;
1099 bool sunken
= HasFlag( wxSUNKEN_BORDER
) ;
1100 RGBForeColor( &face
);
1101 MoveTo( left
+ 0 , top
+ m_height
- 2 );
1102 LineTo( left
+ 0 , top
+ 0 );
1103 LineTo( left
+ m_width
- 2 , top
+ 0 );
1105 MoveTo( left
+ 2 , top
+ m_height
- 3 );
1106 LineTo( left
+ m_width
- 3 , top
+ m_height
- 3 );
1107 LineTo( left
+ m_width
- 3 , top
+ 2 );
1109 RGBForeColor( sunken
? &face
: &black
);
1110 MoveTo( left
+ 0 , top
+ m_height
- 1 );
1111 LineTo( left
+ m_width
- 1 , top
+ m_height
- 1 );
1112 LineTo( left
+ m_width
- 1 , top
+ 0 );
1114 RGBForeColor( sunken
? &shadow
: &white
);
1115 MoveTo( left
+ 1 , top
+ m_height
- 3 );
1116 LineTo( left
+ 1, top
+ 1 );
1117 LineTo( left
+ m_width
- 3 , top
+ 1 );
1119 RGBForeColor( sunken
? &white
: &shadow
);
1120 MoveTo( left
+ 1 , top
+ m_height
- 2 );
1121 LineTo( left
+ m_width
- 2 , top
+ m_height
- 2 );
1122 LineTo( left
+ m_width
- 2 , top
+ 1 );
1124 RGBForeColor( sunken
? &black
: &face
);
1125 MoveTo( left
+ 2 , top
+ m_height
- 4 );
1126 LineTo( left
+ 2 , top
+ 2 );
1127 LineTo( left
+ m_width
- 4 , top
+ 2 );
1130 else if (HasFlag(wxSIMPLE_BORDER
))
1132 Rect rect
= { top
, left
, m_height
+ top
, m_width
+ left
} ;
1133 RGBForeColor( &black
) ;
1134 FrameRect( &rect
) ;
1138 void wxWindowMac::RemoveChild( wxWindowBase
*child
)
1140 if ( child
== m_hScrollBar
)
1141 m_hScrollBar
= NULL
;
1142 if ( child
== m_vScrollBar
)
1143 m_vScrollBar
= NULL
;
1145 wxWindowBase::RemoveChild( child
) ;
1148 // New function that will replace some of the above.
1149 void wxWindowMac::SetScrollbar(int orient
, int pos
, int thumbVisible
,
1150 int range
, bool refresh
)
1152 if ( orient
== wxHORIZONTAL
)
1156 if ( range
== 0 || thumbVisible
>= range
)
1158 if ( m_hScrollBar
->IsShown() )
1159 m_hScrollBar
->Show(false) ;
1163 if ( !m_hScrollBar
->IsShown() )
1164 m_hScrollBar
->Show(true) ;
1165 m_hScrollBar
->SetScrollbar( pos
, thumbVisible
, range
, thumbVisible
, refresh
) ;
1173 if ( range
== 0 || thumbVisible
>= range
)
1175 if ( m_vScrollBar
->IsShown() )
1176 m_vScrollBar
->Show(false) ;
1180 if ( !m_vScrollBar
->IsShown() )
1181 m_vScrollBar
->Show(true) ;
1182 m_vScrollBar
->SetScrollbar( pos
, thumbVisible
, range
, thumbVisible
, refresh
) ;
1186 MacRepositionScrollBars() ;
1189 // Does a physical scroll
1190 void wxWindowMac::ScrollWindow(int dx
, int dy
, const wxRect
*rect
)
1192 wxClientDC
dc(this) ;
1193 wxMacPortSetter
helper(&dc
) ;
1196 int width
, height
;
1197 GetClientSize( &width
, &height
) ;
1199 Rect scrollrect
= { dc
.YLOG2DEVMAC(0) , dc
.XLOG2DEVMAC(0) , dc
.YLOG2DEVMAC(height
) , dc
.XLOG2DEVMAC(width
) } ;
1200 RgnHandle updateRgn
= NewRgn() ;
1201 ClipRect( &scrollrect
) ;
1204 Rect r
= { dc
.YLOG2DEVMAC(rect
->y
) , dc
.XLOG2DEVMAC(rect
->x
) , dc
.YLOG2DEVMAC(rect
->y
+ rect
->height
) ,
1205 dc
.XLOG2DEVMAC(rect
->x
+ rect
->width
) } ;
1206 SectRect( &scrollrect
, &r
, &scrollrect
) ;
1208 ScrollRect( &scrollrect
, dx
, dy
, updateRgn
) ;
1209 InvalWindowRgn( (WindowRef
) MacGetRootWindow() , updateRgn
) ;
1210 DisposeRgn( updateRgn
) ;
1213 for (wxWindowListNode
*node
= GetChildren().GetFirst(); node
; node
= node
->GetNext())
1215 wxWindowMac
*child
= node
->GetData();
1216 if (child
== m_vScrollBar
) continue;
1217 if (child
== m_hScrollBar
) continue;
1218 if (child
->IsTopLevel()) continue;
1221 child
->GetPosition( &x
, &y
);
1223 child
->GetSize( &w
, &h
);
1224 child
->SetSize( x
+dx
, y
+dy
, w
, h
);
1229 void wxWindowMac::MacOnScroll(wxScrollEvent
&event
)
1231 if ( event
.m_eventObject
== m_vScrollBar
|| event
.m_eventObject
== m_hScrollBar
)
1233 wxScrollWinEvent wevent
;
1234 wevent
.SetPosition(event
.GetPosition());
1235 wevent
.SetOrientation(event
.GetOrientation());
1236 wevent
.m_eventObject
= this;
1238 if (event
.m_eventType
== wxEVT_SCROLL_TOP
)
1239 wevent
.m_eventType
= wxEVT_SCROLLWIN_TOP
;
1240 else if (event
.m_eventType
== wxEVT_SCROLL_BOTTOM
)
1241 wevent
.m_eventType
= wxEVT_SCROLLWIN_BOTTOM
;
1242 else if (event
.m_eventType
== wxEVT_SCROLL_LINEUP
)
1243 wevent
.m_eventType
= wxEVT_SCROLLWIN_LINEUP
;
1244 else if (event
.m_eventType
== wxEVT_SCROLL_LINEDOWN
)
1245 wevent
.m_eventType
= wxEVT_SCROLLWIN_LINEDOWN
;
1246 else if (event
.m_eventType
== wxEVT_SCROLL_PAGEUP
)
1247 wevent
.m_eventType
= wxEVT_SCROLLWIN_PAGEUP
;
1248 else if (event
.m_eventType
== wxEVT_SCROLL_PAGEDOWN
)
1249 wevent
.m_eventType
= wxEVT_SCROLLWIN_PAGEDOWN
;
1250 else if (event
.m_eventType
== wxEVT_SCROLL_THUMBTRACK
)
1251 wevent
.m_eventType
= wxEVT_SCROLLWIN_THUMBTRACK
;
1252 else if (event
.m_eventType
== wxEVT_SCROLL_THUMBRELEASE
)
1253 wevent
.m_eventType
= wxEVT_SCROLLWIN_THUMBRELEASE
;
1255 GetEventHandler()->ProcessEvent(wevent
);
1259 // Get the window with the focus
1260 wxWindowMac
*wxWindowBase::FindFocus()
1262 return gFocusWindow
;
1265 void wxWindowMac::OnSetFocus(wxFocusEvent
& event
)
1267 // panel wants to track the window which was the last to have focus in it,
1268 // so we want to set ourselves as the window which last had focus
1270 // notice that it's also important to do it upwards the tree becaus
1271 // otherwise when the top level panel gets focus, it won't set it back to
1272 // us, but to some other sibling
1274 // CS:don't know if this is still needed:
1275 //wxChildFocusEvent eventFocus(this);
1276 //(void)GetEventHandler()->ProcessEvent(eventFocus);
1281 // Setup background and foreground colours correctly
1282 void wxWindowMac::SetupColours()
1285 SetBackgroundColour(GetParent()->GetBackgroundColour());
1288 void wxWindowMac::OnInternalIdle()
1290 // This calls the UI-update mechanism (querying windows for
1291 // menu/toolbar/control state information)
1292 if (wxUpdateUIEvent::CanUpdate(this))
1293 UpdateWindowUI(wxUPDATE_UI_FROMIDLE
);
1296 // Raise the window to the top of the Z order
1297 void wxWindowMac::Raise()
1301 // Lower the window to the bottom of the Z order
1302 void wxWindowMac::Lower()
1306 void wxWindowMac::DoSetClientSize(int width
, int height
)
1308 if ( width
!= -1 || height
!= -1 )
1311 if ( width
!= -1 && m_vScrollBar
)
1312 width
+= MAC_SCROLLBAR_SIZE
;
1313 if ( height
!= -1 && m_vScrollBar
)
1314 height
+= MAC_SCROLLBAR_SIZE
;
1316 width
+= MacGetLeftBorderSize( ) + MacGetRightBorderSize( ) ;
1317 height
+= MacGetTopBorderSize( ) + MacGetBottomBorderSize( ) ;
1319 DoSetSize( -1 , -1 , width
, height
) ;
1324 wxWindowMac
* wxWindowMac::s_lastMouseWindow
= NULL
;
1326 bool wxWindowMac::MacGetWindowFromPointSub( const wxPoint
&point
, wxWindowMac
** outWin
)
1330 if ((point
.x
< 0) || (point
.y
< 0) ||
1331 (point
.x
> (m_width
)) || (point
.y
> (m_height
)))
1336 if ((point
.x
< m_x
) || (point
.y
< m_y
) ||
1337 (point
.x
> (m_x
+ m_width
)) || (point
.y
> (m_y
+ m_height
)))
1341 WindowRef window
= (WindowRef
) MacGetRootWindow() ;
1343 wxPoint
newPoint( point
) ;
1345 if ( !IsTopLevel() )
1351 for (wxWindowListNode
*node
= GetChildren().GetFirst(); node
; node
= node
->GetNext())
1353 wxWindowMac
*child
= node
->GetData();
1354 // added the m_isShown test --dmazzoni
1355 if ( child
->MacGetRootWindow() == window
&& child
->m_isShown
)
1357 if (child
->MacGetWindowFromPointSub(newPoint
, outWin
))
1366 bool wxWindowMac::MacGetWindowFromPoint( const wxPoint
&screenpoint
, wxWindowMac
** outWin
)
1370 Point pt
= { screenpoint
.y
, screenpoint
.x
} ;
1371 if ( ::FindWindow( pt
, &window
) == 3 )
1374 wxWindowMac
* win
= wxFindWinFromMacWindow( window
) ;
1377 // No, this yields the CLIENT are, we need the whole frame. RR.
1378 // point = win->ScreenToClient( point ) ;
1381 ::GetPort( &port
) ;
1382 ::SetPort( UMAGetWindowPort( window
) ) ;
1383 ::GlobalToLocal( &pt
) ;
1386 wxPoint
point( pt
.h
, pt
.v
) ;
1388 return win
->MacGetWindowFromPointSub( point
, outWin
) ;
1394 static wxWindow
*gs_lastWhich
= NULL
;
1396 bool wxWindowMac::MacSetupCursor( const wxPoint
& pt
)
1398 // first trigger a set cursor event
1400 wxPoint clientorigin
= GetClientAreaOrigin() ;
1401 wxSize clientsize
= GetClientSize() ;
1403 if ( wxRect2DInt( clientorigin
.x
, clientorigin
.y
, clientsize
.x
, clientsize
.y
).Contains( wxPoint2DInt( pt
) ) )
1405 wxSetCursorEvent
event( pt
.x
, pt
.y
);
1407 bool processedEvtSetCursor
= GetEventHandler()->ProcessEvent(event
);
1408 if ( processedEvtSetCursor
&& event
.HasCursor() )
1410 cursor
= event
.GetCursor() ;
1415 // the test for processedEvtSetCursor is here to prevent using m_cursor
1416 // if the user code caught EVT_SET_CURSOR() and returned nothing from
1417 // it - this is a way to say that our cursor shouldn't be used for this
1419 if ( !processedEvtSetCursor
&& m_cursor
.Ok() )
1429 cursor
= *wxSTANDARD_CURSOR
;
1433 cursor
.MacInstall() ;
1435 return cursor
.Ok() ;
1438 bool wxWindowMac::MacDispatchMouseEvent(wxMouseEvent
& event
)
1440 if ((event
.m_x
< m_x
) || (event
.m_y
< m_y
) ||
1441 (event
.m_x
> (m_x
+ m_width
)) || (event
.m_y
> (m_y
+ m_height
)))
1445 if ( IsKindOf( CLASSINFO ( wxStaticBox
) ) /* || IsKindOf( CLASSINFO( wxSpinCtrl ) ) */)
1448 WindowRef window
= (WindowRef
) MacGetRootWindow() ;
1456 for (wxWindowListNode
*node
= GetChildren().GetFirst(); node
; node
= node
->GetNext())
1458 wxWindowMac
*child
= node
->GetData();
1459 if ( child
->MacGetRootWindow() == window
&& child
->IsShown() && child
->IsEnabled() )
1461 if (child
->MacDispatchMouseEvent(event
))
1466 wxWindow
* cursorTarget
= this ;
1467 wxPoint
cursorPoint( x
, y
) ;
1469 while( cursorTarget
&& !cursorTarget
->MacSetupCursor( cursorPoint
) )
1471 cursorTarget
= cursorTarget
->GetParent() ;
1473 cursorPoint
+= cursorTarget
->GetPosition() ;
1477 event
.SetEventObject( this ) ;
1479 if ( event
.GetEventType() == wxEVT_LEFT_DOWN
)
1481 // set focus to this window
1482 if (AcceptsFocus() && FindFocus()!=this)
1487 if ( event
.GetEventType() == wxEVT_MOTION
1488 || event
.GetEventType() == wxEVT_ENTER_WINDOW
1489 || event
.GetEventType() == wxEVT_LEAVE_WINDOW
)
1490 wxToolTip::RelayEvent( this , event
);
1491 #endif // wxUSE_TOOLTIPS
1493 if (gs_lastWhich
!= this)
1495 gs_lastWhich
= this;
1497 // Double clicks must always occur on the same window
1498 if (event
.GetEventType() == wxEVT_LEFT_DCLICK
)
1499 event
.SetEventType( wxEVT_LEFT_DOWN
);
1500 if (event
.GetEventType() == wxEVT_RIGHT_DCLICK
)
1501 event
.SetEventType( wxEVT_RIGHT_DOWN
);
1503 // Same for mouse up events
1504 if (event
.GetEventType() == wxEVT_LEFT_UP
)
1506 if (event
.GetEventType() == wxEVT_RIGHT_UP
)
1510 GetEventHandler()->ProcessEvent( event
) ;
1515 wxString
wxWindowMac::MacGetToolTipString( wxPoint
&pt
)
1519 return m_tooltip
->GetTip() ;
1521 return wxEmptyString
;
1524 void wxWindowMac::Update()
1526 wxTopLevelWindowMac
* win
= MacGetTopLevelWindow( ) ;
1529 win
->MacUpdate( 0 ) ;
1530 #if TARGET_API_MAC_CARBON
1531 if ( QDIsPortBuffered( GetWindowPort( (WindowRef
) win
->MacGetWindowRef() ) ) )
1533 QDFlushPortBuffer( GetWindowPort( (WindowRef
) win
->MacGetWindowRef() ) , NULL
) ;
1539 wxTopLevelWindowMac
* wxWindowMac::MacGetTopLevelWindow() const
1541 wxTopLevelWindowMac
* win
= NULL
;
1542 WindowRef window
= (WindowRef
) MacGetRootWindow() ;
1545 win
= wxFindWinFromMacWindow( window
) ;
1550 const wxRegion
& wxWindowMac::MacGetVisibleRegion( bool respectChildrenAndSiblings
)
1552 RgnHandle visRgn
= NewRgn() ;
1553 RgnHandle tempRgn
= NewRgn() ;
1554 RgnHandle tempStaticBoxRgn
= NewRgn() ;
1556 SetRectRgn( visRgn
, 0 , 0 , m_width
, m_height
) ;
1558 //TODO : as soon as the new scheme has proven to work correctly, move this to wxStaticBox
1559 if ( IsKindOf( CLASSINFO( wxStaticBox
) ) )
1561 int borderTop
= 14 ;
1562 int borderOther
= 4 ;
1564 SetRectRgn( tempStaticBoxRgn
, borderOther
, borderTop
, m_width
- borderOther
, m_height
- borderOther
) ;
1565 DiffRgn( visRgn
, tempStaticBoxRgn
, visRgn
) ;
1568 if ( !IsTopLevel() )
1570 wxWindow
* parent
= GetParent() ;
1573 wxSize size
= parent
->GetSize() ;
1576 parent
->MacWindowToRootWindow( &x
, &y
) ;
1577 MacRootWindowToWindow( &x
, &y
) ;
1579 SetRectRgn( tempRgn
,
1580 x
+ parent
->MacGetLeftBorderSize() , y
+ parent
->MacGetTopBorderSize() ,
1581 x
+ size
.x
- parent
->MacGetRightBorderSize(),
1582 y
+ size
.y
- parent
->MacGetBottomBorderSize()) ;
1584 SectRgn( visRgn
, tempRgn
, visRgn
) ;
1585 if ( parent
->IsTopLevel() )
1587 parent
= parent
->GetParent() ;
1590 if ( respectChildrenAndSiblings
)
1592 if ( GetWindowStyle() & wxCLIP_CHILDREN
)
1594 for (wxWindowListNode
*node
= GetChildren().GetFirst(); node
; node
= node
->GetNext())
1596 wxWindowMac
*child
= node
->GetData();
1598 if ( !child
->IsTopLevel() && child
->IsShown() )
1600 SetRectRgn( tempRgn
, child
->m_x
, child
->m_y
, child
->m_x
+ child
->m_width
, child
->m_y
+ child
->m_height
) ;
1601 if ( child
->IsKindOf( CLASSINFO( wxStaticBox
) ) )
1603 int borderTop
= 14 ;
1604 int borderOther
= 4 ;
1606 SetRectRgn( tempStaticBoxRgn
, child
->m_x
+ borderOther
, child
->m_y
+ borderTop
, child
->m_x
+ child
->m_width
- borderOther
, child
->m_y
+ child
->m_height
- borderOther
) ;
1607 DiffRgn( tempRgn
, tempStaticBoxRgn
, tempRgn
) ;
1609 DiffRgn( visRgn
, tempRgn
, visRgn
) ;
1614 if ( (GetWindowStyle() & wxCLIP_SIBLINGS
) && GetParent() )
1616 bool thisWindowThrough
= false ;
1617 for (wxWindowListNode
*node
= GetParent()->GetChildren().GetFirst(); node
; node
= node
->GetNext())
1619 wxWindowMac
*sibling
= node
->GetData();
1620 if ( sibling
== this )
1622 thisWindowThrough
= true ;
1625 if( !thisWindowThrough
)
1630 if ( !sibling
->IsTopLevel() && sibling
->IsShown() )
1632 SetRectRgn( tempRgn
, sibling
->m_x
- m_x
, sibling
->m_y
- m_y
, sibling
->m_x
+ sibling
->m_width
- m_x
, sibling
->m_y
+ sibling
->m_height
- m_y
) ;
1633 if ( sibling
->IsKindOf( CLASSINFO( wxStaticBox
) ) )
1635 int borderTop
= 14 ;
1636 int borderOther
= 4 ;
1638 SetRectRgn( tempStaticBoxRgn
, sibling
->m_x
- m_x
+ borderOther
, sibling
->m_y
- m_y
+ borderTop
, sibling
->m_x
+ sibling
->m_width
- m_x
- borderOther
, sibling
->m_y
+ sibling
->m_height
- m_y
- borderOther
) ;
1639 DiffRgn( tempRgn
, tempStaticBoxRgn
, tempRgn
) ;
1641 DiffRgn( visRgn
, tempRgn
, visRgn
) ;
1646 m_macVisibleRegion
= visRgn
;
1647 DisposeRgn( visRgn
) ;
1648 DisposeRgn( tempRgn
) ;
1649 DisposeRgn( tempStaticBoxRgn
) ;
1650 return m_macVisibleRegion
;
1653 void wxWindowMac::MacRedraw( WXHRGN updatergnr
, long time
, bool erase
)
1655 RgnHandle updatergn
= (RgnHandle
) updatergnr
;
1656 // updatergn is always already clipped to our boundaries
1657 // it is in window coordinates, not in client coordinates
1659 WindowRef window
= (WindowRef
) MacGetRootWindow() ;
1662 // ownUpdateRgn is the area that this window has to repaint, it is in window coordinates
1663 RgnHandle ownUpdateRgn
= NewRgn() ;
1664 CopyRgn( updatergn
, ownUpdateRgn
) ;
1666 SectRgn( ownUpdateRgn
, (RgnHandle
) MacGetVisibleRegion().GetWXHRGN() , ownUpdateRgn
) ;
1668 // newupdate is the update region in client coordinates
1669 RgnHandle newupdate
= NewRgn() ;
1670 wxSize point
= GetClientSize() ;
1671 wxPoint origin
= GetClientAreaOrigin() ;
1672 SetRectRgn( newupdate
, origin
.x
, origin
.y
, origin
.x
+ point
.x
, origin
.y
+point
.y
) ;
1673 SectRgn( newupdate
, ownUpdateRgn
, newupdate
) ;
1674 OffsetRgn( newupdate
, -origin
.x
, -origin
.y
) ;
1675 m_updateRegion
= newupdate
;
1676 DisposeRgn( newupdate
) ; // it's been cloned to m_updateRegion
1678 if ( erase
&& !EmptyRgn(ownUpdateRgn
) )
1680 wxWindowDC
dc(this);
1681 if (!EmptyRgn(ownUpdateRgn
))
1682 dc
.SetClippingRegion(wxRegion(ownUpdateRgn
));
1683 wxEraseEvent
eevent( GetId(), &dc
);
1684 eevent
.SetEventObject( this );
1685 GetEventHandler()->ProcessEvent( eevent
);
1687 wxNcPaintEvent
eventNc( GetId() );
1688 eventNc
.SetEventObject( this );
1689 GetEventHandler()->ProcessEvent( eventNc
);
1691 DisposeRgn( ownUpdateRgn
) ;
1692 if ( !m_updateRegion
.Empty() )
1695 event
.m_timeStamp
= time
;
1696 event
.SetEventObject(this);
1697 GetEventHandler()->ProcessEvent(event
);
1701 // now intersect for each of the children their rect with the updateRgn and call MacRedraw recursively
1703 RgnHandle childupdate
= NewRgn() ;
1704 for (wxWindowListNode
*node
= GetChildren().GetFirst(); node
; node
= node
->GetNext())
1706 // calculate the update region for the child windows by intersecting the window rectangle with our own
1707 // passed in update region and then offset it to be client-wise window coordinates again
1708 wxWindowMac
*child
= node
->GetData();
1709 SetRectRgn( childupdate
, child
->m_x
, child
->m_y
, child
->m_x
+ child
->m_width
, child
->m_y
+ child
->m_height
) ;
1710 SectRgn( childupdate
, updatergn
, childupdate
) ;
1711 OffsetRgn( childupdate
, -child
->m_x
, -child
->m_y
) ;
1712 if ( child
->MacGetRootWindow() == window
&& child
->IsShown() && !EmptyRgn( childupdate
) )
1714 // because dialogs may also be children
1715 child
->MacRedraw( childupdate
, time
, erase
) ;
1718 DisposeRgn( childupdate
) ;
1719 // eventually a draw grow box here
1723 WXHWND
wxWindowMac::MacGetRootWindow() const
1725 wxWindowMac
*iter
= (wxWindowMac
*)this ;
1729 if ( iter
->IsTopLevel() )
1730 return ((wxTopLevelWindow
*)iter
)->MacGetWindowRef() ;
1732 iter
= iter
->GetParent() ;
1734 wxASSERT_MSG( 1 , wxT("No valid mac root window") ) ;
1738 void wxWindowMac::MacCreateScrollBars( long style
)
1740 wxASSERT_MSG( m_vScrollBar
== NULL
&& m_hScrollBar
== NULL
, wxT("attempt to create window twice") ) ;
1742 bool hasBoth
= ( style
& wxVSCROLL
) && ( style
& wxHSCROLL
) ;
1743 int adjust
= hasBoth
? MAC_SCROLLBAR_SIZE
- 1: 0 ;
1745 GetClientSize( &width
, &height
) ;
1747 wxPoint
vPoint(width
-MAC_SCROLLBAR_SIZE
, 0) ;
1748 wxSize
vSize(MAC_SCROLLBAR_SIZE
, height
- adjust
) ;
1749 wxPoint
hPoint(0 , height
-MAC_SCROLLBAR_SIZE
) ;
1750 wxSize
hSize( width
- adjust
, MAC_SCROLLBAR_SIZE
) ;
1752 m_vScrollBar
= new wxScrollBar(this, wxWINDOW_VSCROLL
, vPoint
,
1753 vSize
, wxVERTICAL
);
1755 if ( style
& wxVSCROLL
)
1761 m_vScrollBar
->Show(false) ;
1763 m_hScrollBar
= new wxScrollBar(this, wxWINDOW_HSCROLL
, hPoint
,
1764 hSize
, wxHORIZONTAL
);
1765 if ( style
& wxHSCROLL
)
1770 m_hScrollBar
->Show(false) ;
1773 // because the create does not take into account the client area origin
1774 MacRepositionScrollBars() ; // we might have a real position shift
1777 void wxWindowMac::MacRepositionScrollBars()
1779 bool hasBoth
= ( m_hScrollBar
&& m_hScrollBar
->IsShown()) && ( m_vScrollBar
&& m_vScrollBar
->IsShown()) ;
1780 int adjust
= hasBoth
? MAC_SCROLLBAR_SIZE
- 1 : 0 ;
1782 // get real client area
1784 int width
= m_width
;
1785 int height
= m_height
;
1787 width
-= MacGetLeftBorderSize() + MacGetRightBorderSize();
1788 height
-= MacGetTopBorderSize() + MacGetBottomBorderSize();
1790 wxPoint
vPoint(width
-MAC_SCROLLBAR_SIZE
, 0) ;
1791 wxSize
vSize(MAC_SCROLLBAR_SIZE
, height
- adjust
) ;
1792 wxPoint
hPoint(0 , height
-MAC_SCROLLBAR_SIZE
) ;
1793 wxSize
hSize( width
- adjust
, MAC_SCROLLBAR_SIZE
) ;
1800 MacClientToRootWindow( &x
, &y
) ;
1801 MacClientToRootWindow( &w
, &h
) ;
1803 wxWindowMac
*iter
= (wxWindowMac
*)this ;
1805 int totW
= 10000 , totH
= 10000;
1808 if ( iter
->IsTopLevel() )
1810 totW
= iter
->m_width
;
1811 totH
= iter
->m_height
;
1815 iter
= iter
->GetParent() ;
1843 m_vScrollBar
->SetSize( vPoint
.x
, vPoint
.y
, vSize
.x
, vSize
.y
, wxSIZE_ALLOW_MINUS_ONE
);
1847 m_hScrollBar
->SetSize( hPoint
.x
, hPoint
.y
, hSize
.x
, hSize
.y
, wxSIZE_ALLOW_MINUS_ONE
);
1851 bool wxWindowMac::AcceptsFocus() const
1853 return MacCanFocus() && wxWindowBase::AcceptsFocus();
1856 WXWidget
wxWindowMac::MacGetContainerForEmbedding()
1858 return GetParent()->MacGetContainerForEmbedding() ;
1861 void wxWindowMac::MacSuperChangedPosition()
1863 // only window-absolute structures have to be moved i.e. controls
1865 wxWindowListNode
*node
= GetChildren().GetFirst();
1868 wxWindowMac
*child
= node
->GetData();
1869 child
->MacSuperChangedPosition() ;
1870 node
= node
->GetNext();
1874 void wxWindowMac::MacTopLevelWindowChangedPosition()
1876 // only screen-absolute structures have to be moved i.e. glcanvas
1878 wxWindowListNode
*node
= GetChildren().GetFirst();
1881 wxWindowMac
*child
= node
->GetData();
1882 child
->MacTopLevelWindowChangedPosition() ;
1883 node
= node
->GetNext();
1886 long wxWindowMac::MacGetLeftBorderSize( ) const
1891 if (m_windowStyle
& wxRAISED_BORDER
|| m_windowStyle
& wxSUNKEN_BORDER
)
1894 #if wxMAC_USE_THEME_BORDER
1896 GetThemeMetric( kThemeMetricListBoxFrameOutset
, &border
) ;
1901 else if ( m_windowStyle
&wxDOUBLE_BORDER
)
1904 #if wxMAC_USE_THEME_BORDER
1906 GetThemeMetric( kThemeMetricListBoxFrameOutset
, &border
) ;
1911 else if (m_windowStyle
&wxSIMPLE_BORDER
)
1918 long wxWindowMac::MacGetRightBorderSize( ) const
1920 // they are all symmetric in mac themes
1921 return MacGetLeftBorderSize() ;
1924 long wxWindowMac::MacGetTopBorderSize( ) const
1926 // they are all symmetric in mac themes
1927 return MacGetLeftBorderSize() ;
1930 long wxWindowMac::MacGetBottomBorderSize( ) const
1932 // they are all symmetric in mac themes
1933 return MacGetLeftBorderSize() ;
1936 long wxWindowMac::MacRemoveBordersFromStyle( long style
)
1938 return style
& ~( wxDOUBLE_BORDER
| wxSUNKEN_BORDER
| wxRAISED_BORDER
| wxBORDER
| wxSTATIC_BORDER
) ;
1941 // Find the wxWindowMac at the current mouse position, returning the mouse
1943 wxWindowMac
* wxFindWindowAtPointer(wxPoint
& pt
)
1945 pt
= wxGetMousePosition();
1946 wxWindowMac
* found
= wxFindWindowAtPoint(pt
);
1950 // Get the current mouse position.
1951 wxPoint
wxGetMousePosition()
1954 wxGetMousePosition(& x
, & y
);
1955 return wxPoint(x
, y
);
1958 void wxWindowMac::OnMouseEvent( wxMouseEvent
&event
)
1960 if ( event
.GetEventType() == wxEVT_RIGHT_DOWN
)
1962 // copied from wxGTK : CS
1963 // generate a "context menu" event: this is similar to wxEVT_RIGHT_DOWN
1966 // (a) it's a command event and so is propagated to the parent
1967 // (b) under MSW it can be generated from kbd too
1968 // (c) it uses screen coords (because of (a))
1969 wxContextMenuEvent
evtCtx(wxEVT_CONTEXT_MENU
,
1971 this->ClientToScreen(event
.GetPosition()));
1972 if ( ! GetEventHandler()->ProcessEvent(evtCtx
) )