]> git.saurik.com Git - wxWidgets.git/blob - src/mac/carbon/window.cpp
fef61c1184773dbff01681c101051182edd91eed
[wxWidgets.git] / src / mac / carbon / window.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: windows.cpp
3 // Purpose: wxWindowMac
4 // Author: Stefan Csomor
5 // Modified by:
6 // Created: 1998-01-01
7 // RCS-ID: $Id$
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifdef __GNUG__
13 #pragma implementation "window.h"
14 #endif
15
16 #include "wx/setup.h"
17 #include "wx/menu.h"
18 #include "wx/window.h"
19 #include "wx/dc.h"
20 #include "wx/dcclient.h"
21 #include "wx/utils.h"
22 #include "wx/app.h"
23 #include "wx/panel.h"
24 #include "wx/layout.h"
25 #include "wx/dialog.h"
26 #include "wx/scrolbar.h"
27 #include "wx/statbox.h"
28 #include "wx/button.h"
29 #include "wx/settings.h"
30 #include "wx/msgdlg.h"
31 #include "wx/frame.h"
32 #include "wx/tooltip.h"
33 #include "wx/statusbr.h"
34 #include "wx/menuitem.h"
35 #include "wx/spinctrl.h"
36 #include "wx/log.h"
37 #include "wx/geometry.h"
38
39 #include "wx/toolbar.h"
40 #include "wx/dc.h"
41
42 #if wxUSE_CARET
43 #include "wx/caret.h"
44 #endif // wxUSE_CARET
45
46 #define wxWINDOW_HSCROLL 5998
47 #define wxWINDOW_VSCROLL 5997
48 #define MAC_SCROLLBAR_SIZE 16
49
50 #include "wx/mac/uma.h"
51 #ifndef __DARWIN__
52 #include <Windows.h>
53 #include <ToolUtils.h>
54 #endif
55
56 #if TARGET_API_MAC_OSX
57 #ifndef __HIVIEW__
58 #include <HIToolbox/HIView.h>
59 #endif
60 #endif
61
62 #if wxUSE_DRAG_AND_DROP
63 #include "wx/dnd.h"
64 #endif
65
66 #include <string.h>
67
68 extern wxList wxPendingDelete;
69 wxWindowMac* gFocusWindow = NULL ;
70
71 #ifdef __WXUNIVERSAL__
72 IMPLEMENT_ABSTRACT_CLASS(wxWindowMac, wxWindowBase)
73 #else // __WXMAC__
74 IMPLEMENT_DYNAMIC_CLASS(wxWindow, wxWindowBase)
75 #endif // __WXUNIVERSAL__/__WXMAC__
76
77 #if !USE_SHARED_LIBRARY
78
79 BEGIN_EVENT_TABLE(wxWindowMac, wxWindowBase)
80 EVT_NC_PAINT(wxWindowMac::OnNcPaint)
81 EVT_ERASE_BACKGROUND(wxWindowMac::OnEraseBackground)
82 // TODO EVT_PAINT(wxWindowMac::OnPaint)
83 EVT_SYS_COLOUR_CHANGED(wxWindowMac::OnSysColourChanged)
84 EVT_INIT_DIALOG(wxWindowMac::OnInitDialog)
85 EVT_SET_FOCUS(wxWindowMac::OnSetFocus)
86 EVT_MOUSE_EVENTS(wxWindowMac::OnMouseEvent)
87 END_EVENT_TABLE()
88
89 #endif
90
91 #define wxMAC_DEBUG_REDRAW 0
92 #ifndef wxMAC_DEBUG_REDRAW
93 #define wxMAC_DEBUG_REDRAW 0
94 #endif
95
96 #define wxMAC_USE_THEME_BORDER 0
97
98 // ---------------------------------------------------------------------------
99 // Carbon Events
100 // ---------------------------------------------------------------------------
101
102 extern long wxMacTranslateKey(unsigned char key, unsigned char code) ;
103 pascal OSStatus wxMacSetupControlBackground( ControlRef iControl , SInt16 iMessage , SInt16 iDepth , Boolean iIsColor ) ;
104
105 #if MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_3
106 enum {
107 kEventControlVisibilityChanged = 157
108 };
109 #endif
110
111 static const EventTypeSpec eventList[] =
112 {
113 #if TARGET_API_MAC_OSX
114 { kEventClassControl , kEventControlDraw } ,
115 { kEventClassControl , kEventControlVisibilityChanged } ,
116 { kEventClassControl , kEventControlEnabledStateChanged } ,
117 { kEventClassControl , kEventControlHiliteChanged } ,
118 // { kEventClassControl , kEventControlInvalidateForSizeChange } , // 10.3 only
119 // { kEventClassControl , kEventControlBoundsChanged } ,
120
121 {}
122 #else
123 {}
124 #endif
125 } ;
126
127 static pascal OSStatus wxMacWindowControlEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
128 {
129 OSStatus result = eventNotHandledErr ;
130
131 wxMacCarbonEvent cEvent( event ) ;
132
133 ControlRef controlRef ;
134 wxWindowMac* thisWindow = (wxWindowMac*) data ;
135
136 cEvent.GetParameter( kEventParamDirectObject , &controlRef ) ;
137
138 switch( GetEventKind( event ) )
139 {
140 case kEventControlDraw :
141 {
142 RgnHandle updateRgn = NULL ;
143
144 wxRegion visRegion = thisWindow->MacGetVisibleRegion() ;
145 if ( cEvent.GetParameter<RgnHandle>(kEventParamRgnHandle, &updateRgn) != noErr )
146 {
147 updateRgn = (RgnHandle) visRegion.GetWXHRGN() ;
148 }
149 // GrafPtr myport = cEvent.GetParameter<GrafPtr>(kEventParamGrafPort,typeGrafPtr) ;
150
151 #if 0
152 // in case we would need a coregraphics compliant background erase first
153 // now usable to track redraws
154 CGContextRef cgContext = cEvent.GetParameter<CGContextRef>(kEventParamCGContextRef) ;
155 if ( thisWindow->MacIsUserPane() )
156 {
157 static float color = 0.5 ;
158 static channel = 0 ;
159 HIRect bounds;
160 HIViewGetBounds( controlRef, &bounds );
161 CGContextSetRGBFillColor( cgContext, channel == 0 ? color : 0.5 ,
162 channel == 1 ? color : 0.5 , channel == 2 ? color : 0.5 , 1 );
163 CGContextFillRect( cgContext, bounds );
164 color += 0.1 ;
165 if ( color > 0.9 )
166 {
167 color = 0.5 ;
168 channel++ ;
169 if ( channel == 3 )
170 channel = 0 ;
171 }
172 }
173 #endif
174 if ( thisWindow->MacDoRedraw( updateRgn , cEvent.GetTicks() ) )
175 result = noErr ;
176 }
177 break ;
178 case kEventControlVisibilityChanged :
179 thisWindow->MacVisibilityChanged() ;
180 break ;
181 case kEventControlEnabledStateChanged :
182 thisWindow->MacEnabledStateChanged() ;
183 break ;
184 case kEventControlHiliteChanged :
185 thisWindow->MacHiliteChanged() ;
186 break ;
187 default :
188 break ;
189 }
190 return result ;
191 }
192
193 pascal OSStatus wxMacWindowEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
194 {
195 OSStatus result = eventNotHandledErr ;
196
197 switch ( GetEventClass( event ) )
198 {
199 case kEventClassControl :
200 result = wxMacWindowControlEventHandler( handler, event, data ) ;
201 break ;
202 default :
203 break ;
204 }
205 return result ;
206 }
207
208 DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacWindowEventHandler )
209
210 // ---------------------------------------------------------------------------
211 // UserPane events for non OSX builds
212 // ---------------------------------------------------------------------------
213
214 static pascal void wxMacControlUserPaneDrawProc(ControlRef control, SInt16 part)
215 {
216 wxWindow * win = wxFindControlFromMacControl(control) ;
217 wxCHECK_RET( win , wxT("Callback from unkown control") ) ;
218 win->MacControlUserPaneDrawProc(part) ;
219 }
220
221 static pascal ControlPartCode wxMacControlUserPaneHitTestProc(ControlRef control, Point where)
222 {
223 wxWindow * win = wxFindControlFromMacControl(control) ;
224 wxCHECK_MSG( win , kControlNoPart , wxT("Callback from unkown control") ) ;
225 return win->MacControlUserPaneHitTestProc(where.h , where.v) ;
226 }
227
228 static pascal ControlPartCode wxMacControlUserPaneTrackingProc(ControlRef control, Point startPt, ControlActionUPP actionProc)
229 {
230 wxWindow * win = wxFindControlFromMacControl(control) ;
231 wxCHECK_MSG( win , kControlNoPart , wxT("Callback from unkown control") ) ;
232 return win->MacControlUserPaneTrackingProc( startPt.h , startPt.v , (void*) actionProc) ;
233 }
234
235 static pascal void wxMacControlUserPaneIdleProc(ControlRef control)
236 {
237 wxWindow * win = wxFindControlFromMacControl(control) ;
238 wxCHECK_RET( win , wxT("Callback from unkown control") ) ;
239 win->MacControlUserPaneIdleProc() ;
240 }
241
242 static pascal ControlPartCode wxMacControlUserPaneKeyDownProc(ControlRef control, SInt16 keyCode, SInt16 charCode, SInt16 modifiers)
243 {
244 wxWindow * win = wxFindControlFromMacControl(control) ;
245 wxCHECK_MSG( win , kControlNoPart , wxT("Callback from unkown control") ) ;
246 return win->MacControlUserPaneKeyDownProc(keyCode,charCode,modifiers) ;
247 }
248
249 static pascal void wxMacControlUserPaneActivateProc(ControlRef control, Boolean activating)
250 {
251 wxWindow * win = wxFindControlFromMacControl(control) ;
252 wxCHECK_RET( win , wxT("Callback from unkown control") ) ;
253 win->MacControlUserPaneActivateProc(activating) ;
254 }
255
256 static pascal ControlPartCode wxMacControlUserPaneFocusProc(ControlRef control, ControlFocusPart action)
257 {
258 wxWindow * win = wxFindControlFromMacControl(control) ;
259 wxCHECK_MSG( win , kControlNoPart , wxT("Callback from unkown control") ) ;
260 return win->MacControlUserPaneFocusProc(action) ;
261 }
262
263 static pascal void wxMacControlUserPaneBackgroundProc(ControlRef control, ControlBackgroundPtr info)
264 {
265 wxWindow * win = wxFindControlFromMacControl(control) ;
266 wxCHECK_RET( win , wxT("Callback from unkown control") ) ;
267 win->MacControlUserPaneBackgroundProc(info) ;
268 }
269
270 void wxWindowMac::MacControlUserPaneDrawProc(wxInt16 part)
271 {
272 RgnHandle rgn = NewRgn() ;
273 GetClip( rgn ) ;
274 wxMacWindowStateSaver sv( this ) ;
275 SectRgn( rgn , (RgnHandle) MacGetVisibleRegion().GetWXHRGN() , rgn ) ;
276 MacDoRedraw( rgn , 0 ) ;
277 DisposeRgn( rgn ) ;
278 }
279
280 wxInt16 wxWindowMac::MacControlUserPaneHitTestProc(wxInt16 x, wxInt16 y)
281 {
282 return kControlNoPart ;
283 }
284
285 wxInt16 wxWindowMac::MacControlUserPaneTrackingProc(wxInt16 x, wxInt16 y, void* actionProc)
286 {
287 return kControlNoPart ;
288 }
289
290 void wxWindowMac::MacControlUserPaneIdleProc()
291 {
292 }
293
294 wxInt16 wxWindowMac::MacControlUserPaneKeyDownProc(wxInt16 keyCode, wxInt16 charCode, wxInt16 modifiers)
295 {
296 return kControlNoPart ;
297 }
298
299 void wxWindowMac::MacControlUserPaneActivateProc(bool activating)
300 {
301 }
302
303 wxInt16 wxWindowMac::MacControlUserPaneFocusProc(wxInt16 action)
304 {
305 return kControlNoPart ;
306 }
307
308 void wxWindowMac::MacControlUserPaneBackgroundProc(void* info)
309 {
310 }
311
312 ControlUserPaneDrawUPP gControlUserPaneDrawUPP = NULL ;
313 ControlUserPaneHitTestUPP gControlUserPaneHitTestUPP = NULL ;
314 ControlUserPaneTrackingUPP gControlUserPaneTrackingUPP = NULL ;
315 ControlUserPaneIdleUPP gControlUserPaneIdleUPP = NULL ;
316 ControlUserPaneKeyDownUPP gControlUserPaneKeyDownUPP = NULL ;
317 ControlUserPaneActivateUPP gControlUserPaneActivateUPP = NULL ;
318 ControlUserPaneFocusUPP gControlUserPaneFocusUPP = NULL ;
319 ControlUserPaneBackgroundUPP gControlUserPaneBackgroundUPP = NULL ;
320
321 // ===========================================================================
322 // implementation
323 // ===========================================================================
324
325 wxList wxWinMacControlList(wxKEY_INTEGER);
326
327 wxWindow *wxFindControlFromMacControl(ControlRef inControl )
328 {
329 wxNode *node = wxWinMacControlList.Find((long)inControl);
330 if (!node)
331 return NULL;
332 return (wxControl *)node->GetData();
333 }
334
335 void wxAssociateControlWithMacControl(ControlRef inControl, wxWindow *control)
336 {
337 // adding NULL ControlRef is (first) surely a result of an error and
338 // (secondly) breaks native event processing
339 wxCHECK_RET( inControl != (ControlRef) NULL, wxT("attempt to add a NULL WindowRef to window list") );
340
341 if ( !wxWinMacControlList.Find((long)inControl) )
342 wxWinMacControlList.Append((long)inControl, control);
343 }
344
345 void wxRemoveMacControlAssociation(wxWindow *control)
346 {
347 wxWinMacControlList.DeleteObject(control);
348 }
349
350 // UPP functions
351 ControlActionUPP wxMacLiveScrollbarActionUPP = NULL ;
352
353 ControlColorUPP wxMacSetupControlBackgroundUPP = NULL ;
354
355 // we have to setup the brush in the current port and return noErr
356 // or return an error code so that the control manager walks further up the
357 // hierarchy to find a correct background
358
359 pascal OSStatus wxMacSetupControlBackground( ControlRef iControl , SInt16 iMessage , SInt16 iDepth , Boolean iIsColor )
360 {
361 OSStatus status = paramErr ;
362 switch( iMessage )
363 {
364 case kControlMsgApplyTextColor :
365 break ;
366 case kControlMsgSetUpBackground :
367 {
368 wxWindow* wx = (wxWindow*) wxFindControlFromMacControl( iControl ) ;
369 if ( wx != NULL )
370 {
371 /*
372 const wxBrush &brush = wx->MacGetBackgroundBrush() ;
373 if ( brush.Ok() )
374 {
375
376 wxDC::MacSetupBackgroundForCurrentPort( brush ) ;
377 */
378 // this clipping is only needed for non HIView
379
380 RgnHandle clip = NewRgn() ;
381 int x = 0 , y = 0;
382
383 wx->MacWindowToRootWindow( &x,&y ) ;
384 CopyRgn( (RgnHandle) wx->MacGetVisibleRegion().GetWXHRGN() , clip ) ;
385 OffsetRgn( clip , x , y ) ;
386 SetClip( clip ) ;
387 DisposeRgn( clip ) ;
388
389 status = noErr ;
390 /*
391 }
392 else if ( wx->MacIsUserPane() )
393 {
394 // if we don't have a valid brush for such a control, we have to call the
395 // setup of our parent ourselves
396 status = SetUpControlBackground( (ControlRef) wx->GetParent()->GetHandle() , iDepth , iIsColor ) ;
397 }
398 */
399 }
400 }
401 break ;
402 default :
403 break ;
404 }
405 return status ;
406 }
407
408
409 pascal void wxMacLiveScrollbarActionProc( ControlRef control , ControlPartCode partCode ) ;
410 pascal void wxMacLiveScrollbarActionProc( ControlRef control , ControlPartCode partCode )
411 {
412 if ( partCode != 0)
413 {
414 wxWindow* wx = wxFindControlFromMacControl( control ) ;
415 if ( wx )
416 {
417 wx->MacHandleControlClick( (WXWidget) control , partCode , true /* stillDown */ ) ;
418 }
419 }
420 }
421
422 // ----------------------------------------------------------------------------
423 // constructors and such
424 // ----------------------------------------------------------------------------
425
426 void wxWindowMac::Init()
427 {
428 m_frozenness = 0 ;
429 m_backgroundTransparent = FALSE;
430
431 // as all windows are created with WS_VISIBLE style...
432 m_isShown = TRUE;
433
434 m_hScrollBar = NULL ;
435 m_vScrollBar = NULL ;
436 m_macBackgroundBrush = wxNullBrush ;
437
438 m_macControl = NULL ;
439
440 m_macIsUserPane = TRUE;
441
442 // make sure all proc ptrs are available
443
444 if ( gControlUserPaneDrawUPP == NULL )
445 {
446 gControlUserPaneDrawUPP = NewControlUserPaneDrawUPP( wxMacControlUserPaneDrawProc ) ;
447 gControlUserPaneHitTestUPP = NewControlUserPaneHitTestUPP( wxMacControlUserPaneHitTestProc ) ;
448 gControlUserPaneTrackingUPP = NewControlUserPaneTrackingUPP( wxMacControlUserPaneTrackingProc ) ;
449 gControlUserPaneIdleUPP = NewControlUserPaneIdleUPP( wxMacControlUserPaneIdleProc ) ;
450 gControlUserPaneKeyDownUPP = NewControlUserPaneKeyDownUPP( wxMacControlUserPaneKeyDownProc ) ;
451 gControlUserPaneActivateUPP = NewControlUserPaneActivateUPP( wxMacControlUserPaneActivateProc ) ;
452 gControlUserPaneFocusUPP = NewControlUserPaneFocusUPP( wxMacControlUserPaneFocusProc ) ;
453 gControlUserPaneBackgroundUPP = NewControlUserPaneBackgroundUPP( wxMacControlUserPaneBackgroundProc ) ;
454 }
455 if ( wxMacLiveScrollbarActionUPP == NULL )
456 {
457 wxMacLiveScrollbarActionUPP = NewControlActionUPP( wxMacLiveScrollbarActionProc );
458 }
459
460 if ( wxMacSetupControlBackgroundUPP == NULL )
461 {
462 wxMacSetupControlBackgroundUPP = NewControlColorUPP( wxMacSetupControlBackground ) ;
463 }
464
465 // we need a valid font for the encodings
466 wxWindowBase::SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT));
467 }
468
469 // Destructor
470 wxWindowMac::~wxWindowMac()
471 {
472 SendDestroyEvent();
473
474 m_isBeingDeleted = TRUE;
475
476 #ifndef __WXUNIVERSAL__
477 // VS: make sure there's no wxFrame with last focus set to us:
478 for ( wxWindow *win = GetParent(); win; win = win->GetParent() )
479 {
480 wxFrame *frame = wxDynamicCast(win, wxFrame);
481 if ( frame )
482 {
483 if ( frame->GetLastFocus() == this )
484 {
485 frame->SetLastFocus((wxWindow*)NULL);
486 }
487 break;
488 }
489 }
490 #endif // __WXUNIVERSAL__
491
492 // wxRemoveMacControlAssociation( this ) ;
493 // If we delete an item, we should initialize the parent panel,
494 // because it could now be invalid.
495 wxWindow *parent = GetParent() ;
496 if ( parent )
497 {
498 if (parent->GetDefaultItem() == (wxButton*) this)
499 parent->SetDefaultItem(NULL);
500 }
501 if ( (ControlRef) m_macControl )
502 {
503 // in case the callback might be called during destruction
504 wxRemoveMacControlAssociation( this) ;
505 ::SetControlColorProc( (ControlRef) m_macControl , NULL ) ;
506 ::DisposeControl( (ControlRef) m_macControl ) ;
507 m_macControl = NULL ;
508 }
509
510 if ( g_MacLastWindow == this )
511 {
512 g_MacLastWindow = NULL ;
513 }
514
515 wxFrame* frame = wxDynamicCast( wxGetTopLevelParent( this ) , wxFrame ) ;
516 if ( frame )
517 {
518 if ( frame->GetLastFocus() == this )
519 frame->SetLastFocus( NULL ) ;
520 }
521
522 if ( gFocusWindow == this )
523 {
524 gFocusWindow = NULL ;
525 }
526
527 DestroyChildren();
528
529 // delete our drop target if we've got one
530 #if wxUSE_DRAG_AND_DROP
531 if ( m_dropTarget != NULL )
532 {
533 delete m_dropTarget;
534 m_dropTarget = NULL;
535 }
536 #endif // wxUSE_DRAG_AND_DROP
537 }
538
539 //
540
541 void wxWindowMac::MacInstallEventHandler()
542 {
543 wxAssociateControlWithMacControl( (ControlRef) m_macControl , this ) ;
544 InstallControlEventHandler( (ControlRef) m_macControl, GetwxMacWindowEventHandlerUPP(),
545 GetEventTypeCount(eventList), eventList, this,
546 (EventHandlerRef *)&m_macControlEventHandler);
547
548 }
549
550 // Constructor
551 bool wxWindowMac::Create(wxWindowMac *parent, wxWindowID id,
552 const wxPoint& pos,
553 const wxSize& size,
554 long style,
555 const wxString& name)
556 {
557 wxCHECK_MSG( parent, FALSE, wxT("can't create wxWindowMac without parent") );
558
559 if ( !CreateBase(parent, id, pos, size, style, wxDefaultValidator, name) )
560 return FALSE;
561
562 parent->AddChild(this);
563
564 m_windowVariant = parent->GetWindowVariant() ;
565
566 if ( m_macIsUserPane )
567 {
568 Rect bounds = wxMacGetBoundsForControl( this , pos , size ) ;
569
570 UInt32 features = kControlSupportsEmbedding | kControlSupportsLiveFeedback | kControlHasSpecialBackground |
571 kControlSupportsCalcBestRect | kControlHandlesTracking | kControlSupportsFocus | kControlWantsActivate | kControlWantsIdle;
572
573 ::CreateUserPaneControl( MAC_WXHWND(GetParent()->MacGetTopLevelWindowRef()) , &bounds, kControlSupportsEmbedding , (ControlRef*) &m_macControl);
574
575 MacPostControlCreate(pos,size) ;
576 #if !TARGET_API_MAC_OSX
577 SetControlData((ControlRef) m_macControl,kControlEntireControl,kControlUserPaneDrawProcTag,
578 sizeof(gControlUserPaneDrawUPP),(Ptr) &gControlUserPaneDrawUPP);
579 SetControlData((ControlRef) m_macControl,kControlEntireControl,kControlUserPaneHitTestProcTag,
580 sizeof(gControlUserPaneHitTestUPP),(Ptr) &gControlUserPaneHitTestUPP);
581 SetControlData((ControlRef) m_macControl,kControlEntireControl,kControlUserPaneTrackingProcTag,
582 sizeof(gControlUserPaneTrackingUPP),(Ptr) &gControlUserPaneTrackingUPP);
583 SetControlData((ControlRef) m_macControl,kControlEntireControl,kControlUserPaneIdleProcTag,
584 sizeof(gControlUserPaneIdleUPP),(Ptr) &gControlUserPaneIdleUPP);
585 SetControlData((ControlRef) m_macControl,kControlEntireControl,kControlUserPaneKeyDownProcTag,
586 sizeof(gControlUserPaneKeyDownUPP),(Ptr) &gControlUserPaneKeyDownUPP);
587 SetControlData((ControlRef) m_macControl,kControlEntireControl,kControlUserPaneActivateProcTag,
588 sizeof(gControlUserPaneActivateUPP),(Ptr) &gControlUserPaneActivateUPP);
589 SetControlData((ControlRef) m_macControl,kControlEntireControl,kControlUserPaneFocusProcTag,
590 sizeof(gControlUserPaneFocusUPP),(Ptr) &gControlUserPaneFocusUPP);
591 SetControlData((ControlRef) m_macControl,kControlEntireControl,kControlUserPaneBackgroundProcTag,
592 sizeof(gControlUserPaneBackgroundUPP),(Ptr) &gControlUserPaneBackgroundUPP);
593 #endif
594 }
595 #ifndef __WXUNIVERSAL__
596 // Don't give scrollbars to wxControls unless they ask for them
597 if ( (! IsKindOf(CLASSINFO(wxControl)) && ! IsKindOf(CLASSINFO(wxStatusBar))) ||
598 (IsKindOf(CLASSINFO(wxControl)) && ( style & wxHSCROLL || style & wxVSCROLL)))
599 {
600 MacCreateScrollBars( style ) ;
601 }
602 #endif
603
604 wxWindowCreateEvent event(this);
605 GetEventHandler()->AddPendingEvent(event);
606
607 return TRUE;
608 }
609
610 void wxWindowMac::MacPostControlCreate(const wxPoint& pos, const wxSize& size)
611 {
612 wxASSERT_MSG( (ControlRef) m_macControl != NULL , wxT("No valid mac control") ) ;
613
614 ::SetControlReference( (ControlRef) m_macControl , (long) this ) ;
615
616 MacInstallEventHandler();
617
618 ControlRef container = (ControlRef) GetParent()->GetHandle() ;
619 wxASSERT_MSG( container != NULL , wxT("No valid mac container control") ) ;
620 ::EmbedControl( (ControlRef) m_macControl , container ) ;
621
622 // adjust font, controlsize etc
623 DoSetWindowVariant( m_windowVariant ) ;
624
625 #if !TARGET_API_MAC_OSX
626 // eventually we can fix some clipping issues be reactivating this hook
627 //if ( m_macIsUserPane )
628 // SetControlColorProc( (ControlRef) m_macControl , wxMacSetupControlBackgroundUPP ) ;
629 #endif
630
631 UMASetControlTitle( (ControlRef) m_macControl , wxStripMenuCodes(m_label) , m_font.GetEncoding() ) ;
632
633 wxSize new_size = size ;
634 if (!m_macIsUserPane)
635 {
636 wxSize best_size( DoGetBestSize() );
637
638 if (size.x == -1) {
639 new_size.x = best_size.x;
640 }
641 if (size.y == -1) {
642 new_size.y = best_size.y;
643 }
644 SetSize( pos.x, pos.y , new_size.x, new_size.y,wxSIZE_USE_EXISTING );
645 }
646
647 SetCursor( *wxSTANDARD_CURSOR ) ;
648
649 }
650
651 void wxWindowMac::DoSetWindowVariant( wxWindowVariant variant )
652 {
653 // Don't assert, in case we set the window variant before
654 // the window is created
655 // wxASSERT( m_macControl != NULL ) ;
656
657 m_windowVariant = variant ;
658
659 if (!m_macControl)
660 return;
661
662 ControlSize size ;
663 ThemeFontID themeFont = kThemeSystemFont ;
664
665 // we will get that from the settings later
666 // and make this NORMAL later, but first
667 // we have a few calculations that we must fix
668
669 switch ( variant )
670 {
671 case wxWINDOW_VARIANT_NORMAL :
672 size = kControlSizeNormal;
673 themeFont = kThemeSystemFont ;
674 break ;
675 case wxWINDOW_VARIANT_SMALL :
676 size = kControlSizeSmall;
677 themeFont = kThemeSmallSystemFont ;
678 break ;
679 case wxWINDOW_VARIANT_MINI :
680 if (UMAGetSystemVersion() >= 0x1030 )
681 {
682 // not always defined in the headers
683 size = 3 ;
684 themeFont = 109 ;
685 }
686 else
687 {
688 size = kControlSizeSmall;
689 themeFont = kThemeSmallSystemFont ;
690 }
691 break ;
692 case wxWINDOW_VARIANT_LARGE :
693 size = kControlSizeLarge;
694 themeFont = kThemeSystemFont ;
695 break ;
696 default:
697 wxFAIL_MSG(_T("unexpected window variant"));
698 break ;
699 }
700 ::SetControlData( (ControlRef) m_macControl , kControlEntireControl, kControlSizeTag, sizeof( ControlSize ), &size );
701
702 wxFont font ;
703 font.MacCreateThemeFont( themeFont ) ;
704 SetFont( font ) ;
705 }
706
707 void wxWindowMac::MacUpdateControlFont()
708 {
709 ControlFontStyleRec fontStyle;
710 if ( m_font.MacGetThemeFontID() != kThemeCurrentPortFont )
711 {
712 switch( m_font.MacGetThemeFontID() )
713 {
714 case kThemeSmallSystemFont : fontStyle.font = kControlFontSmallSystemFont ; break ;
715 case 109 /*mini font */ : fontStyle.font = -5 ; break ;
716 case kThemeSystemFont : fontStyle.font = kControlFontBigSystemFont ; break ;
717 default : fontStyle.font = kControlFontBigSystemFont ; break ;
718 }
719 fontStyle.flags = kControlUseFontMask ;
720 }
721 else
722 {
723 fontStyle.font = m_font.MacGetFontNum() ;
724 fontStyle.style = m_font.MacGetFontStyle() ;
725 fontStyle.size = m_font.MacGetFontSize() ;
726 fontStyle.flags = kControlUseFontMask | kControlUseFaceMask | kControlUseSizeMask ;
727 }
728
729 fontStyle.just = teJustLeft ;
730 fontStyle.flags |= kControlUseJustMask ;
731 if ( ( GetWindowStyle() & wxALIGN_MASK ) & wxALIGN_CENTER_HORIZONTAL )
732 fontStyle.just = teJustCenter ;
733 else if ( ( GetWindowStyle() & wxALIGN_MASK ) & wxALIGN_RIGHT )
734 fontStyle.just = teJustRight ;
735
736
737 fontStyle.foreColor = MAC_WXCOLORREF(GetForegroundColour().GetPixel() ) ;
738 fontStyle.flags |= kControlUseForeColorMask ;
739
740 ::SetControlFontStyle( (ControlRef) m_macControl , &fontStyle );
741 Refresh() ;
742 }
743
744 bool wxWindowMac::SetFont(const wxFont& font)
745 {
746 bool retval = !wxWindowBase::SetFont( font ) ;
747
748 MacUpdateControlFont() ;
749
750 return retval;
751 }
752
753 bool wxWindowMac::SetForegroundColour(const wxColour& col )
754 {
755 if ( !wxWindowBase::SetForegroundColour(col) )
756 return false ;
757
758 MacUpdateControlFont() ;
759
760 return true ;
761 }
762
763 bool wxWindowMac::SetBackgroundColour(const wxColour& col )
764 {
765 if ( !wxWindowBase::SetBackgroundColour(col) && m_hasBgCol )
766 return false ;
767
768 wxBrush brush ;
769 if ( col == wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE) )
770 {
771 brush.MacSetTheme( kThemeBrushDocumentWindowBackground ) ;
772 }
773 else if ( col == wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE ) )
774 {
775 brush.MacSetTheme( kThemeBrushDialogBackgroundActive ) ;
776 }
777 else
778 {
779 brush.SetColour( col ) ;
780 }
781 MacSetBackgroundBrush( brush ) ;
782
783 MacUpdateControlFont() ;
784
785 return true ;
786 }
787
788
789 bool wxWindowMac::MacCanFocus() const
790 {
791 wxASSERT( m_macControl != NULL ) ;
792
793 return true ;
794 }
795
796
797 void wxWindowMac::SetFocus()
798 {
799 if ( gFocusWindow == this )
800 return ;
801
802 if ( AcceptsFocus() )
803 {
804 if (gFocusWindow )
805 {
806 #if wxUSE_CARET
807 // Deal with caret
808 if ( gFocusWindow->m_caret )
809 {
810 gFocusWindow->m_caret->OnKillFocus();
811 }
812 #endif // wxUSE_CARET
813 #ifndef __WXUNIVERSAL__
814 wxWindow* control = wxDynamicCast( gFocusWindow , wxWindow ) ;
815 // TODO we must use the built-in focusing
816 if ( control && control->GetHandle() /* && control->MacIsReallyShown() */ )
817 {
818 UMASetKeyboardFocus( (WindowRef) gFocusWindow->MacGetTopLevelWindowRef() , (ControlRef) control->GetHandle() , kControlFocusNoPart ) ;
819 control->MacRedrawControl() ;
820 }
821 #endif
822 // Without testing the window id, for some reason
823 // a kill focus event can still be sent to
824 // the control just being focussed.
825 int thisId = this->m_windowId;
826 int gFocusWindowId = gFocusWindow->m_windowId;
827 if (gFocusWindowId != thisId)
828 {
829 wxFocusEvent event(wxEVT_KILL_FOCUS, gFocusWindow->m_windowId);
830 event.SetEventObject(gFocusWindow);
831 gFocusWindow->GetEventHandler()->ProcessEvent(event) ;
832 }
833 }
834 gFocusWindow = this ;
835 {
836 #if wxUSE_CARET
837 // Deal with caret
838 if ( m_caret )
839 {
840 m_caret->OnSetFocus();
841 }
842 #endif // wxUSE_CARET
843 // panel wants to track the window which was the last to have focus in it
844 wxChildFocusEvent eventFocus(this);
845 GetEventHandler()->ProcessEvent(eventFocus);
846
847 #ifndef __WXUNIVERSAL__
848 wxControl* control = wxDynamicCast( gFocusWindow , wxControl ) ;
849 if ( control && control->GetHandle() )
850 {
851 UMASetKeyboardFocus( (WindowRef) gFocusWindow->MacGetTopLevelWindowRef() , (ControlRef) control->GetHandle() , kControlFocusNextPart ) ;
852 }
853 #endif
854 wxFocusEvent event(wxEVT_SET_FOCUS, m_windowId);
855 event.SetEventObject(this);
856 GetEventHandler()->ProcessEvent(event) ;
857 }
858 }
859 }
860
861
862 void wxWindowMac::DoCaptureMouse()
863 {
864 wxTheApp->s_captureWindow = this ;
865 }
866
867 wxWindow* wxWindowBase::GetCapture()
868 {
869 return wxTheApp->s_captureWindow ;
870 }
871
872 void wxWindowMac::DoReleaseMouse()
873 {
874 wxTheApp->s_captureWindow = NULL ;
875 }
876
877 #if wxUSE_DRAG_AND_DROP
878
879 void wxWindowMac::SetDropTarget(wxDropTarget *pDropTarget)
880 {
881 if ( m_dropTarget != 0 ) {
882 delete m_dropTarget;
883 }
884
885 m_dropTarget = pDropTarget;
886 if ( m_dropTarget != 0 )
887 {
888 // TODO
889 }
890 }
891
892 #endif
893
894 // Old style file-manager drag&drop
895 void wxWindowMac::DragAcceptFiles(bool accept)
896 {
897 // TODO
898 }
899
900 void wxWindowMac::MacGetPositionAndSizeFromControl(int& x, int& y,
901 int& w, int& h) const
902 {
903 Rect bounds ;
904 GetControlBounds( (ControlRef) m_macControl , &bounds ) ;
905
906
907 x = bounds.left ;
908 y = bounds.top ;
909 w = bounds.right - bounds.left ;
910 h = bounds.bottom - bounds.top ;
911
912 wxTopLevelWindow* tlw = wxDynamicCast( this , wxTopLevelWindow ) ;
913 if ( tlw )
914 {
915 Point tlworigin = { 0 , 0 } ;
916 GrafPtr port ;
917 bool swapped = QDSwapPort( UMAGetWindowPort( (WindowRef) tlw->MacGetWindowRef() ) , &port ) ;
918 ::LocalToGlobal( &tlworigin ) ;
919 if ( swapped )
920 ::SetPort( port ) ;
921 x = tlworigin.h ;
922 y = tlworigin.v ;
923 }
924 }
925
926 bool wxWindowMac::MacGetBoundsForControl(const wxPoint& pos,
927 const wxSize& size,
928 int& x, int& y,
929 int& w, int& h , bool adjustOrigin ) const
930 {
931 x = (int)pos.x;
932 y = (int)pos.y;
933 // todo the default calls may be used as soon as PostCreateControl Is moved here
934 w = size.x ; // WidthDefault( size.x );
935 h = size.y ; // HeightDefault( size.y ) ;
936 #if !TARGET_API_MAC_OSX
937 GetParent()->MacWindowToRootWindow( &x , &y ) ;
938 #endif
939 if ( adjustOrigin )
940 AdjustForParentClientOrigin( x , y ) ;
941 return true ;
942 }
943
944 // Get total size
945 void wxWindowMac::DoGetSize(int *x, int *y) const
946 {
947 #if TARGET_API_MAC_OSX
948 int x1 , y1 , w1 ,h1 ;
949 MacGetPositionAndSizeFromControl( x1 , y1, w1 ,h1 ) ;
950 if(x) *x = w1 ;
951 if(y) *y = h1 ;
952
953 #else
954 Rect bounds ;
955 GetControlBounds( (ControlRef) m_macControl , &bounds ) ;
956 if(x) *x = bounds.right - bounds.left ;
957 if(y) *y = bounds.bottom - bounds.top ;
958 #endif
959 }
960
961 void wxWindowMac::DoGetPosition(int *x, int *y) const
962 {
963 #if TARGET_API_MAC_OSX
964 int x1 , y1 , w1 ,h1 ;
965 MacGetPositionAndSizeFromControl( x1 , y1, w1 ,h1 ) ;
966 if ( !IsTopLevel() )
967 {
968 wxWindow *parent = GetParent();
969 if ( parent )
970 {
971 wxPoint pt(parent->GetClientAreaOrigin());
972 x1 -= pt.x ;
973 y1 -= pt.y ;
974 }
975 }
976 if(x) *x = x1 ;
977 if(y) *y = y1 ;
978 #else
979 Rect bounds ;
980 GetControlBounds( (ControlRef) m_macControl , &bounds ) ;
981 wxCHECK_RET( GetParent() , wxT("Missing Parent") ) ;
982
983 int xx = bounds.left ;
984 int yy = bounds.top ;
985
986 if ( !GetParent()->IsTopLevel() )
987 {
988 GetControlBounds( (ControlRef) GetParent()->GetHandle() , &bounds ) ;
989
990 xx -= bounds.left ;
991 yy -= bounds.top ;
992 }
993
994 wxPoint pt(GetParent()->GetClientAreaOrigin());
995 xx -= pt.x;
996 yy -= pt.y;
997
998 if(x) *x = xx;
999 if(y) *y = yy;
1000 #endif
1001 }
1002
1003 void wxWindowMac::DoScreenToClient(int *x, int *y) const
1004 {
1005 WindowRef window = (WindowRef) MacGetTopLevelWindowRef() ;
1006
1007 wxCHECK_RET( window , wxT("TopLevel Window Missing") ) ;
1008
1009 {
1010 Point localwhere = {0,0} ;
1011
1012 if(x) localwhere.h = * x ;
1013 if(y) localwhere.v = * y ;
1014
1015 wxMacPortSaver s((GrafPtr)GetWindowPort( window )) ;
1016 ::GlobalToLocal( &localwhere ) ;
1017 if(x) *x = localwhere.h ;
1018 if(y) *y = localwhere.v ;
1019
1020 }
1021 MacRootWindowToWindow( x , y ) ;
1022
1023 wxPoint origin = GetClientAreaOrigin() ;
1024 if(x) *x -= origin.x ;
1025 if(y) *y -= origin.y ;
1026 }
1027
1028 void wxWindowMac::DoClientToScreen(int *x, int *y) const
1029 {
1030 WindowRef window = (WindowRef) MacGetTopLevelWindowRef() ;
1031 wxCHECK_RET( window , wxT("TopLevel Window Missing") ) ;
1032
1033 wxPoint origin = GetClientAreaOrigin() ;
1034 if(x) *x += origin.x ;
1035 if(y) *y += origin.y ;
1036
1037 MacWindowToRootWindow( x , y ) ;
1038
1039 {
1040 Point localwhere = { 0,0 };
1041 if(x) localwhere.h = * x ;
1042 if(y) localwhere.v = * y ;
1043
1044 wxMacPortSaver s((GrafPtr)GetWindowPort( window )) ;
1045 ::LocalToGlobal( &localwhere ) ;
1046 if(x) *x = localwhere.h ;
1047 if(y) *y = localwhere.v ;
1048 }
1049 }
1050
1051 void wxWindowMac::MacClientToRootWindow( int *x , int *y ) const
1052 {
1053 wxPoint origin = GetClientAreaOrigin() ;
1054 if(x) *x += origin.x ;
1055 if(y) *y += origin.y ;
1056
1057 MacWindowToRootWindow( x , y ) ;
1058 }
1059
1060 void wxWindowMac::MacRootWindowToClient( int *x , int *y ) const
1061 {
1062 MacRootWindowToWindow( x , y ) ;
1063
1064 wxPoint origin = GetClientAreaOrigin() ;
1065 if(x) *x -= origin.x ;
1066 if(y) *y -= origin.y ;
1067 }
1068
1069 void wxWindowMac::MacWindowToRootWindow( int *x , int *y ) const
1070 {
1071 #if TARGET_API_MAC_OSX
1072 HIPoint pt ;
1073 if ( x ) pt.x = *x ;
1074 if ( y ) pt.y = *y ;
1075
1076 if ( !IsTopLevel() )
1077 HIViewConvertPoint( &pt , (ControlRef) m_macControl , (ControlRef) MacGetTopLevelWindow()->GetHandle() ) ;
1078
1079 if ( x ) *x = (int) pt.x ;
1080 if ( y ) *y = (int) pt.y ;
1081 #else
1082 if ( !IsTopLevel() )
1083 {
1084 Rect bounds ;
1085 GetControlBounds( (ControlRef) m_macControl , &bounds ) ;
1086 if(x) *x += bounds.left ;
1087 if(y) *y += bounds.top ;
1088 }
1089 #endif
1090 }
1091
1092 void wxWindowMac::MacWindowToRootWindow( short *x , short *y ) const
1093 {
1094 int x1 , y1 ;
1095 if ( x ) x1 = *x ;
1096 if ( y ) y1 = *y ;
1097 MacWindowToRootWindow( &x1 , &y1 ) ;
1098 if ( x ) *x = x1 ;
1099 if ( y ) *y = y1 ;
1100 }
1101
1102 void wxWindowMac::MacRootWindowToWindow( int *x , int *y ) const
1103 {
1104 #if TARGET_API_MAC_OSX
1105 HIPoint pt ;
1106 if ( x ) pt.x = *x ;
1107 if ( y ) pt.y = *y ;
1108
1109 if ( !IsTopLevel() )
1110 HIViewConvertPoint( &pt , (ControlRef) MacGetTopLevelWindow()->GetHandle() , (ControlRef) m_macControl ) ;
1111
1112 if ( x ) *x = (int) pt.x ;
1113 if ( y ) *y = (int) pt.y ;
1114 #else
1115 if ( !IsTopLevel() )
1116 {
1117 Rect bounds ;
1118 GetControlBounds( (ControlRef) m_macControl , &bounds ) ;
1119 if(x) *x -= bounds.left ;
1120 if(y) *y -= bounds.top ;
1121 }
1122 #endif
1123 }
1124
1125 void wxWindowMac::MacRootWindowToWindow( short *x , short *y ) const
1126 {
1127 int x1 , y1 ;
1128 if ( x ) x1 = *x ;
1129 if ( y ) y1 = *y ;
1130 MacRootWindowToWindow( &x1 , &y1 ) ;
1131 if ( x ) *x = x1 ;
1132 if ( y ) *y = y1 ;
1133 }
1134
1135 wxSize wxWindowMac::DoGetSizeFromClientSize( const wxSize & size ) const
1136 {
1137 wxSize sizeTotal = size;
1138
1139 RgnHandle rgn = NewRgn() ;
1140
1141 Rect content ;
1142
1143 if ( GetControlRegion( (ControlRef) m_macControl , kControlContentMetaPart , rgn ) == noErr )
1144 {
1145 GetRegionBounds( rgn , &content ) ;
1146 DisposeRgn( rgn ) ;
1147 }
1148 else
1149 {
1150 GetControlBounds( (ControlRef) m_macControl , &content ) ;
1151 }
1152 Rect structure ;
1153 GetControlBounds( (ControlRef) m_macControl , &structure ) ;
1154 #if !TARGET_API_MAC_OSX
1155 OffsetRect( &content , -structure.left , -structure.top ) ;
1156 #endif
1157
1158 sizeTotal.x += (structure.right - structure.left) - (content.right - content.left) ;
1159 sizeTotal.y += (structure.bottom - structure.top) - (content.bottom - content.top ) ;
1160
1161 sizeTotal.x += MacGetLeftBorderSize( ) + MacGetRightBorderSize( ) ;
1162 sizeTotal.y += MacGetTopBorderSize( ) + MacGetBottomBorderSize( ) ;
1163
1164 return sizeTotal;
1165 }
1166
1167
1168 // Get size *available for subwindows* i.e. excluding menu bar etc.
1169 void wxWindowMac::DoGetClientSize(int *x, int *y) const
1170 {
1171 int ww, hh;
1172
1173 RgnHandle rgn = NewRgn() ;
1174 Rect content ;
1175 if ( GetControlRegion( (ControlRef) m_macControl , kControlContentMetaPart , rgn ) == noErr )
1176 {
1177 GetRegionBounds( rgn , &content ) ;
1178 DisposeRgn( rgn ) ;
1179 }
1180 else
1181 {
1182 GetControlBounds( (ControlRef) m_macControl , &content ) ;
1183 }
1184 #if !TARGET_API_MAC_OSX
1185 Rect structure ;
1186 GetControlBounds( (ControlRef) m_macControl , &structure ) ;
1187 OffsetRect( &content , -structure.left , -structure.top ) ;
1188 #endif
1189 ww = content.right - content.left ;
1190 hh = content.bottom - content.top ;
1191
1192 ww -= MacGetLeftBorderSize( ) + MacGetRightBorderSize( ) ;
1193 hh -= MacGetTopBorderSize( ) + MacGetBottomBorderSize( );
1194
1195 if ( (m_vScrollBar && m_vScrollBar->IsShown()) || (m_hScrollBar && m_hScrollBar->IsShown()) )
1196 {
1197 int x1 = 0 ;
1198 int y1 = 0 ;
1199 int w ;
1200 int h ;
1201 GetSize( &w , &h ) ;
1202
1203 MacClientToRootWindow( &x1 , &y1 ) ;
1204 MacClientToRootWindow( &w , &h ) ;
1205
1206 wxWindowMac *iter = (wxWindowMac*)this ;
1207
1208 int totW = 10000 , totH = 10000;
1209 while( iter )
1210 {
1211 if ( iter->IsTopLevel() )
1212 {
1213 iter->GetSize( &totW , &totH ) ;
1214 break ;
1215 }
1216
1217 iter = iter->GetParent() ;
1218 }
1219
1220 if (m_hScrollBar && m_hScrollBar->IsShown() )
1221 {
1222 hh -= MAC_SCROLLBAR_SIZE;
1223 if ( h-y1 >= totH )
1224 {
1225 hh += 1 ;
1226 }
1227 }
1228 if (m_vScrollBar && m_vScrollBar->IsShown() )
1229 {
1230 ww -= MAC_SCROLLBAR_SIZE;
1231 if ( w-x1 >= totW )
1232 {
1233 ww += 1 ;
1234 }
1235 }
1236 }
1237 if(x) *x = ww;
1238 if(y) *y = hh;
1239
1240 }
1241
1242 bool wxWindowMac::SetCursor(const wxCursor& cursor)
1243 {
1244 if (m_cursor == cursor)
1245 return FALSE;
1246
1247 if (wxNullCursor == cursor)
1248 {
1249 if ( ! wxWindowBase::SetCursor( *wxSTANDARD_CURSOR ) )
1250 return FALSE ;
1251 }
1252 else
1253 {
1254 if ( ! wxWindowBase::SetCursor( cursor ) )
1255 return FALSE ;
1256 }
1257
1258 wxASSERT_MSG( m_cursor.Ok(),
1259 wxT("cursor must be valid after call to the base version"));
1260
1261 /*
1262
1263 TODO why do we have to use current coordinates ?
1264
1265 Point pt ;
1266 wxWindowMac *mouseWin ;
1267 GetMouse( &pt ) ;
1268
1269 // Change the cursor NOW if we're within the correct window
1270
1271
1272 if ( MacGetWindowFromPoint( wxPoint( pt.h , pt.v ) , &mouseWin ) )
1273 {
1274 if ( mouseWin == this && !wxIsBusy() )
1275 {
1276 m_cursor.MacInstall() ;
1277 }
1278 }
1279 */
1280 if ( !wxIsBusy() )
1281 {
1282 m_cursor.MacInstall() ;
1283 }
1284
1285 return TRUE ;
1286 }
1287
1288 #if wxUSE_MENUS
1289 bool wxWindowMac::DoPopupMenu(wxMenu *menu, int x, int y)
1290 {
1291 menu->SetInvokingWindow(this);
1292 menu->UpdateUI();
1293 ClientToScreen( &x , &y ) ;
1294
1295 menu->MacBeforeDisplay( true ) ;
1296 long menuResult = ::PopUpMenuSelect((MenuHandle) menu->GetHMenu() ,y,x, 0) ;
1297 if ( HiWord(menuResult) != 0 )
1298 {
1299 MenuCommand id ;
1300 GetMenuItemCommandID( GetMenuHandle(HiWord(menuResult)) , LoWord(menuResult) , &id ) ;
1301 wxMenuItem* item = NULL ;
1302 wxMenu* realmenu ;
1303 item = menu->FindItem(id, &realmenu) ;
1304 if (item->IsCheckable())
1305 {
1306 item->Check( !item->IsChecked() ) ;
1307 }
1308 menu->SendEvent( id , item->IsCheckable() ? item->IsChecked() : -1 ) ;
1309 }
1310 menu->MacAfterDisplay( true ) ;
1311
1312 menu->SetInvokingWindow(NULL);
1313
1314 return TRUE;
1315 }
1316 #endif
1317
1318 // ----------------------------------------------------------------------------
1319 // tooltips
1320 // ----------------------------------------------------------------------------
1321
1322 #if wxUSE_TOOLTIPS
1323
1324 void wxWindowMac::DoSetToolTip(wxToolTip *tooltip)
1325 {
1326 wxWindowBase::DoSetToolTip(tooltip);
1327
1328 if ( m_tooltip )
1329 m_tooltip->SetWindow(this);
1330 }
1331
1332 #endif // wxUSE_TOOLTIPS
1333
1334 void wxWindowMac::DoMoveWindow(int x, int y, int width, int height)
1335 {
1336 int former_x , former_y , former_w, former_h ;
1337 #if !TARGET_API_MAC_OSX
1338 DoGetPosition( &former_x , &former_y ) ;
1339 DoGetSize( &former_w , &former_h ) ;
1340 #else
1341 MacGetPositionAndSizeFromControl( former_x , former_y , former_w , former_h ) ;
1342 #endif
1343
1344 int actualWidth = width;
1345 int actualHeight = height;
1346 int actualX = x;
1347 int actualY = y;
1348
1349 if ((m_minWidth != -1) && (actualWidth < m_minWidth))
1350 actualWidth = m_minWidth;
1351 if ((m_minHeight != -1) && (actualHeight < m_minHeight))
1352 actualHeight = m_minHeight;
1353 if ((m_maxWidth != -1) && (actualWidth > m_maxWidth))
1354 actualWidth = m_maxWidth;
1355 if ((m_maxHeight != -1) && (actualHeight > m_maxHeight))
1356 actualHeight = m_maxHeight;
1357
1358 bool doMove = false ;
1359 bool doResize = false ;
1360
1361 if ( actualX != former_x || actualY != former_y )
1362 {
1363 doMove = true ;
1364 }
1365 if ( actualWidth != former_w || actualHeight != former_h )
1366 {
1367 doResize = true ;
1368 }
1369
1370 if ( doMove || doResize )
1371 {
1372 // we don't adjust twice for the origin
1373 Rect r = wxMacGetBoundsForControl(this , wxPoint( actualX,actualY), wxSize( actualWidth, actualHeight ) , false ) ;
1374 bool vis = IsControlVisible( (ControlRef) m_macControl ) ;
1375 #if TARGET_API_MAC_OSX
1376 // the HIViewSetFrame call itself should invalidate the areas, but when testing with the UnicodeTextCtrl it does not !
1377 if ( vis )
1378 SetControlVisibility( (ControlRef)m_macControl , false , true ) ;
1379 HIRect hir = { r.left , r.top , r.right - r.left , r.bottom - r.top } ;
1380 HIViewSetFrame ( (ControlRef) m_macControl , &hir ) ;
1381 if ( vis )
1382 SetControlVisibility( (ControlRef)m_macControl , true , true ) ;
1383 #else
1384 // TODO TEST SetControlBounds( (ControlRef) m_macControl , &r ) ;
1385 if ( vis )
1386 SetControlVisibility( (ControlRef)m_macControl , false , true ) ;
1387 if ( doMove )
1388 MoveControl( (ControlRef) m_macControl , r.left , r.top ) ;
1389 if ( doSize )
1390 SizeControl( (ControlRef) m_macControl , r.right-r.left , r.bottom-r.top ) ;
1391 if ( vis )
1392 SetControlVisibility( (ControlRef)m_macControl , true , true ) ;
1393 #endif
1394 MacRepositionScrollBars() ;
1395 if ( doMove )
1396 {
1397 wxPoint point(actualX,actualY);
1398 wxMoveEvent event(point, m_windowId);
1399 event.SetEventObject(this);
1400 GetEventHandler()->ProcessEvent(event) ;
1401 }
1402 if ( doResize )
1403 {
1404 MacRepositionScrollBars() ;
1405 wxSize size(actualWidth, actualHeight);
1406 wxSizeEvent event(size, m_windowId);
1407 event.SetEventObject(this);
1408 GetEventHandler()->ProcessEvent(event);
1409 }
1410 }
1411
1412 }
1413
1414 wxSize wxWindowMac::DoGetBestSize() const
1415 {
1416 if ( m_macIsUserPane || IsTopLevel() )
1417 return wxWindowBase::DoGetBestSize() ;
1418
1419 Rect bestsize = { 0 , 0 , 0 , 0 } ;
1420 short baselineoffset ;
1421 int bestWidth, bestHeight ;
1422 ::GetBestControlRect( (ControlRef) m_macControl , &bestsize , &baselineoffset ) ;
1423
1424 if ( EmptyRect( &bestsize ) )
1425 {
1426 baselineoffset = 0;
1427 bestsize.left = bestsize.top = 0 ;
1428 bestsize.right = 16 ;
1429 bestsize.bottom = 16 ;
1430 if ( IsKindOf( CLASSINFO( wxScrollBar ) ) )
1431 {
1432 bestsize.bottom = 16 ;
1433 }
1434 else if ( IsKindOf( CLASSINFO( wxSpinButton ) ) )
1435 {
1436 bestsize.bottom = 24 ;
1437 }
1438 else
1439 {
1440 // return wxWindowBase::DoGetBestSize() ;
1441 }
1442 }
1443
1444 bestWidth = bestsize.right - bestsize.left ;
1445 bestHeight = bestsize.bottom - bestsize.top ;
1446 if ( bestHeight < 10 )
1447 bestHeight = 13 ;
1448
1449 return wxSize(bestWidth, bestHeight);
1450 // return wxWindowBase::DoGetBestSize() ;
1451 }
1452
1453
1454 // set the size of the window: if the dimensions are positive, just use them,
1455 // but if any of them is equal to -1, it means that we must find the value for
1456 // it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in
1457 // which case -1 is a valid value for x and y)
1458 //
1459 // If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate
1460 // the width/height to best suit our contents, otherwise we reuse the current
1461 // width/height
1462 void wxWindowMac::DoSetSize(int x, int y, int width, int height, int sizeFlags)
1463 {
1464 // get the current size and position...
1465 int currentX, currentY;
1466 GetPosition(&currentX, &currentY);
1467
1468 int currentW,currentH;
1469 GetSize(&currentW, &currentH);
1470
1471 // ... and don't do anything (avoiding flicker) if it's already ok
1472 if ( x == currentX && y == currentY &&
1473 width == currentW && height == currentH && ( height != -1 && width != -1 ) )
1474 {
1475 // TODO REMOVE
1476 MacRepositionScrollBars() ; // we might have a real position shift
1477 return;
1478 }
1479
1480 if ( x == -1 && !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE) )
1481 x = currentX;
1482 if ( y == -1 && !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE) )
1483 y = currentY;
1484
1485 AdjustForParentClientOrigin(x, y, sizeFlags);
1486
1487 wxSize size(-1, -1);
1488 if ( width == -1 )
1489 {
1490 if ( sizeFlags & wxSIZE_AUTO_WIDTH )
1491 {
1492 size = DoGetBestSize();
1493 width = size.x;
1494 }
1495 else
1496 {
1497 // just take the current one
1498 width = currentW;
1499 }
1500 }
1501
1502 if ( height == -1 )
1503 {
1504 if ( sizeFlags & wxSIZE_AUTO_HEIGHT )
1505 {
1506 if ( size.x == -1 )
1507 {
1508 size = DoGetBestSize();
1509 }
1510 //else: already called DoGetBestSize() above
1511
1512 height = size.y;
1513 }
1514 else
1515 {
1516 // just take the current one
1517 height = currentH;
1518 }
1519 }
1520
1521 DoMoveWindow(x, y, width, height);
1522
1523 }
1524
1525 wxPoint wxWindowMac::GetClientAreaOrigin() const
1526 {
1527 RgnHandle rgn = NewRgn() ;
1528 Rect content ;
1529 GetControlRegion( (ControlRef) m_macControl , kControlContentMetaPart , rgn ) ;
1530 GetRegionBounds( rgn , &content ) ;
1531 DisposeRgn( rgn ) ;
1532 #if !TARGET_API_MAC_OSX
1533 Rect structure ;
1534 GetControlBounds( (ControlRef) m_macControl , &structure ) ;
1535 OffsetRect( &content , -structure.left , -structure.top ) ;
1536 #endif
1537
1538 return wxPoint( content.left + MacGetLeftBorderSize( ) , content.top + MacGetTopBorderSize( ) );
1539 }
1540
1541 void wxWindowMac::DoSetClientSize(int clientwidth, int clientheight)
1542 {
1543 if ( clientheight != -1 || clientheight != -1 )
1544 {
1545 int currentclientwidth , currentclientheight ;
1546 int currentwidth , currentheight ;
1547
1548 GetClientSize( &currentclientwidth , &currentclientheight ) ;
1549 GetSize( &currentwidth , &currentheight ) ;
1550
1551 DoSetSize( -1 , -1 , currentwidth + clientwidth - currentclientwidth ,
1552 currentheight + clientheight - currentclientheight , wxSIZE_USE_EXISTING ) ;
1553 }
1554 }
1555
1556 void wxWindowMac::SetTitle(const wxString& title)
1557 {
1558 m_label = wxStripMenuCodes(title) ;
1559
1560 if ( m_macControl )
1561 {
1562 UMASetControlTitle( (ControlRef) m_macControl , m_label , m_font.GetEncoding() ) ;
1563 }
1564 Refresh() ;
1565 }
1566
1567 wxString wxWindowMac::GetTitle() const
1568 {
1569 return m_label ;
1570 }
1571
1572 bool wxWindowMac::Show(bool show)
1573 {
1574 if ( !wxWindowBase::Show(show) )
1575 return FALSE;
1576
1577 // TODO use visibilityChanged Carbon Event for OSX
1578 bool former = MacIsReallyShown() ;
1579
1580 SetControlVisibility( (ControlRef) m_macControl , show , true ) ;
1581 if ( former != MacIsReallyShown() )
1582 MacPropagateVisibilityChanged() ;
1583 return TRUE;
1584 }
1585
1586 bool wxWindowMac::Enable(bool enable)
1587 {
1588 wxASSERT( m_macControl != NULL ) ;
1589 if ( !wxWindowBase::Enable(enable) )
1590 return FALSE;
1591
1592 bool former = MacIsReallyEnabled() ;
1593 if ( enable )
1594 EnableControl( (ControlRef) m_macControl ) ;
1595 else
1596 DisableControl( (ControlRef) m_macControl ) ;
1597
1598 if ( former != MacIsReallyEnabled() )
1599 MacPropagateEnabledStateChanged() ;
1600 return TRUE;
1601 }
1602
1603 //
1604 // status change propagations (will be not necessary for OSX later )
1605 //
1606
1607 void wxWindowMac::MacPropagateVisibilityChanged()
1608 {
1609 #if !TARGET_API_MAC_OSX
1610 MacVisibilityChanged() ;
1611
1612 wxWindowListNode *node = GetChildren().GetFirst();
1613 while ( node )
1614 {
1615 wxWindowMac *child = node->GetData();
1616 if ( child->IsShown() )
1617 child->MacPropagateVisibilityChanged( ) ;
1618 node = node->GetNext();
1619 }
1620 #endif
1621 }
1622
1623 void wxWindowMac::MacPropagateEnabledStateChanged( )
1624 {
1625 #if !TARGET_API_MAC_OSX
1626 MacEnabledStateChanged() ;
1627
1628 wxWindowListNode *node = GetChildren().GetFirst();
1629 while ( node )
1630 {
1631 wxWindowMac *child = node->GetData();
1632 if ( child->IsEnabled() )
1633 child->MacPropagateEnabledStateChanged() ;
1634 node = node->GetNext();
1635 }
1636 #endif
1637 }
1638
1639 void wxWindowMac::MacPropagateHiliteChanged( )
1640 {
1641 #if !TARGET_API_MAC_OSX
1642 MacHiliteChanged() ;
1643
1644 wxWindowListNode *node = GetChildren().GetFirst();
1645 while ( node )
1646 {
1647 wxWindowMac *child = node->GetData();
1648 // if ( child->IsEnabled() )
1649 child->MacPropagateHiliteChanged() ;
1650 node = node->GetNext();
1651 }
1652 #endif
1653 }
1654
1655 //
1656 // status change notifications
1657 //
1658
1659 void wxWindowMac::MacVisibilityChanged()
1660 {
1661 }
1662
1663 void wxWindowMac::MacHiliteChanged()
1664 {
1665 }
1666
1667 void wxWindowMac::MacEnabledStateChanged()
1668 {
1669 }
1670
1671 //
1672 // status queries on the inherited window's state
1673 //
1674
1675 bool wxWindowMac::MacIsReallyShown()
1676 {
1677 // only under OSX the visibility of the TLW is taken into account
1678 #if TARGET_API_MAC_OSX
1679 return IsControlVisible( (ControlRef) m_macControl ) ;
1680 #else
1681 wxWindow* win = this ;
1682 while( win->IsShown() )
1683 {
1684 if ( win->IsTopLevel() )
1685 return true ;
1686
1687 win = win->GetParent() ;
1688 if ( win == NULL )
1689 return true ;
1690
1691 } ;
1692 return false ;
1693 #endif
1694 }
1695
1696 bool wxWindowMac::MacIsReallyEnabled()
1697 {
1698 return IsControlEnabled( (ControlRef) m_macControl ) ;
1699 }
1700
1701 bool wxWindowMac::MacIsReallyHilited()
1702 {
1703 return IsControlActive( (ControlRef) m_macControl ) ;
1704 }
1705
1706 //
1707 //
1708 //
1709
1710 int wxWindowMac::GetCharHeight() const
1711 {
1712 wxClientDC dc ( (wxWindowMac*)this ) ;
1713 return dc.GetCharHeight() ;
1714 }
1715
1716 int wxWindowMac::GetCharWidth() const
1717 {
1718 wxClientDC dc ( (wxWindowMac*)this ) ;
1719 return dc.GetCharWidth() ;
1720 }
1721
1722 void wxWindowMac::GetTextExtent(const wxString& string, int *x, int *y,
1723 int *descent, int *externalLeading, const wxFont *theFont ) const
1724 {
1725 const wxFont *fontToUse = theFont;
1726 if ( !fontToUse )
1727 fontToUse = &m_font;
1728
1729 wxClientDC dc( (wxWindowMac*) this ) ;
1730 long lx,ly,ld,le ;
1731 dc.GetTextExtent( string , &lx , &ly , &ld, &le, (wxFont *)fontToUse ) ;
1732 if ( externalLeading )
1733 *externalLeading = le ;
1734 if ( descent )
1735 *descent = ld ;
1736 if ( x )
1737 *x = lx ;
1738 if ( y )
1739 *y = ly ;
1740 }
1741
1742 /*
1743 * Rect is given in client coordinates, for further reading, read wxTopLevelWindowMac::InvalidateRect
1744 * we always intersect with the entire window, not only with the client area
1745 */
1746
1747 void wxWindowMac::Refresh(bool eraseBack, const wxRect *rect)
1748 {
1749 #if TARGET_API_MAC_OSX
1750 if ( rect == NULL )
1751 HIViewSetNeedsDisplay( (ControlRef) m_macControl , true ) ;
1752 else
1753 {
1754 RgnHandle update = NewRgn() ;
1755 SetRectRgn( update , rect->x , rect->y , rect->x + rect->width , rect->y + rect->height ) ;
1756 SectRgn( (RgnHandle) MacGetVisibleRegion().GetWXHRGN() , update , update ) ;
1757 wxPoint origin = GetClientAreaOrigin() ;
1758 OffsetRgn( update, origin.x , origin.y ) ;
1759 HIViewSetNeedsDisplayInRegion( (ControlRef) m_macControl , update , true ) ;
1760 }
1761 #else
1762 /*
1763 RgnHandle updateRgn = NewRgn() ;
1764 if ( rect == NULL )
1765 {
1766 CopyRgn( (RgnHandle) MacGetVisibleRegion().GetWXHRGN() , updateRgn ) ;
1767 }
1768 else
1769 {
1770 SetRectRgn( updateRgn , rect->x , rect->y , rect->x + rect->width , rect->y + rect->height ) ;
1771 SectRgn( (RgnHandle) MacGetVisibleRegion().GetWXHRGN() , updateRgn , updateRgn ) ;
1772 }
1773 InvalWindowRgn( (WindowRef) MacGetTopLevelWindowRef() , updateRgn ) ;
1774 DisposeRgn(updateRgn) ;
1775 */
1776 if ( IsControlVisible( (ControlRef) m_macControl ) )
1777 {
1778 SetControlVisibility( (ControlRef) m_macControl , false , false ) ;
1779 SetControlVisibility( (ControlRef) m_macControl , true , true ) ;
1780 }
1781 /*
1782 if ( MacGetTopLevelWindow() == NULL )
1783 return ;
1784
1785 if ( !IsControlVisible( (ControlRef) m_macControl ) )
1786 return ;
1787
1788 wxPoint client = GetClientAreaOrigin();
1789 int x1 = -client.x;
1790 int y1 = -client.y;
1791 int x2 = m_width - client.x;
1792 int y2 = m_height - client.y;
1793
1794 if (IsKindOf( CLASSINFO(wxButton)))
1795 {
1796 // buttons have an "aura"
1797 y1 -= 5;
1798 x1 -= 5;
1799 y2 += 5;
1800 x2 += 5;
1801 }
1802
1803 Rect clientrect = { y1, x1, y2, x2 };
1804
1805 if ( rect )
1806 {
1807 Rect r = { rect->y , rect->x , rect->y + rect->height , rect->x + rect->width } ;
1808 SectRect( &clientrect , &r , &clientrect ) ;
1809 }
1810
1811 if ( !EmptyRect( &clientrect ) )
1812 {
1813 int top = 0 , left = 0 ;
1814
1815 MacClientToRootWindow( &left , &top ) ;
1816 OffsetRect( &clientrect , left , top ) ;
1817
1818 MacGetTopLevelWindow()->MacInvalidate( &clientrect , eraseBack ) ;
1819 }
1820 */
1821 #endif
1822 }
1823
1824 void wxWindowMac::Freeze()
1825 {
1826 #if TARGET_API_MAC_OSX
1827 if ( !m_frozenness++ )
1828 {
1829 HIViewSetDrawingEnabled( (HIViewRef) m_macControl , false ) ;
1830 }
1831 #endif
1832 }
1833
1834 void wxWindowMac::Thaw()
1835 {
1836 #if TARGET_API_MAC_OSX
1837 wxASSERT_MSG( m_frozenness > 0, _T("Thaw() without matching Freeze()") );
1838
1839 if ( !--m_frozenness )
1840 {
1841 HIViewSetDrawingEnabled( (HIViewRef) m_macControl , true ) ;
1842 HIViewSetNeedsDisplay( (HIViewRef) m_macControl , true ) ;
1843 }
1844 #endif
1845 }
1846
1847 void wxWindowMac::MacRedrawControl()
1848 {
1849 /*
1850 if ( (ControlRef) m_macControl && MacGetTopLevelWindowRef() && IsControlVisible( (ControlRef) m_macControl ) )
1851 {
1852 #if TARGET_API_MAC_CARBON
1853 Update() ;
1854 #else
1855 wxClientDC dc(this) ;
1856 wxMacPortSetter helper(&dc) ;
1857 wxMacWindowClipper clipper(this) ;
1858 wxDC::MacSetupBackgroundForCurrentPort( MacGetBackgroundBrush() ) ;
1859 UMADrawControl( (ControlRef) m_macControl ) ;
1860 #endif
1861 }
1862 */
1863 }
1864
1865 /* TODO
1866 void wxWindowMac::OnPaint(wxPaintEvent& event)
1867 {
1868 // why don't we skip that here ?
1869 }
1870 */
1871
1872 wxWindowMac *wxGetActiveWindow()
1873 {
1874 // actually this is a windows-only concept
1875 return NULL;
1876 }
1877
1878 // Coordinates relative to the window
1879 void wxWindowMac::WarpPointer (int x_pos, int y_pos)
1880 {
1881 // We really don't move the mouse programmatically under Mac.
1882 }
1883
1884 void wxWindowMac::OnEraseBackground(wxEraseEvent& event)
1885 {
1886 if ( m_macBackgroundBrush.Ok() == false || m_macBackgroundBrush.GetStyle() == wxTRANSPARENT )
1887 {
1888 event.Skip() ;
1889 }
1890 else
1891 event.GetDC()->Clear() ;
1892 }
1893
1894 void wxWindowMac::OnNcPaint( wxNcPaintEvent& event )
1895 {
1896 wxWindowDC dc(this) ;
1897 wxMacPortSetter helper(&dc) ;
1898
1899 MacPaintBorders( dc.m_macLocalOrigin.x , dc.m_macLocalOrigin.y) ;
1900 }
1901
1902 int wxWindowMac::GetScrollPos(int orient) const
1903 {
1904 if ( orient == wxHORIZONTAL )
1905 {
1906 if ( m_hScrollBar )
1907 return m_hScrollBar->GetThumbPosition() ;
1908 }
1909 else
1910 {
1911 if ( m_vScrollBar )
1912 return m_vScrollBar->GetThumbPosition() ;
1913 }
1914 return 0;
1915 }
1916
1917 // This now returns the whole range, not just the number
1918 // of positions that we can scroll.
1919 int wxWindowMac::GetScrollRange(int orient) const
1920 {
1921 if ( orient == wxHORIZONTAL )
1922 {
1923 if ( m_hScrollBar )
1924 return m_hScrollBar->GetRange() ;
1925 }
1926 else
1927 {
1928 if ( m_vScrollBar )
1929 return m_vScrollBar->GetRange() ;
1930 }
1931 return 0;
1932 }
1933
1934 int wxWindowMac::GetScrollThumb(int orient) const
1935 {
1936 if ( orient == wxHORIZONTAL )
1937 {
1938 if ( m_hScrollBar )
1939 return m_hScrollBar->GetThumbSize() ;
1940 }
1941 else
1942 {
1943 if ( m_vScrollBar )
1944 return m_vScrollBar->GetThumbSize() ;
1945 }
1946 return 0;
1947 }
1948
1949 void wxWindowMac::SetScrollPos(int orient, int pos, bool refresh)
1950 {
1951 if ( orient == wxHORIZONTAL )
1952 {
1953 if ( m_hScrollBar )
1954 m_hScrollBar->SetThumbPosition( pos ) ;
1955 }
1956 else
1957 {
1958 if ( m_vScrollBar )
1959 m_vScrollBar->SetThumbPosition( pos ) ;
1960 }
1961 }
1962
1963 void wxWindowMac::MacPaintBorders( int left , int top )
1964 {
1965 if( IsTopLevel() )
1966 return ;
1967
1968 int major,minor;
1969 wxGetOsVersion( &major, &minor );
1970
1971 RGBColor white = { 0xFFFF, 0xFFFF , 0xFFFF } ;
1972 RGBColor face = { 0xDDDD, 0xDDDD , 0xDDDD } ;
1973
1974 RGBColor darkShadow = { 0x0000, 0x0000 , 0x0000 } ;
1975 RGBColor lightShadow = { 0x4444, 0x4444 , 0x4444 } ;
1976 // OS X has lighter border edges than classic:
1977 if (major >= 10)
1978 {
1979 darkShadow.red = 0x8E8E;
1980 darkShadow.green = 0x8E8E;
1981 darkShadow.blue = 0x8E8E;
1982 lightShadow.red = 0xBDBD;
1983 lightShadow.green = 0xBDBD;
1984 lightShadow.blue = 0xBDBD;
1985 }
1986
1987 PenNormal() ;
1988
1989 int w , h ;
1990 GetSize( &w , &h ) ;
1991 if (HasFlag(wxRAISED_BORDER) || HasFlag( wxSUNKEN_BORDER) || HasFlag(wxDOUBLE_BORDER) )
1992 {
1993 #if wxMAC_USE_THEME_BORDER
1994 Rect rect = { top , left , m_height + top , m_width + left } ;
1995 SInt32 border = 0 ;
1996 /*
1997 GetThemeMetric( kThemeMetricListBoxFrameOutset , &border ) ;
1998 InsetRect( &rect , border , border );
1999 DrawThemeListBoxFrame(&rect,IsEnabled() ? kThemeStateActive : kThemeStateInactive) ;
2000 */
2001
2002 DrawThemePrimaryGroup(&rect ,IsEnabled() ? kThemeStateActive : kThemeStateInactive) ;
2003 #else
2004 bool sunken = HasFlag( wxSUNKEN_BORDER ) ;
2005 RGBForeColor( &face );
2006 MoveTo( left + 0 , top + h - 2 );
2007 LineTo( left + 0 , top + 0 );
2008 LineTo( left + w - 2 , top + 0 );
2009
2010 MoveTo( left + 2 , top + h - 3 );
2011 LineTo( left + w - 3 , top + h - 3 );
2012 LineTo( left + w - 3 , top + 2 );
2013
2014 RGBForeColor( sunken ? &face : &darkShadow );
2015 MoveTo( left + 0 , top + h - 1 );
2016 LineTo( left + w - 1 , top + h - 1 );
2017 LineTo( left + w - 1 , top + 0 );
2018
2019 RGBForeColor( sunken ? &lightShadow : &white );
2020 MoveTo( left + 1 , top + h - 3 );
2021 LineTo( left + 1, top + 1 );
2022 LineTo( left + w - 3 , top + 1 );
2023
2024 RGBForeColor( sunken ? &white : &lightShadow );
2025 MoveTo( left + 1 , top + h - 2 );
2026 LineTo( left + w - 2 , top + h - 2 );
2027 LineTo( left + w - 2 , top + 1 );
2028
2029 RGBForeColor( sunken ? &darkShadow : &face );
2030 MoveTo( left + 2 , top + h - 4 );
2031 LineTo( left + 2 , top + 2 );
2032 LineTo( left + w - 4 , top + 2 );
2033 #endif
2034 }
2035 else if (HasFlag(wxSIMPLE_BORDER))
2036 {
2037 Rect rect = { top , left , h + top , w + left } ;
2038 RGBForeColor( &darkShadow ) ;
2039 FrameRect( &rect ) ;
2040 }
2041 }
2042
2043 void wxWindowMac::RemoveChild( wxWindowBase *child )
2044 {
2045 if ( child == m_hScrollBar )
2046 m_hScrollBar = NULL ;
2047 if ( child == m_vScrollBar )
2048 m_vScrollBar = NULL ;
2049
2050 wxWindowBase::RemoveChild( child ) ;
2051 }
2052
2053 // New function that will replace some of the above.
2054 void wxWindowMac::SetScrollbar(int orient, int pos, int thumbVisible,
2055 int range, bool refresh)
2056 {
2057 if ( orient == wxHORIZONTAL )
2058 {
2059 if ( m_hScrollBar )
2060 {
2061 if ( range == 0 || thumbVisible >= range )
2062 {
2063 if ( m_hScrollBar->IsShown() )
2064 m_hScrollBar->Show(false) ;
2065 }
2066 else
2067 {
2068 if ( !m_hScrollBar->IsShown() )
2069 m_hScrollBar->Show(true) ;
2070 m_hScrollBar->SetScrollbar( pos , thumbVisible , range , thumbVisible , refresh ) ;
2071 }
2072 }
2073 }
2074 else
2075 {
2076 if ( m_vScrollBar )
2077 {
2078 if ( range == 0 || thumbVisible >= range )
2079 {
2080 if ( m_vScrollBar->IsShown() )
2081 m_vScrollBar->Show(false) ;
2082 }
2083 else
2084 {
2085 if ( !m_vScrollBar->IsShown() )
2086 m_vScrollBar->Show(true) ;
2087 m_vScrollBar->SetScrollbar( pos , thumbVisible , range , thumbVisible , refresh ) ;
2088 }
2089 }
2090 }
2091 MacRepositionScrollBars() ;
2092 }
2093
2094 // Does a physical scroll
2095 void wxWindowMac::ScrollWindow(int dx, int dy, const wxRect *rect)
2096 {
2097 if( dx == 0 && dy ==0 )
2098 return ;
2099
2100
2101 {
2102 wxClientDC dc(this) ;
2103 wxMacPortSetter helper(&dc) ;
2104
2105 int width , height ;
2106 GetClientSize( &width , &height ) ;
2107
2108
2109 wxPoint pos;
2110 pos.x = pos.y = 0;
2111
2112 Rect scrollrect;
2113 // TODO take out the boundaries
2114 GetControlBounds( (ControlRef) m_macControl, &scrollrect);
2115
2116 RgnHandle updateRgn = NewRgn() ;
2117 if ( rect )
2118 {
2119 Rect r = { dc.YLOG2DEVMAC(rect->y) , dc.XLOG2DEVMAC(rect->x) , dc.YLOG2DEVMAC(rect->y + rect->height) ,
2120 dc.XLOG2DEVMAC(rect->x + rect->width) } ;
2121 SectRect( &scrollrect , &r , &scrollrect ) ;
2122 }
2123 ScrollRect( &scrollrect , dx , dy , updateRgn ) ;
2124 #if TARGET_CARBON
2125 //KO: The docs say ScrollRect creates an update region, which thus calls an update event
2126 // but it seems the update only refreshes the background of the control, rather than calling
2127 // kEventControlDraw, so we need to force a proper update here. There has to be a better
2128 // way of doing this... (Note that code below under !TARGET_CARBON does not work either...)
2129 Update();
2130 #endif
2131 // we also have to scroll the update rgn in this rectangle
2132 // in order not to loose updates
2133 #if !TARGET_CARBON
2134 WindowRef rootWindow = (WindowRef) MacGetTopLevelWindowRef() ;
2135 RgnHandle formerUpdateRgn = NewRgn() ;
2136 RgnHandle scrollRgn = NewRgn() ;
2137 RectRgn( scrollRgn , &scrollrect ) ;
2138 GetWindowUpdateRgn( rootWindow , formerUpdateRgn ) ;
2139 Point pt = {0,0} ;
2140 LocalToGlobal( &pt ) ;
2141 OffsetRgn( formerUpdateRgn , -pt.h , -pt.v ) ;
2142 SectRgn( formerUpdateRgn , scrollRgn , formerUpdateRgn ) ;
2143 if ( !EmptyRgn( formerUpdateRgn ) )
2144 {
2145 MacOffsetRgn( formerUpdateRgn , dx , dy ) ;
2146 SectRgn( formerUpdateRgn , scrollRgn , formerUpdateRgn ) ;
2147 InvalWindowRgn(rootWindow , formerUpdateRgn ) ;
2148 }
2149 InvalWindowRgn(rootWindow , updateRgn ) ;
2150 DisposeRgn( updateRgn ) ;
2151 DisposeRgn( formerUpdateRgn ) ;
2152 DisposeRgn( scrollRgn ) ;
2153 #endif
2154 }
2155
2156 for (wxWindowListNode *node = GetChildren().GetFirst(); node; node = node->GetNext())
2157 {
2158 wxWindowMac *child = node->GetData();
2159 if (child == m_vScrollBar) continue;
2160 if (child == m_hScrollBar) continue;
2161 if (child->IsTopLevel()) continue;
2162
2163 int x,y;
2164 child->GetPosition( &x, &y );
2165 int w,h;
2166 child->GetSize( &w, &h );
2167 if (rect)
2168 {
2169 wxRect rc(x,y,w,h);
2170 if (rect->Intersects(rc))
2171 child->SetSize( x+dx, y+dy, w, h );
2172 }
2173 else
2174 {
2175 child->SetSize( x+dx, y+dy, w, h );
2176 }
2177 }
2178
2179 // TODO remove, was moved higher up Update() ;
2180
2181 }
2182
2183 void wxWindowMac::MacOnScroll(wxScrollEvent &event )
2184 {
2185 if ( event.m_eventObject == m_vScrollBar || event.m_eventObject == m_hScrollBar )
2186 {
2187 wxScrollWinEvent wevent;
2188 wevent.SetPosition(event.GetPosition());
2189 wevent.SetOrientation(event.GetOrientation());
2190 wevent.m_eventObject = this;
2191
2192 if (event.m_eventType == wxEVT_SCROLL_TOP)
2193 wevent.m_eventType = wxEVT_SCROLLWIN_TOP;
2194 else if (event.m_eventType == wxEVT_SCROLL_BOTTOM)
2195 wevent.m_eventType = wxEVT_SCROLLWIN_BOTTOM;
2196 else if (event.m_eventType == wxEVT_SCROLL_LINEUP)
2197 wevent.m_eventType = wxEVT_SCROLLWIN_LINEUP;
2198 else if (event.m_eventType == wxEVT_SCROLL_LINEDOWN)
2199 wevent.m_eventType = wxEVT_SCROLLWIN_LINEDOWN;
2200 else if (event.m_eventType == wxEVT_SCROLL_PAGEUP)
2201 wevent.m_eventType = wxEVT_SCROLLWIN_PAGEUP;
2202 else if (event.m_eventType == wxEVT_SCROLL_PAGEDOWN)
2203 wevent.m_eventType = wxEVT_SCROLLWIN_PAGEDOWN;
2204 else if (event.m_eventType == wxEVT_SCROLL_THUMBTRACK)
2205 wevent.m_eventType = wxEVT_SCROLLWIN_THUMBTRACK;
2206 else if (event.m_eventType == wxEVT_SCROLL_THUMBRELEASE)
2207 wevent.m_eventType = wxEVT_SCROLLWIN_THUMBRELEASE;
2208
2209 GetEventHandler()->ProcessEvent(wevent);
2210 }
2211 }
2212
2213 // Get the window with the focus
2214 wxWindowMac *wxWindowBase::FindFocus()
2215 {
2216 return gFocusWindow ;
2217 }
2218
2219 void wxWindowMac::OnSetFocus(wxFocusEvent& event)
2220 {
2221 // panel wants to track the window which was the last to have focus in it,
2222 // so we want to set ourselves as the window which last had focus
2223 //
2224 // notice that it's also important to do it upwards the tree becaus
2225 // otherwise when the top level panel gets focus, it won't set it back to
2226 // us, but to some other sibling
2227
2228 // CS:don't know if this is still needed:
2229 //wxChildFocusEvent eventFocus(this);
2230 //(void)GetEventHandler()->ProcessEvent(eventFocus);
2231
2232 event.Skip();
2233 }
2234
2235 void wxWindowMac::OnInternalIdle()
2236 {
2237 // This calls the UI-update mechanism (querying windows for
2238 // menu/toolbar/control state information)
2239 if (wxUpdateUIEvent::CanUpdate(this))
2240 UpdateWindowUI(wxUPDATE_UI_FROMIDLE);
2241 }
2242
2243 // Raise the window to the top of the Z order
2244 void wxWindowMac::Raise()
2245 {
2246 }
2247
2248 // Lower the window to the bottom of the Z order
2249 void wxWindowMac::Lower()
2250 {
2251 }
2252
2253
2254 // static wxWindow *gs_lastWhich = NULL;
2255
2256 bool wxWindowMac::MacSetupCursor( const wxPoint& pt)
2257 {
2258 // first trigger a set cursor event
2259
2260 wxPoint clientorigin = GetClientAreaOrigin() ;
2261 wxSize clientsize = GetClientSize() ;
2262 wxCursor cursor ;
2263 if ( wxRect2DInt( clientorigin.x , clientorigin.y , clientsize.x , clientsize.y ).Contains( wxPoint2DInt( pt ) ) )
2264 {
2265 wxSetCursorEvent event( pt.x , pt.y );
2266
2267 bool processedEvtSetCursor = GetEventHandler()->ProcessEvent(event);
2268 if ( processedEvtSetCursor && event.HasCursor() )
2269 {
2270 cursor = event.GetCursor() ;
2271 }
2272 else
2273 {
2274
2275 // the test for processedEvtSetCursor is here to prevent using m_cursor
2276 // if the user code caught EVT_SET_CURSOR() and returned nothing from
2277 // it - this is a way to say that our cursor shouldn't be used for this
2278 // point
2279 if ( !processedEvtSetCursor && m_cursor.Ok() )
2280 {
2281 cursor = m_cursor ;
2282 }
2283 if ( wxIsBusy() )
2284 {
2285 }
2286 else
2287 {
2288 if ( !GetParent() )
2289 cursor = *wxSTANDARD_CURSOR ;
2290 }
2291 }
2292 if ( cursor.Ok() )
2293 cursor.MacInstall() ;
2294 }
2295 return cursor.Ok() ;
2296 }
2297
2298 wxString wxWindowMac::MacGetToolTipString( wxPoint &pt )
2299 {
2300 if ( m_tooltip )
2301 {
2302 return m_tooltip->GetTip() ;
2303 }
2304 return wxEmptyString ;
2305 }
2306
2307 void wxWindowMac::Update()
2308 {
2309 #if TARGET_API_MAC_OSX
2310 HIViewSetNeedsDisplay( (ControlRef) m_macControl , true ) ;
2311 #else
2312 ::Draw1Control( (ControlRef) m_macControl ) ;
2313 #endif
2314 }
2315
2316 wxTopLevelWindowMac* wxWindowMac::MacGetTopLevelWindow() const
2317 {
2318 wxTopLevelWindowMac* win = NULL ;
2319 WindowRef window = (WindowRef) MacGetTopLevelWindowRef() ;
2320 if ( window )
2321 {
2322 win = wxFindWinFromMacWindow( window ) ;
2323 }
2324 return win ;
2325 }
2326 wxRegion wxWindowMac::MacGetVisibleRegion( bool includeOuterStructures )
2327 {
2328
2329 Rect r ;
2330 RgnHandle visRgn = NewRgn() ;
2331 RgnHandle tempRgn = NewRgn() ;
2332 if ( IsControlVisible( (ControlRef) m_macControl ) )
2333 {
2334 GetControlBounds( (ControlRef) m_macControl , &r ) ;
2335 if (! MacGetTopLevelWindow()->MacUsesCompositing() )
2336 {
2337 MacRootWindowToWindow( &r.left , & r.top ) ;
2338 MacRootWindowToWindow( &r.right , & r.bottom ) ;
2339 }
2340 else
2341 {
2342 r.right -= r.left ;
2343 r.bottom -= r.top ;
2344 r.left = 0 ;
2345 r.top = 0 ;
2346 }
2347 if ( includeOuterStructures )
2348 InsetRect( &r , -3 , -3 ) ;
2349 RectRgn( visRgn , &r ) ;
2350 if ( !IsTopLevel() )
2351 {
2352 wxWindow* child = this ;
2353 wxWindow* parent = child->GetParent() ;
2354 while( parent )
2355 {
2356 int x , y ;
2357 wxSize size ;
2358 // we have to find a better clipping algorithm here, in order not to clip things
2359 // positioned like status and toolbar
2360 if ( 1 /* parent->IsTopLevel() && child->IsKindOf( CLASSINFO( wxToolBar ) ) */ )
2361 {
2362 size = parent->GetSize() ;
2363 x = y = 0 ;
2364 }
2365 else
2366 {
2367 size = parent->GetClientSize() ;
2368 wxPoint origin = parent->GetClientAreaOrigin() ;
2369 x = origin.x ;
2370 y = origin.y ;
2371 }
2372 parent->MacWindowToRootWindow( &x, &y ) ;
2373 MacRootWindowToWindow( &x , &y ) ;
2374
2375 SetRectRgn( tempRgn ,
2376 x + parent->MacGetLeftBorderSize() , y + parent->MacGetTopBorderSize() ,
2377 x + size.x - parent->MacGetRightBorderSize(),
2378 y + size.y - parent->MacGetBottomBorderSize()) ;
2379
2380 SectRgn( visRgn , tempRgn , visRgn ) ;
2381 if ( parent->IsTopLevel() )
2382 break ;
2383 child = parent ;
2384 parent = child->GetParent() ;
2385 }
2386 }
2387 }
2388
2389 wxRegion vis = visRgn ;
2390 DisposeRgn( visRgn ) ;
2391 DisposeRgn( tempRgn ) ;
2392 return vis ;
2393 }
2394
2395 /*
2396 This function must not change the updatergn !
2397 */
2398 bool wxWindowMac::MacDoRedraw( WXHRGN updatergnr , long time )
2399 {
2400 RgnHandle updatergn = (RgnHandle) updatergnr ;
2401 bool handled = false ;
2402
2403 // calculate a client-origin version of the update rgn and set m_updateRegion to that
2404 {
2405 RgnHandle newupdate = NewRgn() ;
2406 wxSize point = GetClientSize() ;
2407 wxPoint origin = GetClientAreaOrigin() ;
2408 SetRectRgn( newupdate , origin.x , origin.y , origin.x + point.x , origin.y+point.y ) ;
2409 SectRgn( newupdate , updatergn , newupdate ) ;
2410 OffsetRgn( newupdate , -origin.x , -origin.y ) ;
2411 m_updateRegion = newupdate ;
2412 DisposeRgn( newupdate ) ;
2413 }
2414
2415 if ( !EmptyRgn(updatergn) )
2416 {
2417 wxWindowDC dc(this);
2418 if (!EmptyRgn(updatergn))
2419 dc.SetClippingRegion(wxRegion(updatergn));
2420
2421 wxEraseEvent eevent( GetId(), &dc );
2422 eevent.SetEventObject( this );
2423 GetEventHandler()->ProcessEvent( eevent );
2424
2425 if ( !m_updateRegion.Empty() )
2426 {
2427 // paint the window itself
2428 wxPaintEvent event;
2429 event.m_timeStamp = time ;
2430 event.SetEventObject(this);
2431 handled = GetEventHandler()->ProcessEvent(event);
2432
2433 // paint custom borders
2434 wxNcPaintEvent eventNc( GetId() );
2435 eventNc.SetEventObject( this );
2436 GetEventHandler()->ProcessEvent( eventNc );
2437 }
2438 }
2439 return handled ;
2440 }
2441
2442 void wxWindowMac::MacRedraw( WXHRGN updatergnr , long time, bool erase)
2443 {
2444 RgnHandle updatergn = (RgnHandle) updatergnr ;
2445 // updatergn is always already clipped to our boundaries
2446 // if we are in compositing mode then it is in relative to the upper left of the control
2447 // if we are in non-compositing, then it is relatvie to the uppder left of the content area
2448 // of the toplevel window
2449 // it is in window coordinates, not in client coordinates
2450
2451 // ownUpdateRgn is the area that this window has to repaint, it is in window coordinates
2452 RgnHandle ownUpdateRgn = NewRgn() ;
2453 CopyRgn( updatergn , ownUpdateRgn ) ;
2454
2455 if ( MacGetTopLevelWindow()->MacUsesCompositing() == false )
2456 {
2457 Rect bounds;
2458 UMAGetControlBoundsInWindowCoords( (ControlRef)m_macControl, &bounds );
2459 RgnHandle controlRgn = NewRgn();
2460 RectRgn( controlRgn, &bounds );
2461 //KO: This sets the ownUpdateRgn to the area of this control that is inside
2462 // the window update region
2463 SectRgn( ownUpdateRgn, controlRgn, ownUpdateRgn );
2464 DisposeRgn( controlRgn );
2465
2466 //KO: convert ownUpdateRgn to local coordinates
2467 OffsetRgn( ownUpdateRgn, -bounds.left, -bounds.top );
2468 }
2469
2470 MacDoRedraw( ownUpdateRgn , time ) ;
2471 DisposeRgn( ownUpdateRgn ) ;
2472
2473 }
2474
2475 WXWindow wxWindowMac::MacGetTopLevelWindowRef() const
2476 {
2477 wxWindowMac *iter = (wxWindowMac*)this ;
2478
2479 while( iter )
2480 {
2481 if ( iter->IsTopLevel() )
2482 return ((wxTopLevelWindow*)iter)->MacGetWindowRef() ;
2483
2484 iter = iter->GetParent() ;
2485 }
2486 wxASSERT_MSG( 1 , wxT("No valid mac root window") ) ;
2487 return NULL ;
2488 }
2489
2490 void wxWindowMac::MacCreateScrollBars( long style )
2491 {
2492 wxASSERT_MSG( m_vScrollBar == NULL && m_hScrollBar == NULL , wxT("attempt to create window twice") ) ;
2493
2494 bool hasBoth = ( style & wxVSCROLL ) && ( style & wxHSCROLL ) ;
2495 int adjust = hasBoth ? MAC_SCROLLBAR_SIZE - 1: 0 ;
2496 int width, height ;
2497 GetClientSize( &width , &height ) ;
2498
2499 wxPoint vPoint(width-MAC_SCROLLBAR_SIZE, 0) ;
2500 wxSize vSize(MAC_SCROLLBAR_SIZE, height - adjust) ;
2501 wxPoint hPoint(0 , height-MAC_SCROLLBAR_SIZE ) ;
2502 wxSize hSize( width - adjust, MAC_SCROLLBAR_SIZE) ;
2503
2504 m_vScrollBar = new wxScrollBar(this, wxWINDOW_VSCROLL, vPoint,
2505 vSize , wxVERTICAL);
2506
2507 if ( style & wxVSCROLL )
2508 {
2509
2510 }
2511 else
2512 {
2513 m_vScrollBar->Show(false) ;
2514 }
2515 m_hScrollBar = new wxScrollBar(this, wxWINDOW_HSCROLL, hPoint,
2516 hSize , wxHORIZONTAL);
2517 if ( style & wxHSCROLL )
2518 {
2519 }
2520 else
2521 {
2522 m_hScrollBar->Show(false) ;
2523 }
2524
2525 // because the create does not take into account the client area origin
2526 MacRepositionScrollBars() ; // we might have a real position shift
2527 }
2528
2529 void wxWindowMac::MacRepositionScrollBars()
2530 {
2531 bool hasBoth = ( m_hScrollBar && m_hScrollBar->IsShown()) && ( m_vScrollBar && m_vScrollBar->IsShown()) ;
2532 int adjust = hasBoth ? MAC_SCROLLBAR_SIZE - 1 : 0 ;
2533
2534 // get real client area
2535
2536 int width ;
2537 int height ;
2538 GetSize( &width , &height ) ;
2539
2540 width -= MacGetLeftBorderSize() + MacGetRightBorderSize();
2541 height -= MacGetTopBorderSize() + MacGetBottomBorderSize();
2542
2543 wxPoint vPoint(width-MAC_SCROLLBAR_SIZE, 0) ;
2544 wxSize vSize(MAC_SCROLLBAR_SIZE, height - adjust) ;
2545 wxPoint hPoint(0 , height-MAC_SCROLLBAR_SIZE ) ;
2546 wxSize hSize( width - adjust, MAC_SCROLLBAR_SIZE) ;
2547
2548 int x = 0 ;
2549 int y = 0 ;
2550 int w ;
2551 int h ;
2552 GetSize( &w , &h ) ;
2553
2554 MacClientToRootWindow( &x , &y ) ;
2555 MacClientToRootWindow( &w , &h ) ;
2556
2557 wxWindowMac *iter = (wxWindowMac*)this ;
2558
2559 int totW = 10000 , totH = 10000;
2560 while( iter )
2561 {
2562 if ( iter->IsTopLevel() )
2563 {
2564 iter->GetSize( &totW , &totH ) ;
2565 break ;
2566 }
2567
2568 iter = iter->GetParent() ;
2569 }
2570
2571 if ( x == 0 )
2572 {
2573 hPoint.x = -1 ;
2574 hSize.x += 1 ;
2575 }
2576 if ( y == 0 )
2577 {
2578 vPoint.y = -1 ;
2579 vSize.y += 1 ;
2580 }
2581
2582 if ( w-x >= totW )
2583 {
2584 hSize.x += 1 ;
2585 vPoint.x += 1 ;
2586 }
2587
2588 if ( h-y >= totH )
2589 {
2590 vSize.y += 1 ;
2591 hPoint.y += 1 ;
2592 }
2593
2594 if ( m_vScrollBar )
2595 {
2596 m_vScrollBar->SetSize( vPoint.x , vPoint.y, vSize.x, vSize.y , wxSIZE_ALLOW_MINUS_ONE);
2597 }
2598 if ( m_hScrollBar )
2599 {
2600 m_hScrollBar->SetSize( hPoint.x , hPoint.y, hSize.x, hSize.y, wxSIZE_ALLOW_MINUS_ONE);
2601 }
2602 }
2603
2604 bool wxWindowMac::AcceptsFocus() const
2605 {
2606 return MacCanFocus() && wxWindowBase::AcceptsFocus();
2607 }
2608
2609 void wxWindowMac::MacSuperChangedPosition()
2610 {
2611 // only window-absolute structures have to be moved i.e. controls
2612
2613 wxWindowListNode *node = GetChildren().GetFirst();
2614 while ( node )
2615 {
2616 wxWindowMac *child = node->GetData();
2617 child->MacSuperChangedPosition() ;
2618 node = node->GetNext();
2619 }
2620 }
2621
2622 void wxWindowMac::MacTopLevelWindowChangedPosition()
2623 {
2624 // only screen-absolute structures have to be moved i.e. glcanvas
2625
2626 wxWindowListNode *node = GetChildren().GetFirst();
2627 while ( node )
2628 {
2629 wxWindowMac *child = node->GetData();
2630 child->MacTopLevelWindowChangedPosition() ;
2631 node = node->GetNext();
2632 }
2633 }
2634
2635 long wxWindowMac::MacGetLeftBorderSize( ) const
2636 {
2637 if( IsTopLevel() )
2638 return 0 ;
2639
2640 if (m_windowStyle & wxRAISED_BORDER || m_windowStyle & wxSUNKEN_BORDER )
2641 {
2642 SInt32 border = 3 ;
2643 #if wxMAC_USE_THEME_BORDER
2644 GetThemeMetric( kThemeMetricListBoxFrameOutset , &border ) ;
2645 #endif
2646 return border ;
2647 }
2648 else if ( m_windowStyle &wxDOUBLE_BORDER)
2649 {
2650 SInt32 border = 3 ;
2651 #if wxMAC_USE_THEME_BORDER
2652 GetThemeMetric( kThemeMetricListBoxFrameOutset , &border ) ;
2653 #endif
2654 return border ;
2655 }
2656 else if (m_windowStyle &wxSIMPLE_BORDER)
2657 {
2658 return 1 ;
2659 }
2660 return 0 ;
2661 }
2662
2663 long wxWindowMac::MacGetRightBorderSize( ) const
2664 {
2665 // they are all symmetric in mac themes
2666 return MacGetLeftBorderSize() ;
2667 }
2668
2669 long wxWindowMac::MacGetTopBorderSize( ) const
2670 {
2671 // they are all symmetric in mac themes
2672 return MacGetLeftBorderSize() ;
2673 }
2674
2675 long wxWindowMac::MacGetBottomBorderSize( ) const
2676 {
2677 // they are all symmetric in mac themes
2678 return MacGetLeftBorderSize() ;
2679 }
2680
2681 long wxWindowMac::MacRemoveBordersFromStyle( long style )
2682 {
2683 return style & ~( wxDOUBLE_BORDER | wxSUNKEN_BORDER | wxRAISED_BORDER | wxBORDER | wxSTATIC_BORDER ) ;
2684 }
2685
2686 // Find the wxWindowMac at the current mouse position, returning the mouse
2687 // position.
2688 wxWindowMac* wxFindWindowAtPointer(wxPoint& pt)
2689 {
2690 pt = wxGetMousePosition();
2691 wxWindowMac* found = wxFindWindowAtPoint(pt);
2692 return found;
2693 }
2694
2695 // Get the current mouse position.
2696 wxPoint wxGetMousePosition()
2697 {
2698 int x, y;
2699 wxGetMousePosition(& x, & y);
2700 return wxPoint(x, y);
2701 }
2702
2703 void wxWindowMac::OnMouseEvent( wxMouseEvent &event )
2704 {
2705 if ( event.GetEventType() == wxEVT_RIGHT_DOWN )
2706 {
2707 // copied from wxGTK : CS
2708 // generate a "context menu" event: this is similar to wxEVT_RIGHT_DOWN
2709 // except that:
2710 //
2711 // (a) it's a command event and so is propagated to the parent
2712 // (b) under MSW it can be generated from kbd too
2713 // (c) it uses screen coords (because of (a))
2714 wxContextMenuEvent evtCtx(wxEVT_CONTEXT_MENU,
2715 this->GetId(),
2716 this->ClientToScreen(event.GetPosition()));
2717 if ( ! GetEventHandler()->ProcessEvent(evtCtx) )
2718 event.Skip() ;
2719 }
2720 else if (event.GetEventType() == wxEVT_LEFT_DOWN || event.GetEventType() == wxEVT_LEFT_DCLICK )
2721 {
2722
2723 int x = event.m_x ;
2724 int y = event.m_y ;
2725
2726 if ( MacGetTopLevelWindow()->MacUsesCompositing() == false )
2727 {
2728 // OS Needs it in tlw content area coordinates
2729 MacClientToRootWindow( &x , &y ) ;
2730 }
2731 else
2732 {
2733 // OS Needs it in window not client coordinates
2734 wxPoint origin = GetClientAreaOrigin() ;
2735 x += origin.x ;
2736 y += origin.y ;
2737 }
2738 Point localwhere ;
2739 SInt16 controlpart ;
2740
2741 localwhere.h = x ;
2742 localwhere.v = y ;
2743
2744 short modifiers = 0;
2745
2746 if ( !event.m_leftDown && !event.m_rightDown )
2747 modifiers |= btnState ;
2748
2749 if ( event.m_shiftDown )
2750 modifiers |= shiftKey ;
2751
2752 if ( event.m_controlDown )
2753 modifiers |= controlKey ;
2754
2755 if ( event.m_altDown )
2756 modifiers |= optionKey ;
2757
2758 if ( event.m_metaDown )
2759 modifiers |= cmdKey ;
2760
2761 bool handled = false ;
2762
2763 if ( ::IsControlActive( (ControlRef) m_macControl ) )
2764 {
2765 controlpart = ::HandleControlClick( (ControlRef) m_macControl , localwhere , modifiers , (ControlActionUPP) -1 ) ;
2766 wxTheApp->s_lastMouseDown = 0 ;
2767 if ( controlpart != kControlNoPart )
2768 {
2769 MacHandleControlClick((WXWidget) (ControlRef) m_macControl , controlpart , false /* mouse not down anymore */ ) ;
2770 handled = true ;
2771 }
2772 }
2773 if ( !handled )
2774 event.Skip() ;
2775 }
2776 else
2777 {
2778 event.Skip() ;
2779 }
2780 }
2781
2782 void wxWindowMac::MacHandleControlClick( WXWidget control , wxInt16 controlpart , bool WXUNUSED( mouseStillDown ) )
2783 {
2784 wxASSERT_MSG( (ControlRef) m_macControl != NULL , wxT("No valid mac control") ) ;
2785 }
2786
2787 Rect wxMacGetBoundsForControl( wxWindow* window , const wxPoint& pos , const wxSize &size , bool adjustForOrigin )
2788 {
2789 int x ,y , w ,h ;
2790
2791 window->MacGetBoundsForControl( pos , size , x , y, w, h , adjustForOrigin) ;
2792 Rect bounds = { y , x , y+h , x+w };
2793 return bounds ;
2794 }
2795
2796