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