]> git.saurik.com Git - wxWidgets.git/blame - src/mac/window.cpp
fixed a few minor bugs: handle the directory parameter to Create() correctly, better...
[wxWidgets.git] / src / mac / window.cpp
CommitLineData
e9576ca5
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: windows.cpp
e766c8a9 3// Purpose: wxWindowMac
e9576ca5
SC
4// Author: AUTHOR
5// Modified by:
6// Created: ??/??/98
7// RCS-ID: $Id$
8// Copyright: (c) AUTHOR
6264b550 9// Licence: wxWindows licence
e9576ca5
SC
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13#pragma implementation "window.h"
14#endif
15
16#include "wx/setup.h"
17#include "wx/menu.h"
5fde6fcc 18#include "wx/window.h"
e9576ca5
SC
19#include "wx/dc.h"
20#include "wx/dcclient.h"
519cb848 21#include "wx/utils.h"
e9576ca5
SC
22#include "wx/app.h"
23#include "wx/panel.h"
24#include "wx/layout.h"
25#include "wx/dialog.h"
26#include "wx/listbox.h"
03e11df5
GD
27#include "wx/scrolbar.h"
28#include "wx/statbox.h"
e9576ca5
SC
29#include "wx/button.h"
30#include "wx/settings.h"
31#include "wx/msgdlg.h"
32#include "wx/frame.h"
519cb848
SC
33#include "wx/notebook.h"
34#include "wx/tabctrl.h"
2f1ae414 35#include "wx/tooltip.h"
c809f3be 36#include "wx/statusbr.h"
e9576ca5
SC
37#include "wx/menuitem.h"
38#include "wx/log.h"
39
7c551d95
SC
40#if wxUSE_CARET
41 #include "wx/caret.h"
42#endif // wxUSE_CARET
43
519cb848
SC
44#define wxWINDOW_HSCROLL 5998
45#define wxWINDOW_VSCROLL 5997
46#define MAC_SCROLLBAR_SIZE 16
47
d497dca4 48#include "wx/mac/uma.h"
66a09d47
SC
49#ifndef __DARWIN__
50#include <Windows.h>
51#include <ToolUtils.h>
52#endif
519cb848 53
e9576ca5
SC
54#if wxUSE_DRAG_AND_DROP
55#include "wx/dnd.h"
56#endif
57
58#include <string.h>
59
60extern wxList wxPendingDelete;
e766c8a9 61wxWindowMac* gFocusWindow = NULL ;
e9576ca5 62
fc0daf84
SC
63#ifdef __WXUNIVERSAL__
64 IMPLEMENT_ABSTRACT_CLASS(wxWindowMac, wxWindowBase)
65#else // __WXMAC__
66 IMPLEMENT_DYNAMIC_CLASS(wxWindow, wxWindowBase)
67#endif // __WXUNIVERSAL__/__WXMAC__
68
2f1ae414 69#if !USE_SHARED_LIBRARY
fc0daf84
SC
70
71BEGIN_EVENT_TABLE(wxWindowMac, wxWindowBase)
1c310985 72 EVT_NC_PAINT(wxWindowMac::OnNcPaint)
e766c8a9
SC
73 EVT_ERASE_BACKGROUND(wxWindowMac::OnEraseBackground)
74 EVT_SYS_COLOUR_CHANGED(wxWindowMac::OnSysColourChanged)
75 EVT_INIT_DIALOG(wxWindowMac::OnInitDialog)
76 EVT_IDLE(wxWindowMac::OnIdle)
77 EVT_SET_FOCUS(wxWindowMac::OnSetFocus)
e9576ca5
SC
78END_EVENT_TABLE()
79
2f1ae414 80#endif
e9576ca5 81
94abc21f
SC
82#define wxMAC_DEBUG_REDRAW 0
83#ifndef wxMAC_DEBUG_REDRAW
84#define wxMAC_DEBUG_REDRAW 0
85#endif
86
1c310985 87#define wxMAC_USE_THEME_BORDER 0
e9576ca5 88
e7549107
SC
89
90// ===========================================================================
91// implementation
92// ===========================================================================
93
e7549107
SC
94
95// ----------------------------------------------------------------------------
96// constructors and such
97// ----------------------------------------------------------------------------
98
e766c8a9 99void wxWindowMac::Init()
519cb848 100{
e7549107
SC
101 // generic
102 InitBase();
103
104 // MSW specific
105 m_doubleClickAllowed = 0;
106 m_winCaptured = FALSE;
107
108 m_isBeingDeleted = FALSE;
109
110 m_useCtl3D = FALSE;
111 m_mouseInWindow = FALSE;
112
113 m_xThumbSize = 0;
114 m_yThumbSize = 0;
115 m_backgroundTransparent = FALSE;
116
117 // as all windows are created with WS_VISIBLE style...
118 m_isShown = TRUE;
119
6264b550
RR
120 m_x = 0;
121 m_y = 0 ;
122 m_width = 0 ;
123 m_height = 0 ;
e7549107 124
6264b550
RR
125 m_hScrollBar = NULL ;
126 m_vScrollBar = NULL ;
e9576ca5
SC
127}
128
129// Destructor
e766c8a9 130wxWindowMac::~wxWindowMac()
e9576ca5 131{
fdaf613a
SC
132 // deleting a window while it is shown invalidates the region
133 if ( IsShown() ) {
e766c8a9 134 wxWindowMac* iter = this ;
fdaf613a 135 while( iter ) {
1c310985 136 if ( iter->IsTopLevel() )
fdaf613a
SC
137 {
138 Refresh() ;
139 break ;
140 }
141 iter = iter->GetParent() ;
142
143 }
144 }
145
e7549107
SC
146 m_isBeingDeleted = TRUE;
147
6264b550
RR
148 if ( s_lastMouseWindow == this )
149 {
150 s_lastMouseWindow = NULL ;
151 }
e7549107
SC
152
153 if ( gFocusWindow == this )
e9576ca5 154 {
6264b550 155 gFocusWindow = NULL ;
e9576ca5 156 }
519cb848 157
e7549107
SC
158 if ( m_parent )
159 m_parent->RemoveChild(this);
e9576ca5
SC
160
161 DestroyChildren();
e9576ca5
SC
162}
163
164// Constructor
e766c8a9 165bool wxWindowMac::Create(wxWindowMac *parent, wxWindowID id,
e9576ca5
SC
166 const wxPoint& pos,
167 const wxSize& size,
168 long style,
169 const wxString& name)
170{
e766c8a9 171 wxCHECK_MSG( parent, FALSE, wxT("can't create wxWindowMac without parent") );
e9576ca5 172
e7549107 173 if ( !CreateBase(parent, id, pos, size, style, wxDefaultValidator, name) )
e9576ca5
SC
174 return FALSE;
175
e7549107 176 parent->AddChild(this);
e9576ca5 177
6264b550
RR
178 m_x = (int)pos.x;
179 m_y = (int)pos.y;
180 AdjustForParentClientOrigin(m_x, m_y, wxSIZE_USE_EXISTING);
181 m_width = WidthDefault( size.x );
182 m_height = HeightDefault( size.y ) ;
e766c8a9 183#ifndef __WXUNIVERSAL__
6264b550
RR
184 if ( ! IsKindOf( CLASSINFO ( wxControl ) ) && ! IsKindOf( CLASSINFO( wxStatusBar ) ) )
185 {
186 MacCreateScrollBars( style ) ;
187 }
e766c8a9 188#endif
e9576ca5
SC
189 return TRUE;
190}
191
e766c8a9 192void wxWindowMac::SetFocus()
e9576ca5 193{
6264b550
RR
194 if ( gFocusWindow == this )
195 return ;
1c310985 196
6264b550
RR
197 if ( AcceptsFocus() )
198 {
199 if (gFocusWindow )
200 {
201 #if wxUSE_CARET
202 // Deal with caret
203 if ( gFocusWindow->m_caret )
204 {
205 gFocusWindow->m_caret->OnKillFocus();
206 }
207 #endif // wxUSE_CARET
e766c8a9 208 #ifndef __WXUNIVERSAL__
6264b550
RR
209 wxControl* control = wxDynamicCast( gFocusWindow , wxControl ) ;
210 if ( control && control->GetMacControl() )
211 {
76a5e5d2 212 UMASetKeyboardFocus( (WindowRef) gFocusWindow->MacGetRootWindow() , (ControlHandle) control->GetMacControl() , kControlFocusNoPart ) ;
6264b550
RR
213 control->MacRedrawControl() ;
214 }
215 #endif
216 wxFocusEvent event(wxEVT_KILL_FOCUS, gFocusWindow->m_windowId);
217 event.SetEventObject(gFocusWindow);
218 gFocusWindow->GetEventHandler()->ProcessEvent(event) ;
219 }
220 gFocusWindow = this ;
221 {
222 #if wxUSE_CARET
223 // Deal with caret
224 if ( m_caret )
225 {
226 m_caret->OnSetFocus();
227 }
228 #endif // wxUSE_CARET
229 // panel wants to track the window which was the last to have focus in it
c1fb8167 230 wxChildFocusEvent eventFocus(this);
1c310985 231 GetEventHandler()->ProcessEvent(eventFocus);
c1fb8167 232
e766c8a9 233 #ifndef __WXUNIVERSAL__
6264b550
RR
234 wxControl* control = wxDynamicCast( gFocusWindow , wxControl ) ;
235 if ( control && control->GetMacControl() )
236 {
76a5e5d2 237 UMASetKeyboardFocus( (WindowRef) gFocusWindow->MacGetRootWindow() , (ControlHandle) control->GetMacControl() , kControlEditTextPart ) ;
6264b550 238 }
e766c8a9 239 #endif
6264b550
RR
240 wxFocusEvent event(wxEVT_SET_FOCUS, m_windowId);
241 event.SetEventObject(this);
242 GetEventHandler()->ProcessEvent(event) ;
243 }
244 }
e9576ca5
SC
245}
246
e766c8a9 247bool wxWindowMac::Enable(bool enable)
e9576ca5 248{
e7549107
SC
249 if ( !wxWindowBase::Enable(enable) )
250 return FALSE;
e7549107 251
1c310985 252 MacSuperEnabled( enable ) ;
e7549107
SC
253
254 return TRUE;
e9576ca5
SC
255}
256
4116c221 257void wxWindowMac::DoCaptureMouse()
e9576ca5 258{
519cb848 259 wxTheApp->s_captureWindow = this ;
e9576ca5
SC
260}
261
90b959ae
SC
262wxWindow* wxWindowBase::GetCapture()
263{
264 return wxTheApp->s_captureWindow ;
265}
266
4116c221 267void wxWindowMac::DoReleaseMouse()
e9576ca5 268{
519cb848 269 wxTheApp->s_captureWindow = NULL ;
e9576ca5
SC
270}
271
e9576ca5
SC
272#if wxUSE_DRAG_AND_DROP
273
e766c8a9 274void wxWindowMac::SetDropTarget(wxDropTarget *pDropTarget)
e9576ca5 275{
a07c1212
SC
276 if ( m_dropTarget != 0 ) {
277 delete m_dropTarget;
e9576ca5
SC
278 }
279
a07c1212
SC
280 m_dropTarget = pDropTarget;
281 if ( m_dropTarget != 0 )
e9576ca5
SC
282 {
283 // TODO
284 }
285}
286
287#endif
288
289// Old style file-manager drag&drop
e766c8a9 290void wxWindowMac::DragAcceptFiles(bool accept)
e9576ca5
SC
291{
292 // TODO
293}
294
295// Get total size
e766c8a9 296void wxWindowMac::DoGetSize(int *x, int *y) const
e9576ca5 297{
9453cf2b
SC
298 if(x) *x = m_width ;
299 if(y) *y = m_height ;
e9576ca5
SC
300}
301
e766c8a9 302void wxWindowMac::DoGetPosition(int *x, int *y) const
e9576ca5 303{
9453cf2b
SC
304 int xx,yy;
305
306 xx = m_x ;
307 yy = m_y ;
1c310985 308 if ( !IsTopLevel() && GetParent())
519cb848
SC
309 {
310 wxPoint pt(GetParent()->GetClientAreaOrigin());
9453cf2b
SC
311 xx -= pt.x;
312 yy -= pt.y;
519cb848 313 }
9453cf2b
SC
314 if(x) *x = xx;
315 if(y) *y = yy;
e9576ca5
SC
316}
317
e766c8a9
SC
318#if wxUSE_MENUS
319bool wxWindowMac::DoPopupMenu(wxMenu *menu, int x, int y)
51abe921 320{
6264b550 321 menu->SetInvokingWindow(this);
51abe921 322 menu->UpdateUI();
6264b550 323 ClientToScreen( &x , &y ) ;
51abe921 324
76a5e5d2
SC
325 ::InsertMenu( (MenuHandle) menu->GetHMenu() , -1 ) ;
326 long menuResult = ::PopUpMenuSelect((MenuHandle) menu->GetHMenu() ,y,x, 0) ;
6264b550
RR
327 menu->MacMenuSelect( this , TickCount() , HiWord(menuResult) , LoWord(menuResult) ) ;
328 ::DeleteMenu( menu->MacGetMenuId() ) ;
329 menu->SetInvokingWindow(NULL);
51abe921
SC
330
331 return TRUE;
332}
e766c8a9 333#endif
51abe921 334
e766c8a9 335void wxWindowMac::DoScreenToClient(int *x, int *y) const
e9576ca5 336{
76a5e5d2 337 WindowRef window = (WindowRef) MacGetRootWindow() ;
519cb848 338
6264b550 339 Point localwhere = {0,0} ;
9453cf2b
SC
340
341 if(x) localwhere.h = * x ;
342 if(y) localwhere.v = * y ;
519cb848 343
6264b550
RR
344 GrafPtr port ;
345 ::GetPort( &port ) ;
346 ::SetPort( UMAGetWindowPort( window ) ) ;
347 ::GlobalToLocal( &localwhere ) ;
348 ::SetPort( port ) ;
519cb848 349
9453cf2b
SC
350 if(x) *x = localwhere.h ;
351 if(y) *y = localwhere.v ;
6264b550 352
2078220e
SC
353 MacRootWindowToWindow( x , y ) ;
354 if ( x )
ed60b502 355 x -= MacGetLeftBorderSize() ;
2078220e 356 if ( y )
ed60b502 357 y -= MacGetTopBorderSize() ;
e9576ca5
SC
358}
359
e766c8a9 360void wxWindowMac::DoClientToScreen(int *x, int *y) const
e9576ca5 361{
76a5e5d2 362 WindowRef window = (WindowRef) MacGetRootWindow() ;
6264b550 363
2078220e 364 if ( x )
ed60b502 365 x += MacGetLeftBorderSize() ;
2078220e 366 if ( y )
ed60b502
RR
367 y += MacGetTopBorderSize() ;
368
2078220e 369 MacWindowToRootWindow( x , y ) ;
6264b550
RR
370
371 Point localwhere = { 0,0 };
9453cf2b
SC
372 if(x) localwhere.h = * x ;
373 if(y) localwhere.v = * y ;
6264b550
RR
374
375 GrafPtr port ;
376 ::GetPort( &port ) ;
377 ::SetPort( UMAGetWindowPort( window ) ) ;
7d9d1fd7 378
6264b550
RR
379 ::LocalToGlobal( &localwhere ) ;
380 ::SetPort( port ) ;
9453cf2b
SC
381 if(x) *x = localwhere.h ;
382 if(y) *y = localwhere.v ;
519cb848
SC
383}
384
e766c8a9 385void wxWindowMac::MacClientToRootWindow( int *x , int *y ) const
519cb848 386{
1c310985
SC
387 wxPoint origin = GetClientAreaOrigin() ;
388 if(x) *x += origin.x ;
389 if(y) *y += origin.y ;
390
391 MacWindowToRootWindow( x , y ) ;
392}
393
394void wxWindowMac::MacRootWindowToClient( int *x , int *y ) const
395{
396 wxPoint origin = GetClientAreaOrigin() ;
397 MacRootWindowToWindow( x , y ) ;
398 if(x) *x -= origin.x ;
399 if(y) *y -= origin.y ;
400}
401
402void wxWindowMac::MacWindowToRootWindow( int *x , int *y ) const
403{
404 if ( !IsTopLevel() )
6264b550 405 {
1c310985
SC
406 if(x) *x += m_x ;
407 if(y) *y += m_y ;
408 GetParent()->MacWindowToRootWindow( x , y ) ;
6264b550 409 }
519cb848
SC
410}
411
1c310985 412void wxWindowMac::MacRootWindowToWindow( int *x , int *y ) const
519cb848 413{
1c310985 414 if ( !IsTopLevel() )
6264b550 415 {
1c310985
SC
416 if(x) *x -= m_x ;
417 if(y) *y -= m_y ;
418 GetParent()->MacRootWindowToWindow( x , y ) ;
6264b550 419 }
e9576ca5
SC
420}
421
e766c8a9 422bool wxWindowMac::SetCursor(const wxCursor& cursor)
e9576ca5 423{
6618870d 424 if (m_cursor == cursor)
e7549107 425 return FALSE;
6618870d
SC
426
427 if (wxNullCursor == cursor)
428 {
429 if ( ! wxWindowBase::SetCursor( *wxSTANDARD_CURSOR ) )
430 return FALSE ;
431 }
432 else
433 {
434 if ( ! wxWindowBase::SetCursor( cursor ) )
435 return FALSE ;
436 }
e7549107
SC
437
438 wxASSERT_MSG( m_cursor.Ok(),
439 wxT("cursor must be valid after call to the base version"));
440
441 Point pt ;
e766c8a9 442 wxWindowMac *mouseWin ;
e7549107
SC
443 GetMouse( &pt ) ;
444
445 // Change the cursor NOW if we're within the correct window
446
447 if ( MacGetWindowFromPoint( wxPoint( pt.h , pt.v ) , &mouseWin ) )
e9576ca5 448 {
6264b550
RR
449 if ( mouseWin == this && !wxIsBusy() )
450 {
451 m_cursor.MacInstall() ;
452 }
e9576ca5 453 }
e7549107
SC
454
455 return TRUE ;
e9576ca5
SC
456}
457
458
459// Get size *available for subwindows* i.e. excluding menu bar etc.
e766c8a9 460void wxWindowMac::DoGetClientSize(int *x, int *y) const
e9576ca5 461{
9453cf2b
SC
462 int ww, hh;
463 ww = m_width ;
464 hh = m_height ;
519cb848 465
6264b550
RR
466 ww -= MacGetLeftBorderSize( ) + MacGetRightBorderSize( ) ;
467 hh -= MacGetTopBorderSize( ) + MacGetBottomBorderSize( );
468
2f1ae414
SC
469 if ( (m_vScrollBar && m_vScrollBar->IsShown()) || (m_hScrollBar && m_hScrollBar->IsShown()) )
470 {
6264b550
RR
471 int x1 = 0 ;
472 int y1 = 0 ;
473 int w = m_width ;
474 int h = m_height ;
475
476 MacClientToRootWindow( &x1 , &y1 ) ;
477 MacClientToRootWindow( &w , &h ) ;
478
479 wxWindowMac *iter = (wxWindowMac*)this ;
480
481 int totW = 10000 , totH = 10000;
482 while( iter )
483 {
1c310985 484 if ( iter->IsTopLevel() )
6264b550
RR
485 {
486 totW = iter->m_width ;
487 totH = iter->m_height ;
488 break ;
489 }
490
491 iter = iter->GetParent() ;
492 }
493
494 if (m_hScrollBar && m_hScrollBar->IsShown() )
495 {
496 hh -= MAC_SCROLLBAR_SIZE;
497 if ( h-y1 >= totH )
498 {
499 hh += 1 ;
500 }
501 }
502 if (m_vScrollBar && m_vScrollBar->IsShown() )
503 {
504 ww -= MAC_SCROLLBAR_SIZE;
505 if ( w-x1 >= totW )
506 {
507 ww += 1 ;
508 }
509 }
2f1ae414 510 }
9453cf2b
SC
511 if(x) *x = ww;
512 if(y) *y = hh;
519cb848
SC
513}
514
51abe921
SC
515
516// ----------------------------------------------------------------------------
517// tooltips
518// ----------------------------------------------------------------------------
519
520#if wxUSE_TOOLTIPS
521
e766c8a9 522void wxWindowMac::DoSetToolTip(wxToolTip *tooltip)
51abe921
SC
523{
524 wxWindowBase::DoSetToolTip(tooltip);
525
6264b550
RR
526 if ( m_tooltip )
527 m_tooltip->SetWindow(this);
51abe921
SC
528}
529
530#endif // wxUSE_TOOLTIPS
531
e766c8a9 532void wxWindowMac::DoMoveWindow(int x, int y, int width, int height)
51abe921 533{
6264b550
RR
534 int former_x = m_x ;
535 int former_y = m_y ;
536 int former_w = m_width ;
537 int former_h = m_height ;
538
519cb848
SC
539 int actualWidth = width;
540 int actualHeight = height;
541 int actualX = x;
542 int actualY = y;
7810c95b 543
7810c95b 544 if ((m_minWidth != -1) && (actualWidth < m_minWidth))
6264b550 545 actualWidth = m_minWidth;
7810c95b 546 if ((m_minHeight != -1) && (actualHeight < m_minHeight))
6264b550 547 actualHeight = m_minHeight;
7810c95b 548 if ((m_maxWidth != -1) && (actualWidth > m_maxWidth))
6264b550 549 actualWidth = m_maxWidth;
7810c95b 550 if ((m_maxHeight != -1) && (actualHeight > m_maxHeight))
6264b550
RR
551 actualHeight = m_maxHeight;
552
553 bool doMove = false ;
554 bool doResize = false ;
555
556 if ( actualX != former_x || actualY != former_y )
557 {
558 doMove = true ;
559 }
560 if ( actualWidth != former_w || actualHeight != former_h )
561 {
562 doResize = true ;
563 }
564
565 if ( doMove || doResize )
566 {
1c310985 567 // erase former position
de043984
SC
568
569 Refresh() ;
1c310985 570
6264b550
RR
571 m_x = actualX ;
572 m_y = actualY ;
573 m_width = actualWidth ;
574 m_height = actualHeight ;
de043984 575
1c310985 576 // erase new position
de043984
SC
577
578 Refresh() ;
1c310985
SC
579 if ( doMove )
580 wxWindowMac::MacSuperChangedPosition() ; // like this only children will be notified
581
6264b550
RR
582 MacRepositionScrollBars() ;
583 if ( doMove )
584 {
585 wxPoint point(m_x, m_y);
586 wxMoveEvent event(point, m_windowId);
587 event.SetEventObject(this);
588 GetEventHandler()->ProcessEvent(event) ;
589 }
590 if ( doResize )
591 {
592 MacRepositionScrollBars() ;
593 wxSize size(m_width, m_height);
594 wxSizeEvent event(size, m_windowId);
595 event.SetEventObject(this);
596 GetEventHandler()->ProcessEvent(event);
597 }
598 }
599
954fc50b
SC
600}
601
602// set the size of the window: if the dimensions are positive, just use them,
603// but if any of them is equal to -1, it means that we must find the value for
604// it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in
605// which case -1 is a valid value for x and y)
606//
607// If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate
608// the width/height to best suit our contents, otherwise we reuse the current
609// width/height
610void wxWindowMac::DoSetSize(int x, int y, int width, int height, int sizeFlags)
611{
612 // get the current size and position...
613 int currentX, currentY;
614 GetPosition(&currentX, &currentY);
574bf507 615
954fc50b
SC
616 int currentW,currentH;
617 GetSize(&currentW, &currentH);
618
619 // ... and don't do anything (avoiding flicker) if it's already ok
620 if ( x == currentX && y == currentY &&
621 width == currentW && height == currentH )
622 {
6264b550 623 MacRepositionScrollBars() ; // we might have a real position shift
954fc50b
SC
624 return;
625 }
626
627 if ( x == -1 && !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE) )
628 x = currentX;
629 if ( y == -1 && !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE) )
630 y = currentY;
631
632 AdjustForParentClientOrigin(x, y, sizeFlags);
633
634 wxSize size(-1, -1);
635 if ( width == -1 )
636 {
637 if ( sizeFlags & wxSIZE_AUTO_WIDTH )
638 {
639 size = DoGetBestSize();
640 width = size.x;
641 }
642 else
643 {
644 // just take the current one
645 width = currentW;
646 }
647 }
648
649 if ( height == -1 )
650 {
651 if ( sizeFlags & wxSIZE_AUTO_HEIGHT )
652 {
653 if ( size.x == -1 )
654 {
655 size = DoGetBestSize();
656 }
657 //else: already called DoGetBestSize() above
658
659 height = size.y;
660 }
661 else
662 {
663 // just take the current one
664 height = currentH;
665 }
666 }
667
668 DoMoveWindow(x, y, width, height);
669
e9576ca5 670}
e9576ca5
SC
671// For implementation purposes - sometimes decorations make the client area
672// smaller
519cb848 673
e766c8a9 674wxPoint wxWindowMac::GetClientAreaOrigin() const
e9576ca5 675{
5b781a67 676 return wxPoint(MacGetLeftBorderSize( ) , MacGetTopBorderSize( ) );
e9576ca5
SC
677}
678
1c310985 679void wxWindow::SetTitle(const wxString& title)
e9576ca5 680{
ed60b502 681 m_label = title ;
519cb848
SC
682}
683
1c310985 684wxString wxWindow::GetTitle() const
519cb848 685{
ed60b502 686 return m_label ;
519cb848
SC
687}
688
e766c8a9 689bool wxWindowMac::Show(bool show)
e9576ca5 690{
e7549107
SC
691 if ( !wxWindowBase::Show(show) )
692 return FALSE;
693
6264b550
RR
694 MacSuperShown( show ) ;
695 if ( !show )
696 {
76a5e5d2 697 WindowRef window = (WindowRef) MacGetRootWindow() ;
6264b550
RR
698 wxWindowMac* win = wxFindWinFromMacWindow( window ) ;
699 if ( win && !win->m_isBeingDeleted )
700 Refresh() ;
701 }
702 else
703 {
704 Refresh() ;
705 }
fdaf613a 706
e7549107 707 return TRUE;
e9576ca5
SC
708}
709
e766c8a9 710void wxWindowMac::MacSuperShown( bool show )
8208e181 711{
6264b550
RR
712 wxNode *node = GetChildren().First();
713 while ( node )
714 {
715 wxWindowMac *child = (wxWindowMac *)node->Data();
716 if ( child->m_isShown )
717 child->MacSuperShown( show ) ;
718 node = node->Next();
719 }
8208e181
SC
720}
721
1c310985
SC
722void wxWindowMac::MacSuperEnabled( bool enabled )
723{
1c469f7f
SC
724 if ( !IsTopLevel() )
725 {
726 // to be absolutely correct we'd have to invalidate (with eraseBkground
727 // because unter MacOSX the frames are drawn with an addXXX mode)
728 // the borders area
729 }
1c310985
SC
730 wxNode *node = GetChildren().First();
731 while ( node )
732 {
733 wxWindowMac *child = (wxWindowMac *)node->Data();
734 if ( child->m_isShown )
735 child->MacSuperEnabled( enabled ) ;
736 node = node->Next();
737 }
738}
739
e766c8a9 740bool wxWindowMac::MacIsReallyShown() const
c809f3be 741{
6264b550
RR
742 if ( m_isShown && (m_parent != NULL) ) {
743 return m_parent->MacIsReallyShown();
744 }
745 return m_isShown;
746/*
747 bool status = m_isShown ;
748 wxWindowMac * win = this ;
749 while ( status && win->m_parent != NULL )
750 {
751 win = win->m_parent ;
752 status = win->m_isShown ;
753 }
754 return status ;
5fde6fcc 755*/
c809f3be
SC
756}
757
e766c8a9 758int wxWindowMac::GetCharHeight() const
e9576ca5 759{
6264b550
RR
760 wxClientDC dc ( (wxWindowMac*)this ) ;
761 return dc.GetCharHeight() ;
e9576ca5
SC
762}
763
e766c8a9 764int wxWindowMac::GetCharWidth() const
e9576ca5 765{
6264b550
RR
766 wxClientDC dc ( (wxWindowMac*)this ) ;
767 return dc.GetCharWidth() ;
e9576ca5
SC
768}
769
e766c8a9 770void wxWindowMac::GetTextExtent(const wxString& string, int *x, int *y,
e7549107 771 int *descent, int *externalLeading, const wxFont *theFont ) const
e9576ca5 772{
e7549107
SC
773 const wxFont *fontToUse = theFont;
774 if ( !fontToUse )
775 fontToUse = &m_font;
7c74e7fe 776
e766c8a9 777 wxClientDC dc( (wxWindowMac*) this ) ;
7c74e7fe 778 long lx,ly,ld,le ;
5fde6fcc 779 dc.GetTextExtent( string , &lx , &ly , &ld, &le, (wxFont *)fontToUse ) ;
2f1ae414 780 if ( externalLeading )
6264b550 781 *externalLeading = le ;
2f1ae414 782 if ( descent )
6264b550 783 *descent = ld ;
2f1ae414 784 if ( x )
6264b550 785 *x = lx ;
2f1ae414 786 if ( y )
6264b550 787 *y = ly ;
e9576ca5
SC
788}
789
0a67a93b 790/*
1c310985
SC
791 * Rect is given in client coordinates, for further reading, read wxTopLevelWindowMac::InvalidateRect
792 * we always intersect with the entire window, not only with the client area
793 */
794
e766c8a9 795void wxWindowMac::Refresh(bool eraseBack, const wxRect *rect)
e9576ca5 796{
94abc21f
SC
797 if ( MacGetTopLevelWindow() == NULL )
798 return ;
799
1c310985
SC
800 wxPoint client ;
801 client = GetClientAreaOrigin( ) ;
802 Rect clientrect = { -client.y , -client.x , m_height - client.y , m_width - client.x} ;
803 if ( rect )
6264b550 804 {
1c310985
SC
805 Rect r = { rect->y , rect->x , rect->y + rect->height , rect->x + rect->width } ;
806 SectRect( &clientrect , &r , &clientrect ) ;
6264b550 807 }
1c310985 808 if ( !EmptyRect( &clientrect ) )
e9576ca5 809 {
1c310985
SC
810 int top = 0 , left = 0 ;
811
812 MacClientToRootWindow( &left , &top ) ;
813 OffsetRect( &clientrect , left , top ) ;
814
815 MacGetTopLevelWindow()->MacInvalidate( &clientrect , eraseBack ) ;
e9576ca5
SC
816 }
817}
818
e7549107
SC
819#if wxUSE_CARET && WXWIN_COMPATIBILITY
820// ---------------------------------------------------------------------------
e9576ca5 821// Caret manipulation
e7549107
SC
822// ---------------------------------------------------------------------------
823
e766c8a9 824void wxWindowMac::CreateCaret(int w, int h)
e9576ca5 825{
e7549107 826 SetCaret(new wxCaret(this, w, h));
e9576ca5
SC
827}
828
e766c8a9 829void wxWindowMac::CreateCaret(const wxBitmap *WXUNUSED(bitmap))
e9576ca5 830{
e7549107 831 wxFAIL_MSG("not implemented");
e9576ca5
SC
832}
833
e766c8a9 834void wxWindowMac::ShowCaret(bool show)
e9576ca5 835{
e7549107
SC
836 wxCHECK_RET( m_caret, "no caret to show" );
837
838 m_caret->Show(show);
e9576ca5
SC
839}
840
e766c8a9 841void wxWindowMac::DestroyCaret()
e9576ca5 842{
e7549107 843 SetCaret(NULL);
e9576ca5
SC
844}
845
e766c8a9 846void wxWindowMac::SetCaretPos(int x, int y)
e9576ca5 847{
e7549107
SC
848 wxCHECK_RET( m_caret, "no caret to move" );
849
850 m_caret->Move(x, y);
e9576ca5
SC
851}
852
e766c8a9 853void wxWindowMac::GetCaretPos(int *x, int *y) const
e9576ca5 854{
e7549107
SC
855 wxCHECK_RET( m_caret, "no caret to get position of" );
856
857 m_caret->GetPosition(x, y);
e9576ca5 858}
e7549107 859#endif // wxUSE_CARET
e9576ca5 860
e766c8a9 861wxWindowMac *wxGetActiveWindow()
e9576ca5 862{
519cb848 863 // actually this is a windows-only concept
e9576ca5
SC
864 return NULL;
865}
866
e9576ca5 867// Coordinates relative to the window
e766c8a9 868void wxWindowMac::WarpPointer (int x_pos, int y_pos)
e9576ca5 869{
519cb848 870 // We really dont move the mouse programmatically under mac
e9576ca5
SC
871}
872
94abc21f 873const wxBrush& wxWindowMac::MacGetBackgroundBrush()
e9576ca5 874{
a756f210 875 if ( m_backgroundColour == wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE) )
1c310985 876 {
94abc21f 877 m_macBackgroundBrush.SetMacTheme( kThemeBrushDocumentWindowBackground ) ;
1c310985 878 }
a756f210 879 else if ( m_backgroundColour == wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE ) )
94abc21f
SC
880 {
881 // on mac we have the difficult situation, that 3dface gray can be different colours, depending whether
882 // it is on a notebook panel or not, in order to take care of that we walk up the hierarchy until we have
883 // either a non gray background color or a non control window
884
76a5e5d2 885 WindowRef window = (WindowRef) MacGetRootWindow() ;
94abc21f
SC
886
887 wxWindowMac* parent = GetParent() ;
888 while( parent )
889 {
890 if ( parent->MacGetRootWindow() != window )
891 {
892 // we are in a different window on the mac system
893 parent = NULL ;
894 break ;
895 }
896
897 {
a756f210
VS
898 if ( parent->m_backgroundColour != wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE )
899 && parent->m_backgroundColour != wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE) )
94abc21f
SC
900 {
901 // if we have any other colours in the hierarchy
902 m_macBackgroundBrush.SetColour( parent->m_backgroundColour ) ;
903 break ;
904 }
905 // if we have the normal colours in the hierarchy but another control etc. -> use it's background
906 if ( parent->IsKindOf( CLASSINFO( wxNotebook ) ) || parent->IsKindOf( CLASSINFO( wxTabCtrl ) ))
907 {
7d9d1fd7
SC
908 Rect extent = { 0 , 0 , 0 , 0 } ;
909 int x , y ;
910 x = y = 0 ;
911 wxSize size = GetSize() ;
912 parent->MacClientToRootWindow( &x , &y ) ;
913 extent.left = x ;
914 extent.top = y ;
915 extent.top-- ;
916 extent.right = x + size.x ;
917 extent.bottom = y + size.y ;
76a5e5d2 918 m_macBackgroundBrush.SetMacThemeBackground( kThemeBackgroundTabPane , (WXRECTPTR) &extent ) ; // todo eventually change for inactive
94abc21f
SC
919 break ;
920 }
921 }
922 parent = parent->GetParent() ;
923 }
924 if ( !parent )
925 {
926 m_macBackgroundBrush.SetMacTheme( kThemeBrushDialogBackgroundActive ) ; // todo eventually change for inactive
927 }
928 }
929 else
930 {
931 m_macBackgroundBrush.SetColour( m_backgroundColour ) ;
932 }
933
934 return m_macBackgroundBrush ;
1c310985 935
94abc21f
SC
936}
937
938void wxWindowMac::OnEraseBackground(wxEraseEvent& event)
939{
940 event.GetDC()->Clear() ;
1c310985
SC
941}
942
943void wxWindowMac::OnNcPaint( wxNcPaintEvent& event )
944{
de043984
SC
945 wxWindowDC dc(this) ;
946 wxMacPortSetter helper(&dc) ;
947
76a5e5d2 948 MacPaintBorders( dc.m_macLocalOrigin.x , dc.m_macLocalOrigin.y) ;
e9576ca5
SC
949}
950
e766c8a9 951int wxWindowMac::GetScrollPos(int orient) const
e9576ca5 952{
1c310985
SC
953 if ( orient == wxHORIZONTAL )
954 {
955 if ( m_hScrollBar )
956 return m_hScrollBar->GetThumbPosition() ;
957 }
958 else
959 {
960 if ( m_vScrollBar )
961 return m_vScrollBar->GetThumbPosition() ;
962 }
e9576ca5
SC
963 return 0;
964}
965
966// This now returns the whole range, not just the number
967// of positions that we can scroll.
e766c8a9 968int wxWindowMac::GetScrollRange(int orient) const
e9576ca5 969{
1c310985
SC
970 if ( orient == wxHORIZONTAL )
971 {
972 if ( m_hScrollBar )
973 return m_hScrollBar->GetRange() ;
974 }
975 else
976 {
977 if ( m_vScrollBar )
978 return m_vScrollBar->GetRange() ;
979 }
e9576ca5
SC
980 return 0;
981}
982
e766c8a9 983int wxWindowMac::GetScrollThumb(int orient) const
e9576ca5 984{
1c310985
SC
985 if ( orient == wxHORIZONTAL )
986 {
987 if ( m_hScrollBar )
988 return m_hScrollBar->GetThumbSize() ;
989 }
990 else
991 {
992 if ( m_vScrollBar )
993 return m_vScrollBar->GetThumbSize() ;
994 }
e9576ca5
SC
995 return 0;
996}
997
e766c8a9 998void wxWindowMac::SetScrollPos(int orient, int pos, bool refresh)
e9576ca5 999{
1c310985 1000 if ( orient == wxHORIZONTAL )
6264b550 1001 {
1c310985
SC
1002 if ( m_hScrollBar )
1003 m_hScrollBar->SetThumbPosition( pos ) ;
6264b550
RR
1004 }
1005 else
1006 {
1c310985
SC
1007 if ( m_vScrollBar )
1008 m_vScrollBar->SetThumbPosition( pos ) ;
6264b550 1009 }
2f1ae414
SC
1010}
1011
7d9d1fd7 1012void wxWindowMac::MacPaintBorders( int left , int top )
2f1ae414 1013{
1c310985 1014 if( IsTopLevel() )
6264b550
RR
1015 return ;
1016
1017 RGBColor white = { 0xFFFF, 0xFFFF , 0xFFFF } ;
1018 RGBColor black = { 0x0000, 0x0000 , 0x0000 } ;
1019 RGBColor face = { 0xDDDD, 0xDDDD , 0xDDDD } ;
1020 RGBColor shadow = { 0x4444, 0x4444 , 0x4444 } ;
1021 PenNormal() ;
2f1ae414
SC
1022
1023 if (HasFlag(wxRAISED_BORDER) || HasFlag( wxSUNKEN_BORDER) || HasFlag(wxDOUBLE_BORDER) )
1024 {
1c310985 1025#if wxMAC_USE_THEME_BORDER
ed60b502
RR
1026 Rect rect = { top , left , m_height + top , m_width + left } ;
1027 SInt32 border = 0 ;
1028 /*
1029 GetThemeMetric( kThemeMetricListBoxFrameOutset , &border ) ;
1030 InsetRect( &rect , border , border );
1c310985
SC
1031 DrawThemeListBoxFrame(&rect,IsEnabled() ? kThemeStateActive : kThemeStateInactive) ;
1032 */
1033
1034 DrawThemePrimaryGroup(&rect ,IsEnabled() ? kThemeStateActive : kThemeStateInactive) ;
1035#else
ed60b502 1036 bool sunken = HasFlag( wxSUNKEN_BORDER ) ;
653b2449 1037 RGBForeColor( &face );
7d9d1fd7
SC
1038 MoveTo( left + 0 , top + m_height - 2 );
1039 LineTo( left + 0 , top + 0 );
1040 LineTo( left + m_width - 2 , top + 0 );
653b2449 1041
7d9d1fd7
SC
1042 MoveTo( left + 2 , top + m_height - 3 );
1043 LineTo( left + m_width - 3 , top + m_height - 3 );
1044 LineTo( left + m_width - 3 , top + 2 );
653b2449
SC
1045
1046 RGBForeColor( sunken ? &face : &black );
7d9d1fd7
SC
1047 MoveTo( left + 0 , top + m_height - 1 );
1048 LineTo( left + m_width - 1 , top + m_height - 1 );
1049 LineTo( left + m_width - 1 , top + 0 );
653b2449
SC
1050
1051 RGBForeColor( sunken ? &shadow : &white );
7d9d1fd7
SC
1052 MoveTo( left + 1 , top + m_height - 3 );
1053 LineTo( left + 1, top + 1 );
1054 LineTo( left + m_width - 3 , top + 1 );
653b2449
SC
1055
1056 RGBForeColor( sunken ? &white : &shadow );
7d9d1fd7
SC
1057 MoveTo( left + 1 , top + m_height - 2 );
1058 LineTo( left + m_width - 2 , top + m_height - 2 );
1059 LineTo( left + m_width - 2 , top + 1 );
653b2449
SC
1060
1061 RGBForeColor( sunken ? &black : &face );
7d9d1fd7
SC
1062 MoveTo( left + 2 , top + m_height - 4 );
1063 LineTo( left + 2 , top + 2 );
1064 LineTo( left + m_width - 4 , top + 2 );
1c310985 1065#endif
8208e181
SC
1066 }
1067 else if (HasFlag(wxSIMPLE_BORDER))
1068 {
ed60b502 1069 Rect rect = { top , left , m_height + top , m_width + left } ;
6264b550
RR
1070 RGBForeColor( &black ) ;
1071 FrameRect( &rect ) ;
2f1ae414 1072 }
8208e181
SC
1073}
1074
abda5788
SC
1075void wxWindowMac::RemoveChild( wxWindowBase *child )
1076{
1077 if ( child == m_hScrollBar )
1078 m_hScrollBar = NULL ;
1079 if ( child == m_vScrollBar )
1080 m_vScrollBar = NULL ;
1081
1082 wxWindowBase::RemoveChild( child ) ;
1083}
1084
e9576ca5 1085// New function that will replace some of the above.
e766c8a9 1086void wxWindowMac::SetScrollbar(int orient, int pos, int thumbVisible,
e9576ca5
SC
1087 int range, bool refresh)
1088{
6264b550
RR
1089 if ( orient == wxHORIZONTAL )
1090 {
1091 if ( m_hScrollBar )
1092 {
1093 if ( range == 0 || thumbVisible >= range )
1094 {
1095 if ( m_hScrollBar->IsShown() )
1096 m_hScrollBar->Show(false) ;
1097 }
1098 else
1099 {
1100 if ( !m_hScrollBar->IsShown() )
1101 m_hScrollBar->Show(true) ;
1102 m_hScrollBar->SetScrollbar( pos , thumbVisible , range , thumbVisible , refresh ) ;
1103 }
1104 }
1105 }
1106 else
1107 {
1108 if ( m_vScrollBar )
1109 {
1110 if ( range == 0 || thumbVisible >= range )
1111 {
1112 if ( m_vScrollBar->IsShown() )
1113 m_vScrollBar->Show(false) ;
1114 }
1115 else
1116 {
1117 if ( !m_vScrollBar->IsShown() )
1118 m_vScrollBar->Show(true) ;
1119 m_vScrollBar->SetScrollbar( pos , thumbVisible , range , thumbVisible , refresh ) ;
1120 }
1121 }
1122 }
1123 MacRepositionScrollBars() ;
e9576ca5
SC
1124}
1125
1126// Does a physical scroll
e766c8a9 1127void wxWindowMac::ScrollWindow(int dx, int dy, const wxRect *rect)
e9576ca5 1128{
de043984
SC
1129 wxClientDC dc(this) ;
1130 wxMacPortSetter helper(&dc) ;
1131
6264b550
RR
1132 {
1133 int width , height ;
1134 GetClientSize( &width , &height ) ;
1135
de043984 1136 Rect scrollrect = { dc.YLOG2DEVMAC(0) , dc.XLOG2DEVMAC(0) , dc.YLOG2DEVMAC(height) , dc.XLOG2DEVMAC(width) } ;
6264b550
RR
1137 RgnHandle updateRgn = NewRgn() ;
1138 ClipRect( &scrollrect ) ;
1139 if ( rect )
1140 {
de043984
SC
1141 Rect r = { dc.YLOG2DEVMAC(rect->y) , dc.XLOG2DEVMAC(rect->x) , dc.YLOG2DEVMAC(rect->y + rect->height) ,
1142 dc.XLOG2DEVMAC(rect->x + rect->width) } ;
6264b550
RR
1143 SectRect( &scrollrect , &r , &scrollrect ) ;
1144 }
1145 ScrollRect( &scrollrect , dx , dy , updateRgn ) ;
76a5e5d2 1146 InvalWindowRgn( (WindowRef) MacGetRootWindow() , updateRgn ) ;
6264b550
RR
1147 DisposeRgn( updateRgn ) ;
1148 }
1149
1150 for (wxNode *node = GetChildren().First(); node; node = node->Next())
1151 {
1152 wxWindowMac *child = (wxWindowMac*)node->Data();
1153 if (child == m_vScrollBar) continue;
1154 if (child == m_hScrollBar) continue;
1155 if (child->IsTopLevel()) continue;
1156 int x,y;
1157 child->GetPosition( &x, &y );
1158 int w,h;
1159 child->GetSize( &w, &h );
1160 child->SetSize( x+dx, y+dy, w, h );
1161 }
1162
e9576ca5
SC
1163}
1164
e766c8a9 1165void wxWindowMac::MacOnScroll(wxScrollEvent &event )
7c74e7fe 1166{
6264b550
RR
1167 if ( event.m_eventObject == m_vScrollBar || event.m_eventObject == m_hScrollBar )
1168 {
1169 wxScrollWinEvent wevent;
1170 wevent.SetPosition(event.GetPosition());
1171 wevent.SetOrientation(event.GetOrientation());
1172 wevent.m_eventObject = this;
1173
1174 if (event.m_eventType == wxEVT_SCROLL_TOP) {
1175 wevent.m_eventType = wxEVT_SCROLLWIN_TOP;
1176 } else
1177 if (event.m_eventType == wxEVT_SCROLL_BOTTOM) {
1178 wevent.m_eventType = wxEVT_SCROLLWIN_BOTTOM;
1179 } else
1180 if (event.m_eventType == wxEVT_SCROLL_LINEUP) {
1181 wevent.m_eventType = wxEVT_SCROLLWIN_LINEUP;
1182 } else
1183 if (event.m_eventType == wxEVT_SCROLL_LINEDOWN) {
1184 wevent.m_eventType = wxEVT_SCROLLWIN_LINEDOWN;
1185 } else
1186 if (event.m_eventType == wxEVT_SCROLL_PAGEUP) {
1187 wevent.m_eventType = wxEVT_SCROLLWIN_PAGEUP;
1188 } else
1189 if (event.m_eventType == wxEVT_SCROLL_PAGEDOWN) {
1190 wevent.m_eventType = wxEVT_SCROLLWIN_PAGEDOWN;
1191 } else
1192 if (event.m_eventType == wxEVT_SCROLL_THUMBTRACK) {
1193 wevent.m_eventType = wxEVT_SCROLLWIN_THUMBTRACK;
1194 }
1195
1196 GetEventHandler()->ProcessEvent(wevent);
7c74e7fe
SC
1197 }
1198}
1199
e9576ca5 1200// Get the window with the focus
e766c8a9 1201wxWindowMac *wxWindowBase::FindFocus()
e9576ca5 1202{
6264b550 1203 return gFocusWindow ;
519cb848
SC
1204}
1205
e7549107 1206#if WXWIN_COMPATIBILITY
e9576ca5
SC
1207// If nothing defined for this, try the parent.
1208// E.g. we may be a button loaded from a resource, with no callback function
1209// defined.
e766c8a9 1210void wxWindowMac::OnCommand(wxWindowMac& win, wxCommandEvent& event)
e9576ca5 1211{
e7549107
SC
1212 if ( GetEventHandler()->ProcessEvent(event) )
1213 return;
1214 if ( m_parent )
1215 m_parent->GetEventHandler()->OnCommand(win, event);
e9576ca5 1216}
e7549107 1217#endif // WXWIN_COMPATIBILITY_2
e9576ca5 1218
e7549107 1219#if WXWIN_COMPATIBILITY
e766c8a9 1220wxObject* wxWindowMac::GetChild(int number) const
e9576ca5 1221{
e7549107
SC
1222 // Return a pointer to the Nth object in the Panel
1223 wxNode *node = GetChildren().First();
1224 int n = number;
1225 while (node && n--)
1226 node = node->Next();
1227 if ( node )
519cb848 1228 {
e7549107
SC
1229 wxObject *obj = (wxObject *)node->Data();
1230 return(obj);
519cb848
SC
1231 }
1232 else
e7549107 1233 return NULL;
e9576ca5 1234}
e7549107 1235#endif // WXWIN_COMPATIBILITY
e9576ca5 1236
e766c8a9 1237void wxWindowMac::OnSetFocus(wxFocusEvent& event)
7810c95b
SC
1238{
1239 // panel wants to track the window which was the last to have focus in it,
1240 // so we want to set ourselves as the window which last had focus
1241 //
1242 // notice that it's also important to do it upwards the tree becaus
1243 // otherwise when the top level panel gets focus, it won't set it back to
1244 // us, but to some other sibling
c1fb8167
SC
1245
1246 // CS:don't know if this is still needed:
1247 //wxChildFocusEvent eventFocus(this);
1248 //(void)GetEventHandler()->ProcessEvent(eventFocus);
7810c95b
SC
1249
1250 event.Skip();
1251}
1252
e766c8a9 1253void wxWindowMac::Clear()
e9576ca5 1254{
1c310985
SC
1255 wxClientDC dc(this);
1256 wxBrush brush(GetBackgroundColour(), wxSOLID);
1257 dc.SetBackground(brush);
1258 dc.Clear();
e9576ca5
SC
1259}
1260
e7549107 1261// Setup background and foreground colours correctly
e766c8a9 1262void wxWindowMac::SetupColours()
e9576ca5 1263{
e7549107
SC
1264 if ( GetParent() )
1265 SetBackgroundColour(GetParent()->GetBackgroundColour());
e9576ca5
SC
1266}
1267
e766c8a9 1268void wxWindowMac::OnIdle(wxIdleEvent& event)
e9576ca5 1269{
519cb848
SC
1270/*
1271 // Check if we need to send a LEAVE event
1272 if (m_mouseInWindow)
1273 {
1274 POINT pt;
1275 ::GetCursorPos(&pt);
1276 if (::WindowFromPoint(pt) != (HWND) GetHWND())
1277 {
1278 // Generate a LEAVE event
1279 m_mouseInWindow = FALSE;
1280 MSWOnMouseLeave(pt.x, pt.y, 0);
1281 }
e9576ca5
SC
1282 }
1283*/
1284
1285 // This calls the UI-update mechanism (querying windows for
1286 // menu/toolbar/control state information)
6264b550 1287 UpdateWindowUI();
e9576ca5
SC
1288}
1289
1290// Raise the window to the top of the Z order
e766c8a9 1291void wxWindowMac::Raise()
e9576ca5 1292{
e9576ca5
SC
1293}
1294
1295// Lower the window to the bottom of the Z order
e766c8a9 1296void wxWindowMac::Lower()
e9576ca5 1297{
e9576ca5
SC
1298}
1299
e766c8a9 1300void wxWindowMac::DoSetClientSize(int width, int height)
519cb848 1301{
6264b550
RR
1302 if ( width != -1 || height != -1 )
1303 {
1304
1305 if ( width != -1 && m_vScrollBar )
1306 width += MAC_SCROLLBAR_SIZE ;
1307 if ( height != -1 && m_vScrollBar )
1308 height += MAC_SCROLLBAR_SIZE ;
519cb848 1309
6264b550
RR
1310 width += MacGetLeftBorderSize( ) + MacGetRightBorderSize( ) ;
1311 height += MacGetTopBorderSize( ) + MacGetBottomBorderSize( ) ;
2f1ae414 1312
6264b550
RR
1313 DoSetSize( -1 , -1 , width , height ) ;
1314 }
519cb848
SC
1315}
1316
519cb848 1317
e766c8a9 1318wxWindowMac* wxWindowMac::s_lastMouseWindow = NULL ;
519cb848 1319
e766c8a9 1320bool wxWindowMac::MacGetWindowFromPointSub( const wxPoint &point , wxWindowMac** outWin )
519cb848 1321{
a07c1212
SC
1322 if ( IsTopLevel() )
1323 {
1324 if ((point.x < 0) || (point.y < 0) ||
1325 (point.x > (m_width)) || (point.y > (m_height)))
1326 return FALSE;
1327 }
1328 else
1329 {
1330 if ((point.x < m_x) || (point.y < m_y) ||
1331 (point.x > (m_x + m_width)) || (point.y > (m_y + m_height)))
1332 return FALSE;
1333 }
6264b550 1334
76a5e5d2 1335 WindowRef window = (WindowRef) MacGetRootWindow() ;
519cb848 1336
6264b550 1337 wxPoint newPoint( point ) ;
519cb848 1338
a07c1212
SC
1339 if ( !IsTopLevel() )
1340 {
1341 newPoint.x -= m_x;
1342 newPoint.y -= m_y;
1343 }
6264b550
RR
1344
1345 for (wxNode *node = GetChildren().First(); node; node = node->Next())
1346 {
1347 wxWindowMac *child = (wxWindowMac*)node->Data();
1348 // added the m_isShown test --dmazzoni
1c310985 1349 if ( child->MacGetRootWindow() == window && child->m_isShown )
6264b550
RR
1350 {
1351 if (child->MacGetWindowFromPointSub(newPoint , outWin ))
1352 return TRUE;
1353 }
1354 }
519cb848 1355
6264b550
RR
1356 *outWin = this ;
1357 return TRUE;
519cb848
SC
1358}
1359
e766c8a9 1360bool wxWindowMac::MacGetWindowFromPoint( const wxPoint &screenpoint , wxWindowMac** outWin )
519cb848 1361{
6264b550 1362 WindowRef window ;
ed60b502 1363
6264b550
RR
1364 Point pt = { screenpoint.y , screenpoint.x } ;
1365 if ( ::FindWindow( pt , &window ) == 3 )
1366 {
ed60b502 1367
a07c1212
SC
1368 wxWindowMac* win = wxFindWinFromMacWindow( window ) ;
1369 if ( win )
1370 {
ed60b502
RR
1371 // No, this yields the CLIENT are, we need the whole frame. RR.
1372 // point = win->ScreenToClient( point ) ;
1373
1374 GrafPtr port;
1375 ::GetPort( &port ) ;
1376 ::SetPort( UMAGetWindowPort( window ) ) ;
1377 ::GlobalToLocal( &pt ) ;
1378 ::SetPort( port ) ;
1379
1380 wxPoint point( pt.h, pt.v ) ;
1381
6264b550 1382 return win->MacGetWindowFromPointSub( point , outWin ) ;
a07c1212 1383 }
6264b550
RR
1384 }
1385 return FALSE ;
519cb848
SC
1386}
1387
1388extern int wxBusyCursorCount ;
1389
e766c8a9 1390bool wxWindowMac::MacDispatchMouseEvent(wxMouseEvent& event)
519cb848 1391{
6264b550
RR
1392 if ((event.m_x < m_x) || (event.m_y < m_y) ||
1393 (event.m_x > (m_x + m_width)) || (event.m_y > (m_y + m_height)))
1394 return FALSE;
1395
1396
1397 if ( IsKindOf( CLASSINFO ( wxStaticBox ) ) )
1398 return FALSE ;
1399
76a5e5d2 1400 WindowRef window = (WindowRef) MacGetRootWindow() ;
6264b550
RR
1401
1402 event.m_x -= m_x;
1403 event.m_y -= m_y;
1404
1405 int x = event.m_x ;
1406 int y = event.m_y ;
1407
1408 for (wxNode *node = GetChildren().First(); node; node = node->Next())
1409 {
1410 wxWindowMac *child = (wxWindowMac*)node->Data();
1c310985 1411 if ( child->MacGetRootWindow() == window && child->IsShown() && child->IsEnabled() )
6264b550
RR
1412 {
1413 if (child->MacDispatchMouseEvent(event))
1414 return TRUE;
1415 }
7810c95b 1416 }
2f1ae414 1417
6264b550
RR
1418 event.m_x = x ;
1419 event.m_y = y ;
1420
1421 if ( wxBusyCursorCount == 0 )
1422 {
1423 m_cursor.MacInstall() ;
1424 }
1425
1426 if ( event.GetEventType() == wxEVT_LEFT_DOWN )
1427 {
1428 // set focus to this window
1429 if (AcceptsFocus() && FindFocus()!=this)
1430 SetFocus();
1431 }
1432
2f1ae414
SC
1433#if wxUSE_TOOLTIPS
1434 if ( event.GetEventType() == wxEVT_MOTION
6264b550
RR
1435 || event.GetEventType() == wxEVT_ENTER_WINDOW
1436 || event.GetEventType() == wxEVT_LEAVE_WINDOW )
2f1ae414
SC
1437 wxToolTip::RelayEvent( this , event);
1438#endif // wxUSE_TOOLTIPS
ed60b502 1439
6264b550 1440 GetEventHandler()->ProcessEvent( event ) ;
ed60b502 1441
6264b550 1442 return TRUE;
519cb848
SC
1443}
1444
e766c8a9 1445wxString wxWindowMac::MacGetToolTipString( wxPoint &pt )
2f1ae414 1446{
6264b550
RR
1447 if ( m_tooltip )
1448 {
1449 return m_tooltip->GetTip() ;
1450 }
1451 return "" ;
2f1ae414 1452}
6264b550 1453
1c310985 1454void wxWindowMac::Update()
519cb848 1455{
1c310985
SC
1456 wxTopLevelWindowMac* win = MacGetTopLevelWindow( ) ;
1457 if ( win )
f1759123 1458 {
1c310985 1459 win->MacUpdate( 0 ) ;
bec721ec 1460#if TARGET_API_MAC_CARBON
ed60b502
RR
1461 if ( QDIsPortBuffered( GetWindowPort( (WindowRef) win->MacGetWindowRef() ) ) )
1462 {
1463 QDFlushPortBuffer( GetWindowPort( (WindowRef) win->MacGetWindowRef() ) , NULL ) ;
1464 }
bec721ec 1465#endif
ed60b502 1466 }
519cb848
SC
1467}
1468
1c310985 1469wxTopLevelWindowMac* wxWindowMac::MacGetTopLevelWindow() const
519cb848 1470{
1c310985 1471 wxTopLevelWindowMac* win = NULL ;
76a5e5d2 1472 WindowRef window = (WindowRef) MacGetRootWindow() ;
1c310985 1473 if ( window )
6264b550 1474 {
1c310985
SC
1475 win = wxFindWinFromMacWindow( window ) ;
1476 }
1477 return win ;
519cb848
SC
1478}
1479
94abc21f
SC
1480const wxRegion& wxWindowMac::MacGetVisibleRegion()
1481{
1482 RgnHandle visRgn = NewRgn() ;
de043984 1483 RgnHandle tempRgn = NewRgn() ;
94abc21f
SC
1484
1485 SetRectRgn( visRgn , 0 , 0 , m_width , m_height ) ;
1486
de043984
SC
1487 //TODO : as soon as the new scheme has proven to work correctly, move this to wxStaticBox
1488 if ( IsKindOf( CLASSINFO( wxStaticBox ) ) )
94abc21f 1489 {
de043984
SC
1490 int borderTop = 14 ;
1491 int borderOther = 4 ;
1492
1493 SetRectRgn( tempRgn , borderOther , borderTop , m_width - borderOther , m_height - borderOther ) ;
1494 DiffRgn( visRgn , tempRgn , visRgn ) ;
1495 }
94abc21f 1496
a07c1212 1497 if ( !IsTopLevel() )
de043984 1498 {
a07c1212
SC
1499 wxWindow* parent = GetParent() ;
1500 while( parent )
1501 {
1502 wxSize size = parent->GetSize() ;
1503 int x , y ;
1504 x = y = 0 ;
1505 parent->MacWindowToRootWindow( &x, &y ) ;
1506 MacRootWindowToWindow( &x , &y ) ;
1507 SetRectRgn( tempRgn , x , y , x + size.x , y + size.y ) ;
1508 SectRgn( visRgn , tempRgn , visRgn ) ;
1509 if ( parent->IsTopLevel() )
1510 break ;
1511 parent = parent->GetParent() ;
1512 }
de043984
SC
1513 }
1514 if ( GetWindowStyle() & wxCLIP_CHILDREN )
1515 {
94abc21f
SC
1516 for (wxNode *node = GetChildren().First(); node; node = node->Next())
1517 {
1518 wxWindowMac *child = (wxWindowMac*)node->Data();
1519
1520 if ( !child->IsTopLevel() && child->IsShown() )
1521 {
de043984
SC
1522 SetRectRgn( tempRgn , child->m_x , child->m_y , child->m_x + child->m_width , child->m_y + child->m_height ) ;
1523 DiffRgn( visRgn , tempRgn , visRgn ) ;
94abc21f
SC
1524 }
1525 }
94abc21f
SC
1526 }
1527
1528 if ( (GetWindowStyle() & wxCLIP_SIBLINGS) && GetParent() )
1529 {
94abc21f
SC
1530 bool thisWindowThrough = false ;
1531 for (wxNode *node = GetParent()->GetChildren().First(); node; node = node->Next())
1532 {
1533 wxWindowMac *sibling = (wxWindowMac*)node->Data();
1534 if ( sibling == this )
1535 {
1536 thisWindowThrough = true ;
1537 continue ;
1538 }
1539 if( !thisWindowThrough )
1540 {
1541 continue ;
1542 }
1543
1544 if ( !sibling->IsTopLevel() && sibling->IsShown() )
1545 {
de043984
SC
1546 SetRectRgn( tempRgn , sibling->m_x - m_x , sibling->m_y - m_y , sibling->m_x + sibling->m_width - m_x , sibling->m_y + sibling->m_height - m_y ) ;
1547 DiffRgn( visRgn , tempRgn , visRgn ) ;
94abc21f
SC
1548 }
1549 }
94abc21f
SC
1550 }
1551 m_macVisibleRegion = visRgn ;
1552 DisposeRgn( visRgn ) ;
de043984 1553 DisposeRgn( tempRgn ) ;
94abc21f
SC
1554 return m_macVisibleRegion ;
1555}
1556
76a5e5d2 1557void wxWindowMac::MacRedraw( WXHRGN updatergnr , long time, bool erase)
519cb848 1558{
76a5e5d2 1559 RgnHandle updatergn = (RgnHandle) updatergnr ;
6264b550 1560 // updatergn is always already clipped to our boundaries
94abc21f 1561 // it is in window coordinates, not in client coordinates
1c310985 1562
76a5e5d2 1563 WindowRef window = (WindowRef) MacGetRootWindow() ;
6264b550
RR
1564
1565 {
94abc21f 1566 // ownUpdateRgn is the area that this window has to repaint, it is in window coordinates
1c310985
SC
1567 RgnHandle ownUpdateRgn = NewRgn() ;
1568 CopyRgn( updatergn , ownUpdateRgn ) ;
94abc21f 1569
76a5e5d2 1570 SectRgn( ownUpdateRgn , (RgnHandle) MacGetVisibleRegion().GetWXHRGN() , ownUpdateRgn ) ;
6264b550 1571
94abc21f 1572 // newupdate is the update region in client coordinates
1c310985
SC
1573 RgnHandle newupdate = NewRgn() ;
1574 wxSize point = GetClientSize() ;
1575 wxPoint origin = GetClientAreaOrigin() ;
1c310985
SC
1576 SetRectRgn( newupdate , origin.x , origin.y , origin.x + point.x , origin.y+point.y ) ;
1577 SectRgn( newupdate , ownUpdateRgn , newupdate ) ;
1578 OffsetRgn( newupdate , -origin.x , -origin.y ) ;
1579 m_updateRegion = newupdate ;
1580 DisposeRgn( newupdate ) ; // it's been cloned to m_updateRegion
94abc21f 1581
e8788ed0 1582 if ( erase && !EmptyRgn(ownUpdateRgn) )
1c310985
SC
1583 {
1584 wxWindowDC dc(this);
e8788ed0 1585 dc.SetClippingRegion(wxRegion(ownUpdateRgn));
1c310985
SC
1586 wxEraseEvent eevent( GetId(), &dc );
1587 eevent.SetEventObject( this );
1588 GetEventHandler()->ProcessEvent( eevent );
1589
1590 wxNcPaintEvent eventNc( GetId() );
1591 eventNc.SetEventObject( this );
1592 GetEventHandler()->ProcessEvent( eventNc );
6264b550 1593 }
1c310985 1594 DisposeRgn( ownUpdateRgn ) ;
1c310985 1595 if ( !m_updateRegion.Empty() )
6264b550 1596 {
1c310985
SC
1597 wxPaintEvent event;
1598 event.m_timeStamp = time ;
1599 event.SetEventObject(this);
1600 GetEventHandler()->ProcessEvent(event);
1601 }
6264b550
RR
1602 }
1603
1c310985 1604 // now intersect for each of the children their rect with the updateRgn and call MacRedraw recursively
6264b550 1605
1c310985 1606 RgnHandle childupdate = NewRgn() ;
6264b550
RR
1607 for (wxNode *node = GetChildren().First(); node; node = node->Next())
1608 {
94abc21f
SC
1609 // calculate the update region for the child windows by intersecting the window rectangle with our own
1610 // passed in update region and then offset it to be client-wise window coordinates again
6264b550
RR
1611 wxWindowMac *child = (wxWindowMac*)node->Data();
1612 SetRectRgn( childupdate , child->m_x , child->m_y , child->m_x + child->m_width , child->m_y + child->m_height ) ;
1613 SectRgn( childupdate , updatergn , childupdate ) ;
1614 OffsetRgn( childupdate , -child->m_x , -child->m_y ) ;
1c310985 1615 if ( child->MacGetRootWindow() == window && child->IsShown() && !EmptyRgn( childupdate ) )
6264b550
RR
1616 {
1617 // because dialogs may also be children
1c310985 1618 child->MacRedraw( childupdate , time , erase ) ;
6264b550
RR
1619 }
1620 }
1621 DisposeRgn( childupdate ) ;
1622 // eventually a draw grow box here
1c310985 1623
519cb848
SC
1624}
1625
76a5e5d2 1626WXHWND wxWindowMac::MacGetRootWindow() const
519cb848 1627{
6264b550
RR
1628 wxWindowMac *iter = (wxWindowMac*)this ;
1629
1630 while( iter )
1631 {
1c310985
SC
1632 if ( iter->IsTopLevel() )
1633 return ((wxTopLevelWindow*)iter)->MacGetWindowRef() ;
519cb848 1634
6264b550
RR
1635 iter = iter->GetParent() ;
1636 }
1637 wxASSERT_MSG( 1 , "No valid mac root window" ) ;
1638 return NULL ;
519cb848
SC
1639}
1640
e766c8a9 1641void wxWindowMac::MacCreateScrollBars( long style )
519cb848 1642{
6264b550
RR
1643 wxASSERT_MSG( m_vScrollBar == NULL && m_hScrollBar == NULL , "attempt to create window twice" ) ;
1644
1645 bool hasBoth = ( style & wxVSCROLL ) && ( style & wxHSCROLL ) ;
1646 int adjust = hasBoth ? MAC_SCROLLBAR_SIZE - 1: 0 ;
1647 int width, height ;
1648 GetClientSize( &width , &height ) ;
1649
1650 wxPoint vPoint(width-MAC_SCROLLBAR_SIZE, 0) ;
1651 wxSize vSize(MAC_SCROLLBAR_SIZE, height - adjust) ;
1652 wxPoint hPoint(0 , height-MAC_SCROLLBAR_SIZE ) ;
1653 wxSize hSize( width - adjust, MAC_SCROLLBAR_SIZE) ;
1654
1655 m_vScrollBar = new wxScrollBar(this, wxWINDOW_VSCROLL, vPoint,
1656 vSize , wxVERTICAL);
1657
1658 if ( style & wxVSCROLL )
1659 {
1660
1661 }
1662 else
1663 {
1664 m_vScrollBar->Show(false) ;
1665 }
1666 m_hScrollBar = new wxScrollBar(this, wxWINDOW_HSCROLL, hPoint,
1667 hSize , wxHORIZONTAL);
1668 if ( style & wxHSCROLL )
1669 {
1670 }
1671 else
1672 {
1673 m_hScrollBar->Show(false) ;
1674 }
1675
1676 // because the create does not take into account the client area origin
1677 MacRepositionScrollBars() ; // we might have a real position shift
519cb848
SC
1678}
1679
e766c8a9 1680void wxWindowMac::MacRepositionScrollBars()
519cb848 1681{
6264b550
RR
1682 bool hasBoth = ( m_hScrollBar && m_hScrollBar->IsShown()) && ( m_vScrollBar && m_vScrollBar->IsShown()) ;
1683 int adjust = hasBoth ? MAC_SCROLLBAR_SIZE - 1 : 0 ;
1684
1685 // get real client area
1686
1687 int width = m_width ;
1688 int height = m_height ;
1689
1690 width -= MacGetLeftBorderSize() + MacGetRightBorderSize();
1691 height -= MacGetTopBorderSize() + MacGetBottomBorderSize();
1692
1693 wxPoint vPoint(width-MAC_SCROLLBAR_SIZE, 0) ;
1694 wxSize vSize(MAC_SCROLLBAR_SIZE, height - adjust) ;
1695 wxPoint hPoint(0 , height-MAC_SCROLLBAR_SIZE ) ;
1696 wxSize hSize( width - adjust, MAC_SCROLLBAR_SIZE) ;
1697
1698 int x = 0 ;
1699 int y = 0 ;
1700 int w = m_width ;
1701 int h = m_height ;
1702
1703 MacClientToRootWindow( &x , &y ) ;
1704 MacClientToRootWindow( &w , &h ) ;
1705
1706 wxWindowMac *iter = (wxWindowMac*)this ;
1707
1708 int totW = 10000 , totH = 10000;
1709 while( iter )
1710 {
1c310985 1711 if ( iter->IsTopLevel() )
6264b550
RR
1712 {
1713 totW = iter->m_width ;
1714 totH = iter->m_height ;
1715 break ;
1716 }
1717
1718 iter = iter->GetParent() ;
1719 }
1720
1721 if ( x == 0 )
1722 {
1723 hPoint.x = -1 ;
1724 hSize.x += 1 ;
1725 }
1726 if ( y == 0 )
1727 {
1728 vPoint.y = -1 ;
1729 vSize.y += 1 ;
1730 }
1731
1732 if ( w-x >= totW )
1733 {
1734 hSize.x += 1 ;
1735 vPoint.x += 1 ;
1736 }
1737
1738 if ( h-y >= totH )
1739 {
1740 vSize.y += 1 ;
1741 hPoint.y += 1 ;
1742 }
1743
1744 if ( m_vScrollBar )
1745 {
1746 m_vScrollBar->SetSize( vPoint.x , vPoint.y, vSize.x, vSize.y , wxSIZE_ALLOW_MINUS_ONE);
1747 }
1748 if ( m_hScrollBar )
1749 {
1750 m_hScrollBar->SetSize( hPoint.x , hPoint.y, hSize.x, hSize.y, wxSIZE_ALLOW_MINUS_ONE);
1751 }
519cb848
SC
1752}
1753
e766c8a9 1754bool wxWindowMac::AcceptsFocus() const
7c551d95
SC
1755{
1756 return MacCanFocus() && wxWindowBase::AcceptsFocus();
1757}
519cb848 1758
76a5e5d2 1759WXWidget wxWindowMac::MacGetContainerForEmbedding()
519cb848 1760{
1c310985 1761 return GetParent()->MacGetContainerForEmbedding() ;
519cb848
SC
1762}
1763
e766c8a9 1764void wxWindowMac::MacSuperChangedPosition()
519cb848 1765{
6264b550 1766 // only window-absolute structures have to be moved i.e. controls
519cb848 1767
6264b550
RR
1768 wxNode *node = GetChildren().First();
1769 while ( node )
1770 {
1771 wxWindowMac *child = (wxWindowMac *)node->Data();
1772 child->MacSuperChangedPosition() ;
1773 node = node->Next();
1774 }
519cb848 1775}
519cb848 1776
a3bf4a62
SC
1777void wxWindowMac::MacTopLevelWindowChangedPosition()
1778{
6264b550 1779 // only screen-absolute structures have to be moved i.e. glcanvas
a3bf4a62 1780
6264b550
RR
1781 wxNode *node = GetChildren().First();
1782 while ( node )
1783 {
1784 wxWindowMac *child = (wxWindowMac *)node->Data();
1785 child->MacTopLevelWindowChangedPosition() ;
1786 node = node->Next();
1787 }
a3bf4a62 1788}
e766c8a9 1789long wxWindowMac::MacGetLeftBorderSize( ) const
2f1ae414 1790{
1c310985 1791 if( IsTopLevel() )
6264b550 1792 return 0 ;
2f1ae414
SC
1793
1794 if (m_windowStyle & wxRAISED_BORDER || m_windowStyle & wxSUNKEN_BORDER )
1795 {
ed60b502 1796 SInt32 border = 3 ;
1c310985 1797#if wxMAC_USE_THEME_BORDER
ed60b502
RR
1798#if TARGET_CARBON
1799 GetThemeMetric( kThemeMetricListBoxFrameOutset , &border ) ;
1c310985
SC
1800#endif
1801#endif
ed60b502 1802 return border ;
2f1ae414
SC
1803 }
1804 else if ( m_windowStyle &wxDOUBLE_BORDER)
1805 {
ed60b502 1806 SInt32 border = 3 ;
1c310985 1807#if wxMAC_USE_THEME_BORDER
ed60b502
RR
1808#if TARGET_CARBON
1809 GetThemeMetric( kThemeMetricListBoxFrameOutset , &border ) ;
1c310985
SC
1810#endif
1811#endif
ed60b502 1812 return border ;
2f1ae414
SC
1813 }
1814 else if (m_windowStyle &wxSIMPLE_BORDER)
1815 {
6264b550 1816 return 1 ;
2f1ae414 1817 }
6264b550 1818 return 0 ;
2f1ae414
SC
1819}
1820
e766c8a9 1821long wxWindowMac::MacGetRightBorderSize( ) const
5b781a67 1822{
1c310985
SC
1823 // they are all symmetric in mac themes
1824 return MacGetLeftBorderSize() ;
5b781a67
SC
1825}
1826
e766c8a9 1827long wxWindowMac::MacGetTopBorderSize( ) const
5b781a67 1828{
1c310985
SC
1829 // they are all symmetric in mac themes
1830 return MacGetLeftBorderSize() ;
5b781a67
SC
1831}
1832
e766c8a9 1833long wxWindowMac::MacGetBottomBorderSize( ) const
5b781a67 1834{
1c310985
SC
1835 // they are all symmetric in mac themes
1836 return MacGetLeftBorderSize() ;
5b781a67
SC
1837}
1838
e766c8a9 1839long wxWindowMac::MacRemoveBordersFromStyle( long style )
2f1ae414 1840{
6264b550 1841 return style & ~( wxDOUBLE_BORDER | wxSUNKEN_BORDER | wxRAISED_BORDER | wxBORDER | wxSTATIC_BORDER ) ;
2f1ae414 1842}
0a67a93b 1843
e766c8a9 1844// Find the wxWindowMac at the current mouse position, returning the mouse
3723b7b1 1845// position.
e766c8a9 1846wxWindowMac* wxFindWindowAtPointer(wxPoint& pt)
3723b7b1 1847{
59a12e90 1848 pt = wxGetMousePosition();
e766c8a9 1849 wxWindowMac* found = wxFindWindowAtPoint(pt);
59a12e90 1850 return found;
3723b7b1
JS
1851}
1852
1853// Get the current mouse position.
1854wxPoint wxGetMousePosition()
1855{
57591e0e
JS
1856 int x, y;
1857 wxGetMousePosition(& x, & y);
1858 return wxPoint(x, y);
3723b7b1
JS
1859}
1860