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