1 /////////////////////////////////////////////////////////////////////////////
8 // Copyright: (c) AUTHOR
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"
44 #define wxWINDOW_HSCROLL 5998
45 #define wxWINDOW_VSCROLL 5997
46 #define MAC_SCROLLBAR_SIZE 16
48 #include <wx/mac/uma.h>
50 #if wxUSE_DRAG_AND_DROP
56 extern wxList wxPendingDelete
;
57 wxWindow
* gFocusWindow
= NULL
;
59 #if !USE_SHARED_LIBRARY
60 IMPLEMENT_DYNAMIC_CLASS(wxWindow
, wxEvtHandler
)
61 BEGIN_EVENT_TABLE(wxWindow
, wxEvtHandler
)
62 EVT_ERASE_BACKGROUND(wxWindow::OnEraseBackground
)
63 EVT_SYS_COLOUR_CHANGED(wxWindow::OnSysColourChanged
)
64 EVT_INIT_DIALOG(wxWindow::OnInitDialog
)
65 EVT_IDLE(wxWindow::OnIdle
)
66 EVT_SET_FOCUS(wxWindow::OnSetFocus
)
73 // ===========================================================================
75 // ===========================================================================
77 // ---------------------------------------------------------------------------
78 // wxWindow utility functions
79 // ---------------------------------------------------------------------------
81 // Find an item given the Macintosh Window Reference
83 wxList
*wxWinMacWindowList
= NULL
;
84 wxWindow
*wxFindWinFromMacWindow(WindowRef inWindowRef
)
86 wxNode
*node
= wxWinMacWindowList
->Find((long)inWindowRef
);
89 return (wxWindow
*)node
->Data();
92 void wxAssociateWinWithMacWindow(WindowRef inWindowRef
, wxWindow
*win
)
94 // adding NULL WindowRef is (first) surely a result of an error and
95 // (secondly) breaks menu command processing
96 wxCHECK_RET( inWindowRef
!= (WindowRef
) NULL
, "attempt to add a NULL WindowRef to window list" );
98 if ( !wxWinMacWindowList
->Find((long)inWindowRef
) )
99 wxWinMacWindowList
->Append((long)inWindowRef
, win
);
102 void wxRemoveMacWindowAssociation(wxWindow
*win
)
104 wxWinMacWindowList
->DeleteObject(win
);
107 // ----------------------------------------------------------------------------
108 // constructors and such
109 // ----------------------------------------------------------------------------
111 WindowRef
wxWindow::s_macWindowInUpdate
= NULL
;
113 void wxWindow::Init()
118 m_macEraseOnRedraw
= true ;
121 m_doubleClickAllowed
= 0;
122 m_winCaptured
= FALSE
;
124 m_isBeingDeleted
= FALSE
;
127 m_mouseInWindow
= FALSE
;
131 m_backgroundTransparent
= FALSE
;
133 // as all windows are created with WS_VISIBLE style...
136 m_macWindowData
= NULL
;
137 m_macEraseOnRedraw
= true ;
144 m_hScrollBar
= NULL
;
145 m_vScrollBar
= NULL
;
147 #if wxUSE_DRAG_AND_DROP
148 m_pDropTarget
= NULL
;
153 wxWindow::~wxWindow()
155 m_isBeingDeleted
= TRUE
;
157 if ( s_lastMouseWindow
== this )
159 s_lastMouseWindow
= NULL
;
162 if ( gFocusWindow
== this )
164 gFocusWindow
= NULL
;
168 m_parent
->RemoveChild(this);
172 if ( m_macWindowData
)
174 wxToolTip::NotifyWindowDelete(m_macWindowData
->m_macWindow
) ;
175 UMADisposeWindow( m_macWindowData
->m_macWindow
) ;
176 delete m_macWindowData
;
177 wxRemoveMacWindowAssociation( this ) ;
182 bool wxWindow::Create(wxWindow
*parent
, wxWindowID id
,
186 const wxString
& name
)
188 wxCHECK_MSG( parent
, FALSE
, wxT("can't create wxWindow without parent") );
190 if ( !CreateBase(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
193 parent
->AddChild(this);
197 AdjustForParentClientOrigin(m_x
, m_y
, wxSIZE_USE_EXISTING
);
198 m_width
= WidthDefault( size
.x
);
199 m_height
= HeightDefault( size
.y
) ;
201 if ( ! IsKindOf( CLASSINFO ( wxControl
) ) && ! IsKindOf( CLASSINFO( wxStatusBar
) ) )
203 MacCreateScrollBars( style
) ;
209 void wxWindow::SetFocus()
211 if ( gFocusWindow
== this )
214 if ( AcceptsFocus() )
220 if ( gFocusWindow
->m_caret
)
222 gFocusWindow
->m_caret
->OnKillFocus();
224 #endif // wxUSE_CARET
225 wxControl
* control
= wxDynamicCast( gFocusWindow
, wxControl
) ;
226 if ( control
&& control
->GetMacControl() )
228 UMASetKeyboardFocus( gFocusWindow
->GetMacRootWindow() , control
->GetMacControl() , kControlFocusNoPart
) ;
229 control
->MacRedrawControl() ;
231 wxFocusEvent
event(wxEVT_KILL_FOCUS
, gFocusWindow
->m_windowId
);
232 event
.SetEventObject(gFocusWindow
);
233 gFocusWindow
->GetEventHandler()->ProcessEvent(event
) ;
235 gFocusWindow
= this ;
241 m_caret
->OnSetFocus();
243 #endif // wxUSE_CARET
244 // panel wants to track the window which was the last to have focus in it
245 wxPanel
*panel
= wxDynamicCast(GetParent(), wxPanel
);
248 panel
->SetLastFocus(this);
250 wxControl
* control
= wxDynamicCast( gFocusWindow
, wxControl
) ;
251 if ( control
&& control
->GetMacControl() )
253 UMASetKeyboardFocus( gFocusWindow
->GetMacRootWindow() , control
->GetMacControl() , kControlEditTextPart
) ;
256 wxFocusEvent
event(wxEVT_SET_FOCUS
, m_windowId
);
257 event
.SetEventObject(this);
258 GetEventHandler()->ProcessEvent(event
) ;
263 bool wxWindow::Enable(bool enable
)
265 if ( !wxWindowBase::Enable(enable
) )
268 wxWindowList::Node
*node
= GetChildren().GetFirst();
271 wxWindow
*child
= node
->GetData();
272 child
->Enable(enable
);
274 node
= node
->GetNext();
280 void wxWindow::CaptureMouse()
282 wxTheApp
->s_captureWindow
= this ;
285 void wxWindow::ReleaseMouse()
287 wxTheApp
->s_captureWindow
= NULL
;
290 #if wxUSE_DRAG_AND_DROP
292 void wxWindow::SetDropTarget(wxDropTarget
*pDropTarget
)
294 if ( m_pDropTarget
!= 0 ) {
295 delete m_pDropTarget
;
298 m_pDropTarget
= pDropTarget
;
299 if ( m_pDropTarget
!= 0 )
307 // Old style file-manager drag&drop
308 void wxWindow::DragAcceptFiles(bool accept
)
314 void wxWindow::DoGetSize(int *x
, int *y
) const
320 void wxWindow::DoGetPosition(int *x
, int *y
) const
326 wxPoint
pt(GetParent()->GetClientAreaOrigin());
333 bool wxWindow::DoPopupMenu(wxMenu
*menu
, int x
, int y
)
335 menu
->SetInvokingWindow(this);
337 ClientToScreen( &x
, &y
) ;
339 ::InsertMenu( menu
->GetHMenu() , -1 ) ;
340 long menuResult
= ::PopUpMenuSelect(menu
->GetHMenu() ,y
,x
, 0) ;
341 menu
->MacMenuSelect( this , TickCount() , HiWord(menuResult
) , LoWord(menuResult
) ) ;
342 ::DeleteMenu( menu
->MacGetMenuId() ) ;
343 menu
->SetInvokingWindow(NULL
);
348 void wxWindow::DoScreenToClient(int *x
, int *y
) const
350 WindowRef window
= GetMacRootWindow() ;
358 ::SetPort( UMAGetWindowPort( window
) ) ;
359 ::GlobalToLocal( &localwhere
) ;
365 MacRootWindowToClient( x
, y
) ;
368 void wxWindow::DoClientToScreen(int *x
, int *y
) const
370 WindowRef window
= GetMacRootWindow() ;
372 MacClientToRootWindow( x
, y
) ;
380 ::SetPort( UMAGetWindowPort( window
) ) ;
381 ::SetOrigin( 0 , 0 ) ;
382 ::LocalToGlobal( &localwhere
) ;
388 void wxWindow::MacClientToRootWindow( int *x
, int *y
) const
390 if ( m_macWindowData
)
397 GetParent()->MacClientToRootWindow( x
, y
) ;
401 void wxWindow::MacRootWindowToClient( int *x
, int *y
) const
403 if ( m_macWindowData
)
410 GetParent()->MacRootWindowToClient( x
, y
) ;
414 bool wxWindow::SetCursor(const wxCursor
& cursor
)
416 if ( !wxWindowBase::SetCursor(cursor
) )
422 wxASSERT_MSG( m_cursor
.Ok(),
423 wxT("cursor must be valid after call to the base version"));
429 // Change the cursor NOW if we're within the correct window
431 if ( MacGetWindowFromPoint( wxPoint( pt
.h
, pt
.v
) , &mouseWin
) )
433 if ( mouseWin
== this && !wxIsBusy() )
435 cursor
.MacInstall() ;
443 // Get size *available for subwindows* i.e. excluding menu bar etc.
444 void wxWindow::DoGetClientSize(int *x
, int *y
) const
449 *x
-= MacGetLeftBorderSize( ) + MacGetRightBorderSize( ) ;
450 *y
-= MacGetTopBorderSize( ) + MacGetBottomBorderSize( );
452 if ( (m_vScrollBar
&& m_vScrollBar
->IsShown()) || (m_hScrollBar
&& m_hScrollBar
->IsShown()) )
459 MacClientToRootWindow( &x1
, &y1
) ;
460 MacClientToRootWindow( &w
, &h
) ;
462 WindowRef window
= NULL
;
463 wxWindow
*iter
= (wxWindow
*)this ;
465 int totW
= 10000 , totH
= 10000;
468 if ( iter
->m_macWindowData
)
470 totW
= iter
->m_width
;
471 totH
= iter
->m_height
;
475 iter
= iter
->GetParent() ;
478 if (m_hScrollBar
&& m_hScrollBar
->IsShown() )
480 (*y
) -= MAC_SCROLLBAR_SIZE
;
486 if (m_vScrollBar
&& m_vScrollBar
->IsShown() )
488 (*x
) -= MAC_SCROLLBAR_SIZE
;
498 // ----------------------------------------------------------------------------
500 // ----------------------------------------------------------------------------
504 void wxWindow::DoSetToolTip(wxToolTip
*tooltip
)
506 wxWindowBase::DoSetToolTip(tooltip
);
509 m_tooltip
->SetWindow(this);
512 #endif // wxUSE_TOOLTIPS
514 void wxWindow::DoMoveWindow(int x
, int y
, int width
, int height
)
516 DoSetSize( x
,y
, width
, height
) ;
519 // set the size of the window: if the dimensions are positive, just use them,
520 // but if any of them is equal to -1, it means that we must find the value for
521 // it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in
522 // which case -1 is a valid value for x and y)
524 // If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate
525 // the width/height to best suit our contents, otherwise we reuse the current
527 void wxWindow::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
532 int former_w
= m_width
;
533 int former_h
= m_height
;
535 int currentX
, currentY
;
536 GetPosition(¤tX
, ¤tY
);
537 int currentW
,currentH
;
538 GetSize(¤tW
, ¤tH
);
540 int actualWidth
= width
;
541 int actualHeight
= height
;
544 if (x
== -1 && !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
546 if (y
== -1 && !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
549 wxSize
size( -1 , -1 ) ;
551 if (width
== -1 || height
== -1 )
553 size
= DoGetBestSize() ;
558 if ( sizeFlags
& wxSIZE_AUTO_WIDTH
)
560 actualWidth
= size
.x
;
561 if ( actualWidth
== -1 )
566 actualWidth
= currentW
;
571 if ( sizeFlags
& wxSIZE_AUTO_HEIGHT
)
573 actualHeight
= size
.y
;
574 if ( actualHeight
== -1 )
579 actualHeight
= currentH
;
583 if ((m_minWidth
!= -1) && (actualWidth
< m_minWidth
))
584 actualWidth
= m_minWidth
;
585 if ((m_minHeight
!= -1) && (actualHeight
< m_minHeight
))
586 actualHeight
= m_minHeight
;
587 if ((m_maxWidth
!= -1) && (actualWidth
> m_maxWidth
))
588 actualWidth
= m_maxWidth
;
589 if ((m_maxHeight
!= -1) && (actualHeight
> m_maxHeight
))
590 actualHeight
= m_maxHeight
;
591 if ( actualX
== currentX
&& actualY
== currentY
&& actualWidth
== currentW
&& actualHeight
== currentH
)
593 MacRepositionScrollBars() ; // we might have a real position shift
597 AdjustForParentClientOrigin(actualX
, actualY
, sizeFlags
);
600 bool doMove
= false ;
601 bool doResize
= false ;
603 if ( actualX
!= former_x
|| actualY
!= former_y
)
607 if ( actualWidth
!= former_w
|| actualHeight
!= former_h
)
612 if ( doMove
|| doResize
)
614 if ( m_macWindowData
)
619 // erase former position
620 wxMacDrawingHelper
focus( this ) ;
623 Rect clientrect
= { 0 , 0 , m_height
, m_width
} ;
624 ClipRect( &clientrect
) ;
625 InvalWindowRect( GetMacRootWindow() , &clientrect
) ;
630 m_width
= actualWidth
;
631 m_height
= actualHeight
;
632 if ( m_macWindowData
)
635 ::MoveWindow(m_macWindowData
->m_macWindow
, m_x
, m_y
, false); // don't make frontmost
638 ::SizeWindow(m_macWindowData
->m_macWindow
, m_width
, m_height
, true);
640 // the OS takes care of invalidating and erasing the new area
641 // we have erased the old one
643 if ( IsKindOf( CLASSINFO( wxFrame
) ) )
645 wxFrame
* frame
= (wxFrame
*) this ;
646 frame
->PositionStatusBar();
647 frame
->PositionToolBar();
652 // erase new position
655 wxMacDrawingHelper
focus( this ) ;
658 Rect clientrect
= { 0 , 0 , m_height
, m_width
} ;
659 ClipRect( &clientrect
) ;
660 InvalWindowRect( GetMacRootWindow() , &clientrect
) ;
665 wxWindow::MacSuperChangedPosition() ; // like this only children will be notified
667 MacRepositionScrollBars() ;
670 wxMoveEvent
event(wxPoint(m_x
, m_y
), m_windowId
);
671 event
.SetEventObject(this);
672 GetEventHandler()->ProcessEvent(event
) ;
676 MacRepositionScrollBars() ;
677 wxSizeEvent
event(wxSize(m_width
, m_height
), m_windowId
);
678 event
.SetEventObject(this);
679 GetEventHandler()->ProcessEvent(event
);
683 // For implementation purposes - sometimes decorations make the client area
686 wxPoint
wxWindow::GetClientAreaOrigin() const
688 return wxPoint(MacGetLeftBorderSize( ) , MacGetTopBorderSize( ) );
691 // Makes an adjustment to the window position (for example, a frame that has
692 // a toolbar that it manages itself).
693 void wxWindow::AdjustForParentClientOrigin(int& x
, int& y
, int sizeFlags
)
695 if( !m_macWindowData
)
697 if (((sizeFlags
& wxSIZE_NO_ADJUSTMENTS
) == 0) && GetParent())
699 wxPoint
pt(GetParent()->GetClientAreaOrigin());
700 x
+= pt
.x
; y
+= pt
.y
;
705 void wxWindow::SetTitle(const wxString
& title
)
711 if( wxApp::s_macDefaultEncodingIsPC
)
712 label
= wxMacMakeMacStringFromPC( title
) ;
716 if ( m_macWindowData
)
717 UMASetWTitleC( m_macWindowData
->m_macWindow
, label
) ;
720 wxString
wxWindow::GetTitle() const
725 bool wxWindow::Show(bool show
)
727 if ( !wxWindowBase::Show(show
) )
730 if ( m_macWindowData
)
734 UMAShowWindow( m_macWindowData
->m_macWindow
) ;
735 UMASelectWindow( m_macWindowData
->m_macWindow
) ;
736 // no need to generate events here, they will get them triggered by macos
737 // actually they should be , but apparently they are not
738 wxSizeEvent
event(wxSize(m_width
, m_height
), m_windowId
);
739 event
.SetEventObject(this);
740 GetEventHandler()->ProcessEvent(event
);
744 UMAHideWindow( m_macWindowData
->m_macWindow
) ;
747 MacSuperShown( show
) ;
750 MacUpdateImmediately() ;
755 void wxWindow::MacSuperShown( bool show
)
757 wxNode
*node
= GetChildren().First();
760 wxWindow
*child
= (wxWindow
*)node
->Data();
761 if ( child
->m_isShown
)
762 child
->MacSuperShown( show
) ;
767 bool wxWindow::MacIsReallyShown() const
769 if ( m_isShown
&& (m_parent
!= NULL
) ) {
770 return m_parent
->MacIsReallyShown();
774 bool status = m_isShown ;
775 wxWindow * win = this ;
776 while ( status && win->m_parent != NULL )
778 win = win->m_parent ;
779 status = win->m_isShown ;
785 int wxWindow::GetCharHeight() const
787 wxClientDC
dc ( (wxWindow
*)this ) ;
788 return dc
.GetCharHeight() ;
791 int wxWindow::GetCharWidth() const
793 wxClientDC
dc ( (wxWindow
*)this ) ;
794 return dc
.GetCharWidth() ;
797 void wxWindow::GetTextExtent(const wxString
& string
, int *x
, int *y
,
798 int *descent
, int *externalLeading
, const wxFont
*theFont
) const
800 const wxFont
*fontToUse
= theFont
;
804 wxClientDC
dc( (wxWindow
*) this ) ;
806 dc
.GetTextExtent( string
, &lx
, &ly
, &ld
, &le
, (wxFont
*)fontToUse
) ;
807 if ( externalLeading
)
808 *externalLeading
= le
;
817 void wxWindow::MacEraseBackground( Rect
*rect
)
820 WindowRef window = GetMacRootWindow() ;
821 if ( m_backgroundColour == wxSystemSettings::GetSystemColour(wxSYS_COLOUR_APPWORKSPACE) )
823 UMASetThemeWindowBackground( window , kThemeBrushDocumentWindowBackground , false ) ;
825 else if ( m_backgroundColour == wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE ) )
827 // on mac we have the difficult situation, that 3dface gray can be different colours, depending whether
828 // it is on a notebook panel or not, in order to take care of that we walk up the hierarchy until we have
829 // either a non gray background color or a non control window
831 wxWindow* parent = GetParent() ;
834 if ( parent->m_backgroundColour != wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE ) )
836 // if we have any other colours in the hierarchy
837 RGBBackColor( &parent->m_backgroundColour.GetPixel()) ;
840 if( parent->IsKindOf( CLASSINFO( wxControl ) ) && ((wxControl*)parent)->GetMacControl() )
842 // if we have the normal colours in the hierarchy but another control etc. -> use it's background
843 if ( parent->IsKindOf( CLASSINFO( wxNotebook ) ) || parent->IsKindOf( CLASSINFO( wxTabCtrl ) ))
845 UMAApplyThemeBackground(kThemeBackgroundTabPane, rect, kThemeStateActive,8,true);
851 // we have arrived at a non control item
855 parent = parent->GetParent() ;
859 // if there is nothing special -> use default
860 UMASetThemeWindowBackground( window , kThemeBrushDialogBackgroundActive , false ) ;
865 RGBBackColor( &m_backgroundColour.GetPixel()) ;
870 for (wxNode *node = GetChildren().First(); node; node = node->Next())
872 wxWindow *child = (wxWindow*)node->Data();
874 Rect clientrect = { child->m_x , child->m_y , child->m_x +child->m_width , child->m_y + child->m_height } ;
875 SectRect( &clientrect , rect , &clientrect ) ;
877 OffsetRect( &clientrect , -child->m_x , -child->m_y ) ;
878 if ( child->GetMacRootWindow() == window && child->IsShown() )
880 wxMacDrawingClientHelper focus( this ) ;
883 child->MacEraseBackground( &clientrect ) ;
890 void wxWindow::Refresh(bool eraseBack
, const wxRect
*rect
)
892 wxMacDrawingHelper
focus( this ) ;
895 Rect clientrect
= { 0 , 0 , m_height
, m_width
} ;
896 ClipRect( &clientrect
) ;
900 Rect r
= { rect
->y
, rect
->x
, rect
->y
+ rect
->height
, rect
->x
+ rect
->width
} ;
901 SectRect( &clientrect
, &r
, &clientrect
) ;
903 InvalWindowRect( GetMacRootWindow() , &clientrect
) ;
907 // Responds to colour changes: passes event on to children.
908 void wxWindow::OnSysColourChanged(wxSysColourChangedEvent
& event
)
910 wxNode
*node
= GetChildren().First();
913 // Only propagate to non-top-level windows
914 wxWindow
*win
= (wxWindow
*)node
->Data();
915 if ( win
->GetParent() )
917 wxSysColourChangedEvent event2
;
918 event
.m_eventObject
= win
;
919 win
->GetEventHandler()->ProcessEvent(event2
);
926 #if wxUSE_CARET && WXWIN_COMPATIBILITY
927 // ---------------------------------------------------------------------------
928 // Caret manipulation
929 // ---------------------------------------------------------------------------
931 void wxWindow::CreateCaret(int w
, int h
)
933 SetCaret(new wxCaret(this, w
, h
));
936 void wxWindow::CreateCaret(const wxBitmap
*WXUNUSED(bitmap
))
938 wxFAIL_MSG("not implemented");
941 void wxWindow::ShowCaret(bool show
)
943 wxCHECK_RET( m_caret
, "no caret to show" );
948 void wxWindow::DestroyCaret()
953 void wxWindow::SetCaretPos(int x
, int y
)
955 wxCHECK_RET( m_caret
, "no caret to move" );
960 void wxWindow::GetCaretPos(int *x
, int *y
) const
962 wxCHECK_RET( m_caret
, "no caret to get position of" );
964 m_caret
->GetPosition(x
, y
);
966 #endif // wxUSE_CARET
968 wxWindow
*wxGetActiveWindow()
970 // actually this is a windows-only concept
974 // Coordinates relative to the window
975 void wxWindow::WarpPointer (int x_pos
, int y_pos
)
977 // We really dont move the mouse programmatically under mac
980 void wxWindow::OnEraseBackground(wxEraseEvent
& event
)
982 // TODO : probably we would adopt the EraseEvent structure
985 int wxWindow::GetScrollPos(int orient
) const
987 if ( orient
== wxHORIZONTAL
)
990 return m_hScrollBar
->GetThumbPosition() ;
995 return m_vScrollBar
->GetThumbPosition() ;
1000 // This now returns the whole range, not just the number
1001 // of positions that we can scroll.
1002 int wxWindow::GetScrollRange(int orient
) const
1004 if ( orient
== wxHORIZONTAL
)
1007 return m_hScrollBar
->GetRange() ;
1012 return m_vScrollBar
->GetRange() ;
1017 int wxWindow::GetScrollThumb(int orient
) const
1019 if ( orient
== wxHORIZONTAL
)
1022 return m_hScrollBar
->GetThumbSize() ;
1027 return m_vScrollBar
->GetThumbSize() ;
1032 void wxWindow::SetScrollPos(int orient
, int pos
, bool refresh
)
1034 if ( orient
== wxHORIZONTAL
)
1037 m_hScrollBar
->SetThumbPosition( pos
) ;
1042 m_vScrollBar
->SetThumbPosition( pos
) ;
1046 void wxWindow::MacCreateRealWindow( const wxString
& title
,
1050 const wxString
& name
)
1053 m_windowStyle
= style
;
1074 m_macWindowData
= new MacWindowData() ;
1076 ::SetRect(&theBoundsRect
, m_x
, m_y
, m_x
+ m_width
, m_y
+ m_height
);
1078 // translate the window attributes in the appropriate window class and attributes
1080 WindowClass wclass
= 0;
1081 WindowAttributes attr
= kWindowNoAttributes
;
1083 if ( HasFlag(wxTINY_CAPTION_HORIZ
) || HasFlag(wxTINY_CAPTION_VERT
) )
1085 wclass
= kFloatingWindowClass
;
1086 if ( HasFlag(wxTINY_CAPTION_VERT
) )
1088 attr
|= kWindowSideTitlebarAttribute
;
1091 else if ( HasFlag( wxCAPTION
) )
1093 if ( HasFlag( wxDIALOG_MODAL
) )
1095 wclass
= kMovableModalWindowClass
;
1099 wclass
= kDocumentWindowClass
;
1104 wclass
= kModalWindowClass
;
1107 if ( HasFlag( wxMINIMIZE_BOX
) || HasFlag( wxMAXIMIZE_BOX
) )
1109 attr
|= kWindowFullZoomAttribute
;
1110 attr
|= kWindowCollapseBoxAttribute
;
1112 if ( HasFlag( wxRESIZE_BORDER
) )
1114 attr
|= kWindowResizableAttribute
;
1116 if ( HasFlag( wxSYSTEM_MENU
) )
1118 attr
|= kWindowCloseBoxAttribute
;
1121 UMACreateNewWindow( wclass
, attr
, &theBoundsRect
, &m_macWindowData
->m_macWindow
) ;
1122 wxAssociateWinWithMacWindow( m_macWindowData
->m_macWindow
, this ) ;
1124 if( wxApp::s_macDefaultEncodingIsPC
)
1125 label
= wxMacMakeMacStringFromPC( title
) ;
1128 UMASetWTitleC( m_macWindowData
->m_macWindow
, label
) ;
1129 UMACreateRootControl( m_macWindowData
->m_macWindow
, &m_macWindowData
->m_macRootControl
) ;
1131 m_macWindowData
->m_macFocus
= NULL
;
1134 void wxWindow::MacPaint( wxPaintEvent
&event
)
1138 void wxWindow::MacPaintBorders( )
1140 if( m_macWindowData
)
1143 RGBColor white
= { 0xFFFF, 0xFFFF , 0xFFFF } ;
1144 RGBColor black
= { 0x0000, 0x0000 , 0x0000 } ;
1145 RGBColor face
= { 0xDDDD, 0xDDDD , 0xDDDD } ;
1146 RGBColor shadow
= { 0x4444, 0x4444 , 0x4444 } ;
1149 if (HasFlag(wxRAISED_BORDER
) || HasFlag( wxSUNKEN_BORDER
) || HasFlag(wxDOUBLE_BORDER
) )
1151 bool sunken
= HasFlag( wxSUNKEN_BORDER
) ;
1152 RGBColor pen1
= sunken
? white
: black
;
1153 RGBColor pen2
= sunken
? shadow
: face
;
1154 RGBColor pen3
= sunken
? face
: shadow
;
1155 RGBColor pen4
= sunken
? black
: white
;
1157 RGBForeColor( &pen1
) ;
1159 Rect rect
= { 0 , 0 , m_height
, m_width
} ;
1160 FrameRect( &rect
) ;
1162 RGBForeColor( &pen2
) ;
1164 Rect rect
= { 1 , 1 , m_height
-1 , m_width
-1} ;
1165 FrameRect( &rect
) ;
1167 RGBForeColor( &pen3
) ;
1169 Rect rect
= { 0 , 0 , m_height
-2 , m_width
-2} ;
1170 FrameRect( &rect
) ;
1172 RGBForeColor( &pen4
) ;
1175 LineTo( m_width
- 3 , 0 ) ;
1177 LineTo( 0 , m_height
- 3 ) ;
1180 else if (HasFlag(wxSIMPLE_BORDER
))
1182 Rect rect
= { 0 , 0 , m_height
, m_width
} ;
1183 RGBForeColor( &black
) ;
1184 FrameRect( &rect
) ;
1187 if ( this->GetParent() )
1189 wxPaintDC dc(GetParent());
1190 GetParent()->PrepareDC(dc);
1192 if (HasFlag(wxRAISED_BORDER) || HasFlag( wxSUNKEN_BORDER) )
1194 bool sunken = HasFlag( wxSUNKEN_BORDER ) ;
1196 wxPen m_penButton3DShadow( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_3DSHADOW ), 1, wxSOLID ) ;
1197 wxPen m_penButton3DFace( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_3DFACE ), 1, wxSOLID ) ;
1199 wxPen wxPen1 = sunken ? *wxWHITE_PEN : *wxBLACK_PEN;
1200 wxPen wxPen2 = sunken ? m_penButton3DShadow : m_penButton3DShadow;
1201 wxPen wxPen3 = sunken ? m_penButton3DFace : m_penButton3DShadow;
1202 wxPen wxPen4 = sunken ? *wxBLACK_PEN : *wxWHITE_PEN;
1205 dc.DrawRectangle(m_x, m_y, m_width, m_height); // outer - right and button
1208 dc.DrawRectangle(m_x+1, m_y+1, m_width-1, m_height-1); // outer - left and top
1211 dc.DrawRectangle(m_x, m_y, m_width-2, m_height-2); // inner - right and button
1214 dc.DrawLine(m_x, m_y, m_x + m_width-3, m_y); // inner - left and top
1215 dc.DrawLine(m_x, m_y, m_x, m_y + m_height-3);
1217 else if (HasFlag(wxDOUBLE_BORDER))
1219 bool sunken = HasFlag( wxSUNKEN_BORDER ) ;
1221 wxPen m_penButton3DShadow( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_3DSHADOW ), 1, wxSOLID ) ;
1222 wxPen m_penButton3DFace( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_3DFACE ), 1, wxSOLID ) ;
1224 wxPen wxPen1 = sunken ? *wxWHITE_PEN : *wxBLACK_PEN;
1225 wxPen wxPen2 = sunken ? m_penButton3DShadow : m_penButton3DShadow;
1226 wxPen wxPen3 = sunken ? m_penButton3DFace : m_penButton3DShadow;
1227 wxPen wxPen4 = sunken ? *wxBLACK_PEN : *wxWHITE_PEN;
1230 dc.DrawRectangle(m_x, m_y, m_width, m_height); // outer - right and button
1233 dc.DrawRectangle(m_x+1, m_y+1, m_width-1, m_height-1); // outer - left and top
1236 dc.DrawRectangle(m_x, m_y, m_width-2, m_height-2); // inner - right and button
1239 dc.DrawLine(m_x, m_y, m_x + m_width-3, m_y); // inner - left and top
1240 dc.DrawLine(m_x, m_y, m_x, m_y + m_height-3);
1242 else if (HasFlag(wxSIMPLE_BORDER))
1244 dc.SetPen(*wxBLACK_PEN);
1245 dc.DrawRectangle(m_x, m_y, m_width, m_height);
1251 // New function that will replace some of the above.
1252 void wxWindow::SetScrollbar(int orient
, int pos
, int thumbVisible
,
1253 int range
, bool refresh
)
1255 if ( orient
== wxHORIZONTAL
)
1259 if ( range
== 0 || thumbVisible
>= range
)
1261 if ( m_hScrollBar
->IsShown() )
1262 m_hScrollBar
->Show(false) ;
1266 if ( !m_hScrollBar
->IsShown() )
1267 m_hScrollBar
->Show(true) ;
1268 m_hScrollBar
->SetScrollbar( pos
, thumbVisible
, range
, refresh
) ;
1276 if ( range
== 0 || thumbVisible
>= range
)
1278 if ( m_vScrollBar
->IsShown() )
1279 m_vScrollBar
->Show(false) ;
1283 if ( !m_vScrollBar
->IsShown() )
1284 m_vScrollBar
->Show(true) ;
1285 m_vScrollBar
->SetScrollbar( pos
, thumbVisible
, range
, refresh
) ;
1289 MacRepositionScrollBars() ;
1292 // Does a physical scroll
1293 void wxWindow::ScrollWindow(int dx
, int dy
, const wxRect
*rect
)
1295 wxMacDrawingClientHelper
focus( this ) ;
1298 int width
, height
;
1299 GetClientSize( &width
, &height
) ;
1301 Rect scrollrect
= { 0 , 0 , height
, width
} ;
1303 RgnHandle updateRgn
= NewRgn() ;
1304 ClipRect( &scrollrect
) ;
1307 Rect r
= { rect
->y
, rect
->x
, rect
->y
+ rect
->height
, rect
->x
+ rect
->width
} ;
1308 SectRect( &scrollrect
, &r
, &scrollrect
) ;
1310 ScrollRect( &scrollrect
, dx
, dy
, updateRgn
) ;
1311 InvalWindowRgn( GetMacRootWindow() , updateRgn
) ;
1312 DisposeRgn( updateRgn
) ;
1315 for (wxNode
*node
= GetChildren().First(); node
; node
= node
->Next())
1317 wxWindow
*child
= (wxWindow
*)node
->Data();
1318 if (child
== m_vScrollBar
) continue;
1319 if (child
== m_hScrollBar
) continue;
1320 if (child
->IsTopLevel()) continue;
1322 child
->GetPosition( &x
, &y
);
1324 child
->GetSize( &w
, &h
);
1325 child
->SetSize( x
+dx
, y
+dy
, w
, h
);
1330 void wxWindow::MacOnScroll(wxScrollEvent
&event
)
1332 if ( event
.m_eventObject
== m_vScrollBar
|| event
.m_eventObject
== m_hScrollBar
)
1334 wxScrollWinEvent wevent
;
1335 wevent
.SetPosition(event
.GetPosition());
1336 wevent
.SetOrientation(event
.GetOrientation());
1337 wevent
.m_eventObject
= this;
1339 if (event
.m_eventType
== wxEVT_SCROLL_TOP
) {
1340 wevent
.m_eventType
= wxEVT_SCROLLWIN_TOP
;
1342 if (event
.m_eventType
== wxEVT_SCROLL_BOTTOM
) {
1343 wevent
.m_eventType
= wxEVT_SCROLLWIN_BOTTOM
;
1345 if (event
.m_eventType
== wxEVT_SCROLL_LINEUP
) {
1346 wevent
.m_eventType
= wxEVT_SCROLLWIN_LINEUP
;
1348 if (event
.m_eventType
== wxEVT_SCROLL_LINEDOWN
) {
1349 wevent
.m_eventType
= wxEVT_SCROLLWIN_LINEDOWN
;
1351 if (event
.m_eventType
== wxEVT_SCROLL_PAGEUP
) {
1352 wevent
.m_eventType
= wxEVT_SCROLLWIN_PAGEUP
;
1354 if (event
.m_eventType
== wxEVT_SCROLL_PAGEDOWN
) {
1355 wevent
.m_eventType
= wxEVT_SCROLLWIN_PAGEDOWN
;
1357 if (event
.m_eventType
== wxEVT_SCROLL_THUMBTRACK
) {
1358 wevent
.m_eventType
= wxEVT_SCROLLWIN_THUMBTRACK
;
1361 GetEventHandler()->ProcessEvent(wevent
);
1365 bool wxWindow::SetFont(const wxFont
& font
)
1367 if ( !wxWindowBase::SetFont(font
) )
1376 // Get the window with the focus
1377 wxWindow
*wxWindowBase::FindFocus()
1379 return gFocusWindow
;
1382 #if WXWIN_COMPATIBILITY
1383 // If nothing defined for this, try the parent.
1384 // E.g. we may be a button loaded from a resource, with no callback function
1386 void wxWindow::OnCommand(wxWindow
& win
, wxCommandEvent
& event
)
1388 if ( GetEventHandler()->ProcessEvent(event
) )
1391 m_parent
->GetEventHandler()->OnCommand(win
, event
);
1393 #endif // WXWIN_COMPATIBILITY_2
1395 #if WXWIN_COMPATIBILITY
1396 wxObject
* wxWindow::GetChild(int number
) const
1398 // Return a pointer to the Nth object in the Panel
1399 wxNode
*node
= GetChildren().First();
1402 node
= node
->Next();
1405 wxObject
*obj
= (wxObject
*)node
->Data();
1411 #endif // WXWIN_COMPATIBILITY
1413 void wxWindow::OnSetFocus(wxFocusEvent
& event
)
1415 // panel wants to track the window which was the last to have focus in it,
1416 // so we want to set ourselves as the window which last had focus
1418 // notice that it's also important to do it upwards the tree becaus
1419 // otherwise when the top level panel gets focus, it won't set it back to
1420 // us, but to some other sibling
1421 wxWindow
*win
= this;
1424 wxWindow
*parent
= win
->GetParent();
1425 wxPanel
*panel
= wxDynamicCast(parent
, wxPanel
);
1428 panel
->SetLastFocus(win
);
1437 void wxWindow::Clear()
1439 if ( m_macWindowData
)
1441 wxMacDrawingClientHelper
helper ( this ) ;
1443 wxPoint origin
= GetClientAreaOrigin() ;
1444 GetClientSize( &w
, &h
) ;
1445 UMASetThemeWindowBackground( m_macWindowData
->m_macWindow
, m_macWindowData
->m_macWindowBackgroundTheme
, false ) ;
1446 Rect r
= { origin
.y
, origin
.x
, origin
.y
+h
, origin
.x
+w
} ;
1451 wxClientDC
dc(this);
1452 wxBrush
brush(GetBackgroundColour(), wxSOLID
);
1453 dc
.SetBackground(brush
);
1458 // Setup background and foreground colours correctly
1459 void wxWindow::SetupColours()
1462 SetBackgroundColour(GetParent()->GetBackgroundColour());
1465 void wxWindow::OnIdle(wxIdleEvent
& event
)
1468 // Check if we need to send a LEAVE event
1469 if (m_mouseInWindow)
1472 ::GetCursorPos(&pt);
1473 if (::WindowFromPoint(pt) != (HWND) GetHWND())
1475 // Generate a LEAVE event
1476 m_mouseInWindow = FALSE;
1477 MSWOnMouseLeave(pt.x, pt.y, 0);
1482 // This calls the UI-update mechanism (querying windows for
1483 // menu/toolbar/control state information)
1487 // Raise the window to the top of the Z order
1488 void wxWindow::Raise()
1493 // Lower the window to the bottom of the Z order
1494 void wxWindow::Lower()
1499 void wxWindow::DoSetClientSize(int width
, int height
)
1501 if ( width
!= -1 || height
!= -1 )
1504 if ( width
!= -1 && m_vScrollBar
)
1505 width
+= MAC_SCROLLBAR_SIZE
;
1506 if ( height
!= -1 && m_vScrollBar
)
1507 height
+= MAC_SCROLLBAR_SIZE
;
1509 width
+= MacGetLeftBorderSize( ) + MacGetRightBorderSize( ) ;
1510 height
+= MacGetTopBorderSize( ) + MacGetBottomBorderSize( ) ;
1512 DoSetSize( -1 , -1 , width
, height
) ;
1517 wxWindow
* wxWindow::s_lastMouseWindow
= NULL
;
1519 bool wxWindow::MacGetWindowFromPointSub( const wxPoint
&point
, wxWindow
** outWin
)
1521 if ((point
.x
< m_x
) || (point
.y
< m_y
) ||
1522 (point
.x
> (m_x
+ m_width
)) || (point
.y
> (m_y
+ m_height
)))
1525 WindowRef window
= GetMacRootWindow() ;
1527 wxPoint
newPoint( point
) ;
1532 for (wxNode
*node
= GetChildren().First(); node
; node
= node
->Next())
1534 wxWindow
*child
= (wxWindow
*)node
->Data();
1535 // added the m_isShown test --dmazzoni
1536 if ( child
->GetMacRootWindow() == window
&& child
->m_isShown
)
1538 if (child
->MacGetWindowFromPointSub(newPoint
, outWin
))
1547 bool wxWindow::MacGetWindowFromPoint( const wxPoint
&screenpoint
, wxWindow
** outWin
)
1550 Point pt
= { screenpoint
.y
, screenpoint
.x
} ;
1551 if ( ::FindWindow( pt
, &window
) == 3 )
1553 wxPoint
point( screenpoint
) ;
1554 wxWindow
* win
= wxFindWinFromMacWindow( window
) ;
1557 win
->ScreenToClient( point
) ;
1558 return win
->MacGetWindowFromPointSub( point
, outWin
) ;
1564 extern int wxBusyCursorCount
;
1566 bool wxWindow::MacDispatchMouseEvent(wxMouseEvent
& event
)
1568 if ((event
.m_x
< m_x
) || (event
.m_y
< m_y
) ||
1569 (event
.m_x
> (m_x
+ m_width
)) || (event
.m_y
> (m_y
+ m_height
)))
1573 if ( IsKindOf( CLASSINFO ( wxStaticBox
) ) )
1576 WindowRef window
= GetMacRootWindow() ;
1584 for (wxNode
*node
= GetChildren().First(); node
; node
= node
->Next())
1586 wxWindow
*child
= (wxWindow
*)node
->Data();
1587 if ( child
->GetMacRootWindow() == window
&& child
->IsShown() && child
->IsEnabled() )
1589 if (child
->MacDispatchMouseEvent(event
))
1597 if ( wxBusyCursorCount
== 0 )
1599 m_cursor
.MacInstall() ;
1602 if ( event
.GetEventType() == wxEVT_LEFT_DOWN
)
1604 // set focus to this window
1605 if (AcceptsFocus() && FindFocus()!=this)
1610 if ( event
.GetEventType() == wxEVT_MOTION
1611 || event
.GetEventType() == wxEVT_ENTER_WINDOW
1612 || event
.GetEventType() == wxEVT_LEAVE_WINDOW
)
1613 wxToolTip::RelayEvent( this , event
);
1614 #endif // wxUSE_TOOLTIPS
1615 GetEventHandler()->ProcessEvent( event
) ;
1622 wxString
wxWindow::MacGetToolTipString( wxPoint
&pt
)
1626 return m_tooltip
->GetTip() ;
1630 void wxWindow::MacFireMouseEvent( EventRecord
*ev
)
1632 wxMouseEvent
event(wxEVT_LEFT_DOWN
);
1633 bool isDown
= !(ev
->modifiers
& btnState
) ; // 1 is for up
1634 bool controlDown
= ev
->modifiers
& controlKey
; // for simulating right mouse
1636 event
.m_leftDown
= isDown
&& !controlDown
;
1637 event
.m_middleDown
= FALSE
;
1638 event
.m_rightDown
= isDown
&& controlDown
;
1640 if ( ev
->what
== mouseDown
)
1643 event
.SetEventType(wxEVT_RIGHT_DOWN
) ;
1645 event
.SetEventType(wxEVT_LEFT_DOWN
) ;
1647 else if ( ev
->what
== mouseUp
)
1650 event
.SetEventType(wxEVT_RIGHT_UP
) ;
1652 event
.SetEventType(wxEVT_LEFT_UP
) ;
1656 event
.SetEventType(wxEVT_MOTION
) ;
1659 event
.m_shiftDown
= ev
->modifiers
& shiftKey
;
1660 event
.m_controlDown
= ev
->modifiers
& controlKey
;
1661 event
.m_altDown
= ev
->modifiers
& optionKey
;
1662 event
.m_metaDown
= ev
->modifiers
& cmdKey
;
1664 Point localwhere
= ev
->where
;
1667 ::GetPort( &port
) ;
1668 ::SetPort( UMAGetWindowPort( m_macWindowData
->m_macWindow
) ) ;
1669 ::GlobalToLocal( &localwhere
) ;
1672 if ( ev
->what
== mouseDown
)
1674 if ( ev
->when
- lastWhen
<= GetDblTime() )
1676 if ( abs( localwhere
.h
- lastWhere
.h
) < 3 || abs( localwhere
.v
- lastWhere
.v
) < 3 )
1679 event
.SetEventType(wxEVT_RIGHT_DCLICK
) ;
1681 event
.SetEventType(wxEVT_LEFT_DCLICK
) ;
1684 lastWhen
= ev
->when
;
1685 lastWhere
= localwhere
;
1688 event
.m_x
= localwhere
.h
;
1689 event
.m_y
= localwhere
.v
;
1694 wxPoint origin = GetClientAreaOrigin() ;
1696 event.m_x += origin.x ;
1697 event.m_y += origin.y ;
1700 event
.m_timeStamp
= ev
->when
;
1701 event
.SetEventObject(this);
1702 if ( wxTheApp
->s_captureWindow
)
1706 wxTheApp
->s_captureWindow
->ScreenToClient( &x
, &y
) ;
1709 wxTheApp
->s_captureWindow
->GetEventHandler()->ProcessEvent( event
) ;
1710 if ( ev
->what
== mouseUp
)
1712 wxTheApp
->s_captureWindow
= NULL
;
1713 if ( wxBusyCursorCount
== 0 )
1715 m_cursor
.MacInstall() ;
1721 MacDispatchMouseEvent( event
) ;
1725 void wxWindow::MacMouseDown( EventRecord
*ev
, short part
)
1727 MacFireMouseEvent( ev
) ;
1730 void wxWindow::MacMouseUp( EventRecord
*ev
, short part
)
1732 WindowPtr frontWindow
;
1737 MacFireMouseEvent( ev
) ;
1743 void wxWindow::MacMouseMoved( EventRecord
*ev
, short part
)
1745 WindowPtr frontWindow
;
1750 MacFireMouseEvent( ev
) ;
1755 void wxWindow::MacActivate( EventRecord
*ev
, bool inIsActivating
)
1757 wxActivateEvent
event(wxEVT_ACTIVATE
, inIsActivating
, m_windowId
);
1758 event
.m_timeStamp
= ev
->when
;
1759 event
.SetEventObject(this);
1761 GetEventHandler()->ProcessEvent(event
);
1763 UMAHighlightAndActivateWindow( m_macWindowData
->m_macWindow
, inIsActivating
) ;
1766 void wxWindow::MacRedraw( RgnHandle updatergn
, long time
)
1768 // updatergn is always already clipped to our boundaries
1769 WindowRef window
= GetMacRootWindow() ;
1770 wxWindow
* win
= wxFindWinFromMacWindow( window
) ;
1772 wxMacDrawingHelper
focus( this ) ; // was client
1775 WindowRef window
= GetMacRootWindow() ;
1776 bool eraseBackground
= false ;
1777 if ( m_macWindowData
)
1778 eraseBackground
= true ;
1779 if ( m_backgroundColour
== wxSystemSettings::GetSystemColour(wxSYS_COLOUR_APPWORKSPACE
) )
1781 UMASetThemeWindowBackground( window
, kThemeBrushDocumentWindowBackground
, false ) ;
1783 else if ( m_backgroundColour
== wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE
) )
1785 // on mac we have the difficult situation, that 3dface gray can be different colours, depending whether
1786 // it is on a notebook panel or not, in order to take care of that we walk up the hierarchy until we have
1787 // either a non gray background color or a non control window
1790 wxWindow
* parent
= GetParent() ;
1793 if ( parent
->GetMacRootWindow() != window
)
1795 // we are in a different window on the mac system
1800 if( parent
->IsKindOf( CLASSINFO( wxControl
) ) && ((wxControl
*)parent
)->GetMacControl() )
1802 if ( parent
->m_backgroundColour
!= wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE
) )
1804 // if we have any other colours in the hierarchy
1805 RGBBackColor( &parent
->m_backgroundColour
.GetPixel()) ;
1808 // if we have the normal colours in the hierarchy but another control etc. -> use it's background
1809 if ( parent
->IsKindOf( CLASSINFO( wxNotebook
) ) || parent
->IsKindOf( CLASSINFO( wxTabCtrl
) ))
1812 GetRegionBounds( updatergn
, &box
) ;
1813 UMAApplyThemeBackground(kThemeBackgroundTabPane
, &box
, kThemeStateActive
,8,true);
1822 parent
= parent
->GetParent() ;
1826 // if there is nothing special -> use default
1827 UMASetThemeWindowBackground( window
, kThemeBrushDialogBackgroundActive
, false ) ;
1832 RGBBackColor( &m_backgroundColour
.GetPixel()) ;
1834 if ( GetParent() && m_backgroundColour
!= GetParent()->GetBackgroundColour() )
1835 eraseBackground
= true ;
1836 SetClip( updatergn
) ;
1837 if ( eraseBackground
&& m_macEraseOnRedraw
)
1839 // todo : find a clever algorithm, which only will do this
1840 // if really necessary
1841 EraseRgn( updatergn
) ;
1845 m_macUpdateRgn
= updatergn
;
1847 RgnHandle newupdate
= NewRgn() ;
1848 wxSize point
= GetClientSize() ;
1849 wxPoint origin
= GetClientAreaOrigin() ;
1851 SetRectRgn( newupdate
, origin
.x
, origin
.y
, origin
.x
+ point
.x
, origin
.y
+point
.y
) ;
1852 SectRgn( newupdate
, m_macUpdateRgn
, newupdate
) ;
1853 OffsetRgn( newupdate
, -origin
.x
, -origin
.y
) ;
1854 m_updateRegion
= newupdate
;
1855 DisposeRgn( newupdate
) ;
1860 event
.m_timeStamp
= time
;
1861 event
.SetEventObject(this);
1862 GetEventHandler()->ProcessEvent(event
);
1866 RgnHandle childupdate
= NewRgn() ;
1868 for (wxNode
*node
= GetChildren().First(); node
; node
= node
->Next())
1870 wxWindow
*child
= (wxWindow
*)node
->Data();
1871 SetRectRgn( childupdate
, child
->m_x
, child
->m_y
, child
->m_x
+ child
->m_width
, child
->m_y
+ child
->m_height
) ;
1872 SectRgn( childupdate
, m_macUpdateRgn
, childupdate
) ;
1873 OffsetRgn( childupdate
, -child
->m_x
, -child
->m_y
) ;
1874 if ( child
->GetMacRootWindow() == window
&& child
->IsShown() && !EmptyRgn( childupdate
) )
1876 // because dialogs may also be children
1877 child
->MacRedraw( childupdate
, time
) ;
1880 DisposeRgn( childupdate
) ;
1881 // eventually a draw grow box here
1884 void wxWindow::MacUpdateImmediately()
1886 WindowRef window
= GetMacRootWindow() ;
1889 wxWindow
* win
= wxFindWinFromMacWindow( window
) ;
1891 AGAPortHelper
help( GetWindowPort(window
) ) ;
1893 AGAPortHelper
help( (window
) ) ;
1895 SetOrigin( 0 , 0 ) ;
1896 BeginUpdate( window
) ;
1899 RgnHandle region
= NewRgn();
1903 GetPortVisibleRegion( GetWindowPort( window
), region
);
1905 // if windowshade gives incompatibility , take the follwing out
1906 if ( !EmptyRgn( region
) )
1908 win
->MacRedraw( region
, wxTheApp
->sm_lastMessageTime
) ;
1910 DisposeRgn( region
);
1913 EndUpdate( window
) ;
1917 void wxWindow::MacUpdate( EventRecord
*ev
)
1919 WindowRef window
= (WindowRef
) ev
->message
;
1920 wxWindow
* win
= wxFindWinFromMacWindow( window
) ;
1922 AGAPortHelper
help( GetWindowPort(window
) ) ;
1924 AGAPortHelper
help( (window
) ) ;
1926 SetOrigin( 0 , 0 ) ;
1927 BeginUpdate( window
) ;
1930 RgnHandle region
= NewRgn();
1934 GetPortVisibleRegion( GetWindowPort( window
), region
);
1936 // if windowshade gives incompatibility , take the follwing out
1937 if ( !EmptyRgn( region
) )
1939 MacRedraw( region
, ev
->when
) ;
1941 DisposeRgn( region
);
1944 EndUpdate( window
) ;
1947 WindowRef
wxWindow::GetMacRootWindow() const
1949 WindowRef window
= NULL
;
1950 wxWindow
*iter
= (wxWindow
*)this ;
1954 if ( iter
->m_macWindowData
)
1955 return iter
->m_macWindowData
->m_macWindow
;
1957 iter
= iter
->GetParent() ;
1959 wxASSERT_MSG( 1 , "No valid mac root window" ) ;
1963 void wxWindow::MacCreateScrollBars( long style
)
1965 wxASSERT_MSG( m_vScrollBar
== NULL
&& m_hScrollBar
== NULL
, "attempt to create window twice" ) ;
1967 bool hasBoth
= ( style
& wxVSCROLL
) && ( style
& wxHSCROLL
) ;
1968 int adjust
= hasBoth
? MAC_SCROLLBAR_SIZE
- 1: 0 ;
1970 GetClientSize( &width
, &height
) ;
1972 wxPoint
vPoint(width
-MAC_SCROLLBAR_SIZE
, 0) ;
1973 wxSize
vSize(MAC_SCROLLBAR_SIZE
, height
- adjust
) ;
1974 wxPoint
hPoint(0 , height
-MAC_SCROLLBAR_SIZE
) ;
1975 wxSize
hSize( width
- adjust
, MAC_SCROLLBAR_SIZE
) ;
1977 m_vScrollBar
= new wxScrollBar(this, wxWINDOW_VSCROLL
, vPoint
,
1978 vSize
, wxVERTICAL
);
1980 if ( style
& wxVSCROLL
)
1986 m_vScrollBar
->Show(false) ;
1988 m_hScrollBar
= new wxScrollBar(this, wxWINDOW_HSCROLL
, hPoint
,
1989 hSize
, wxHORIZONTAL
);
1990 if ( style
& wxHSCROLL
)
1995 m_hScrollBar
->Show(false) ;
1998 // because the create does not take into account the client area origin
1999 MacRepositionScrollBars() ; // we might have a real position shift
2002 void wxWindow::MacRepositionScrollBars()
2004 bool hasBoth
= ( m_hScrollBar
&& m_hScrollBar
->IsShown()) && ( m_vScrollBar
&& m_vScrollBar
->IsShown()) ;
2005 int adjust
= hasBoth
? MAC_SCROLLBAR_SIZE
- 1 : 0 ;
2007 // get real client area
2009 int width
= m_width
;
2010 int height
= m_height
;
2012 width
-= MacGetLeftBorderSize() + MacGetRightBorderSize();
2013 height
-= MacGetTopBorderSize() + MacGetBottomBorderSize();
2015 wxPoint
vPoint(width
-MAC_SCROLLBAR_SIZE
, 0) ;
2016 wxSize
vSize(MAC_SCROLLBAR_SIZE
, height
- adjust
) ;
2017 wxPoint
hPoint(0 , height
-MAC_SCROLLBAR_SIZE
) ;
2018 wxSize
hSize( width
- adjust
, MAC_SCROLLBAR_SIZE
) ;
2025 MacClientToRootWindow( &x
, &y
) ;
2026 MacClientToRootWindow( &w
, &h
) ;
2028 WindowRef window
= NULL
;
2029 wxWindow
*iter
= (wxWindow
*)this ;
2031 int totW
= 10000 , totH
= 10000;
2034 if ( iter
->m_macWindowData
)
2036 totW
= iter
->m_width
;
2037 totH
= iter
->m_height
;
2041 iter
= iter
->GetParent() ;
2069 m_vScrollBar
->SetSize( vPoint
.x
, vPoint
.y
, vSize
.x
, vSize
.y
, wxSIZE_ALLOW_MINUS_ONE
);
2073 m_hScrollBar
->SetSize( hPoint
.x
, hPoint
.y
, hSize
.x
, hSize
.y
, wxSIZE_ALLOW_MINUS_ONE
);
2077 void wxWindow::MacKeyDown( EventRecord
*ev
)
2083 bool wxWindow::AcceptsFocus() const
2085 return MacCanFocus() && wxWindowBase::AcceptsFocus();
2088 ControlHandle
wxWindow::MacGetContainerForEmbedding()
2090 if ( m_macWindowData
)
2091 return m_macWindowData
->m_macRootControl
;
2093 return GetParent()->MacGetContainerForEmbedding() ;
2096 void wxWindow::MacSuperChangedPosition()
2098 // only window-absolute structures have to be moved i.e. controls
2100 wxNode
*node
= GetChildren().First();
2103 wxWindow
*child
= (wxWindow
*)node
->Data();
2104 child
->MacSuperChangedPosition() ;
2105 node
= node
->Next();
2109 bool wxWindow::MacSetPortFocusParams( const Point
& localOrigin
, const Rect
& clipRect
, WindowRef window
, wxWindow
* win
)
2111 if ( window
== NULL
)
2117 ::GetPort(&currPort
);
2118 port
= UMAGetWindowPort( window
) ;
2119 if (currPort
!= port
)
2122 // wxASSERT( port->portRect.left == 0 && port->portRect.top == 0 ) ;
2123 ::SetOrigin(-localOrigin
.h
, -localOrigin
.v
);
2127 bool wxWindow::MacSetPortDrawingParams( const Point
& localOrigin
, const Rect
& clipRect
, WindowRef window
, wxWindow
* win
)
2129 if ( window
== NULL
)
2134 ::GetPort(&currPort
);
2135 port
= UMAGetWindowPort( window
) ;
2136 if (currPort
!= port
)
2138 // wxASSERT( port->portRect.left == 0 && port->portRect.top == 0 ) ;
2139 ::SetOrigin(-localOrigin
.h
, -localOrigin
.v
);
2140 ::ClipRect(&clipRect
);
2143 ::RGBBackColor(& win
->GetBackgroundColour().GetPixel() ) ;
2144 ::RGBForeColor(& win
->GetForegroundColour().GetPixel() ) ;
2145 Pattern whiteColor
;
2147 ::BackPat( GetQDGlobalsWhite( &whiteColor
) ) ;
2148 ::UMASetThemeWindowBackground( win
->m_macWindowData
->m_macWindow
, win
->m_macWindowData
->m_macWindowBackgroundTheme
, false ) ;
2152 void wxWindow::MacGetPortParams(Point
* localOrigin
, Rect
* clipRect
, WindowRef
*window
, wxWindow
** rootwin
)
2154 if ( m_macWindowData
)
2160 clipRect
->right
= m_width
;
2161 clipRect
->bottom
= m_height
;
2162 *window
= m_macWindowData
->m_macWindow
;
2167 wxASSERT( GetParent() != NULL
) ;
2168 GetParent()->MacGetPortParams( localOrigin
, clipRect
, window
, rootwin
) ;
2169 localOrigin
->h
+= m_x
;
2170 localOrigin
->v
+= m_y
;
2171 OffsetRect(clipRect
, -m_x
, -m_y
);
2176 myClip
.right
= m_width
;
2177 myClip
.bottom
= m_height
;
2178 SectRect(clipRect
, &myClip
, clipRect
);
2182 void wxWindow::MacDoGetPortClientParams(Point
* localOrigin
, Rect
* clipRect
, WindowRef
*window
, wxWindow
** rootwin
)
2184 // int width , height ;
2185 // GetClientSize( &width , &height ) ;
2187 if ( m_macWindowData
)
2193 clipRect
->right
= m_width
;//width;
2194 clipRect
->bottom
= m_height
;// height;
2195 *window
= m_macWindowData
->m_macWindow
;
2200 wxASSERT( GetParent() != NULL
) ;
2202 GetParent()->MacDoGetPortClientParams( localOrigin
, clipRect
, window
, rootwin
) ;
2204 localOrigin
->h
+= m_x
;
2205 localOrigin
->v
+= m_y
;
2206 OffsetRect(clipRect
, -m_x
, -m_y
);
2211 myClip
.right
= m_width
;//width;
2212 myClip
.bottom
= m_height
;// height;
2213 SectRect(clipRect
, &myClip
, clipRect
);
2217 void wxWindow::MacGetPortClientParams(Point
* localOrigin
, Rect
* clipRect
, WindowRef
*window
, wxWindow
** rootwin
)
2219 MacDoGetPortClientParams( localOrigin
, clipRect
, window
, rootwin
) ;
2221 int width
, height
;
2222 GetClientSize( &width
, &height
) ;
2224 client
= GetClientAreaOrigin( ) ;
2226 localOrigin
->h
+= client
.x
;
2227 localOrigin
->v
+= client
.y
;
2228 OffsetRect(clipRect
, -client
.x
, -client
.y
);
2233 myClip
.right
= width
;
2234 myClip
.bottom
= height
;
2235 SectRect(clipRect
, &myClip
, clipRect
);
2238 long wxWindow::MacGetLeftBorderSize( ) const
2240 if( m_macWindowData
)
2243 if (m_windowStyle
& wxRAISED_BORDER
|| m_windowStyle
& wxSUNKEN_BORDER
)
2247 else if ( m_windowStyle
&wxDOUBLE_BORDER
)
2251 else if (m_windowStyle
&wxSIMPLE_BORDER
)
2258 long wxWindow::MacGetRightBorderSize( ) const
2260 if( m_macWindowData
)
2263 if (m_windowStyle
& wxRAISED_BORDER
|| m_windowStyle
& wxSUNKEN_BORDER
)
2267 else if ( m_windowStyle
&wxDOUBLE_BORDER
)
2271 else if (m_windowStyle
&wxSIMPLE_BORDER
)
2278 long wxWindow::MacGetTopBorderSize( ) const
2280 if( m_macWindowData
)
2283 if (m_windowStyle
& wxRAISED_BORDER
|| m_windowStyle
& wxSUNKEN_BORDER
)
2287 else if ( m_windowStyle
&wxDOUBLE_BORDER
)
2291 else if (m_windowStyle
&wxSIMPLE_BORDER
)
2298 long wxWindow::MacGetBottomBorderSize( ) const
2300 if( m_macWindowData
)
2303 if (m_windowStyle
& wxRAISED_BORDER
|| m_windowStyle
& wxSUNKEN_BORDER
)
2307 else if ( m_windowStyle
&wxDOUBLE_BORDER
)
2311 else if (m_windowStyle
&wxSIMPLE_BORDER
)
2318 long wxWindow::MacRemoveBordersFromStyle( long style
)
2320 return style
& ~( wxDOUBLE_BORDER
| wxSUNKEN_BORDER
| wxRAISED_BORDER
| wxBORDER
| wxSTATIC_BORDER
) ;
2324 wxMacDrawingHelper::wxMacDrawingHelper( wxWindow
* theWindow
)
2331 m_currentPort
= NULL
;
2333 GetPort( &m_formerPort
) ;
2336 theWindow
->MacGetPortParams( &localOrigin
, &clipRect
, &window
, &rootwin
) ;
2337 m_currentPort
= UMAGetWindowPort( window
) ;
2338 if ( m_formerPort
!= m_currentPort
)
2339 SetPort( m_currentPort
) ;
2340 GetPenState( &m_savedPenState
) ;
2341 theWindow
->MacSetPortDrawingParams( localOrigin
, clipRect
, window
, rootwin
) ;
2346 wxMacDrawingHelper::~wxMacDrawingHelper()
2350 SetPort( m_currentPort
) ;
2351 SetPenState( &m_savedPenState
) ;
2352 SetOrigin( 0 , 0 ) ;
2354 GetPortBounds( m_currentPort
, &portRect
) ;
2355 ClipRect( &portRect
) ;
2358 if ( m_formerPort
!= m_currentPort
)
2359 SetPort( m_formerPort
) ;
2362 wxMacDrawingClientHelper::wxMacDrawingClientHelper( wxWindow
* theWindow
)
2369 m_currentPort
= NULL
;
2371 GetPort( &m_formerPort
) ;
2375 theWindow
->MacGetPortClientParams( &localOrigin
, &clipRect
, &window
, &rootwin
) ;
2376 m_currentPort
= UMAGetWindowPort( window
) ;
2377 if ( m_formerPort
!= m_currentPort
)
2378 SetPort( m_currentPort
) ;
2379 GetPenState( &m_savedPenState
) ;
2380 theWindow
->MacSetPortDrawingParams( localOrigin
, clipRect
, window
, rootwin
) ;
2385 wxMacDrawingClientHelper::~wxMacDrawingClientHelper()
2389 SetPort( m_currentPort
) ;
2390 SetPenState( &m_savedPenState
) ;
2391 SetOrigin( 0 , 0 ) ;
2393 GetPortBounds( m_currentPort
, &portRect
) ;
2394 ClipRect( &portRect
) ;
2397 if ( m_formerPort
!= m_currentPort
)
2398 SetPort( m_formerPort
) ;
2401 // Find the wxWindow at the current mouse position, returning the mouse
2403 wxWindow
* wxFindWindowAtPointer(wxPoint
& pt
)
2405 pt
= wxGetMousePosition();
2406 wxWindow
* found
= wxFindWindowAtPoint(pt
);
2410 // Get the current mouse position.
2411 wxPoint
wxGetMousePosition()
2414 wxGetMousePosition(& x
, & y
);
2415 return wxPoint(x
, y
);