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