adding support for layout coordinates via insets from framecoordinates
[wxWidgets.git] / src / osx / window_osx.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/osx/carbon/window.cpp
3 // Purpose: wxWindowMac
4 // Author: Stefan Csomor
5 // Modified by:
6 // Created: 1998-01-01
7 // RCS-ID: $Id$
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #include "wx/wxprec.h"
13
14 #include "wx/window.h"
15
16 #ifndef WX_PRECOMP
17 #include "wx/log.h"
18 #include "wx/app.h"
19 #include "wx/utils.h"
20 #include "wx/panel.h"
21 #include "wx/frame.h"
22 #include "wx/dc.h"
23 #include "wx/dcclient.h"
24 #include "wx/button.h"
25 #include "wx/menu.h"
26 #include "wx/dialog.h"
27 #include "wx/settings.h"
28 #include "wx/msgdlg.h"
29 #include "wx/scrolbar.h"
30 #include "wx/statbox.h"
31 #include "wx/textctrl.h"
32 #include "wx/toolbar.h"
33 #include "wx/layout.h"
34 #include "wx/statusbr.h"
35 #include "wx/menuitem.h"
36 #include "wx/treectrl.h"
37 #include "wx/listctrl.h"
38 #endif
39
40 #include "wx/tooltip.h"
41 #include "wx/spinctrl.h"
42 #include "wx/geometry.h"
43
44 #if wxUSE_LISTCTRL
45 #include "wx/listctrl.h"
46 #endif
47
48 #if wxUSE_TREECTRL
49 #include "wx/treectrl.h"
50 #endif
51
52 #if wxUSE_CARET
53 #include "wx/caret.h"
54 #endif
55
56 #if wxUSE_POPUPWIN
57 #include "wx/popupwin.h"
58 #endif
59
60 #if wxUSE_DRAG_AND_DROP
61 #include "wx/dnd.h"
62 #endif
63
64 #include "wx/graphics.h"
65
66 #if wxOSX_USE_CARBON
67 #include "wx/osx/uma.h"
68 #else
69 #include "wx/osx/private.h"
70 #endif
71
72 #define MAC_SCROLLBAR_SIZE 15
73 #define MAC_SMALL_SCROLLBAR_SIZE 11
74
75 #include <string.h>
76
77 #ifdef __WXUNIVERSAL__
78 IMPLEMENT_ABSTRACT_CLASS(wxWindowMac, wxWindowBase)
79 #else
80 IMPLEMENT_DYNAMIC_CLASS(wxWindow, wxWindowBase)
81 #endif
82
83 BEGIN_EVENT_TABLE(wxWindowMac, wxWindowBase)
84 EVT_MOUSE_EVENTS(wxWindowMac::OnMouseEvent)
85 END_EVENT_TABLE()
86
87 #define wxMAC_DEBUG_REDRAW 0
88 #ifndef wxMAC_DEBUG_REDRAW
89 #define wxMAC_DEBUG_REDRAW 0
90 #endif
91
92 // ===========================================================================
93 // implementation
94 // ===========================================================================
95
96 // the grow box has to be implemented as an inactive window, so that nothing can direct
97 // the focus to it
98
99 class WXDLLIMPEXP_CORE wxBlindPlateWindow : public wxWindow
100 {
101 public:
102 wxBlindPlateWindow() { Init(); }
103
104 // Old-style constructor (no default values for coordinates to avoid
105 // ambiguity with the new one)
106 wxBlindPlateWindow(wxWindow *parent,
107 int x, int y, int width, int height,
108 long style = wxTAB_TRAVERSAL | wxNO_BORDER,
109 const wxString& name = wxPanelNameStr)
110 {
111 Init();
112
113 Create(parent, wxID_ANY, wxPoint(x, y), wxSize(width, height), style, name);
114 }
115
116 // Constructor
117 wxBlindPlateWindow(wxWindow *parent,
118 wxWindowID winid = wxID_ANY,
119 const wxPoint& pos = wxDefaultPosition,
120 const wxSize& size = wxDefaultSize,
121 long style = wxTAB_TRAVERSAL | wxNO_BORDER,
122 const wxString& name = wxPanelNameStr)
123 {
124 Init();
125
126 Create(parent, winid, pos, size, style, name);
127 }
128
129 // Pseudo ctor
130 bool Create(wxWindow *parent,
131 wxWindowID winid = wxID_ANY,
132 const wxPoint& pos = wxDefaultPosition,
133 const wxSize& size = wxDefaultSize,
134 long style = wxTAB_TRAVERSAL | wxNO_BORDER,
135 const wxString& name = wxPanelNameStr)
136 {
137 if ( !wxWindow::Create(parent, winid, pos, size, style, name) )
138 return false;
139
140 // so that non-solid background renders correctly under GTK+:
141 SetThemeEnabled(true);
142 return true;
143 }
144
145 virtual ~wxBlindPlateWindow();
146
147 virtual bool AcceptsFocus() const
148 {
149 return false;
150 }
151
152 protected:
153 // common part of all ctors
154 void Init()
155 {
156 }
157
158 DECLARE_DYNAMIC_CLASS_NO_COPY(wxBlindPlateWindow)
159 DECLARE_EVENT_TABLE()
160 };
161
162 wxBlindPlateWindow::~wxBlindPlateWindow()
163 {
164 }
165
166 IMPLEMENT_DYNAMIC_CLASS(wxBlindPlateWindow, wxWindow)
167
168 BEGIN_EVENT_TABLE(wxBlindPlateWindow, wxWindow)
169 END_EVENT_TABLE()
170
171
172 // ----------------------------------------------------------------------------
173 // constructors and such
174 // ----------------------------------------------------------------------------
175
176 wxWindowMac::wxWindowMac()
177 {
178 Init();
179 }
180
181 wxWindowMac::wxWindowMac(wxWindowMac *parent,
182 wxWindowID id,
183 const wxPoint& pos ,
184 const wxSize& size ,
185 long style ,
186 const wxString& name )
187 {
188 Init();
189 Create(parent, id, pos, size, style, name);
190 }
191
192 void wxWindowMac::Init()
193 {
194 m_peer = NULL ;
195 m_macAlpha = 255 ;
196 m_cgContextRef = NULL ;
197
198 // as all windows are created with WS_VISIBLE style...
199 m_isShown = true;
200
201 m_hScrollBar = NULL ;
202 m_vScrollBar = NULL ;
203 m_hScrollBarAlwaysShown = false;
204 m_vScrollBarAlwaysShown = false;
205 m_growBox = NULL ;
206
207 m_macIsUserPane = true;
208 m_clipChildren = false ;
209 m_cachedClippedRectValid = false ;
210 m_isNativeWindowWrapper = false;
211 }
212
213 wxWindowMac::~wxWindowMac()
214 {
215 SendDestroyEvent();
216
217 MacInvalidateBorders() ;
218
219 #ifndef __WXUNIVERSAL__
220 // VS: make sure there's no wxFrame with last focus set to us:
221 for ( wxWindow *win = GetParent(); win; win = win->GetParent() )
222 {
223 wxFrame *frame = wxDynamicCast(win, wxFrame);
224 if ( frame )
225 {
226 if ( frame->GetLastFocus() == this )
227 frame->SetLastFocus(NULL);
228 break;
229 }
230 }
231 #endif
232
233 // destroy children before destroying this window itself
234 DestroyChildren();
235
236 // wxRemoveMacControlAssociation( this ) ;
237 // If we delete an item, we should initialize the parent panel,
238 // because it could now be invalid.
239 wxTopLevelWindow *tlw = wxDynamicCast(wxGetTopLevelParent((wxWindow*)this), wxTopLevelWindow);
240 if ( tlw )
241 {
242 if ( tlw->GetDefaultItem() == (wxButton*) this)
243 tlw->SetDefaultItem(NULL);
244 }
245
246 if ( g_MacLastWindow == this )
247 g_MacLastWindow = NULL ;
248
249 #ifndef __WXUNIVERSAL__
250 wxFrame* frame = wxDynamicCast( wxGetTopLevelParent( (wxWindow*)this ) , wxFrame ) ;
251 if ( frame )
252 {
253 if ( frame->GetLastFocus() == this )
254 frame->SetLastFocus( NULL ) ;
255 }
256 #endif
257
258 // delete our drop target if we've got one
259 #if wxUSE_DRAG_AND_DROP
260 wxDELETE(m_dropTarget);
261 #endif
262
263 delete m_peer ;
264 }
265
266 WXWidget wxWindowMac::GetHandle() const
267 {
268 if ( m_peer )
269 return (WXWidget) m_peer->GetWXWidget() ;
270 return NULL;
271 }
272
273 // ---------------------------------------------------------------------------
274 // Utility Routines to move between different coordinate systems
275 // ---------------------------------------------------------------------------
276
277 /*
278 * Right now we have the following setup :
279 * a border that is not part of the native control is always outside the
280 * control's border (otherwise we loose all native intelligence, future ways
281 * may be to have a second embedding control responsible for drawing borders
282 * and backgrounds eventually)
283 * so all this border calculations have to be taken into account when calling
284 * native methods or getting native oriented data
285 * so we have three coordinate systems here
286 * wx client coordinates
287 * wx window coordinates (including window frames)
288 * native coordinates
289 */
290
291 //
292 //
293
294 // Constructor
295 bool wxWindowMac::Create(wxWindowMac *parent,
296 wxWindowID id,
297 const wxPoint& pos,
298 const wxSize& size,
299 long style,
300 const wxString& name)
301 {
302 wxCHECK_MSG( parent, false, wxT("can't create wxWindowMac without parent") );
303
304 if ( !CreateBase(parent, id, pos, size, style, wxDefaultValidator, name) )
305 return false;
306
307 m_windowVariant = parent->GetWindowVariant() ;
308
309 if ( m_macIsUserPane )
310 {
311 m_peer = wxWidgetImpl::CreateUserPane( this, parent, id, pos, size , style, GetExtraStyle() );
312 MacPostControlCreate(pos, size) ;
313 }
314
315 #ifndef __WXUNIVERSAL__
316 // Don't give scrollbars to wxControls unless they ask for them
317 if ( (! IsKindOf(CLASSINFO(wxControl))
318 #if wxUSE_STATUSBAR
319 && ! IsKindOf(CLASSINFO(wxStatusBar))
320 #endif
321 )
322 || (IsKindOf(CLASSINFO(wxControl)) && ((style & wxHSCROLL) || (style & wxVSCROLL))))
323 {
324 MacCreateScrollBars( style ) ;
325 }
326 #endif
327
328 wxWindowCreateEvent event((wxWindow*)this);
329 GetEventHandler()->AddPendingEvent(event);
330
331 return true;
332 }
333
334 void wxWindowMac::MacChildAdded()
335 {
336 #if wxUSE_SCROLLBAR
337 if ( m_vScrollBar )
338 m_vScrollBar->Raise() ;
339 if ( m_hScrollBar )
340 m_hScrollBar->Raise() ;
341 if ( m_growBox )
342 m_growBox->Raise() ;
343 #endif
344 }
345
346 void wxWindowMac::MacPostControlCreate(const wxPoint& WXUNUSED(pos), const wxSize& size)
347 {
348 wxASSERT_MSG( m_peer != NULL && m_peer->IsOk() , wxT("No valid mac control") ) ;
349
350 GetParent()->AddChild( this );
351
352 m_peer->InstallEventHandler();
353 m_peer->Embed(GetParent()->GetPeer());
354
355 GetParent()->MacChildAdded() ;
356
357 // adjust font, controlsize etc
358 DoSetWindowVariant( m_windowVariant ) ;
359
360 m_peer->SetLabel( wxStripMenuCodes(m_label, wxStrip_Mnemonics), GetFont().GetEncoding() ) ;
361
362 // for controls we want to use best size for wxDefaultSize params )
363 if ( !m_macIsUserPane )
364 SetInitialSize(size);
365
366 SetCursor( *wxSTANDARD_CURSOR ) ;
367 }
368
369 void wxWindowMac::DoSetWindowVariant( wxWindowVariant variant )
370 {
371 // Don't assert, in case we set the window variant before
372 // the window is created
373 // wxASSERT( m_peer->Ok() ) ;
374
375 m_windowVariant = variant ;
376
377 if (m_peer == NULL || !m_peer->IsOk())
378 return;
379
380 m_peer->SetControlSize( variant );
381 #if wxOSX_USE_CARBON
382 ControlSize size ;
383
384 // we will get that from the settings later
385 // and make this NORMAL later, but first
386 // we have a few calculations that we must fix
387
388 switch ( variant )
389 {
390 case wxWINDOW_VARIANT_NORMAL :
391 size = kControlSizeNormal;
392 break ;
393
394 case wxWINDOW_VARIANT_SMALL :
395 size = kControlSizeSmall;
396 break ;
397
398 case wxWINDOW_VARIANT_MINI :
399 // not always defined in the headers
400 size = 3 ;
401 break ;
402
403 case wxWINDOW_VARIANT_LARGE :
404 size = kControlSizeLarge;
405 break ;
406
407 default:
408 wxFAIL_MSG(wxT("unexpected window variant"));
409 break ;
410 }
411 m_peer->SetData<ControlSize>(kControlEntireControl, kControlSizeTag, &size ) ;
412 #endif
413
414
415 switch ( variant )
416 {
417 case wxWINDOW_VARIANT_NORMAL :
418 static wxFont sysNormal(wxOSX_SYSTEM_FONT_NORMAL);
419 SetFont(sysNormal) ;
420 break ;
421
422 case wxWINDOW_VARIANT_SMALL :
423 static wxFont sysSmall(wxOSX_SYSTEM_FONT_SMALL);
424 SetFont(sysSmall) ;
425 break ;
426
427 case wxWINDOW_VARIANT_MINI :
428 static wxFont sysMini(wxOSX_SYSTEM_FONT_MINI);
429 SetFont(sysMini) ;
430 break ;
431
432 case wxWINDOW_VARIANT_LARGE :
433 static wxFont sysLarge(wxOSX_SYSTEM_FONT_NORMAL);
434 SetFont(sysLarge) ;
435 break ;
436
437 default:
438 wxFAIL_MSG(wxT("unexpected window variant"));
439 break ;
440 }
441 }
442
443 void wxWindowMac::MacUpdateControlFont()
444 {
445 if ( m_peer )
446 m_peer->SetFont( GetFont() , GetForegroundColour() , GetWindowStyle() ) ;
447
448 // do not trigger refreshes upon invisible and possible partly created objects
449 if ( IsShownOnScreen() )
450 Refresh() ;
451 }
452
453 bool wxWindowMac::SetFont(const wxFont& font)
454 {
455 bool retval = wxWindowBase::SetFont( font );
456
457 MacUpdateControlFont() ;
458
459 return retval;
460 }
461
462 bool wxWindowMac::SetForegroundColour(const wxColour& col )
463 {
464 bool retval = wxWindowBase::SetForegroundColour( col );
465
466 if (retval)
467 MacUpdateControlFont();
468
469 return retval;
470 }
471
472 bool wxWindowMac::SetBackgroundStyle(wxBackgroundStyle style)
473 {
474 if ( !wxWindowBase::SetBackgroundStyle(style) )
475 return false;
476
477 if ( m_peer )
478 m_peer->SetBackgroundStyle(style);
479 return true;
480 }
481
482 bool wxWindowMac::SetBackgroundColour(const wxColour& col )
483 {
484 if (m_growBox)
485 {
486 if ( m_backgroundColour.Ok() )
487 m_growBox->SetBackgroundColour(m_backgroundColour);
488 else
489 m_growBox->SetBackgroundColour(*wxWHITE);
490 }
491
492 if ( !wxWindowBase::SetBackgroundColour(col) && m_hasBgCol )
493 return false ;
494
495 if ( m_peer )
496 m_peer->SetBackgroundColour( col ) ;
497
498 return true ;
499 }
500
501 static bool wxIsWindowOrParentDisabled(wxWindow* w)
502 {
503 while (w && !w->IsTopLevel())
504 {
505 if (!w->IsEnabled())
506 return true;
507 w = w->GetParent();
508 }
509 return false;
510 }
511
512 void wxWindowMac::SetFocus()
513 {
514 if ( !AcceptsFocus() )
515 return ;
516
517 if (wxIsWindowOrParentDisabled((wxWindow*) this))
518 return;
519
520 wxWindow* former = FindFocus() ;
521 if ( former == this )
522 return ;
523
524 m_peer->SetFocus() ;
525 }
526
527 void wxWindowMac::DoCaptureMouse()
528 {
529 wxApp::s_captureWindow = (wxWindow*) this ;
530 m_peer->CaptureMouse() ;
531 }
532
533 wxWindow * wxWindowBase::GetCapture()
534 {
535 return wxApp::s_captureWindow ;
536 }
537
538 void wxWindowMac::DoReleaseMouse()
539 {
540 wxApp::s_captureWindow = NULL ;
541
542 m_peer->ReleaseMouse() ;
543 }
544
545 #if wxUSE_DRAG_AND_DROP
546
547 void wxWindowMac::SetDropTarget(wxDropTarget *pDropTarget)
548 {
549 delete m_dropTarget;
550
551 m_dropTarget = pDropTarget;
552 if ( m_dropTarget != NULL )
553 {
554 // TODO:
555 }
556 }
557
558 #endif
559
560 // Old-style File Manager Drag & Drop
561 void wxWindowMac::DragAcceptFiles(bool WXUNUSED(accept))
562 {
563 // TODO:
564 }
565
566 // From a wx position / size calculate the appropriate size of the native control
567
568 bool wxWindowMac::MacGetBoundsForControl(
569 const wxPoint& pos,
570 const wxSize& size,
571 int& x, int& y,
572 int& w, int& h , bool adjustOrigin ) const
573 {
574 // the desired size, minus the border pixels gives the correct size of the control
575 x = (int)pos.x;
576 y = (int)pos.y;
577
578 w = WidthDefault( size.x );
579 h = HeightDefault( size.y );
580
581 x += MacGetLeftBorderSize() ;
582 y += MacGetTopBorderSize() ;
583 w -= MacGetLeftBorderSize() + MacGetRightBorderSize() ;
584 h -= MacGetTopBorderSize() + MacGetBottomBorderSize() ;
585
586 if ( adjustOrigin )
587 AdjustForParentClientOrigin( x , y ) ;
588
589 // this is in window relative coordinate, as this parent may have a border, its physical position is offset by this border
590 if ( GetParent() && !GetParent()->IsTopLevel() )
591 {
592 x -= GetParent()->MacGetLeftBorderSize() ;
593 y -= GetParent()->MacGetTopBorderSize() ;
594 }
595
596 return true ;
597 }
598
599 // Get window size (not client size)
600 void wxWindowMac::DoGetSize(int *x, int *y) const
601 {
602 int width, height;
603 m_peer->GetSize( width, height );
604
605 if (x)
606 *x = width + MacGetLeftBorderSize() + MacGetRightBorderSize() ;
607 if (y)
608 *y = height + MacGetTopBorderSize() + MacGetBottomBorderSize() ;
609 }
610
611 // get the position of the bounds of this window in client coordinates of its parent
612 void wxWindowMac::DoGetPosition(int *x, int *y) const
613 {
614 int x1, y1;
615
616 m_peer->GetPosition( x1, y1 ) ;
617
618 // get the wx window position from the native one
619 x1 -= MacGetLeftBorderSize() ;
620 y1 -= MacGetTopBorderSize() ;
621
622 if ( !IsTopLevel() )
623 {
624 wxWindow *parent = GetParent();
625 if ( parent )
626 {
627 // we must first adjust it to be in window coordinates of the parent,
628 // as otherwise it gets lost by the ClientAreaOrigin fix
629 x1 += parent->MacGetLeftBorderSize() ;
630 y1 += parent->MacGetTopBorderSize() ;
631
632 // and now to client coordinates
633 wxPoint pt(parent->GetClientAreaOrigin());
634 x1 -= pt.x ;
635 y1 -= pt.y ;
636 }
637 }
638
639 if (x)
640 *x = x1 ;
641 if (y)
642 *y = y1 ;
643 }
644
645 void wxWindowMac::DoScreenToClient(int *x, int *y) const
646 {
647 wxNonOwnedWindow* tlw = MacGetTopLevelWindow() ;
648 wxCHECK_RET( tlw , wxT("TopLevel Window missing") ) ;
649 tlw->GetNonOwnedPeer()->ScreenToWindow( x, y);
650 MacRootWindowToWindow( x , y ) ;
651
652 wxPoint origin = GetClientAreaOrigin() ;
653 if (x)
654 *x -= origin.x ;
655 if (y)
656 *y -= origin.y ;
657 }
658
659 void wxWindowMac::DoClientToScreen(int *x, int *y) const
660 {
661 wxNonOwnedWindow* tlw = MacGetTopLevelWindow() ;
662 wxCHECK_RET( tlw , wxT("TopLevel window missing") ) ;
663
664 wxPoint origin = GetClientAreaOrigin() ;
665 if (x)
666 *x += origin.x ;
667 if (y)
668 *y += origin.y ;
669
670 MacWindowToRootWindow( x , y ) ;
671 tlw->GetNonOwnedPeer()->WindowToScreen( x , y );
672 }
673
674 void wxWindowMac::MacClientToRootWindow( int *x , int *y ) const
675 {
676 wxPoint origin = GetClientAreaOrigin() ;
677 if (x)
678 *x += origin.x ;
679 if (y)
680 *y += origin.y ;
681
682 MacWindowToRootWindow( x , y ) ;
683 }
684
685 void wxWindowMac::MacWindowToRootWindow( int *x , int *y ) const
686 {
687 wxPoint pt ;
688
689 if (x)
690 pt.x = *x ;
691 if (y)
692 pt.y = *y ;
693
694 if ( !IsTopLevel() )
695 {
696 wxNonOwnedWindow* top = MacGetTopLevelWindow();
697 if (top)
698 {
699 pt.x -= MacGetLeftBorderSize() ;
700 pt.y -= MacGetTopBorderSize() ;
701 wxWidgetImpl::Convert( &pt , m_peer , top->m_peer ) ;
702 }
703 }
704
705 if (x)
706 *x = (int) pt.x ;
707 if (y)
708 *y = (int) pt.y ;
709 }
710
711 void wxWindowMac::MacRootWindowToWindow( int *x , int *y ) const
712 {
713 wxPoint pt ;
714
715 if (x)
716 pt.x = *x ;
717 if (y)
718 pt.y = *y ;
719
720 if ( !IsTopLevel() )
721 {
722 wxNonOwnedWindow* top = MacGetTopLevelWindow();
723 if (top)
724 {
725 wxWidgetImpl::Convert( &pt , top->m_peer , m_peer ) ;
726 pt.x += MacGetLeftBorderSize() ;
727 pt.y += MacGetTopBorderSize() ;
728 }
729 }
730
731 if (x)
732 *x = (int) pt.x ;
733 if (y)
734 *y = (int) pt.y ;
735 }
736
737 wxSize wxWindowMac::DoGetSizeFromClientSize( const wxSize & size ) const
738 {
739 wxSize sizeTotal = size;
740
741 int innerwidth, innerheight;
742 int left, top;
743 int outerwidth, outerheight;
744
745 m_peer->GetContentArea( left, top, innerwidth, innerheight );
746 m_peer->GetSize( outerwidth, outerheight );
747
748 sizeTotal.x += outerwidth-innerwidth;
749 sizeTotal.y += outerheight-innerheight;
750
751 sizeTotal.x += MacGetLeftBorderSize() + MacGetRightBorderSize() ;
752 sizeTotal.y += MacGetTopBorderSize() + MacGetBottomBorderSize() ;
753
754 return sizeTotal;
755 }
756
757 // Get size *available for subwindows* i.e. excluding menu bar etc.
758 void wxWindowMac::DoGetClientSize( int *x, int *y ) const
759 {
760 int ww, hh;
761
762 int left, top;
763
764 m_peer->GetContentArea( left, top, ww, hh );
765 #if wxUSE_SCROLLBAR
766 if (m_hScrollBar && m_hScrollBar->IsShown() )
767 hh -= m_hScrollBar->GetSize().y ;
768
769 if (m_vScrollBar && m_vScrollBar->IsShown() )
770 ww -= m_vScrollBar->GetSize().x ;
771
772 #endif
773 if (x)
774 *x = ww;
775 if (y)
776 *y = hh;
777 }
778
779 bool wxWindowMac::SetCursor(const wxCursor& cursor)
780 {
781 if (m_cursor.IsSameAs(cursor))
782 return false;
783
784 if (!cursor.IsOk())
785 {
786 if ( ! wxWindowBase::SetCursor( *wxSTANDARD_CURSOR ) )
787 return false ;
788 }
789 else
790 {
791 if ( ! wxWindowBase::SetCursor( cursor ) )
792 return false ;
793 }
794
795 wxASSERT_MSG( m_cursor.Ok(),
796 wxT("cursor must be valid after call to the base version"));
797
798 if ( GetPeer() != NULL )
799 GetPeer()->SetCursor( m_cursor );
800
801 return true ;
802 }
803
804 #if wxUSE_MENUS
805 bool wxWindowMac::DoPopupMenu(wxMenu *menu, int x, int y)
806 {
807 #ifndef __WXUNIVERSAL__
808 menu->UpdateUI();
809
810 if ( x == wxDefaultCoord && y == wxDefaultCoord )
811 {
812 wxPoint mouse = wxGetMousePosition();
813 x = mouse.x;
814 y = mouse.y;
815 }
816 else
817 {
818 ClientToScreen( &x , &y ) ;
819 }
820 menu->GetPeer()->PopUp(this, x, y);
821 return true;
822 #else
823 // actually this shouldn't be called, because universal is having its own implementation
824 return false;
825 #endif
826 }
827 #endif
828
829 // ----------------------------------------------------------------------------
830 // tooltips
831 // ----------------------------------------------------------------------------
832
833 #if wxUSE_TOOLTIPS
834
835 void wxWindowMac::DoSetToolTip(wxToolTip *tooltip)
836 {
837 wxWindowBase::DoSetToolTip(tooltip);
838
839 if ( m_tooltip )
840 m_tooltip->SetWindow(this);
841
842 if (m_peer)
843 m_peer->SetToolTip(tooltip);
844 }
845
846 #endif
847
848 void wxWindowMac::MacInvalidateBorders()
849 {
850 if ( m_peer == NULL )
851 return ;
852
853 bool vis = IsShownOnScreen() ;
854 if ( !vis )
855 return ;
856
857 int outerBorder = MacGetLeftBorderSize() ;
858
859 if ( m_peer->NeedsFocusRect() )
860 outerBorder += 4 ;
861
862 if ( outerBorder == 0 )
863 return ;
864
865 // now we know that we have something to do at all
866
867 int tx,ty,tw,th;
868
869 m_peer->GetSize( tw, th );
870 m_peer->GetPosition( tx, ty );
871
872 wxRect leftupdate( tx-outerBorder,ty,outerBorder,th );
873 wxRect rightupdate( tx+tw, ty, outerBorder, th );
874 wxRect topupdate( tx-outerBorder, ty-outerBorder, tw + 2 * outerBorder, outerBorder );
875 wxRect bottomupdate( tx-outerBorder, ty + th, tw + 2 * outerBorder, outerBorder );
876
877 if (GetParent()) {
878 GetParent()->m_peer->SetNeedsDisplay(&leftupdate);
879 GetParent()->m_peer->SetNeedsDisplay(&rightupdate);
880 GetParent()->m_peer->SetNeedsDisplay(&topupdate);
881 GetParent()->m_peer->SetNeedsDisplay(&bottomupdate);
882 }
883 }
884
885 void wxWindowMac::DoMoveWindow(int x, int y, int width, int height)
886 {
887 // this is never called for a toplevel window, so we know we have a parent
888 int former_x , former_y , former_w, former_h ;
889
890 // Get true coordinates of former position
891 DoGetPosition( &former_x , &former_y ) ;
892 DoGetSize( &former_w , &former_h ) ;
893
894 wxWindow *parent = GetParent();
895 if ( parent )
896 {
897 wxPoint pt(parent->GetClientAreaOrigin());
898 former_x += pt.x ;
899 former_y += pt.y ;
900 }
901
902 int actualWidth = width ;
903 int actualHeight = height ;
904 int actualX = x;
905 int actualY = y;
906
907 #if 0
908 // min and max sizes are only for sizers, not for explicit size setting
909 if ((m_minWidth != -1) && (actualWidth < m_minWidth))
910 actualWidth = m_minWidth;
911 if ((m_minHeight != -1) && (actualHeight < m_minHeight))
912 actualHeight = m_minHeight;
913 if ((m_maxWidth != -1) && (actualWidth > m_maxWidth))
914 actualWidth = m_maxWidth;
915 if ((m_maxHeight != -1) && (actualHeight > m_maxHeight))
916 actualHeight = m_maxHeight;
917 #endif
918
919 bool doMove = false, doResize = false ;
920
921 if ( actualX != former_x || actualY != former_y )
922 doMove = true ;
923
924 if ( actualWidth != former_w || actualHeight != former_h )
925 doResize = true ;
926
927 if ( doMove || doResize )
928 {
929 // as the borders are drawn outside the native control, we adjust now
930
931 wxRect bounds( wxPoint( actualX + MacGetLeftBorderSize() ,actualY + MacGetTopBorderSize() ),
932 wxSize( actualWidth - (MacGetLeftBorderSize() + MacGetRightBorderSize()) ,
933 actualHeight - (MacGetTopBorderSize() + MacGetBottomBorderSize()) ) ) ;
934
935 if ( parent && !parent->IsTopLevel() )
936 {
937 bounds.Offset( -parent->MacGetLeftBorderSize(), -parent->MacGetTopBorderSize() );
938 }
939
940 MacInvalidateBorders() ;
941
942 m_cachedClippedRectValid = false ;
943
944 m_peer->Move( bounds.x, bounds.y, bounds.width, bounds.height);
945
946 wxWindowMac::MacSuperChangedPosition() ; // like this only children will be notified
947
948 MacInvalidateBorders() ;
949
950 MacRepositionScrollBars() ;
951 if ( doMove )
952 {
953 wxPoint point(actualX, actualY);
954 wxMoveEvent event(point, m_windowId);
955 event.SetEventObject(this);
956 HandleWindowEvent(event) ;
957 }
958
959 if ( doResize )
960 {
961 MacRepositionScrollBars() ;
962 wxSize size(actualWidth, actualHeight);
963 wxSizeEvent event(size, m_windowId);
964 event.SetEventObject(this);
965 HandleWindowEvent(event);
966 }
967 }
968 }
969
970 wxSize wxWindowMac::DoGetBestSize() const
971 {
972 if ( m_macIsUserPane || IsTopLevel() )
973 {
974 return wxWindowBase::DoGetBestSize() ;
975 }
976 else
977 {
978 wxRect r ;
979
980 m_peer->GetBestRect(&r);
981
982 if ( r.GetWidth() == 0 && r.GetHeight() == 0 )
983 {
984 r.x =
985 r.y = 0 ;
986 r.width =
987 r.height = 16 ;
988
989 #if wxUSE_SCROLLBAR
990 if ( IsKindOf( CLASSINFO( wxScrollBar ) ) )
991 {
992 r.height = 16 ;
993 }
994 else
995 #endif
996 #if wxUSE_SPINBTN
997 if ( IsKindOf( CLASSINFO( wxSpinButton ) ) )
998 {
999 r.height = 24 ;
1000 }
1001 else
1002 #endif
1003 {
1004 // return wxWindowBase::DoGetBestSize() ;
1005 }
1006 }
1007
1008 int bestWidth = r.width + MacGetLeftBorderSize() +
1009 MacGetRightBorderSize();
1010 int bestHeight = r.height + MacGetTopBorderSize() +
1011 MacGetBottomBorderSize();
1012 if ( bestHeight < 10 )
1013 bestHeight = 13 ;
1014
1015 return wxSize(bestWidth, bestHeight);
1016 }
1017 }
1018
1019 // set the size of the window: if the dimensions are positive, just use them,
1020 // but if any of them is equal to -1, it means that we must find the value for
1021 // it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in
1022 // which case -1 is a valid value for x and y)
1023 //
1024 // If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate
1025 // the width/height to best suit our contents, otherwise we reuse the current
1026 // width/height
1027 void wxWindowMac::DoSetSize(int x, int y, int width, int height, int sizeFlags)
1028 {
1029 // get the current size and position...
1030 int currentX, currentY;
1031 int currentW, currentH;
1032
1033 GetPosition(&currentX, &currentY);
1034 GetSize(&currentW, &currentH);
1035
1036 // ... and don't do anything (avoiding flicker) if it's already ok
1037 if ( x == currentX && y == currentY &&
1038 width == currentW && height == currentH && ( height != -1 && width != -1 ) )
1039 {
1040 // TODO: REMOVE
1041 MacRepositionScrollBars() ; // we might have a real position shift
1042
1043 if (sizeFlags & wxSIZE_FORCE_EVENT)
1044 {
1045 wxSizeEvent event( wxSize(width,height), GetId() );
1046 event.SetEventObject( this );
1047 HandleWindowEvent( event );
1048 }
1049
1050 return;
1051 }
1052
1053 if ( !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE) )
1054 {
1055 if ( x == wxDefaultCoord )
1056 x = currentX;
1057 if ( y == wxDefaultCoord )
1058 y = currentY;
1059 }
1060
1061 AdjustForParentClientOrigin( x, y, sizeFlags );
1062
1063 wxSize size = wxDefaultSize;
1064 if ( width == wxDefaultCoord )
1065 {
1066 if ( sizeFlags & wxSIZE_AUTO_WIDTH )
1067 {
1068 size = DoGetBestSize();
1069 width = size.x;
1070 }
1071 else
1072 {
1073 // just take the current one
1074 width = currentW;
1075 }
1076 }
1077
1078 if ( height == wxDefaultCoord )
1079 {
1080 if ( sizeFlags & wxSIZE_AUTO_HEIGHT )
1081 {
1082 if ( size.x == wxDefaultCoord )
1083 size = DoGetBestSize();
1084 // else: already called DoGetBestSize() above
1085
1086 height = size.y;
1087 }
1088 else
1089 {
1090 // just take the current one
1091 height = currentH;
1092 }
1093 }
1094
1095 DoMoveWindow( x, y, width, height );
1096 }
1097
1098 wxPoint wxWindowMac::GetClientAreaOrigin() const
1099 {
1100 int left,top,width,height;
1101 m_peer->GetContentArea( left , top , width , height);
1102 return wxPoint( left + MacGetLeftBorderSize() , top + MacGetTopBorderSize() );
1103 }
1104
1105 void wxWindowMac::DoSetClientSize(int clientwidth, int clientheight)
1106 {
1107 if ( clientwidth != wxDefaultCoord || clientheight != wxDefaultCoord )
1108 {
1109 int currentclientwidth , currentclientheight ;
1110 int currentwidth , currentheight ;
1111
1112 GetClientSize( &currentclientwidth , &currentclientheight ) ;
1113 GetSize( &currentwidth , &currentheight ) ;
1114
1115 DoSetSize( wxDefaultCoord , wxDefaultCoord , currentwidth + clientwidth - currentclientwidth ,
1116 currentheight + clientheight - currentclientheight , wxSIZE_USE_EXISTING ) ;
1117 }
1118 }
1119
1120 void wxWindowMac::SetLabel(const wxString& title)
1121 {
1122 if ( title == m_label )
1123 return;
1124
1125 m_label = title ;
1126
1127 InvalidateBestSize();
1128
1129 if ( m_peer && m_peer->IsOk() )
1130 m_peer->SetLabel( wxStripMenuCodes(m_label, wxStrip_Mnemonics), GetFont().GetEncoding() ) ;
1131
1132 // do not trigger refreshes upon invisible and possible partly created objects
1133 if ( IsShownOnScreen() )
1134 Refresh() ;
1135 }
1136
1137 wxString wxWindowMac::GetLabel() const
1138 {
1139 return m_label ;
1140 }
1141
1142 bool wxWindowMac::Show(bool show)
1143 {
1144 if ( !wxWindowBase::Show(show) )
1145 return false;
1146
1147 if ( m_peer )
1148 m_peer->SetVisibility( show ) ;
1149
1150 #ifdef __WXOSX_IPHONE__
1151 // only when there's no native event support
1152 if ( !IsTopLevel() )
1153 #endif
1154 {
1155 wxShowEvent eventShow(GetId(), show);
1156 eventShow.SetEventObject(this);
1157
1158 HandleWindowEvent(eventShow);
1159 }
1160
1161 return true;
1162 }
1163
1164 bool wxWindowMac::OSXShowWithEffect(bool show,
1165 wxShowEffect effect,
1166 unsigned timeout)
1167 {
1168 if ( effect == wxSHOW_EFFECT_NONE ||
1169 !m_peer || !m_peer->ShowWithEffect(show, effect, timeout) )
1170 return Show(show);
1171
1172 return true;
1173 }
1174
1175 void wxWindowMac::DoEnable(bool enable)
1176 {
1177 m_peer->Enable( enable ) ;
1178 MacInvalidateBorders();
1179 }
1180
1181 //
1182 // status change notifications
1183 //
1184
1185 void wxWindowMac::MacVisibilityChanged()
1186 {
1187 }
1188
1189 void wxWindowMac::MacHiliteChanged()
1190 {
1191 }
1192
1193 void wxWindowMac::MacEnabledStateChanged()
1194 {
1195 OnEnabled( m_peer->IsEnabled() );
1196 }
1197
1198 //
1199 // status queries on the inherited window's state
1200 //
1201
1202 bool wxWindowMac::MacIsReallyEnabled()
1203 {
1204 return m_peer->IsEnabled() ;
1205 }
1206
1207 bool wxWindowMac::MacIsReallyHilited()
1208 {
1209 #if wxOSX_USE_CARBON
1210 return m_peer->IsActive();
1211 #else
1212 return true; // TODO
1213 #endif
1214 }
1215
1216 int wxWindowMac::GetCharHeight() const
1217 {
1218 wxCoord height;
1219 GetTextExtent( wxT("g") , NULL , &height , NULL , NULL , NULL );
1220
1221 return height;
1222 }
1223
1224 int wxWindowMac::GetCharWidth() const
1225 {
1226 wxCoord width;
1227 GetTextExtent( wxT("g") , &width , NULL , NULL , NULL , NULL );
1228
1229 return width;
1230 }
1231
1232 void wxWindowMac::DoGetTextExtent(const wxString& str,
1233 int *x, int *y,
1234 int *descent,
1235 int *externalLeading,
1236 const wxFont *theFont) const
1237 {
1238 const wxFont *fontToUse = theFont;
1239 wxFont tempFont;
1240 if ( !fontToUse )
1241 {
1242 tempFont = GetFont();
1243 fontToUse = &tempFont;
1244 }
1245
1246 wxGraphicsContext* ctx = wxGraphicsContext::Create();
1247 ctx->SetFont( *fontToUse, *wxBLACK );
1248
1249 wxDouble h , d , e , w;
1250 ctx->GetTextExtent( str, &w, &h, &d, &e );
1251
1252 delete ctx;
1253
1254 if ( externalLeading )
1255 *externalLeading = (wxCoord)(e+0.5);
1256 if ( descent )
1257 *descent = (wxCoord)(d+0.5);
1258 if ( x )
1259 *x = (wxCoord)(w+0.5);
1260 if ( y )
1261 *y = (wxCoord)(h+0.5);
1262 }
1263
1264 /*
1265 * Rect is given in client coordinates, for further reading, read wxTopLevelWindowMac::InvalidateRect
1266 * we always intersect with the entire window, not only with the client area
1267 */
1268
1269 void wxWindowMac::Refresh(bool WXUNUSED(eraseBack), const wxRect *rect)
1270 {
1271 if ( m_peer == NULL )
1272 return ;
1273
1274 if ( !IsShownOnScreen() )
1275 return ;
1276
1277 m_peer->SetNeedsDisplay( rect ) ;
1278 }
1279
1280 void wxWindowMac::DoFreeze()
1281 {
1282 #if wxOSX_USE_CARBON
1283 if ( m_peer && m_peer->IsOk() )
1284 m_peer->SetDrawingEnabled( false ) ;
1285 #endif
1286 }
1287
1288 void wxWindowMac::DoThaw()
1289 {
1290 #if wxOSX_USE_CARBON
1291 if ( m_peer && m_peer->IsOk() )
1292 {
1293 m_peer->SetDrawingEnabled( true ) ;
1294 m_peer->InvalidateWithChildren() ;
1295 }
1296 #endif
1297 }
1298
1299 wxWindow *wxGetActiveWindow()
1300 {
1301 // actually this is a windows-only concept
1302 return NULL;
1303 }
1304
1305 // Coordinates relative to the window
1306 void wxWindowMac::WarpPointer(int x_pos, int y_pos)
1307 {
1308 #if wxOSX_USE_COCOA_OR_CARBON
1309 int x = x_pos;
1310 int y = y_pos;
1311 DoClientToScreen(&x, &y);
1312 CGPoint cgpoint = CGPointMake( x, y );
1313 CGWarpMouseCursorPosition( cgpoint );
1314
1315 // At least GTK sends a mouse moved event after WarpMouse
1316 wxMouseEvent event(wxEVT_MOTION);
1317 event.m_x = x_pos;
1318 event.m_y = y_pos;
1319 wxMouseState mState = ::wxGetMouseState();
1320
1321 event.m_altDown = mState.AltDown();
1322 event.m_controlDown = mState.ControlDown();
1323 event.m_leftDown = mState.LeftIsDown();
1324 event.m_middleDown = mState.MiddleIsDown();
1325 event.m_rightDown = mState.RightIsDown();
1326 event.m_metaDown = mState.MetaDown();
1327 event.m_shiftDown = mState.ShiftDown();
1328 event.SetId(GetId());
1329 event.SetEventObject(this);
1330 GetEventHandler()->ProcessEvent(event);
1331 #endif
1332 }
1333
1334 int wxWindowMac::GetScrollPos(int orient) const
1335 {
1336 #if wxUSE_SCROLLBAR
1337 if ( orient == wxHORIZONTAL )
1338 {
1339 if ( m_hScrollBar )
1340 return m_hScrollBar->GetThumbPosition() ;
1341 }
1342 else
1343 {
1344 if ( m_vScrollBar )
1345 return m_vScrollBar->GetThumbPosition() ;
1346 }
1347 #endif
1348 return 0;
1349 }
1350
1351 // This now returns the whole range, not just the number
1352 // of positions that we can scroll.
1353 int wxWindowMac::GetScrollRange(int orient) const
1354 {
1355 #if wxUSE_SCROLLBAR
1356 if ( orient == wxHORIZONTAL )
1357 {
1358 if ( m_hScrollBar )
1359 return m_hScrollBar->GetRange() ;
1360 }
1361 else
1362 {
1363 if ( m_vScrollBar )
1364 return m_vScrollBar->GetRange() ;
1365 }
1366 #endif
1367 return 0;
1368 }
1369
1370 int wxWindowMac::GetScrollThumb(int orient) const
1371 {
1372 #if wxUSE_SCROLLBAR
1373 if ( orient == wxHORIZONTAL )
1374 {
1375 if ( m_hScrollBar )
1376 return m_hScrollBar->GetThumbSize() ;
1377 }
1378 else
1379 {
1380 if ( m_vScrollBar )
1381 return m_vScrollBar->GetThumbSize() ;
1382 }
1383 #endif
1384 return 0;
1385 }
1386
1387 void wxWindowMac::SetScrollPos(int orient, int pos, bool WXUNUSED(refresh))
1388 {
1389 #if wxUSE_SCROLLBAR
1390 if ( orient == wxHORIZONTAL )
1391 {
1392 if ( m_hScrollBar )
1393 m_hScrollBar->SetThumbPosition( pos ) ;
1394 }
1395 else
1396 {
1397 if ( m_vScrollBar )
1398 m_vScrollBar->SetThumbPosition( pos ) ;
1399 }
1400 #endif
1401 }
1402
1403 void
1404 wxWindowMac::AlwaysShowScrollbars(bool hflag, bool vflag)
1405 {
1406 bool needVisibilityUpdate = false;
1407
1408 if ( m_hScrollBarAlwaysShown != hflag )
1409 {
1410 m_hScrollBarAlwaysShown = hflag;
1411 needVisibilityUpdate = true;
1412 }
1413
1414 if ( m_vScrollBarAlwaysShown != vflag )
1415 {
1416 m_vScrollBarAlwaysShown = vflag;
1417 needVisibilityUpdate = true;
1418 }
1419
1420 if ( needVisibilityUpdate )
1421 DoUpdateScrollbarVisibility();
1422 }
1423
1424 //
1425 // we draw borders and grow boxes, are already set up and clipped in the current port / cgContextRef
1426 // our own window origin is at leftOrigin/rightOrigin
1427 //
1428
1429 void wxWindowMac::MacPaintGrowBox()
1430 {
1431 if ( IsTopLevel() )
1432 return ;
1433
1434 #if wxUSE_SCROLLBAR
1435 if ( MacHasScrollBarCorner() )
1436 {
1437 #if 0
1438 CGContextRef cgContext = (CGContextRef) MacGetCGContextRef() ;
1439 wxASSERT( cgContext ) ;
1440
1441 int tx,ty,tw,th;
1442
1443 m_peer->GetSize( tw, th );
1444 m_peer->GetPosition( tx, ty );
1445
1446 Rect rect = { ty,tx, ty+th, tx+tw };
1447
1448
1449 int size = m_hScrollBar ? m_hScrollBar->GetSize().y : ( m_vScrollBar ? m_vScrollBar->GetSize().x : MAC_SCROLLBAR_SIZE ) ;
1450 CGRect cgrect = CGRectMake( rect.right - size , rect.bottom - size , size , size ) ;
1451 CGContextSaveGState( cgContext );
1452
1453 if ( m_backgroundColour.Ok() )
1454 {
1455 CGContextSetFillColorWithColor( cgContext, m_backgroundColour.GetCGColor() );
1456 }
1457 else
1458 {
1459 CGContextSetRGBFillColor( cgContext, (CGFloat) 1.0, (CGFloat)1.0 ,(CGFloat) 1.0 , (CGFloat)1.0 );
1460 }
1461 CGContextFillRect( cgContext, cgrect );
1462 CGContextRestoreGState( cgContext );
1463 #else
1464 if (m_growBox)
1465 {
1466 if ( m_backgroundColour.Ok() )
1467 m_growBox->SetBackgroundColour(m_backgroundColour);
1468 else
1469 m_growBox->SetBackgroundColour(*wxWHITE);
1470 }
1471 #endif
1472 }
1473
1474 #endif
1475 }
1476
1477 void wxWindowMac::MacPaintBorders( int WXUNUSED(leftOrigin) , int WXUNUSED(rightOrigin) )
1478 {
1479 if ( IsTopLevel() )
1480 return ;
1481
1482 bool hasFocus = m_peer->NeedsFocusRect() && m_peer->HasFocus() ;
1483
1484 // back to the surrounding frame rectangle
1485 int tx,ty,tw,th;
1486
1487 m_peer->GetSize( tw, th );
1488 m_peer->GetPosition( tx, ty );
1489
1490 Rect rect = { ty,tx, ty+th, tx+tw };
1491
1492 #if wxOSX_USE_COCOA_OR_CARBON
1493
1494 InsetRect( &rect, -1 , -1 ) ;
1495
1496 {
1497 CGRect cgrect = CGRectMake( rect.left , rect.top , rect.right - rect.left ,
1498 rect.bottom - rect.top ) ;
1499
1500 CGContextRef cgContext = (CGContextRef) GetParent()->MacGetCGContextRef() ;
1501 wxASSERT( cgContext ) ;
1502
1503 if ( m_peer->NeedsFrame() )
1504 {
1505 HIThemeFrameDrawInfo info ;
1506 memset( &info, 0 , sizeof(info) ) ;
1507
1508 info.version = 0 ;
1509 info.kind = 0 ;
1510 info.state = IsEnabled() ? kThemeStateActive : kThemeStateInactive ;
1511 info.isFocused = hasFocus ;
1512
1513 if ( HasFlag(wxRAISED_BORDER) || HasFlag(wxSUNKEN_BORDER) || HasFlag(wxDOUBLE_BORDER) )
1514 {
1515 info.kind = kHIThemeFrameTextFieldSquare ;
1516 HIThemeDrawFrame( &cgrect , &info , cgContext , kHIThemeOrientationNormal ) ;
1517 }
1518 else if ( HasFlag(wxSIMPLE_BORDER) )
1519 {
1520 info.kind = kHIThemeFrameListBox ;
1521 HIThemeDrawFrame( &cgrect , &info , cgContext , kHIThemeOrientationNormal ) ;
1522 }
1523 }
1524
1525 if ( hasFocus )
1526 {
1527 HIThemeDrawFocusRect( &cgrect , true , cgContext , kHIThemeOrientationNormal ) ;
1528 }
1529 }
1530 #endif // wxOSX_USE_COCOA_OR_CARBON
1531 }
1532
1533 void wxWindowMac::RemoveChild( wxWindowBase *child )
1534 {
1535 #if wxUSE_SCROLLBAR
1536 if ( child == m_hScrollBar )
1537 m_hScrollBar = NULL ;
1538 if ( child == m_vScrollBar )
1539 m_vScrollBar = NULL ;
1540 if ( child == m_growBox )
1541 m_growBox = NULL ;
1542 #endif
1543 wxWindowBase::RemoveChild( child ) ;
1544 }
1545
1546 void wxWindowMac::DoUpdateScrollbarVisibility()
1547 {
1548 #if wxUSE_SCROLLBAR
1549 bool triggerSizeEvent = false;
1550
1551 if ( m_hScrollBar )
1552 {
1553 bool showHScrollBar = m_hScrollBarAlwaysShown || m_hScrollBar->IsNeeded();
1554
1555 if ( m_hScrollBar->IsShown() != showHScrollBar )
1556 {
1557 m_hScrollBar->Show( showHScrollBar );
1558 triggerSizeEvent = true;
1559 }
1560 }
1561
1562 if ( m_vScrollBar)
1563 {
1564 bool showVScrollBar = m_vScrollBarAlwaysShown || m_vScrollBar->IsNeeded();
1565
1566 if ( m_vScrollBar->IsShown() != showVScrollBar )
1567 {
1568 m_vScrollBar->Show( showVScrollBar ) ;
1569 triggerSizeEvent = true;
1570 }
1571 }
1572
1573 MacRepositionScrollBars() ;
1574 if ( triggerSizeEvent )
1575 {
1576 wxSizeEvent event(GetSize(), m_windowId);
1577 event.SetEventObject(this);
1578 HandleWindowEvent(event);
1579 }
1580 #endif
1581 }
1582
1583 // New function that will replace some of the above.
1584 void wxWindowMac::SetScrollbar(int orient, int pos, int thumb,
1585 int range, bool refresh)
1586 {
1587 #if wxUSE_SCROLLBAR
1588 // Updating scrollbars when window is being deleted is useless and
1589 // currently results in asserts in client-to-screen coordinates conversion
1590 // code which is used by DoUpdateScrollbarVisibility() so just skip it.
1591 if ( m_isBeingDeleted )
1592 return;
1593
1594 if ( orient == wxHORIZONTAL && m_hScrollBar )
1595 m_hScrollBar->SetScrollbar(pos, thumb, range, thumb, refresh);
1596 else if ( orient == wxVERTICAL && m_vScrollBar )
1597 m_vScrollBar->SetScrollbar(pos, thumb, range, thumb, refresh);
1598
1599 DoUpdateScrollbarVisibility();
1600 #endif
1601 }
1602
1603 // Does a physical scroll
1604 void wxWindowMac::ScrollWindow(int dx, int dy, const wxRect *rect)
1605 {
1606 if ( dx == 0 && dy == 0 )
1607 return ;
1608
1609 int width , height ;
1610 GetClientSize( &width , &height ) ;
1611
1612 {
1613 wxRect scrollrect( MacGetLeftBorderSize() , MacGetTopBorderSize() , width , height ) ;
1614 if ( rect )
1615 scrollrect.Intersect( *rect ) ;
1616 // as the native control might be not a 0/0 wx window coordinates, we have to offset
1617 scrollrect.Offset( -MacGetLeftBorderSize() , -MacGetTopBorderSize() ) ;
1618
1619 m_peer->ScrollRect( &scrollrect, dx, dy );
1620 }
1621
1622 wxWindowMac *child;
1623 int x, y, w, h;
1624 for (wxWindowList::compatibility_iterator node = GetChildren().GetFirst(); node; node = node->GetNext())
1625 {
1626 child = node->GetData();
1627 if (child == NULL)
1628 continue;
1629
1630 if (child->IsTopLevel())
1631 continue;
1632
1633 if ( !IsClientAreaChild(child) )
1634 continue;
1635
1636 child->GetPosition( &x, &y );
1637 child->GetSize( &w, &h );
1638 if (rect)
1639 {
1640 wxRect rc( x, y, w, h );
1641 if (rect->Intersects( rc ))
1642 child->SetSize( x + dx, y + dy, w, h, wxSIZE_AUTO|wxSIZE_ALLOW_MINUS_ONE );
1643 }
1644 else
1645 {
1646 child->SetSize( x + dx, y + dy, w, h, wxSIZE_AUTO|wxSIZE_ALLOW_MINUS_ONE );
1647 }
1648 }
1649 }
1650
1651 void wxWindowMac::MacOnScroll( wxScrollEvent &event )
1652 {
1653 #if wxUSE_SCROLLBAR
1654 if ( event.GetEventObject() == m_vScrollBar || event.GetEventObject() == m_hScrollBar )
1655 {
1656 wxScrollWinEvent wevent;
1657 wevent.SetPosition(event.GetPosition());
1658 wevent.SetOrientation(event.GetOrientation());
1659 wevent.SetEventObject(this);
1660
1661 if (event.GetEventType() == wxEVT_SCROLL_TOP)
1662 wevent.SetEventType( wxEVT_SCROLLWIN_TOP );
1663 else if (event.GetEventType() == wxEVT_SCROLL_BOTTOM)
1664 wevent.SetEventType( wxEVT_SCROLLWIN_BOTTOM );
1665 else if (event.GetEventType() == wxEVT_SCROLL_LINEUP)
1666 wevent.SetEventType( wxEVT_SCROLLWIN_LINEUP );
1667 else if (event.GetEventType() == wxEVT_SCROLL_LINEDOWN)
1668 wevent.SetEventType( wxEVT_SCROLLWIN_LINEDOWN );
1669 else if (event.GetEventType() == wxEVT_SCROLL_PAGEUP)
1670 wevent.SetEventType( wxEVT_SCROLLWIN_PAGEUP );
1671 else if (event.GetEventType() == wxEVT_SCROLL_PAGEDOWN)
1672 wevent.SetEventType( wxEVT_SCROLLWIN_PAGEDOWN );
1673 else if (event.GetEventType() == wxEVT_SCROLL_THUMBTRACK)
1674 wevent.SetEventType( wxEVT_SCROLLWIN_THUMBTRACK );
1675 else if (event.GetEventType() == wxEVT_SCROLL_THUMBRELEASE)
1676 wevent.SetEventType( wxEVT_SCROLLWIN_THUMBRELEASE );
1677
1678 HandleWindowEvent(wevent);
1679 }
1680 #endif
1681 }
1682
1683 wxWindow *wxWindowBase::DoFindFocus()
1684 {
1685 return wxFindWindowFromWXWidget(wxWidgetImpl::FindFocus());
1686 }
1687
1688 void wxWindowMac::OnInternalIdle()
1689 {
1690 // This calls the UI-update mechanism (querying windows for
1691 // menu/toolbar/control state information)
1692 if (wxUpdateUIEvent::CanUpdate(this) && IsShownOnScreen())
1693 UpdateWindowUI(wxUPDATE_UI_FROMIDLE);
1694 }
1695
1696 // Raise the window to the top of the Z order
1697 void wxWindowMac::Raise()
1698 {
1699 m_peer->Raise();
1700 }
1701
1702 // Lower the window to the bottom of the Z order
1703 void wxWindowMac::Lower()
1704 {
1705 m_peer->Lower();
1706 }
1707
1708 // static wxWindow *gs_lastWhich = NULL;
1709
1710 bool wxWindowMac::MacSetupCursor( const wxPoint& pt )
1711 {
1712 // first trigger a set cursor event
1713
1714 wxPoint clientorigin = GetClientAreaOrigin() ;
1715 wxSize clientsize = GetClientSize() ;
1716 wxCursor cursor ;
1717 if ( wxRect2DInt( clientorigin.x , clientorigin.y , clientsize.x , clientsize.y ).Contains( wxPoint2DInt( pt ) ) )
1718 {
1719 wxSetCursorEvent event( pt.x , pt.y );
1720
1721 bool processedEvtSetCursor = HandleWindowEvent(event);
1722 if ( processedEvtSetCursor && event.HasCursor() )
1723 {
1724 cursor = event.GetCursor() ;
1725 }
1726 else
1727 {
1728 // the test for processedEvtSetCursor is here to prevent using m_cursor
1729 // if the user code caught EVT_SET_CURSOR() and returned nothing from
1730 // it - this is a way to say that our cursor shouldn't be used for this
1731 // point
1732 if ( !processedEvtSetCursor && m_cursor.Ok() )
1733 cursor = m_cursor ;
1734
1735 if ( !wxIsBusy() && !GetParent() )
1736 cursor = *wxSTANDARD_CURSOR ;
1737 }
1738
1739 if ( cursor.Ok() )
1740 cursor.MacInstall() ;
1741 }
1742
1743 return cursor.Ok() ;
1744 }
1745
1746 wxString wxWindowMac::MacGetToolTipString( wxPoint &WXUNUSED(pt) )
1747 {
1748 #if wxUSE_TOOLTIPS
1749 if ( m_tooltip )
1750 return m_tooltip->GetTip() ;
1751 #endif
1752
1753 return wxEmptyString ;
1754 }
1755
1756 void wxWindowMac::ClearBackground()
1757 {
1758 Refresh() ;
1759 Update() ;
1760 }
1761
1762 void wxWindowMac::Update()
1763 {
1764 wxNonOwnedWindow* top = MacGetTopLevelWindow();
1765 if (top)
1766 top->Update() ;
1767 }
1768
1769 wxNonOwnedWindow* wxWindowMac::MacGetTopLevelWindow() const
1770 {
1771 wxWindowMac *iter = (wxWindowMac*)this ;
1772
1773 while ( iter )
1774 {
1775 if ( iter->IsTopLevel() )
1776 {
1777 wxTopLevelWindow* toplevel = wxDynamicCast(iter,wxTopLevelWindow);
1778 if ( toplevel )
1779 return toplevel;
1780 #if wxUSE_POPUPWIN
1781 wxPopupWindow* popupwin = wxDynamicCast(iter,wxPopupWindow);
1782 if ( popupwin )
1783 return popupwin;
1784 #endif
1785 }
1786 iter = iter->GetParent() ;
1787 }
1788
1789 return NULL ;
1790 }
1791
1792 const wxRect& wxWindowMac::MacGetClippedClientRect() const
1793 {
1794 MacUpdateClippedRects() ;
1795
1796 return m_cachedClippedClientRect ;
1797 }
1798
1799 const wxRect& wxWindowMac::MacGetClippedRect() const
1800 {
1801 MacUpdateClippedRects() ;
1802
1803 return m_cachedClippedRect ;
1804 }
1805
1806 const wxRect&wxWindowMac:: MacGetClippedRectWithOuterStructure() const
1807 {
1808 MacUpdateClippedRects() ;
1809
1810 return m_cachedClippedRectWithOuterStructure ;
1811 }
1812
1813 const wxRegion& wxWindowMac::MacGetVisibleRegion( bool includeOuterStructures )
1814 {
1815 static wxRegion emptyrgn ;
1816
1817 if ( !m_isBeingDeleted && IsShownOnScreen() )
1818 {
1819 MacUpdateClippedRects() ;
1820 if ( includeOuterStructures )
1821 return m_cachedClippedRegionWithOuterStructure ;
1822 else
1823 return m_cachedClippedRegion ;
1824 }
1825 else
1826 {
1827 return emptyrgn ;
1828 }
1829 }
1830
1831 void wxWindowMac::MacUpdateClippedRects() const
1832 {
1833 #if wxOSX_USE_CARBON
1834 if ( m_cachedClippedRectValid )
1835 return ;
1836
1837 // includeOuterStructures is true if we try to draw somthing like a focus ring etc.
1838 // also a window dc uses this, in this case we only clip in the hierarchy for hard
1839 // borders like a scrollwindow, splitter etc otherwise we end up in a paranoia having
1840 // to add focus borders everywhere
1841
1842 Rect rIncludingOuterStructures ;
1843
1844 int tx,ty,tw,th;
1845
1846 m_peer->GetSize( tw, th );
1847 m_peer->GetPosition( tx, ty );
1848
1849 Rect r = { ty,tx, ty+th, tx+tw };
1850
1851 r.left -= MacGetLeftBorderSize() ;
1852 r.top -= MacGetTopBorderSize() ;
1853 r.bottom += MacGetBottomBorderSize() ;
1854 r.right += MacGetRightBorderSize() ;
1855
1856 r.right -= r.left ;
1857 r.bottom -= r.top ;
1858 r.left = 0 ;
1859 r.top = 0 ;
1860
1861 rIncludingOuterStructures = r ;
1862 InsetRect( &rIncludingOuterStructures , -4 , -4 ) ;
1863
1864 wxRect cl = GetClientRect() ;
1865 Rect rClient = { cl.y , cl.x , cl.y + cl.height , cl.x + cl.width } ;
1866
1867 int x , y ;
1868 wxSize size ;
1869 const wxWindow* child = (wxWindow*) this ;
1870 const wxWindow* parent = NULL ;
1871
1872 while ( !child->IsTopLevel() && ( parent = child->GetParent() ) != NULL )
1873 {
1874 if ( parent->MacIsChildOfClientArea(child) )
1875 {
1876 size = parent->GetClientSize() ;
1877 wxPoint origin = parent->GetClientAreaOrigin() ;
1878 x = origin.x ;
1879 y = origin.y ;
1880 }
1881 else
1882 {
1883 // this will be true for scrollbars, toolbars etc.
1884 size = parent->GetSize() ;
1885 y = parent->MacGetTopBorderSize() ;
1886 x = parent->MacGetLeftBorderSize() ;
1887 size.x -= parent->MacGetLeftBorderSize() + parent->MacGetRightBorderSize() ;
1888 size.y -= parent->MacGetTopBorderSize() + parent->MacGetBottomBorderSize() ;
1889 }
1890
1891 parent->MacWindowToRootWindow( &x, &y ) ;
1892 MacRootWindowToWindow( &x , &y ) ;
1893
1894 Rect rparent = { y , x , y + size.y , x + size.x } ;
1895
1896 // the wxwindow and client rects will always be clipped
1897 SectRect( &r , &rparent , &r ) ;
1898 SectRect( &rClient , &rparent , &rClient ) ;
1899
1900 // the structure only at 'hard' borders
1901 if ( parent->MacClipChildren() ||
1902 ( parent->GetParent() && parent->GetParent()->MacClipGrandChildren() ) )
1903 {
1904 SectRect( &rIncludingOuterStructures , &rparent , &rIncludingOuterStructures ) ;
1905 }
1906
1907 child = parent ;
1908 }
1909
1910 m_cachedClippedRect = wxRect( r.left , r.top , r.right - r.left , r.bottom - r.top ) ;
1911 m_cachedClippedClientRect = wxRect( rClient.left , rClient.top ,
1912 rClient.right - rClient.left , rClient.bottom - rClient.top ) ;
1913 m_cachedClippedRectWithOuterStructure = wxRect(
1914 rIncludingOuterStructures.left , rIncludingOuterStructures.top ,
1915 rIncludingOuterStructures.right - rIncludingOuterStructures.left ,
1916 rIncludingOuterStructures.bottom - rIncludingOuterStructures.top ) ;
1917
1918 m_cachedClippedRegionWithOuterStructure = wxRegion( m_cachedClippedRectWithOuterStructure ) ;
1919 m_cachedClippedRegion = wxRegion( m_cachedClippedRect ) ;
1920 m_cachedClippedClientRegion = wxRegion( m_cachedClippedClientRect ) ;
1921
1922 m_cachedClippedRectValid = true ;
1923 #endif
1924 }
1925
1926 /*
1927 This function must not change the updatergn !
1928 */
1929 bool wxWindowMac::MacDoRedraw( long time )
1930 {
1931 bool handled = false ;
1932
1933 wxRegion formerUpdateRgn = m_updateRegion;
1934 wxRegion clientUpdateRgn = formerUpdateRgn;
1935
1936 const wxRect clientRect = GetClientRect();
1937
1938 clientUpdateRgn.Intersect(clientRect);
1939
1940 // first send an erase event to the entire update area
1941 const wxBackgroundStyle bgStyle = GetBackgroundStyle();
1942 switch ( bgStyle )
1943 {
1944 case wxBG_STYLE_ERASE:
1945 case wxBG_STYLE_SYSTEM:
1946 case wxBG_STYLE_COLOUR:
1947 {
1948 // for the toplevel window this really is the entire area for
1949 // all the others only their client area, otherwise they might
1950 // be drawing with full alpha and eg put blue into the grow-box
1951 // area of a scrolled window (scroll sample)
1952 wxWindowDC dc(this);
1953 if ( IsTopLevel() )
1954 dc.SetDeviceClippingRegion(formerUpdateRgn);
1955 else
1956 dc.SetDeviceClippingRegion(clientUpdateRgn);
1957
1958 if ( bgStyle == wxBG_STYLE_ERASE )
1959 {
1960 wxEraseEvent eevent( GetId(), &dc );
1961 eevent.SetEventObject( this );
1962 if ( ProcessWindowEvent( eevent ) )
1963 break;
1964 }
1965
1966 if ( UseBgCol() )
1967 {
1968 dc.SetBackground(GetBackgroundColour());
1969 dc.Clear();
1970 }
1971 }
1972 break;
1973
1974 case wxBG_STYLE_PAINT:
1975 case wxBG_STYLE_TRANSPARENT:
1976 // nothing to do, user-defined EVT_PAINT handler will overwrite the
1977 // entire window client area
1978 break;
1979
1980 default:
1981 wxFAIL_MSG( "unsupported background style" );
1982 }
1983
1984 // as this is a full window, shouldn't be necessary anymore
1985 // MacPaintGrowBox();
1986
1987 // calculate a client-origin version of the update rgn and set
1988 // m_updateRegion to that
1989 clientUpdateRgn.Offset(-clientRect.GetPosition());
1990 m_updateRegion = clientUpdateRgn ;
1991
1992 if ( !m_updateRegion.Empty() )
1993 {
1994 // paint the window itself
1995
1996 wxPaintEvent event(GetId());
1997 event.SetTimestamp(time);
1998 event.SetEventObject(this);
1999 handled = HandleWindowEvent(event);
2000 }
2001
2002 m_updateRegion = formerUpdateRgn;
2003 return handled;
2004 }
2005
2006 void wxWindowMac::MacPaintChildrenBorders()
2007 {
2008 // now we cannot rely on having its borders drawn by a window itself, as it does not
2009 // get the updateRgn wide enough to always do so, so we do it from the parent
2010 // this would also be the place to draw any custom backgrounds for native controls
2011 // in Composited windowing
2012 wxPoint clientOrigin = GetClientAreaOrigin() ;
2013
2014 wxWindowMac *child;
2015 int x, y, w, h;
2016 for (wxWindowList::compatibility_iterator node = GetChildren().GetFirst(); node; node = node->GetNext())
2017 {
2018 child = node->GetData();
2019 if (child == NULL)
2020 continue;
2021 #if wxUSE_SCROLLBAR
2022 if (child == m_vScrollBar)
2023 continue;
2024 if (child == m_hScrollBar)
2025 continue;
2026 if (child == m_growBox)
2027 continue;
2028 #endif
2029 if (child->IsTopLevel())
2030 continue;
2031 if (!child->IsShown())
2032 continue;
2033
2034 // only draw those in the update region (add a safety margin of 10 pixels for shadow effects
2035
2036 child->GetPosition( &x, &y );
2037 child->GetSize( &w, &h );
2038
2039 if ( m_updateRegion.Contains(clientOrigin.x+x-10, clientOrigin.y+y-10, w+20, h+20) )
2040 {
2041 // paint custom borders
2042 wxNcPaintEvent eventNc( child->GetId() );
2043 eventNc.SetEventObject( child );
2044 if ( !child->HandleWindowEvent( eventNc ) )
2045 {
2046 child->MacPaintBorders(0, 0) ;
2047 }
2048 }
2049 }
2050 }
2051
2052
2053 WXWindow wxWindowMac::MacGetTopLevelWindowRef() const
2054 {
2055 wxNonOwnedWindow* tlw = MacGetTopLevelWindow();
2056 return tlw ? tlw->GetWXWindow() : NULL ;
2057 }
2058
2059 bool wxWindowMac::MacHasScrollBarCorner() const
2060 {
2061 #if wxUSE_SCROLLBAR
2062 /* Returns whether the scroll bars in a wxScrolledWindow should be
2063 * shortened. Scroll bars should be shortened if either:
2064 *
2065 * - both scroll bars are visible, or
2066 *
2067 * - there is a resize box in the parent frame's corner and this
2068 * window shares the bottom and right edge with the parent
2069 * frame.
2070 */
2071
2072 if ( m_hScrollBar == NULL && m_vScrollBar == NULL )
2073 return false;
2074
2075 if ( ( m_hScrollBar && m_hScrollBar->IsShown() )
2076 && ( m_vScrollBar && m_vScrollBar->IsShown() ) )
2077 {
2078 // Both scroll bars visible
2079 return true;
2080 }
2081 else
2082 {
2083 wxPoint thisWindowBottomRight = GetScreenRect().GetBottomRight();
2084
2085 for ( const wxWindow *win = (wxWindow*)this; win; win = win->GetParent() )
2086 {
2087 const wxFrame *frame = wxDynamicCast( win, wxFrame ) ;
2088 if ( frame )
2089 {
2090 if ( frame->GetWindowStyleFlag() & wxRESIZE_BORDER )
2091 {
2092 // Parent frame has resize handle
2093 wxPoint frameBottomRight = frame->GetScreenRect().GetBottomRight();
2094
2095 // Note: allow for some wiggle room here as wxMac's
2096 // window rect calculations seem to be imprecise
2097 if ( abs( thisWindowBottomRight.x - frameBottomRight.x ) <= 2
2098 && abs( thisWindowBottomRight.y - frameBottomRight.y ) <= 2 )
2099 {
2100 // Parent frame has resize handle and shares
2101 // right bottom corner
2102 return true ;
2103 }
2104 else
2105 {
2106 // Parent frame has resize handle but doesn't
2107 // share right bottom corner
2108 return false ;
2109 }
2110 }
2111 else
2112 {
2113 // Parent frame doesn't have resize handle
2114 return false ;
2115 }
2116 }
2117 }
2118
2119 // No parent frame found
2120 return false ;
2121 }
2122 #else
2123 return false;
2124 #endif
2125 }
2126
2127 void wxWindowMac::MacCreateScrollBars( long style )
2128 {
2129 #if wxUSE_SCROLLBAR
2130 wxASSERT_MSG( m_vScrollBar == NULL && m_hScrollBar == NULL , wxT("attempt to create window twice") ) ;
2131
2132 if ( style & ( wxVSCROLL | wxHSCROLL ) )
2133 {
2134 int scrlsize = MAC_SCROLLBAR_SIZE ;
2135 if ( GetWindowVariant() == wxWINDOW_VARIANT_SMALL || GetWindowVariant() == wxWINDOW_VARIANT_MINI )
2136 {
2137 scrlsize = MAC_SMALL_SCROLLBAR_SIZE ;
2138 }
2139
2140 int adjust = MacHasScrollBarCorner() ? scrlsize - 1: 0 ;
2141 int width, height ;
2142 GetClientSize( &width , &height ) ;
2143
2144 wxPoint vPoint(width - scrlsize, 0) ;
2145 wxSize vSize(scrlsize, height - adjust) ;
2146 wxPoint hPoint(0, height - scrlsize) ;
2147 wxSize hSize(width - adjust, scrlsize) ;
2148
2149 // we have to set the min size to a smaller value, otherwise they cannot get smaller (InitialSize sets MinSize)
2150 if ( style & wxVSCROLL )
2151 {
2152 m_vScrollBar = new wxScrollBar((wxWindow*)this, wxID_ANY, vPoint, vSize , wxVERTICAL);
2153 m_vScrollBar->SetMinSize( wxDefaultSize );
2154 }
2155
2156 if ( style & wxHSCROLL )
2157 {
2158 m_hScrollBar = new wxScrollBar((wxWindow*)this, wxID_ANY, hPoint, hSize , wxHORIZONTAL);
2159 m_hScrollBar->SetMinSize( wxDefaultSize );
2160 }
2161
2162 wxPoint gPoint(width - scrlsize, height - scrlsize);
2163 wxSize gSize(scrlsize, scrlsize);
2164 m_growBox = new wxBlindPlateWindow((wxWindow *)this, wxID_ANY, gPoint, gSize, 0);
2165 }
2166
2167 // because the create does not take into account the client area origin
2168 // we might have a real position shift
2169 MacRepositionScrollBars() ;
2170 #endif
2171 }
2172
2173 bool wxWindowMac::MacIsChildOfClientArea( const wxWindow* child ) const
2174 {
2175 bool result = ((child == NULL)
2176 #if wxUSE_SCROLLBAR
2177 || ((child != m_hScrollBar) && (child != m_vScrollBar) && (child != m_growBox))
2178 #endif
2179 );
2180
2181 return result ;
2182 }
2183
2184 void wxWindowMac::MacRepositionScrollBars()
2185 {
2186 #if wxUSE_SCROLLBAR
2187 if ( !m_hScrollBar && !m_vScrollBar )
2188 return ;
2189
2190 int scrlsize = m_hScrollBar ? m_hScrollBar->GetSize().y : ( m_vScrollBar ? m_vScrollBar->GetSize().x : MAC_SCROLLBAR_SIZE ) ;
2191 int adjust = MacHasScrollBarCorner() ? scrlsize - 1 : 0 ;
2192
2193 // get real client area
2194 int width, height ;
2195 GetSize( &width , &height );
2196
2197 width -= MacGetLeftBorderSize() + MacGetRightBorderSize();
2198 height -= MacGetTopBorderSize() + MacGetBottomBorderSize();
2199
2200 wxPoint vPoint( width - scrlsize, 0 ) ;
2201 wxSize vSize( scrlsize, height - adjust ) ;
2202 wxPoint hPoint( 0 , height - scrlsize ) ;
2203 wxSize hSize( width - adjust, scrlsize ) ;
2204
2205 if ( m_vScrollBar )
2206 m_vScrollBar->SetSize( vPoint.x , vPoint.y, vSize.x, vSize.y , wxSIZE_ALLOW_MINUS_ONE );
2207 if ( m_hScrollBar )
2208 m_hScrollBar->SetSize( hPoint.x , hPoint.y, hSize.x, hSize.y, wxSIZE_ALLOW_MINUS_ONE );
2209 if ( m_growBox )
2210 {
2211 if ( MacHasScrollBarCorner() )
2212 {
2213 m_growBox->SetSize( width - scrlsize, height - scrlsize, wxDefaultCoord, wxDefaultCoord, wxSIZE_USE_EXISTING );
2214 if ( !m_growBox->IsShown() )
2215 m_growBox->Show();
2216 }
2217 else
2218 {
2219 if ( m_growBox->IsShown() )
2220 m_growBox->Hide();
2221 }
2222 }
2223 #endif
2224 }
2225
2226 bool wxWindowMac::AcceptsFocus() const
2227 {
2228 if ( MacIsUserPane() )
2229 return wxWindowBase::AcceptsFocus();
2230 else
2231 return m_peer->CanFocus();
2232 }
2233
2234 void wxWindowMac::MacSuperChangedPosition()
2235 {
2236 // only window-absolute structures have to be moved i.e. controls
2237
2238 m_cachedClippedRectValid = false ;
2239
2240 wxWindowMac *child;
2241 wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
2242 while ( node )
2243 {
2244 child = node->GetData();
2245 child->MacSuperChangedPosition() ;
2246
2247 node = node->GetNext();
2248 }
2249 }
2250
2251 void wxWindowMac::MacTopLevelWindowChangedPosition()
2252 {
2253 // only screen-absolute structures have to be moved i.e. glcanvas
2254
2255 wxWindowMac *child;
2256 wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
2257 while ( node )
2258 {
2259 child = node->GetData();
2260 child->MacTopLevelWindowChangedPosition() ;
2261
2262 node = node->GetNext();
2263 }
2264 }
2265
2266 long wxWindowMac::MacGetWXBorderSize() const
2267 {
2268 if ( IsTopLevel() )
2269 return 0 ;
2270
2271 SInt32 border = 0 ;
2272
2273 if ( m_peer && m_peer->NeedsFrame() )
2274 {
2275 if (HasFlag(wxRAISED_BORDER) || HasFlag( wxSUNKEN_BORDER) || HasFlag(wxDOUBLE_BORDER))
2276 {
2277 #if wxOSX_USE_COCOA_OR_CARBON
2278 // this metric is only the 'outset' outside the simple frame rect
2279 GetThemeMetric( kThemeMetricEditTextFrameOutset , &border ) ;
2280 border += 1;
2281 #else
2282 border += 2;
2283 #endif
2284 }
2285 else if (HasFlag(wxSIMPLE_BORDER))
2286 {
2287 #if wxOSX_USE_COCOA_OR_CARBON
2288 // this metric is only the 'outset' outside the simple frame rect
2289 GetThemeMetric( kThemeMetricListBoxFrameOutset , &border ) ;
2290 border += 1;
2291 #else
2292 border += 1;
2293 #endif
2294 }
2295 }
2296
2297 return border ;
2298 }
2299
2300 long wxWindowMac::MacGetLeftBorderSize() const
2301 {
2302 // the wx borders are all symmetric in mac themes
2303 long border = MacGetWXBorderSize() ;
2304
2305 if ( m_peer )
2306 {
2307 int left, top, right, bottom;
2308 m_peer->GetLayoutInset( left, top, right, bottom );
2309 border -= left;
2310 }
2311
2312 return border;
2313 }
2314
2315
2316 long wxWindowMac::MacGetRightBorderSize() const
2317 {
2318 // the wx borders are all symmetric in mac themes
2319 long border = MacGetWXBorderSize() ;
2320
2321 if ( m_peer )
2322 {
2323 int left, top, right, bottom;
2324 m_peer->GetLayoutInset( left, top, right, bottom );
2325 border -= right;
2326 }
2327
2328 return border;
2329 }
2330
2331 long wxWindowMac::MacGetTopBorderSize() const
2332 {
2333 // the wx borders are all symmetric in mac themes
2334 long border = MacGetWXBorderSize() ;
2335
2336 if ( m_peer )
2337 {
2338 int left, top, right, bottom;
2339 m_peer->GetLayoutInset( left, top, right, bottom );
2340 border -= top;
2341 }
2342
2343 return border;
2344 }
2345
2346 long wxWindowMac::MacGetBottomBorderSize() const
2347 {
2348 // the wx borders are all symmetric in mac themes
2349 long border = MacGetWXBorderSize() ;
2350
2351 if ( m_peer )
2352 {
2353 int left, top, right, bottom;
2354 m_peer->GetLayoutInset( left, top, right, bottom );
2355 border -= bottom;
2356 }
2357
2358 return border;
2359 }
2360
2361 long wxWindowMac::MacRemoveBordersFromStyle( long style )
2362 {
2363 return style & ~wxBORDER_MASK ;
2364 }
2365
2366 // Find the wxWindowMac at the current mouse position, returning the mouse
2367 // position.
2368 wxWindow * wxFindWindowAtPointer( wxPoint& pt )
2369 {
2370 pt = wxGetMousePosition();
2371 wxWindowMac* found = wxFindWindowAtPoint(pt);
2372
2373 return (wxWindow*) found;
2374 }
2375
2376 // Get the current mouse position.
2377 wxPoint wxGetMousePosition()
2378 {
2379 int x, y;
2380
2381 wxGetMousePosition( &x, &y );
2382
2383 return wxPoint(x, y);
2384 }
2385
2386 void wxWindowMac::OnMouseEvent( wxMouseEvent &event )
2387 {
2388 if ( event.GetEventType() == wxEVT_RIGHT_DOWN )
2389 {
2390 // copied from wxGTK : CS
2391 // VZ: shouldn't we move this to base class then?
2392
2393 // generate a "context menu" event: this is similar to wxEVT_RIGHT_DOWN
2394 // except that:
2395 //
2396 // (a) it's a command event and so is propagated to the parent
2397 // (b) under MSW it can be generated from kbd too
2398 // (c) it uses screen coords (because of (a))
2399 wxContextMenuEvent evtCtx(wxEVT_CONTEXT_MENU,
2400 this->GetId(),
2401 this->ClientToScreen(event.GetPosition()));
2402 evtCtx.SetEventObject(this);
2403 if ( ! HandleWindowEvent(evtCtx) )
2404 event.Skip() ;
2405 }
2406 else
2407 {
2408 event.Skip() ;
2409 }
2410 }
2411
2412 void wxWindowMac::TriggerScrollEvent( wxEventType WXUNUSED(scrollEvent) )
2413 {
2414 }
2415
2416 Rect wxMacGetBoundsForControl( wxWindowMac* window , const wxPoint& pos , const wxSize &size , bool adjustForOrigin )
2417 {
2418 int x, y, w, h ;
2419
2420 window->MacGetBoundsForControl( pos , size , x , y, w, h , adjustForOrigin ) ;
2421 Rect bounds = { y, x, y + h, x + w };
2422
2423 return bounds ;
2424 }
2425
2426 bool wxWindowMac::OSXHandleClicked( double WXUNUSED(timestampsec) )
2427 {
2428 return false;
2429 }
2430
2431 wxInt32 wxWindowMac::MacControlHit(WXEVENTHANDLERREF WXUNUSED(handler) , WXEVENTREF event )
2432 {
2433 #if wxOSX_USE_COCOA_OR_CARBON
2434 if ( OSXHandleClicked( GetEventTime((EventRef)event) ) )
2435 return noErr;
2436
2437 return eventNotHandledErr ;
2438 #else
2439 return 0;
2440 #endif
2441 }
2442
2443 bool wxWindowMac::Reparent(wxWindowBase *newParentBase)
2444 {
2445 wxWindowMac *newParent = (wxWindowMac *)newParentBase;
2446 if ( !wxWindowBase::Reparent(newParent) )
2447 return false;
2448
2449 m_peer->RemoveFromParent();
2450 m_peer->Embed( GetParent()->GetPeer() );
2451
2452 MacChildAdded();
2453 return true;
2454 }
2455
2456 bool wxWindowMac::SetTransparent(wxByte alpha)
2457 {
2458 SetBackgroundStyle(wxBG_STYLE_TRANSPARENT);
2459
2460 if ( alpha != m_macAlpha )
2461 {
2462 m_macAlpha = alpha ;
2463 Refresh() ;
2464 }
2465 return true ;
2466 }
2467
2468
2469 bool wxWindowMac::CanSetTransparent()
2470 {
2471 return true ;
2472 }
2473
2474 wxByte wxWindowMac::GetTransparent() const
2475 {
2476 return m_macAlpha ;
2477 }
2478
2479 bool wxWindowMac::IsShownOnScreen() const
2480 {
2481 if ( m_peer && m_peer->IsOk() )
2482 {
2483 bool peerVis = m_peer->IsVisible();
2484 bool wxVis = wxWindowBase::IsShownOnScreen();
2485 if( peerVis != wxVis )
2486 {
2487 // CS : put a breakpoint here to investigate differences
2488 // between native an wx visibilities
2489 // the only place where I've encountered them until now
2490 // are the hiding/showing sequences where the vis-changed event is
2491 // first sent to the innermost control, while wx does things
2492 // from the outmost control
2493 wxVis = wxWindowBase::IsShownOnScreen();
2494 return wxVis;
2495 }
2496
2497 return m_peer->IsVisible();
2498 }
2499 return wxWindowBase::IsShownOnScreen();
2500 }
2501
2502 bool wxWindowMac::OSXHandleKeyEvent( wxKeyEvent& event )
2503 {
2504 bool handled = HandleWindowEvent( event ) ;
2505 if ( handled && event.GetSkipped() )
2506 handled = false ;
2507
2508 #if wxUSE_ACCEL
2509 if ( !handled && event.GetEventType() == wxEVT_KEY_DOWN)
2510 {
2511 wxWindow *ancestor = this;
2512 while (ancestor)
2513 {
2514 int command = ancestor->GetAcceleratorTable()->GetCommand( event );
2515 if (command != -1)
2516 {
2517 wxEvtHandler * const handler = ancestor->GetEventHandler();
2518
2519 wxCommandEvent command_event( wxEVT_COMMAND_MENU_SELECTED, command );
2520 handled = handler->ProcessEvent( command_event );
2521
2522 if ( !handled )
2523 {
2524 // accelerators can also be used with buttons, try them too
2525 command_event.SetEventType(wxEVT_COMMAND_BUTTON_CLICKED);
2526 handled = handler->ProcessEvent( command_event );
2527 }
2528
2529 break;
2530 }
2531
2532 if (ancestor->IsTopLevel())
2533 break;
2534
2535 ancestor = ancestor->GetParent();
2536 }
2537 }
2538 #endif // wxUSE_ACCEL
2539
2540 return handled ;
2541 }
2542
2543 //
2544 // wxWidgetImpl
2545 //
2546
2547 WX_DECLARE_HASH_MAP(WXWidget, wxWidgetImpl*, wxPointerHash, wxPointerEqual, MacControlMap);
2548
2549 static MacControlMap wxWinMacControlList;
2550
2551 wxWindowMac *wxFindWindowFromWXWidget(WXWidget inControl )
2552 {
2553 wxWidgetImpl* impl = wxWidgetImpl::FindFromWXWidget( inControl );
2554 if ( impl )
2555 return impl->GetWXPeer();
2556
2557 return NULL;
2558 }
2559
2560 wxWidgetImpl *wxWidgetImpl::FindFromWXWidget(WXWidget inControl )
2561 {
2562 MacControlMap::iterator node = wxWinMacControlList.find(inControl);
2563
2564 return (node == wxWinMacControlList.end()) ? NULL : node->second;
2565 }
2566
2567 void wxWidgetImpl::Associate(WXWidget inControl, wxWidgetImpl *impl)
2568 {
2569 // adding NULL ControlRef is (first) surely a result of an error and
2570 // (secondly) breaks native event processing
2571 wxCHECK_RET( inControl != (WXWidget) NULL, wxT("attempt to add a NULL WXWidget to control map") );
2572
2573 wxWinMacControlList[inControl] = impl;
2574 }
2575
2576 void wxWidgetImpl::RemoveAssociations(wxWidgetImpl* impl)
2577 {
2578 // iterate over all the elements in the class
2579 // is the iterator stable ? as we might have two associations pointing to the same wxWindow
2580 // we should go on...
2581
2582 bool found = true ;
2583 while ( found )
2584 {
2585 found = false ;
2586 MacControlMap::iterator it;
2587 for ( it = wxWinMacControlList.begin(); it != wxWinMacControlList.end(); ++it )
2588 {
2589 if ( it->second == impl )
2590 {
2591 wxWinMacControlList.erase(it);
2592 found = true ;
2593 break;
2594 }
2595 }
2596 }
2597 }
2598
2599 IMPLEMENT_ABSTRACT_CLASS( wxWidgetImpl , wxObject )
2600
2601 wxWidgetImpl::wxWidgetImpl( wxWindowMac* peer , bool isRootControl )
2602 {
2603 Init();
2604 m_isRootControl = isRootControl;
2605 m_wxPeer = peer;
2606 m_shouldSendEvents = true;
2607 }
2608
2609 wxWidgetImpl::wxWidgetImpl()
2610 {
2611 Init();
2612 }
2613
2614 wxWidgetImpl::~wxWidgetImpl()
2615 {
2616 }
2617
2618 void wxWidgetImpl::Init()
2619 {
2620 m_isRootControl = false;
2621 m_wxPeer = NULL;
2622 m_needsFocusRect = false;
2623 m_needsFrame = true;
2624 }
2625
2626 void wxWidgetImpl::SetNeedsFocusRect( bool needs )
2627 {
2628 m_needsFocusRect = needs;
2629 }
2630
2631 bool wxWidgetImpl::NeedsFocusRect() const
2632 {
2633 return m_needsFocusRect;
2634 }
2635
2636 void wxWidgetImpl::SetNeedsFrame( bool needs )
2637 {
2638 m_needsFrame = needs;
2639 }
2640
2641 bool wxWidgetImpl::NeedsFrame() const
2642 {
2643 return m_needsFrame;
2644 }