]> git.saurik.com Git - wxWidgets.git/blame - src/osx/cocoa/window.mm
making sure peer->Move refreshes properly, bringing in synch with carbon, applying...
[wxWidgets.git] / src / osx / cocoa / window.mm
CommitLineData
33e90275
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: src/osx/cocoa/window.mm
3// Purpose: widgets (non tlw) for cocoa
4// Author: Stefan Csomor
5// Modified by:
6// Created: 2008-06-20
7// RCS-ID: $Id: window.mm 48805 2007-09-19 14:52:25Z SC $
8// Copyright: (c) Stefan Csomor
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#include "wx/wxprec.h"
13
05cf95ed 14#ifndef WX_PRECOMP
f487501a 15 #include "wx/dcclient.h"
c583fa5a
SC
16 #include "wx/nonownedwnd.h"
17 #include "wx/log.h"
05cf95ed 18#endif
33e90275
SC
19
20#ifdef __WXMAC__
4dd9fdf8 21 #include "wx/osx/private.h"
33e90275
SC
22#endif
23
0c530e5a
SC
24#if wxUSE_CARET
25 #include "wx/caret.h"
26#endif
27
4dd9fdf8
SC
28#if wxUSE_DRAG_AND_DROP
29 #include "wx/dnd.h"
30#endif
31
32#include <objc/objc-runtime.h>
33
dbeddfb9
SC
34NSRect wxOSXGetFrameForControl( wxWindowMac* window , const wxPoint& pos , const wxSize &size , bool adjustForOrigin )
35{
36 int x, y, w, h ;
37
38 window->MacGetBoundsForControl( pos , size , x , y, w, h , adjustForOrigin ) ;
39 wxRect bounds(x,y,w,h);
40 NSView* sv = (window->GetParent()->GetHandle() );
41
42 return wxToNSRect( sv, bounds );
43}
33e90275
SC
44
45@interface wxNSView : NSView
46{
fc099495 47 NSTrackingRectTag rectTag;
33e90275
SC
48}
49
524c47aa 50- (BOOL) canBecomeKeyView;
fc099495
KO
51// the tracking tag is needed to track mouse enter / exit events
52- (void) setTrackingTag: (NSTrackingRectTag)tag;
53- (NSTrackingRectTag) trackingTag;
33e90275
SC
54@end // wxNSView
55
ffad7b0d 56@interface NSView(PossibleMethods)
ffad7b0d
SC
57- (void)setTitle:(NSString *)aString;
58- (void)setStringValue:(NSString *)aString;
59- (void)setIntValue:(int)anInt;
60- (void)setFloatValue:(float)aFloat;
61- (void)setDoubleValue:(double)aDouble;
62
19c7ac3d
SC
63- (double)minValue;
64- (double)maxValue;
ffad7b0d
SC
65- (void)setMinValue:(double)aDouble;
66- (void)setMaxValue:(double)aDouble;
67
68- (void)sizeToFit;
69
70- (BOOL)isEnabled;
71- (void)setEnabled:(BOOL)flag;
72
73- (void)setImage:(NSImage *)image;
74- (void)setControlSize:(NSControlSize)size;
0c530e5a
SC
75
76- (id)contentView;
4dd9fdf8
SC
77
78- (void)setTarget:(id)anObject;
79- (void)setAction:(SEL)aSelector;
80- (void)setDoubleAction:(SEL)aSelector;
ffad7b0d
SC
81@end
82
63a6419c 83long wxOSXTranslateCocoaKey( NSEvent* event )
524c47aa 84{
63a6419c
KO
85 long retval = 0;
86
87 if ([event type] != NSFlagsChanged)
88 {
89 NSString* s = [event charactersIgnoringModifiers];
90 // backspace char reports as delete w/modifiers for some reason
91 if ([s length] == 1)
92 {
93 switch ( [s characterAtIndex:0] )
94 {
95 // backspace key
96 case 0x7F :
97 case 8 :
98 retval = WXK_BACK;
99 break;
100 case NSUpArrowFunctionKey :
101 retval = WXK_UP;
102 break;
103 case NSDownArrowFunctionKey :
104 retval = WXK_DOWN;
105 break;
106 case NSLeftArrowFunctionKey :
107 retval = WXK_LEFT;
108 break;
109 case NSRightArrowFunctionKey :
110 retval = WXK_RIGHT;
111 break;
112 case NSInsertFunctionKey :
113 retval = WXK_INSERT;
114 break;
115 case NSDeleteFunctionKey :
116 retval = WXK_DELETE;
117 break;
118 case NSHomeFunctionKey :
119 retval = WXK_HOME;
120 break;
121 // case NSBeginFunctionKey :
122 // retval = WXK_BEGIN;
123 // break;
124 case NSEndFunctionKey :
125 retval = WXK_END;
126 break;
127 case NSPageUpFunctionKey :
128 retval = WXK_PAGEUP;
129 break;
130 case NSPageDownFunctionKey :
131 retval = WXK_PAGEDOWN;
132 break;
133 case NSHelpFunctionKey :
134 retval = WXK_HELP;
135 break;
136 default:
b480b80a
KO
137 int intchar = [s characterAtIndex: 0];
138 if ( intchar >= NSF1FunctionKey && intchar <= NSF24FunctionKey )
63a6419c
KO
139 retval = WXK_F1 + (intchar - NSF1FunctionKey );
140 break;
141 }
142 }
143 }
144
145 // Some keys don't seem to have constants. The code mimics the approach
146 // taken by WebKit. See:
147 // http://trac.webkit.org/browser/trunk/WebCore/platform/mac/KeyEventMac.mm
148 switch( [event keyCode] )
524c47aa 149 {
63a6419c
KO
150 // command key
151 case 54:
152 case 55:
153 retval = WXK_COMMAND;
524c47aa 154 break;
63a6419c
KO
155 // caps locks key
156 case 57: // Capslock
157 retval = WXK_CAPITAL;
524c47aa 158 break;
63a6419c
KO
159 // shift key
160 case 56: // Left Shift
161 case 60: // Right Shift
162 retval = WXK_SHIFT;
524c47aa 163 break;
63a6419c
KO
164 // alt key
165 case 58: // Left Alt
166 case 61: // Right Alt
167 retval = WXK_ALT;
524c47aa 168 break;
63a6419c
KO
169 // ctrl key
170 case 59: // Left Ctrl
171 case 62: // Right Ctrl
172 retval = WXK_CONTROL;
524c47aa 173 break;
63a6419c
KO
174 // clear key
175 case 71:
176 retval = WXK_CLEAR;
524c47aa 177 break;
63a6419c
KO
178 // tab key
179 case 48:
180 retval = WXK_TAB;
524c47aa
SC
181 break;
182
183 default :
524c47aa
SC
184 break;
185 }
186 return retval;
187}
188
f0e0116e 189void SetupKeyEvent( wxKeyEvent &wxevent , NSEvent * nsEvent, NSString* charString = NULL )
524c47aa
SC
190{
191 UInt32 modifiers = [nsEvent modifierFlags] ;
fc39cf72 192 int eventType = [nsEvent type];
524c47aa
SC
193
194 wxevent.m_shiftDown = modifiers & NSShiftKeyMask;
195 wxevent.m_controlDown = modifiers & NSControlKeyMask;
196 wxevent.m_altDown = modifiers & NSAlternateKeyMask;
197 wxevent.m_metaDown = modifiers & NSCommandKeyMask;
524c47aa 198
19c7ac3d 199 wxevent.m_rawCode = [nsEvent keyCode];
524c47aa
SC
200 wxevent.m_rawFlags = modifiers;
201
202 wxevent.SetTimestamp( [nsEvent timestamp] * 1000.0 ) ;
524c47aa
SC
203 switch (eventType)
204 {
205 case NSKeyDown :
206 wxevent.SetEventType( wxEVT_KEY_DOWN ) ;
207 break;
208 case NSKeyUp :
209 wxevent.SetEventType( wxEVT_KEY_UP ) ;
210 break;
211 case NSFlagsChanged :
212 // setup common code here
213 break;
214 default :
215 break ;
216 }
19c7ac3d
SC
217
218 wxString chars;
219 if ( eventType != NSFlagsChanged )
220 {
221 NSString* nschars = [nsEvent characters];
f0e0116e 222 if ( charString )
63a6419c
KO
223 {
224 // if charString is set, it did not come from key up / key down
225 wxevent.SetEventType( wxEVT_CHAR );
226 wxCFStringRef cfchars((CFStringRef)[charString retain]);
227 chars = cfchars.AsString();
228 }
229 else if ( nschars )
19c7ac3d
SC
230 {
231 wxCFStringRef cfchars((CFStringRef)[nschars retain]);
232 chars = cfchars.AsString();
233 }
234 }
235
63a6419c
KO
236 int aunichar = chars.Length() > 0 ? chars[0] : 0;
237 long keyval = 0;
238
239 if (wxevent.GetEventType() != wxEVT_CHAR)
240 keyval = wxOSXTranslateCocoaKey(nsEvent) ;
19c7ac3d 241
63a6419c
KO
242 if ( !keyval )
243 {
244 if ( wxevent.GetEventType() == wxEVT_KEY_UP || wxevent.GetEventType() == wxEVT_KEY_DOWN )
245 keyval = wxToupper( aunichar ) ;
246 else
247 keyval = aunichar;
248 }
249
19c7ac3d 250#if wxUSE_UNICODE
63a6419c 251 wxevent.m_uniChar = aunichar;
19c7ac3d
SC
252#endif
253 wxevent.m_keyCode = keyval;
524c47aa
SC
254}
255
54f11060
SC
256UInt32 g_lastButton = 0 ;
257bool g_lastButtonWasFakeRight = false ;
258
33e90275
SC
259void SetupMouseEvent( wxMouseEvent &wxevent , NSEvent * nsEvent )
260{
4800ca79 261 int eventType = [nsEvent type];
33e90275
SC
262 UInt32 modifiers = [nsEvent modifierFlags] ;
263 wxPoint screenMouseLocation = wxFromNSPoint( NULL, [nsEvent locationInWindow]);
264
265 // these parameters are not given for all events
266 UInt32 button = [nsEvent buttonNumber];
4800ca79 267 UInt32 clickCount = 0;
33e90275
SC
268
269 wxevent.m_x = screenMouseLocation.x;
270 wxevent.m_y = screenMouseLocation.y;
271 wxevent.m_shiftDown = modifiers & NSShiftKeyMask;
272 wxevent.m_controlDown = modifiers & NSControlKeyMask;
273 wxevent.m_altDown = modifiers & NSAlternateKeyMask;
274 wxevent.m_metaDown = modifiers & NSCommandKeyMask;
dbeddfb9 275 wxevent.SetTimestamp( [nsEvent timestamp] * 1000.0 ) ;
54f11060
SC
276
277 UInt32 mouseChord = 0;
54f11060
SC
278
279 switch (eventType)
280 {
281 case NSLeftMouseDown :
282 case NSLeftMouseDragged :
283 mouseChord = 1U;
284 break;
285 case NSRightMouseDown :
286 case NSRightMouseDragged :
287 mouseChord = 2U;
288 break;
289 case NSOtherMouseDown :
290 case NSOtherMouseDragged :
291 mouseChord = 4U;
292 break;
293 }
294
33e90275
SC
295 // a control click is interpreted as a right click
296 bool thisButtonIsFakeRight = false ;
54f11060 297 if ( button == 0 && (modifiers & NSControlKeyMask) )
33e90275 298 {
54f11060 299 button = 1 ;
33e90275
SC
300 thisButtonIsFakeRight = true ;
301 }
302
303 // otherwise we report double clicks by connecting a left click with a ctrl-left click
304 if ( clickCount > 1 && button != g_lastButton )
305 clickCount = 1 ;
54f11060 306
33e90275
SC
307 // we must make sure that our synthetic 'right' button corresponds in
308 // mouse down, moved and mouse up, and does not deliver a right down and left up
54f11060 309 switch (eventType)
33e90275 310 {
54f11060
SC
311 case NSLeftMouseDown :
312 case NSRightMouseDown :
313 case NSOtherMouseDown :
314 g_lastButton = button ;
315 g_lastButtonWasFakeRight = thisButtonIsFakeRight ;
316 break;
317 }
33e90275
SC
318
319 if ( button == 0 )
320 {
321 g_lastButton = 0 ;
322 g_lastButtonWasFakeRight = false ;
323 }
54f11060 324 else if ( g_lastButton == 1 && g_lastButtonWasFakeRight )
33e90275
SC
325 button = g_lastButton ;
326
327 // Adjust the chord mask to remove the primary button and add the
328 // secondary button. It is possible that the secondary button is
329 // already pressed, e.g. on a mouse connected to a laptop, but this
330 // possibility is ignored here:
331 if( thisButtonIsFakeRight && ( mouseChord & 1U ) )
332 mouseChord = ((mouseChord & ~1U) | 2U);
333
334 if(mouseChord & 1U)
335 wxevent.m_leftDown = true ;
336 if(mouseChord & 2U)
337 wxevent.m_rightDown = true ;
338 if(mouseChord & 4U)
339 wxevent.m_middleDown = true ;
340
33e90275 341 // translate into wx types
33e90275
SC
342 switch (eventType)
343 {
344 case NSLeftMouseDown :
345 case NSRightMouseDown :
346 case NSOtherMouseDown :
08c1b134 347 clickCount = [nsEvent clickCount];
33e90275
SC
348 switch ( button )
349 {
350 case 0 :
351 wxevent.SetEventType( clickCount > 1 ? wxEVT_LEFT_DCLICK : wxEVT_LEFT_DOWN ) ;
352 break ;
353
354 case 1 :
355 wxevent.SetEventType( clickCount > 1 ? wxEVT_RIGHT_DCLICK : wxEVT_RIGHT_DOWN ) ;
356 break ;
357
358 case 2 :
359 wxevent.SetEventType( clickCount > 1 ? wxEVT_MIDDLE_DCLICK : wxEVT_MIDDLE_DOWN ) ;
360 break ;
361
362 default:
363 break ;
364 }
365 break ;
366
367 case NSLeftMouseUp :
368 case NSRightMouseUp :
369 case NSOtherMouseUp :
08c1b134 370 clickCount = [nsEvent clickCount];
33e90275
SC
371 switch ( button )
372 {
373 case 0 :
374 wxevent.SetEventType( wxEVT_LEFT_UP ) ;
375 break ;
376
377 case 1 :
378 wxevent.SetEventType( wxEVT_RIGHT_UP ) ;
379 break ;
380
381 case 2 :
382 wxevent.SetEventType( wxEVT_MIDDLE_UP ) ;
383 break ;
384
385 default:
386 break ;
387 }
388 break ;
389
390 case NSScrollWheel :
391 {
392 wxevent.SetEventType( wxEVT_MOUSEWHEEL ) ;
e32090ba 393 wxevent.m_wheelDelta = 10;
33e90275 394 wxevent.m_linesPerAction = 1;
e32090ba 395 NSLog(@"deltaX %f, deltaY %f",[nsEvent deltaX], [nsEvent deltaY]);
4800ca79
SC
396 if ( abs([nsEvent deltaX]) > abs([nsEvent deltaY]) )
397 {
33e90275 398 wxevent.m_wheelAxis = 1;
e32090ba 399 wxevent.m_wheelRotation = [nsEvent deltaX] * 10.0;
4800ca79
SC
400 }
401 else
402 {
e32090ba 403 wxevent.m_wheelRotation = [nsEvent deltaY] * 10.0;
4800ca79 404 }
33e90275
SC
405 }
406 break ;
407
408 case NSMouseEntered :
f1f15003
KO
409 wxevent.SetEventType( wxEVT_ENTER_WINDOW ) ;
410 break;
33e90275 411 case NSMouseExited :
f1f15003
KO
412 wxevent.SetEventType( wxEVT_LEAVE_WINDOW ) ;
413 break;
33e90275
SC
414 case NSLeftMouseDragged :
415 case NSRightMouseDragged :
416 case NSOtherMouseDragged :
417 case NSMouseMoved :
418 wxevent.SetEventType( wxEVT_MOTION ) ;
419 break;
420 default :
421 break ;
422 }
08c1b134
KO
423
424 wxevent.m_clickCount = clickCount;
425
33e90275
SC
426}
427
428@implementation wxNSView
429
4dd9fdf8
SC
430+ (void)initialize
431{
432 static BOOL initialized = NO;
433 if (!initialized)
434 {
435 initialized = YES;
436 wxOSXCocoaClassAddWXMethods( self );
437 }
438}
439
440- (BOOL) canBecomeKeyView
441{
442 return YES;
443}
444
fc099495
KO
445- (void) setTrackingTag: (NSTrackingRectTag)tag
446{
447 rectTag = tag;
448}
449
450- (NSTrackingRectTag) trackingTag
451{
452 return rectTag;
453}
454
4dd9fdf8
SC
455@end // wxNSView
456
457//
458// event handlers
459//
460
461#if wxUSE_DRAG_AND_DROP
462
463// see http://lists.apple.com/archives/Cocoa-dev/2005/Jul/msg01244.html
464// for details on the NSPasteboard -> PasteboardRef conversion
465
466NSDragOperation wxOSX_draggingEntered( id self, SEL _cmd, id <NSDraggingInfo>sender )
467{
468 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( self );
469 if (impl == NULL)
470 return NSDragOperationNone;
471
472 return impl->draggingEntered(sender, self, _cmd);
473}
474
475void wxOSX_draggingExited( id self, SEL _cmd, id <NSDraggingInfo> sender )
476{
477 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( self );
478 if (impl == NULL)
479 return ;
480
481 return impl->draggingExited(sender, self, _cmd);
482}
483
484NSDragOperation wxOSX_draggingUpdated( id self, SEL _cmd, id <NSDraggingInfo>sender )
485{
486 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( self );
487 if (impl == NULL)
488 return NSDragOperationNone;
489
490 return impl->draggingUpdated(sender, self, _cmd);
491}
492
493BOOL wxOSX_performDragOperation( id self, SEL _cmd, id <NSDraggingInfo> sender )
494{
495 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( self );
496 if (impl == NULL)
497 return NSDragOperationNone;
498
499 return impl->performDragOperation(sender, self, _cmd) ? YES:NO ;
500}
501
502void wxOSX_mouseEvent(NSView* self, SEL _cmd, NSEvent *event)
503{
504 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( self );
505 if (impl == NULL)
506 return;
507
508 impl->mouseEvent(event, self, _cmd);
509}
510
511void wxOSX_keyEvent(NSView* self, SEL _cmd, NSEvent *event)
512{
513 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( self );
514 if (impl == NULL)
515 return;
516
517 impl->keyEvent(event, self, _cmd);
518}
519
f0e0116e
KO
520void wxOSX_insertText(NSView* self, SEL _cmd, NSString* text)
521{
522 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( self );
523 if (impl == NULL)
524 return;
525
526 impl->insertText(text, self, _cmd);
527}
528
4dd9fdf8
SC
529BOOL wxOSX_performKeyEquivalent(NSView* self, SEL _cmd, NSEvent *event)
530{
531 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( self );
532 if (impl == NULL)
533 return NO;
534
535 return impl->performKeyEquivalent(event, self, _cmd);
536}
537
09a9eb20
KO
538BOOL wxOSX_acceptsFirstResponder(NSView* self, SEL _cmd)
539{
540 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( self );
541 if (impl == NULL)
542 return NO;
543
544 return impl->acceptsFirstResponder(self, _cmd);
545}
546
4dd9fdf8
SC
547BOOL wxOSX_becomeFirstResponder(NSView* self, SEL _cmd)
548{
549 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( self );
550 if (impl == NULL)
551 return NO;
552
553 return impl->becomeFirstResponder(self, _cmd);
554}
555
556BOOL wxOSX_resignFirstResponder(NSView* self, SEL _cmd)
557{
558 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( self );
559 if (impl == NULL)
560 return NO;
561
562 return impl->resignFirstResponder(self, _cmd);
563}
564
565void wxOSX_resetCursorRects(NSView* self, SEL _cmd)
566{
567 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( self );
568 if (impl == NULL)
569 return;
570
571 impl->resetCursorRects(self, _cmd);
572}
573
574BOOL wxOSX_isFlipped(NSView* self, SEL _cmd)
575{
576 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( self );
577 if (impl == NULL)
578 return NO;
579
580 return impl->isFlipped(self, _cmd) ? YES:NO;
581}
582
583void wxOSX_drawRect(NSView* self, SEL _cmd, NSRect rect)
584{
585 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( self );
586 if (impl == NULL)
587 return;
588
589 return impl->drawRect(&rect, self, _cmd);
590}
591
e32090ba 592void wxOSX_controlAction(NSView* self, SEL _cmd, id sender)
4dd9fdf8
SC
593{
594 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( self );
595 if (impl == NULL)
596 return;
597
e32090ba 598 impl->controlAction(self, _cmd, sender);
4dd9fdf8
SC
599}
600
e32090ba 601void wxOSX_controlDoubleAction(NSView* self, SEL _cmd, id sender)
4dd9fdf8
SC
602{
603 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( self );
604 if (impl == NULL)
605 return;
606
e32090ba 607 impl->controlDoubleAction(self, _cmd, sender);
4dd9fdf8 608}
dbeddfb9 609
4dd9fdf8 610unsigned int wxWidgetCocoaImpl::draggingEntered(void* s, WXWidget slf, void *_cmd)
33e90275 611{
4dd9fdf8
SC
612 id <NSDraggingInfo>sender = (id <NSDraggingInfo>) s;
613 NSPasteboard *pboard = [sender draggingPasteboard];
614 NSDragOperation sourceDragMask = [sender draggingSourceOperationMask];
615
616 wxWindow* wxpeer = GetWXPeer();
617 if ( wxpeer == NULL )
618 return NSDragOperationNone;
619
620 wxDropTarget* target = wxpeer->GetDropTarget();
621 if ( target == NULL )
622 return NSDragOperationNone;
623
624 wxDragResult result = wxDragNone;
625 wxPoint pt = wxFromNSPoint( m_osxView, [sender draggingLocation] );
626
627 if ( sourceDragMask & NSDragOperationLink )
628 result = wxDragLink;
629 else if ( sourceDragMask & NSDragOperationCopy )
630 result = wxDragCopy;
631 else if ( sourceDragMask & NSDragOperationMove )
632 result = wxDragMove;
633
634 PasteboardRef pboardRef;
635 PasteboardCreate((CFStringRef)[pboard name], &pboardRef);
636 target->SetCurrentDragPasteboard(pboardRef);
637 result = target->OnEnter(pt.x, pt.y, result);
638 CFRelease(pboardRef);
639
640 NSDragOperation nsresult = NSDragOperationNone;
641 switch (result )
33e90275 642 {
4dd9fdf8
SC
643 case wxDragLink:
644 nsresult = NSDragOperationLink;
645 case wxDragMove:
646 nsresult = NSDragOperationMove;
647 case wxDragCopy:
648 nsresult = NSDragOperationCopy;
649 default :
650 break;
651 }
652 return nsresult;
653}
33e90275 654
4dd9fdf8
SC
655void wxWidgetCocoaImpl::draggingExited(void* s, WXWidget slf, void *_cmd)
656{
657 id <NSDraggingInfo>sender = (id <NSDraggingInfo>) s;
658 NSPasteboard *pboard = [sender draggingPasteboard];
659
660 wxWindow* wxpeer = GetWXPeer();
661 if ( wxpeer == NULL )
662 return;
663
664 wxDropTarget* target = wxpeer->GetDropTarget();
665 if ( target == NULL )
666 return;
667
668 PasteboardRef pboardRef;
669 PasteboardCreate((CFStringRef)[pboard name], &pboardRef);
670 target->SetCurrentDragPasteboard(pboardRef);
671 target->OnLeave();
672 CFRelease(pboardRef);
673 }
674
675unsigned int wxWidgetCocoaImpl::draggingUpdated(void* s, WXWidget slf, void *_cmd)
676{
677 id <NSDraggingInfo>sender = (id <NSDraggingInfo>) s;
678 NSPasteboard *pboard = [sender draggingPasteboard];
679 NSDragOperation sourceDragMask = [sender draggingSourceOperationMask];
dbeddfb9 680
4dd9fdf8
SC
681 wxWindow* wxpeer = GetWXPeer();
682 if ( wxpeer == NULL )
683 return NSDragOperationNone;
684
685 wxDropTarget* target = wxpeer->GetDropTarget();
686 if ( target == NULL )
687 return NSDragOperationNone;
688
689 wxDragResult result = wxDragNone;
690 wxPoint pt = wxFromNSPoint( m_osxView, [sender draggingLocation] );
691
692 if ( sourceDragMask & NSDragOperationLink )
693 result = wxDragLink;
694 else if ( sourceDragMask & NSDragOperationCopy )
695 result = wxDragCopy;
696 else if ( sourceDragMask & NSDragOperationMove )
697 result = wxDragMove;
698
699 PasteboardRef pboardRef;
700 PasteboardCreate((CFStringRef)[pboard name], &pboardRef);
701 target->SetCurrentDragPasteboard(pboardRef);
702 result = target->OnDragOver(pt.x, pt.y, result);
703 CFRelease(pboardRef);
704
705 NSDragOperation nsresult = NSDragOperationNone;
706 switch (result )
707 {
708 case wxDragLink:
709 nsresult = NSDragOperationLink;
710 case wxDragMove:
711 nsresult = NSDragOperationMove;
712 case wxDragCopy:
713 nsresult = NSDragOperationCopy;
714 default :
715 break;
716 }
717 return nsresult;
718}
719
720bool wxWidgetCocoaImpl::performDragOperation(void* s, WXWidget slf, void *_cmd)
721{
722 id <NSDraggingInfo>sender = (id <NSDraggingInfo>) s;
dbeddfb9 723
4dd9fdf8
SC
724 NSPasteboard *pboard = [sender draggingPasteboard];
725 NSDragOperation sourceDragMask = [sender draggingSourceOperationMask];
726
727 wxWindow* wxpeer = GetWXPeer();
728 wxDropTarget* target = wxpeer->GetDropTarget();
729 wxDragResult result = wxDragNone;
730 wxPoint pt = wxFromNSPoint( m_osxView, [sender draggingLocation] );
731
732 if ( sourceDragMask & NSDragOperationLink )
733 result = wxDragLink;
734 else if ( sourceDragMask & NSDragOperationCopy )
735 result = wxDragCopy;
736 else if ( sourceDragMask & NSDragOperationMove )
737 result = wxDragMove;
738
739 PasteboardRef pboardRef;
740 PasteboardCreate((CFStringRef)[pboard name], &pboardRef);
741 target->SetCurrentDragPasteboard(pboardRef);
742 result = target->OnData(pt.x, pt.y, result);
743 CFRelease(pboardRef);
744
745 return result != wxDragNone;
746}
747
748#endif
749
63a6419c 750typedef void (*wxOSX_TextEventHandlerPtr)(NSView* self, SEL _cmd, NSString *event);
4dd9fdf8
SC
751typedef void (*wxOSX_EventHandlerPtr)(NSView* self, SEL _cmd, NSEvent *event);
752typedef BOOL (*wxOSX_PerformKeyEventHandlerPtr)(NSView* self, SEL _cmd, NSEvent *event);
753typedef BOOL (*wxOSX_FocusHandlerPtr)(NSView* self, SEL _cmd);
754typedef BOOL (*wxOSX_ResetCursorRectsHandlerPtr)(NSView* self, SEL _cmd);
755typedef BOOL (*wxOSX_DrawRectHandlerPtr)(NSView* self, SEL _cmd, NSRect rect);
756
757void wxWidgetCocoaImpl::mouseEvent(WX_NSEvent event, WXWidget slf, void *_cmd)
758{
759 if ( !DoHandleMouseEvent(event) )
760 {
761 wxOSX_EventHandlerPtr superimpl = (wxOSX_EventHandlerPtr) [[slf superclass] instanceMethodForSelector:(SEL)_cmd];
762 superimpl(slf, (SEL)_cmd, event);
763 }
764}
765
766void wxWidgetCocoaImpl::keyEvent(WX_NSEvent event, WXWidget slf, void *_cmd)
767{
f0e0116e 768 if ( [[slf window] firstResponder] != slf || !DoHandleKeyEvent(event) )
4dd9fdf8
SC
769 {
770 wxOSX_EventHandlerPtr superimpl = (wxOSX_EventHandlerPtr) [[slf superclass] instanceMethodForSelector:(SEL)_cmd];
771 superimpl(slf, (SEL)_cmd, event);
772 }
773}
774
f0e0116e 775void wxWidgetCocoaImpl::insertText(NSString* text, WXWidget slf, void *_cmd)
4dd9fdf8 776{
f0e0116e 777 if (m_lastKeyDownEvent && !DoHandleCharEvent(m_lastKeyDownEvent, text) )
4dd9fdf8 778 {
63a6419c
KO
779 wxOSX_TextEventHandlerPtr superimpl = (wxOSX_TextEventHandlerPtr) [[slf superclass] instanceMethodForSelector:(SEL)_cmd];
780 superimpl(slf, (SEL)_cmd, text);
4dd9fdf8 781 }
f0e0116e
KO
782 m_lastKeyDownEvent = NULL;
783}
4dd9fdf8 784
f0e0116e
KO
785
786bool wxWidgetCocoaImpl::performKeyEquivalent(WX_NSEvent event, WXWidget slf, void *_cmd)
787{
788 wxOSX_PerformKeyEventHandlerPtr superimpl = (wxOSX_PerformKeyEventHandlerPtr) [[slf superclass] instanceMethodForSelector:(SEL)_cmd];
789 return superimpl(slf, (SEL)_cmd, event);
4dd9fdf8
SC
790}
791
09a9eb20
KO
792bool wxWidgetCocoaImpl::acceptsFirstResponder(WXWidget slf, void *_cmd)
793{
b42865ce
KO
794 // FIXME: We need to find a way to query AcceptsFocus here, but when we do it
795 // it calls native APIs which lead us back here and into a loop.
796 wxOSX_FocusHandlerPtr superimpl = (wxOSX_FocusHandlerPtr) [[slf superclass] instanceMethodForSelector:(SEL)_cmd];
797 return superimpl(slf, (SEL)_cmd);
09a9eb20
KO
798}
799
4dd9fdf8
SC
800bool wxWidgetCocoaImpl::becomeFirstResponder(WXWidget slf, void *_cmd)
801{
802 wxOSX_FocusHandlerPtr superimpl = (wxOSX_FocusHandlerPtr) [[slf superclass] instanceMethodForSelector:(SEL)_cmd];
b42865ce
KO
803 // get the current focus before running becomeFirstResponder
804 NSView* otherView = [[NSApp keyWindow] firstResponder];
805 wxWidgetImpl* otherWindow = FindFromWXWidget(otherView);
4dd9fdf8
SC
806 BOOL r = superimpl(slf, (SEL)_cmd);
807 if ( r )
b42865ce 808 DoNotifyFocusEvent( true, otherWindow );
4dd9fdf8
SC
809 return r;
810}
811
812bool wxWidgetCocoaImpl::resignFirstResponder(WXWidget slf, void *_cmd)
813{
814 wxOSX_FocusHandlerPtr superimpl = (wxOSX_FocusHandlerPtr) [[slf superclass] instanceMethodForSelector:(SEL)_cmd];
815 BOOL r = superimpl(slf, (SEL)_cmd);
b42865ce
KO
816 // get the current focus after running resignFirstResponder
817 NSView* otherView = [[NSApp keyWindow] firstResponder];
818 wxWidgetImpl* otherWindow = FindFromWXWidget(otherView);
4dd9fdf8 819 if ( r )
b42865ce 820 DoNotifyFocusEvent( false, otherWindow );
4dd9fdf8
SC
821 return r;
822}
823
824void wxWidgetCocoaImpl::resetCursorRects(WXWidget slf, void *_cmd)
825{
826 wxWindow* wxpeer = GetWXPeer();
827 if ( wxpeer )
828 {
829 NSCursor *cursor = (NSCursor*)wxpeer->GetCursor().GetHCURSOR();
830 if (cursor == NULL)
dbeddfb9 831 {
4dd9fdf8
SC
832 wxOSX_ResetCursorRectsHandlerPtr superimpl = (wxOSX_ResetCursorRectsHandlerPtr) [[slf superclass] instanceMethodForSelector:(SEL)_cmd];
833 superimpl(slf, (SEL)_cmd);
dbeddfb9 834 }
4dd9fdf8 835 else
57c0a8ac 836 {
4dd9fdf8
SC
837 [slf addCursorRect: [slf bounds]
838 cursor: cursor];
57c0a8ac 839 }
4dd9fdf8
SC
840 }
841}
842
843bool wxWidgetCocoaImpl::isFlipped(WXWidget slf, void *_cmd)
844{
845 return m_isFlipped;
846}
33e90275 847
4dd9fdf8
SC
848
849#define OSX_DEBUG_DRAWING 0
850
851void wxWidgetCocoaImpl::drawRect(void* rect, WXWidget slf, void *_cmd)
852{
853 CGContextRef context = (CGContextRef) [[NSGraphicsContext currentContext] graphicsPort];
854 CGContextSaveGState( context );
855
856#if OSX_DEBUG_DRAWING
857 CGContextBeginPath( context );
858 CGContextMoveToPoint(context, 0, 0);
859 NSRect bounds = [self bounds];
860 CGContextAddLineToPoint(context, 10, 0);
861 CGContextMoveToPoint(context, 0, 0);
862 CGContextAddLineToPoint(context, 0, 10);
863 CGContextMoveToPoint(context, bounds.size.width, bounds.size.height);
864 CGContextAddLineToPoint(context, bounds.size.width, bounds.size.height-10);
865 CGContextMoveToPoint(context, bounds.size.width, bounds.size.height);
866 CGContextAddLineToPoint(context, bounds.size.width-10, bounds.size.height);
867 CGContextClosePath( context );
868 CGContextStrokePath(context);
869#endif
870
871 if ( !m_isFlipped )
872 {
873 CGContextTranslateCTM( context, 0, [m_osxView bounds].size.height );
874 CGContextScaleCTM( context, 1, -1 );
875 }
876
877 wxRegion updateRgn;
878 const NSRect *rects;
879 NSInteger count;
880
881 [slf getRectsBeingDrawn:&rects count:&count];
882 for ( int i = 0 ; i < count ; ++i )
883 {
884 updateRgn.Union(wxFromNSRect(slf, rects[i]) );
885 }
886
887 wxWindow* wxpeer = GetWXPeer();
888 wxpeer->GetUpdateRegion() = updateRgn;
889 wxpeer->MacSetCGContextRef( context );
890
09489833 891 bool handled = wxpeer->MacDoRedraw( 0 );
4dd9fdf8
SC
892
893 CGContextRestoreGState( context );
09489833
SC
894
895 CGContextSaveGState( context );
4dd9fdf8
SC
896 if ( !handled )
897 {
898 // call super
899 SEL _cmd = @selector(drawRect:);
900 wxOSX_DrawRectHandlerPtr superimpl = (wxOSX_DrawRectHandlerPtr) [[slf superclass] instanceMethodForSelector:_cmd];
901 superimpl(slf, _cmd, *(NSRect*)rect);
09489833
SC
902 CGContextRestoreGState( context );
903 CGContextSaveGState( context );
33e90275 904 }
09489833 905 wxpeer->MacPaintChildrenBorders();
15fc716c 906 wxpeer->MacSetCGContextRef( NULL );
09489833 907 CGContextRestoreGState( context );
33e90275
SC
908}
909
e32090ba 910void wxWidgetCocoaImpl::controlAction( WXWidget slf, void *_cmd, void *sender)
4dd9fdf8
SC
911{
912 wxWindow* wxpeer = (wxWindow*) GetWXPeer();
913 if ( wxpeer )
914 wxpeer->OSXHandleClicked(0);
915}
33e90275 916
e32090ba 917void wxWidgetCocoaImpl::controlDoubleAction( WXWidget slf, void *_cmd, void *sender)
524c47aa 918{
524c47aa 919}
33e90275 920
4dd9fdf8
SC
921//
922
923#if OBJC_API_VERSION >= 2
924
925#define wxOSX_CLASS_ADD_METHOD( c, s, i, t ) \
926 class_addMethod(c, s, i, t );
927
928#else
929
930#define wxOSX_CLASS_ADD_METHOD( c, s, i, t ) \
931 { s, t, i },
932
933#endif
934
935void wxOSXCocoaClassAddWXMethods(Class c)
936{
937
938#if OBJC_API_VERSION < 2
939 static objc_method wxmethods[] =
940 {
941#endif
942
943 wxOSX_CLASS_ADD_METHOD(c, @selector(mouseDown:), (IMP) wxOSX_mouseEvent, "v@:@" )
944 wxOSX_CLASS_ADD_METHOD(c, @selector(rightMouseDown:), (IMP) wxOSX_mouseEvent, "v@:@" )
945 wxOSX_CLASS_ADD_METHOD(c, @selector(otherMouseDown:), (IMP) wxOSX_mouseEvent, "v@:@" )
946
947 wxOSX_CLASS_ADD_METHOD(c, @selector(mouseUp:), (IMP) wxOSX_mouseEvent, "v@:@" )
948 wxOSX_CLASS_ADD_METHOD(c, @selector(rightMouseUp:), (IMP) wxOSX_mouseEvent, "v@:@" )
949 wxOSX_CLASS_ADD_METHOD(c, @selector(otherMouseUp:), (IMP) wxOSX_mouseEvent, "v@:@" )
950
951 wxOSX_CLASS_ADD_METHOD(c, @selector(mouseMoved:), (IMP) wxOSX_mouseEvent, "v@:@" )
952
953 wxOSX_CLASS_ADD_METHOD(c, @selector(mouseDragged:), (IMP) wxOSX_mouseEvent, "v@:@" )
954 wxOSX_CLASS_ADD_METHOD(c, @selector(rightMouseDragged:), (IMP) wxOSX_mouseEvent, "v@:@" )
955 wxOSX_CLASS_ADD_METHOD(c, @selector(otherMouseDragged:), (IMP) wxOSX_mouseEvent, "v@:@" )
956
957 wxOSX_CLASS_ADD_METHOD(c, @selector(scrollWheel:), (IMP) wxOSX_mouseEvent, "v@:@" )
958 wxOSX_CLASS_ADD_METHOD(c, @selector(mouseEntered:), (IMP) wxOSX_mouseEvent, "v@:@" )
959 wxOSX_CLASS_ADD_METHOD(c, @selector(mouseExited:), (IMP) wxOSX_mouseEvent, "v@:@" )
960
961 wxOSX_CLASS_ADD_METHOD(c, @selector(keyDown:), (IMP) wxOSX_keyEvent, "v@:@" )
962 wxOSX_CLASS_ADD_METHOD(c, @selector(keyUp:), (IMP) wxOSX_keyEvent, "v@:@" )
963 wxOSX_CLASS_ADD_METHOD(c, @selector(flagsChanged:), (IMP) wxOSX_keyEvent, "v@:@" )
f0e0116e
KO
964
965 wxOSX_CLASS_ADD_METHOD(c, @selector(insertText:), (IMP) wxOSX_insertText, "v@:@" )
4dd9fdf8
SC
966
967 wxOSX_CLASS_ADD_METHOD(c, @selector(performKeyEquivalent:), (IMP) wxOSX_performKeyEquivalent, "v@:@" )
968
09a9eb20 969 wxOSX_CLASS_ADD_METHOD(c, @selector(acceptsFirstResponder), (IMP) wxOSX_acceptsFirstResponder, "c@:" )
4dd9fdf8
SC
970 wxOSX_CLASS_ADD_METHOD(c, @selector(becomeFirstResponder), (IMP) wxOSX_becomeFirstResponder, "c@:" )
971 wxOSX_CLASS_ADD_METHOD(c, @selector(resignFirstResponder), (IMP) wxOSX_resignFirstResponder, "c@:" )
972 wxOSX_CLASS_ADD_METHOD(c, @selector(resetCursorRects), (IMP) wxOSX_resetCursorRects, "v@:" )
973
974 wxOSX_CLASS_ADD_METHOD(c, @selector(isFlipped), (IMP) wxOSX_isFlipped, "c@:" )
975 wxOSX_CLASS_ADD_METHOD(c, @selector(drawRect:), (IMP) wxOSX_drawRect, "v@:{_NSRect={_NSPoint=ff}{_NSSize=ff}}" )
976
e32090ba
SC
977 wxOSX_CLASS_ADD_METHOD(c, @selector(controlAction:), (IMP) wxOSX_controlAction, "v@:@" )
978 wxOSX_CLASS_ADD_METHOD(c, @selector(controlDoubleAction:), (IMP) wxOSX_controlDoubleAction, "v@:@" )
4dd9fdf8
SC
979
980#if wxUSE_DRAG_AND_DROP
981 wxOSX_CLASS_ADD_METHOD(c, @selector(draggingEntered:), (IMP) wxOSX_draggingEntered, "I@:@" )
982 wxOSX_CLASS_ADD_METHOD(c, @selector(draggingUpdated:), (IMP) wxOSX_draggingUpdated, "I@:@" )
983 wxOSX_CLASS_ADD_METHOD(c, @selector(draggingExited:), (IMP) wxOSX_draggingExited, "v@:@" )
984 wxOSX_CLASS_ADD_METHOD(c, @selector(performDragOperation:), (IMP) wxOSX_performDragOperation, "c@:@" )
985#endif
986
987#if OBJC_API_VERSION < 2
988 } ;
989 static int method_count = WXSIZEOF( wxmethods );
990 static objc_method_list *wxmethodlist = NULL;
991 if ( wxmethodlist == NULL )
992 {
993 wxmethodlist = (objc_method_list*) malloc(sizeof(objc_method_list) + sizeof(wxmethods) );
994 memcpy( &wxmethodlist->method_list[0], &wxmethods[0], sizeof(wxmethods) );
995 wxmethodlist->method_count = method_count;
996 wxmethodlist->obsolete = 0;
997 }
998 class_addMethods( c, wxmethodlist );
999#endif
1000}
1001
1002//
1003// C++ implementation class
1004//
33e90275
SC
1005
1006IMPLEMENT_DYNAMIC_CLASS( wxWidgetCocoaImpl , wxWidgetImpl )
1007
1008wxWidgetCocoaImpl::wxWidgetCocoaImpl( wxWindowMac* peer , WXWidget w, bool isRootControl ) :
4dd9fdf8 1009 wxWidgetImpl( peer, isRootControl )
33e90275 1010{
4dd9fdf8
SC
1011 Init();
1012 m_osxView = w;
33e90275
SC
1013}
1014
1015wxWidgetCocoaImpl::wxWidgetCocoaImpl()
1016{
4dd9fdf8 1017 Init();
33e90275
SC
1018}
1019
1020void wxWidgetCocoaImpl::Init()
1021{
1022 m_osxView = NULL;
4dd9fdf8 1023 m_isFlipped = true;
f0e0116e 1024 m_lastKeyDownEvent = NULL;
33e90275
SC
1025}
1026
1027wxWidgetCocoaImpl::~wxWidgetCocoaImpl()
1028{
4dd9fdf8
SC
1029 RemoveAssociations( this );
1030
dbeddfb9
SC
1031 if ( !IsRootControl() )
1032 {
1033 NSView *sv = [m_osxView superview];
1034 if ( sv != nil )
1035 [m_osxView removeFromSuperview];
1036 }
33e90275
SC
1037 [m_osxView release];
1038}
1039
1040bool wxWidgetCocoaImpl::IsVisible() const
1041{
1042 return [m_osxView isHiddenOrHasHiddenAncestor] == NO;
1043}
1044
dbeddfb9
SC
1045void wxWidgetCocoaImpl::SetVisibility( bool visible )
1046{
1047 [m_osxView setHidden:(visible ? NO:YES)];
1048}
1049
33e90275
SC
1050void wxWidgetCocoaImpl::Raise()
1051{
1052}
1053
1054void wxWidgetCocoaImpl::Lower()
1055{
1056}
1057
1058void wxWidgetCocoaImpl::ScrollRect( const wxRect *rect, int dx, int dy )
1059{
54f11060
SC
1060#if 1
1061 SetNeedsDisplay() ;
1062#else
1063 // We should do something like this, but it wasn't working in 10.4.
1064 if (GetNeedsDisplay() )
1065 {
1066 SetNeedsDisplay() ;
1067 }
1068 NSRect r = wxToNSRect( [m_osxView superview], *rect );
1069 NSSize offset = NSMakeSize((float)dx, (float)dy);
1070 [m_osxView scrollRect:r by:offset];
1071#endif
33e90275
SC
1072}
1073
1074void wxWidgetCocoaImpl::Move(int x, int y, int width, int height)
1075{
0c530e5a
SC
1076 wxWindowMac* parent = GetWXPeer()->GetParent();
1077 // under Cocoa we might have a contentView in the wxParent to which we have to
1078 // adjust the coordinates
1079 if (parent)
1080 {
57c0a8ac
SC
1081 int cx = 0,cy = 0,cw = 0,ch = 0;
1082 if ( parent->GetPeer() )
1083 {
1084 parent->GetPeer()->GetContentArea(cx, cy, cw, ch);
1085 x -= cx;
1086 y -= cy;
1087 }
0c530e5a 1088 }
95fb3153 1089 [[m_osxView superview] setNeedsDisplayInRect:[m_osxView frame]];
33e90275
SC
1090 NSRect r = wxToNSRect( [m_osxView superview], wxRect(x,y,width, height) );
1091 [m_osxView setFrame:r];
95fb3153 1092 [[m_osxView superview] setNeedsDisplayInRect:r];
fc099495 1093
41af81ea 1094 if ([m_osxView respondsToSelector:@selector(trackingTag)] )
fc099495
KO
1095 {
1096 if ( [(wxNSView*)m_osxView trackingTag] )
1097 [m_osxView removeTrackingRect: [(wxNSView*)m_osxView trackingTag]];
1098
1099 [(wxNSView*)m_osxView setTrackingTag: [m_osxView addTrackingRect: [m_osxView bounds] owner: m_osxView userData: nil assumeInside: NO]];
1100 }
33e90275
SC
1101}
1102
1103void wxWidgetCocoaImpl::GetPosition( int &x, int &y ) const
1104{
1105 wxRect r = wxFromNSRect( [m_osxView superview], [m_osxView frame] );
1106 x = r.GetLeft();
1107 y = r.GetTop();
1108}
1109
1110void wxWidgetCocoaImpl::GetSize( int &width, int &height ) const
1111{
1112 NSRect rect = [m_osxView frame];
1113 width = rect.size.width;
1114 height = rect.size.height;
1115}
1116
dbeddfb9 1117void wxWidgetCocoaImpl::GetContentArea( int&left, int &top, int &width, int &height ) const
33e90275 1118{
0c530e5a
SC
1119 if ( [m_osxView respondsToSelector:@selector(contentView) ] )
1120 {
1121 NSView* cv = [m_osxView contentView];
1122
1123 NSRect bounds = [m_osxView bounds];
1124 NSRect rect = [cv frame];
1125
1126 int y = rect.origin.y;
1127 int x = rect.origin.x;
1128 if ( ![ m_osxView isFlipped ] )
1129 y = bounds.size.height - (rect.origin.y + rect.size.height);
1130 left = x;
1131 top = y;
1132 width = rect.size.width;
1133 height = rect.size.height;
1134 }
1135 else
1136 {
1137 left = top = 0;
1138 GetSize( width, height );
1139 }
33e90275
SC
1140}
1141
1142void wxWidgetCocoaImpl::SetNeedsDisplay( const wxRect* where )
1143{
1144 if ( where )
1145 [m_osxView setNeedsDisplayInRect:wxToNSRect(m_osxView, *where )];
1146 else
1147 [m_osxView setNeedsDisplay:YES];
1148}
1149
1150bool wxWidgetCocoaImpl::GetNeedsDisplay() const
1151{
1152 return [m_osxView needsDisplay];
1153}
1154
dbeddfb9 1155bool wxWidgetCocoaImpl::CanFocus() const
33e90275 1156{
dbeddfb9 1157 return [m_osxView canBecomeKeyView] == YES;
33e90275
SC
1158}
1159
1160bool wxWidgetCocoaImpl::HasFocus() const
1161{
dbeddfb9 1162 return ( [[m_osxView window] firstResponder] == m_osxView );
33e90275
SC
1163}
1164
1165bool wxWidgetCocoaImpl::SetFocus()
1166{
dbeddfb9
SC
1167 if ( [m_osxView canBecomeKeyView] == NO )
1168 return false;
1169
1170 [[m_osxView window] makeFirstResponder: m_osxView] ;
1171 return true;
33e90275
SC
1172}
1173
1174
1175void wxWidgetCocoaImpl::RemoveFromParent()
1176{
1177 [m_osxView removeFromSuperview];
1178}
1179
1180void wxWidgetCocoaImpl::Embed( wxWidgetImpl *parent )
1181{
1182 NSView* container = parent->GetWXWidget() ;
1183 wxASSERT_MSG( container != NULL , wxT("No valid mac container control") ) ;
1184 [container addSubview:m_osxView];
1185}
1186
dbeddfb9
SC
1187void wxWidgetCocoaImpl::SetBackgroundColour( const wxColour &WXUNUSED(col) )
1188{
1189 // m_osxView.backgroundColor = [[UIColor alloc] initWithCGColor:col.GetCGColor()];
1190}
1191
1192void wxWidgetCocoaImpl::SetLabel( const wxString& title, wxFontEncoding encoding )
1193{
1194 if ( [m_osxView respondsToSelector:@selector(setTitle:) ] )
1195 {
1196 wxCFStringRef cf( title , m_wxPeer->GetFont().GetEncoding() );
1197 [m_osxView setTitle:cf.AsNSString()];
1198 }
e32090ba
SC
1199 else if ( [m_osxView respondsToSelector:@selector(setStringValue:) ] )
1200 {
1201 wxCFStringRef cf( title , m_wxPeer->GetFont().GetEncoding() );
1202 [m_osxView setStringValue:cf.AsNSString()];
1203 }
dbeddfb9
SC
1204}
1205
1206
1207void wxWidgetImpl::Convert( wxPoint *pt , wxWidgetImpl *from , wxWidgetImpl *to )
1208{
1209 NSPoint p = wxToNSPoint( from->GetWXWidget(), *pt );
1210 p = [from->GetWXWidget() convertPoint:p toView:to->GetWXWidget() ];
1211 *pt = wxFromNSPoint( to->GetWXWidget(), p );
1212}
1213
1214wxInt32 wxWidgetCocoaImpl::GetValue() const
1215{
1216 return [(NSControl*)m_osxView intValue];
1217}
1218
1219void wxWidgetCocoaImpl::SetValue( wxInt32 v )
1220{
1221 if ( [m_osxView respondsToSelector:@selector(setIntValue:)] )
1222 {
1223 [m_osxView setIntValue:v];
1224 }
1225 else if ( [m_osxView respondsToSelector:@selector(setFloatValue:)] )
1226 {
1227 [m_osxView setFloatValue:(double)v];
1228 }
1229 else if ( [m_osxView respondsToSelector:@selector(setDoubleValue:)] )
1230 {
1231 [m_osxView setDoubleValue:(double)v];
1232 }
1233}
1234
1235void wxWidgetCocoaImpl::SetMinimum( wxInt32 v )
1236{
1237 if ( [m_osxView respondsToSelector:@selector(setMinValue:)] )
1238 {
1239 [m_osxView setMinValue:(double)v];
1240 }
1241}
1242
1243void wxWidgetCocoaImpl::SetMaximum( wxInt32 v )
1244{
1245 if ( [m_osxView respondsToSelector:@selector(setMaxValue:)] )
1246 {
1247 [m_osxView setMaxValue:(double)v];
1248 }
1249}
1250
19c7ac3d
SC
1251wxInt32 wxWidgetCocoaImpl::GetMinimum() const
1252{
1253 if ( [m_osxView respondsToSelector:@selector(getMinValue:)] )
1254 {
1255 return [m_osxView minValue];
1256 }
1257 return 0;
1258}
1259
1260wxInt32 wxWidgetCocoaImpl::GetMaximum() const
1261{
1262 if ( [m_osxView respondsToSelector:@selector(getMaxValue:)] )
1263 {
1264 return [m_osxView maxValue];
1265 }
1266 return 0;
1267}
1268
dbeddfb9
SC
1269void wxWidgetCocoaImpl::SetBitmap( const wxBitmap& bitmap )
1270{
1271 if ( [m_osxView respondsToSelector:@selector(setImage:)] )
1272 {
1273 [m_osxView setImage:bitmap.GetNSImage()];
1274 }
1275}
1276
1277void wxWidgetCocoaImpl::SetupTabs( const wxNotebook& notebook)
1278{
1279 // implementation in subclass
1280}
1281
1282void wxWidgetCocoaImpl::GetBestRect( wxRect *r ) const
1283{
1284 r->x = r->y = r->width = r->height = 0;
09a9eb20 1285
dbeddfb9
SC
1286 if ( [m_osxView respondsToSelector:@selector(sizeToFit)] )
1287 {
1288 NSRect former = [m_osxView frame];
1289 [m_osxView sizeToFit];
1290 NSRect best = [m_osxView frame];
1291 [m_osxView setFrame:former];
1292 r->width = best.size.width;
1293 r->height = best.size.height;
1294 }
1295}
1296
1297bool wxWidgetCocoaImpl::IsEnabled() const
1298{
0f9b48d1
SC
1299 if ( [m_osxView respondsToSelector:@selector(isEnabled) ] )
1300 return [m_osxView isEnabled];
1301 return true;
dbeddfb9
SC
1302}
1303
1304void wxWidgetCocoaImpl::Enable( bool enable )
1305{
0f9b48d1
SC
1306 if ( [m_osxView respondsToSelector:@selector(setEnabled:) ] )
1307 [m_osxView setEnabled:enable];
dbeddfb9
SC
1308}
1309
1310void wxWidgetCocoaImpl::PulseGauge()
1311{
1312}
1313
1314void wxWidgetCocoaImpl::SetScrollThumb( wxInt32 val, wxInt32 view )
1315{
1316}
33e90275 1317
0f9b48d1
SC
1318void wxWidgetCocoaImpl::SetControlSize( wxWindowVariant variant )
1319{
1320 NSControlSize size = NSRegularControlSize;
1321
1322 switch ( variant )
1323 {
1324 case wxWINDOW_VARIANT_NORMAL :
1325 size = NSRegularControlSize;
1326 break ;
1327
1328 case wxWINDOW_VARIANT_SMALL :
1329 size = NSSmallControlSize;
1330 break ;
1331
1332 case wxWINDOW_VARIANT_MINI :
1333 size = NSMiniControlSize;
1334 break ;
1335
1336 case wxWINDOW_VARIANT_LARGE :
1337 size = NSRegularControlSize;
1338 break ;
1339
1340 default:
1341 wxFAIL_MSG(_T("unexpected window variant"));
1342 break ;
1343 }
1344 if ( [m_osxView respondsToSelector:@selector(setControlSize:)] )
1345 [m_osxView setControlSize:size];
1346}
1347
09a9eb20 1348void wxWidgetCocoaImpl::SetFont(wxFont const& font, wxColour const&, long, bool)
1e181c7a 1349{
09a9eb20
KO
1350 if ([m_osxView respondsToSelector:@selector(setFont:)])
1351#if wxOSX_USE_CORE_TEXT
1352 [m_osxView setFont: (CTFontRef)font.MacGetCTFont()];
1353#else
1354
1355#endif
1e181c7a
SC
1356}
1357
c4825ef7
SC
1358void wxWidgetCocoaImpl::InstallEventHandler( WXWidget control )
1359{
4dd9fdf8
SC
1360 WXWidget c = control ? control : (WXWidget) m_osxView;
1361 wxWidgetImpl::Associate( c, this ) ;
1362 if ([c respondsToSelector:@selector(setAction:)])
1363 {
1364 [c setTarget: c];
e32090ba 1365 [c setAction: @selector(controlAction:)];
4dd9fdf8
SC
1366 if ([c respondsToSelector:@selector(setDoubleAction:)])
1367 {
e32090ba 1368 [c setDoubleAction: @selector(controlDoubleAction:)];
4dd9fdf8
SC
1369 }
1370
1371 }
c4825ef7
SC
1372}
1373
f0e0116e
KO
1374bool wxWidgetCocoaImpl::DoHandleCharEvent(NSEvent *event, NSString *text)
1375{
1376 wxKeyEvent wxevent(wxEVT_KEY_DOWN);
1377 SetupKeyEvent( wxevent, event, text );
540f4445 1378 wxevent.SetEventObject(GetWXPeer());
f0e0116e
KO
1379
1380 return GetWXPeer()->OSXHandleKeyEvent(wxevent);
1381}
1382
ffad7b0d
SC
1383bool wxWidgetCocoaImpl::DoHandleKeyEvent(NSEvent *event)
1384{
1385 wxKeyEvent wxevent(wxEVT_KEY_DOWN);
1386 SetupKeyEvent( wxevent, event );
540f4445 1387 wxevent.SetEventObject(GetWXPeer());
f0e0116e 1388 bool result = GetWXPeer()->OSXHandleKeyEvent(wxevent);
19c7ac3d 1389
f0e0116e
KO
1390 // this will fire higher level events, like insertText, to help
1391 // us handle EVT_CHAR, etc.
1392 if ([event type] == NSKeyDown)
1393 {
1394 m_lastKeyDownEvent = event;
1395 [m_osxView interpretKeyEvents:[NSArray arrayWithObject:event]];
1396 }
f0e0116e 1397 return result;
ffad7b0d
SC
1398}
1399
b466e85a 1400bool wxWidgetCocoaImpl::DoHandleMouseEvent(NSEvent *event)
4850cc8b
SC
1401{
1402 NSPoint clickLocation;
1403 clickLocation = [m_osxView convertPoint:[event locationInWindow] fromView:nil];
1404 wxPoint pt = wxFromNSPoint( m_osxView, clickLocation );
1405 wxMouseEvent wxevent(wxEVT_LEFT_DOWN);
1406 SetupMouseEvent( wxevent , event ) ;
540f4445 1407 wxevent.SetEventObject(GetWXPeer());
4850cc8b
SC
1408 wxevent.m_x = pt.x;
1409 wxevent.m_y = pt.y;
b466e85a
SC
1410
1411 return GetWXPeer()->HandleWindowEvent(wxevent);
4850cc8b
SC
1412}
1413
b42865ce 1414void wxWidgetCocoaImpl::DoNotifyFocusEvent(bool receivedFocus, wxWidgetImpl* otherWindow)
0c530e5a
SC
1415{
1416 wxWindow* thisWindow = GetWXPeer();
1417 if ( thisWindow->MacGetTopLevelWindow() && NeedsFocusRect() )
1418 {
1419 thisWindow->MacInvalidateBorders();
1420 }
1421
1422 if ( receivedFocus )
1423 {
1424 wxLogTrace(_T("Focus"), _T("focus set(%p)"), static_cast<void*>(thisWindow));
1425 wxChildFocusEvent eventFocus((wxWindow*)thisWindow);
1426 thisWindow->HandleWindowEvent(eventFocus);
1427
1428#if wxUSE_CARET
1429 if ( thisWindow->GetCaret() )
1430 thisWindow->GetCaret()->OnSetFocus();
1431#endif
1432
1433 wxFocusEvent event(wxEVT_SET_FOCUS, thisWindow->GetId());
1434 event.SetEventObject(thisWindow);
b42865ce
KO
1435 if (otherWindow)
1436 event.SetWindow(otherWindow->GetWXPeer());
0c530e5a
SC
1437 thisWindow->HandleWindowEvent(event) ;
1438 }
1439 else // !receivedFocuss
1440 {
1441#if wxUSE_CARET
1442 if ( thisWindow->GetCaret() )
1443 thisWindow->GetCaret()->OnKillFocus();
1444#endif
1445
1446 wxLogTrace(_T("Focus"), _T("focus lost(%p)"), static_cast<void*>(thisWindow));
1447
1448 wxFocusEvent event( wxEVT_KILL_FOCUS, thisWindow->GetId());
1449 event.SetEventObject(thisWindow);
b42865ce
KO
1450 if (otherWindow)
1451 event.SetWindow(otherWindow->GetWXPeer());
0c530e5a
SC
1452 thisWindow->HandleWindowEvent(event) ;
1453 }
1454}
1455
54f11060
SC
1456void wxWidgetCocoaImpl::SetCursor(const wxCursor& cursor)
1457{
1458 NSPoint location = [NSEvent mouseLocation];
1459 location = [[m_osxView window] convertScreenToBase:location];
1460 NSPoint locationInView = [m_osxView convertPoint:location fromView:nil];
1461
1462 if( NSMouseInRect(locationInView, [m_osxView bounds], YES) )
1463 {
1464 [(NSCursor*)cursor.GetHCURSOR() set];
1465 }
1466 [[m_osxView window] invalidateCursorRectsForView:m_osxView];
1467}
1468
1469void wxWidgetCocoaImpl::CaptureMouse()
1470{
1471 [[m_osxView window] disableCursorRects];
1472}
1473
1474void wxWidgetCocoaImpl::ReleaseMouse()
1475{
1476 [[m_osxView window] enableCursorRects];
1477}
4850cc8b 1478
4dd9fdf8
SC
1479void wxWidgetCocoaImpl::SetFlipped(bool flipped)
1480{
1481 m_isFlipped = flipped;
1482}
1483
33e90275
SC
1484//
1485// Factory methods
1486//
1487
dbeddfb9
SC
1488wxWidgetImpl* wxWidgetImpl::CreateUserPane( wxWindowMac* wxpeer, wxWindowMac* parent, wxWindowID id, const wxPoint& pos, const wxSize& size,
1489 long style, long extraStyle)
33e90275 1490{
dbeddfb9 1491 NSRect r = wxOSXGetFrameForControl( wxpeer, pos , size ) ;
33e90275 1492 wxNSView* v = [[wxNSView alloc] initWithFrame:r];
4dd9fdf8
SC
1493
1494 // temporary hook for dnd
1495 [v registerForDraggedTypes:[NSArray arrayWithObjects:
1496 NSStringPboardType, NSFilenamesPboardType, NSTIFFPboardType, NSPICTPboardType, NSPDFPboardType, nil]];
1497
33e90275 1498 wxWidgetCocoaImpl* c = new wxWidgetCocoaImpl( wxpeer, v );
33e90275
SC
1499 return c;
1500}
1501
1502wxWidgetImpl* wxWidgetImpl::CreateContentView( wxNonOwnedWindow* now )
1503{
1504 NSWindow* tlw = now->GetWXWindow();
1505 wxNSView* v = [[wxNSView alloc] initWithFrame:[[tlw contentView] frame]];
1506 wxWidgetCocoaImpl* c = new wxWidgetCocoaImpl( now, v, true );
7e06ee6d 1507 c->InstallEventHandler();
33e90275
SC
1508 [tlw setContentView:v];
1509 return c;
1510}