]> git.saurik.com Git - wxWidgets.git/blame - src/osx/iphone/window.mm
Reuse wxMessageOutputStderr for wxLogStderr implementation.
[wxWidgets.git] / src / osx / iphone / window.mm
CommitLineData
c16b2153
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: src/osx/iphone/window.mm
3// Purpose: widgets (non tlw) for iphone
4// Author: Stefan Csomor
5// Modified by:
6// Created: 2008-06-20
a9a4f229 7// RCS-ID: $Id$
c16b2153
SC
8// Copyright: (c) Stefan Csomor
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#include "wx/wxprec.h"
13
14#include "wx/osx/private.h"
15
d3929256
SC
16#ifndef WX_PRECOMP
17 #include "wx/nonownedwnd.h"
18 #include "wx/frame.h"
19 #include "wx/event.h"
20 #include "wx/log.h"
21#endif
22
8d7ecd33
SC
23#include "wx/textctrl.h"
24
a7f2b179 25#include <objc/runtime.h>
d3929256
SC
26
27WXWidget wxWidgetImpl::FindFocus()
28{
29 UIView* focusedView = nil;
30 UIWindow* keyWindow = [[UIApplication sharedApplication] keyWindow];
31 if ( keyWindow != nil )
32 {
33 /*
34 NSResponder* responder = [keyWindow firstResponder];
03647350 35 if ( [responder isKindOfClass:[NSTextView class]] &&
d3929256
SC
36 [keyWindow fieldEditor:NO forObject:nil] != nil )
37 {
38 focusedView = [(NSTextView*)responder delegate];
39 }
40 else
41 {
42 if ( [responder isKindOfClass:[NSView class]] )
43 focusedView = (NSView*) responder;
44 }
45 */
46 }
47 return focusedView;
48}
49
50CGRect wxOSXGetFrameForControl( wxWindowMac* window , const wxPoint& pos , const wxSize &size , bool adjustForOrigin )
51{
52 int x, y, w, h ;
53
54 window->MacGetBoundsForControl( pos , size , x , y, w, h , adjustForOrigin ) ;
55 wxRect bounds(x,y,w,h);
56 UIView* sv = (window->GetParent()->GetHandle() );
57
58 return wxToNSRect( sv, bounds );
59}
c16b2153 60
d3929256
SC
61
62@interface wxUIView(PossibleMethods)
63- (void)setTitle:(NSString *)title forState:(UIControlState)state;
64
c16b2153
SC
65- (void)drawRect: (CGRect) rect;
66
67- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event;
68- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event;
69- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event;
70- (void)handleTouchEvent:(NSSet *)touches withEvent:(UIEvent *)event;
71
c16b2153
SC
72- (BOOL) becomeFirstResponder;
73- (BOOL) resignFirstResponder;
d3929256 74@end
c16b2153 75
c16b2153
SC
76//
77//
78//
79
80void SetupMouseEvent( wxMouseEvent &wxevent , NSSet* touches, UIEvent * nsEvent )
81{
82 UInt32 modifiers = 0 ;
83 UITouch *touch = [touches anyObject];
84
85 // these parameters are not given for all events
03647350 86 UInt32 button = 0; // no secondary button
c16b2153
SC
87 UInt32 clickCount = [touch tapCount];
88 UInt32 mouseChord = 0; // TODO does this exist for cocoa
89
90 // will be overridden
91 wxevent.m_x = 0;
92 wxevent.m_y = 0;
93 wxevent.m_shiftDown = 0;
94 wxevent.m_controlDown = 0;
95 wxevent.m_altDown = 0;
96 wxevent.m_metaDown = 0;
97 wxevent.m_clickCount = clickCount;
98 wxevent.SetTimestamp( [touch timestamp] ) ;
99/*
100 // a control click is interpreted as a right click
101 bool thisButtonIsFakeRight = false ;
102 if ( button == kEventMouseButtonPrimary && (modifiers & controlKey) )
103 {
104 button = kEventMouseButtonSecondary ;
105 thisButtonIsFakeRight = true ;
106 }
107
108 // otherwise we report double clicks by connecting a left click with a ctrl-left click
109 if ( clickCount > 1 && button != g_lastButton )
110 clickCount = 1 ;
111 // we must make sure that our synthetic 'right' button corresponds in
112 // mouse down, moved and mouse up, and does not deliver a right down and left up
113
114 if ( cEvent.GetKind() == kEventMouseDown )
115 {
116 g_lastButton = button ;
117 g_lastButtonWasFakeRight = thisButtonIsFakeRight ;
118 }
119
120 if ( button == 0 )
121 {
122 g_lastButton = 0 ;
123 g_lastButtonWasFakeRight = false ;
124 }
125 else if ( g_lastButton == kEventMouseButtonSecondary && g_lastButtonWasFakeRight )
126 button = g_lastButton ;
127
128 // Adjust the chord mask to remove the primary button and add the
129 // secondary button. It is possible that the secondary button is
130 // already pressed, e.g. on a mouse connected to a laptop, but this
131 // possibility is ignored here:
132 if( thisButtonIsFakeRight && ( mouseChord & 1U ) )
133 mouseChord = ((mouseChord & ~1U) | 2U);
134
135 if(mouseChord & 1U)
136 wxevent.m_leftDown = true ;
137 if(mouseChord & 2U)
138 wxevent.m_rightDown = true ;
139 if(mouseChord & 4U)
140 wxevent.m_middleDown = true ;
141
142*/
143 // translate into wx types
144 int eventType = [touch phase];
145 switch (eventType)
146 {
147 case UITouchPhaseBegan :
148 switch ( button )
149 {
150 case 0 :
151 wxevent.SetEventType( clickCount > 1 ? wxEVT_LEFT_DCLICK : wxEVT_LEFT_DOWN ) ;
152 break ;
153
154 default:
155 break ;
156 }
157 break ;
158
159 case UITouchPhaseEnded :
160 switch ( button )
161 {
162 case 0 :
163 wxevent.SetEventType( wxEVT_LEFT_UP ) ;
164 break ;
165
166 default:
167 break ;
168 }
169 break ;
170
171 case UITouchPhaseMoved :
172 wxevent.SetEventType( wxEVT_MOTION ) ;
173 break;
174 default :
175 break ;
176 }
177}
178
179@implementation wxUIView
180
d3929256 181+ (void)initialize
c16b2153 182{
d3929256 183 static BOOL initialized = NO;
03647350 184 if (!initialized)
c16b2153 185 {
d3929256
SC
186 initialized = YES;
187 wxOSXIPhoneClassAddWXMethods( self );
c16b2153 188 }
c16b2153
SC
189}
190
d3929256 191@end // wxUIView
c16b2153 192
d3929256 193/*
c16b2153
SC
194- (void)drawRect: (CGRect) rect
195{
d3929256
SC
196 wxWidgetIPhoneImpl* impl = (wxWidgetIPhoneImpl* ) wxWidgetImpl::FindFromWXWidget( self );
197 if ( impl )
c16b2153
SC
198 {
199 CGContextRef context = (CGContextRef) UIGraphicsGetCurrentContext();
200 CGContextSaveGState( context );
201 // draw background
03647350 202
d3929256 203 CGContextSetFillColorWithColor( context, impl->GetWXPeer()->GetBackgroundColour().GetCGColor());
c16b2153
SC
204 CGContextFillRect(context, rect );
205
d3929256 206 impl->GetWXPeer()->MacSetCGContextRef( context );
c16b2153 207
03647350 208 impl->GetWXPeer()->GetUpdateRegion() =
c16b2153
SC
209 wxRegion(rect.origin.x,rect.origin.y,rect.size.width,rect.size.height) ;
210
211 wxPaintEvent event;
212 event.SetTimestamp(0); // todo
d3929256
SC
213 event.SetEventObject(impl->GetWXPeer());
214 impl->GetWXPeer()->HandleWindowEvent(event);
c16b2153
SC
215
216 CGContextRestoreGState( context );
217 }
218
219}
220
03647350 221- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
c16b2153
SC
222{
223 [self handleTouchEvent:touches withEvent:event];
224}
225
03647350 226- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
c16b2153
SC
227{
228 [self handleTouchEvent:touches withEvent:event];
229}
230
03647350 231- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
c16b2153
SC
232{
233 [self handleTouchEvent:touches withEvent:event];
234}
235
03647350
VZ
236-(void)handleTouchEvent:(NSSet *)touches withEvent:(UIEvent *)event
237{
d3929256 238 wxWidgetIPhoneImpl* impl = (wxWidgetIPhoneImpl* ) wxWidgetImpl::FindFromWXWidget( self );
03647350 239 CGPoint clickLocation;
c16b2153
SC
240 UITouch *touch = [touches anyObject];
241 clickLocation = [touch locationInView:self];
242
243 wxMouseEvent wxevent(wxEVT_LEFT_DOWN);
244 SetupMouseEvent( wxevent , touches, event ) ;
245 wxevent.m_x = clickLocation.x;
246 wxevent.m_y = clickLocation.y;
d3929256
SC
247 wxevent.SetEventObject( impl->GetWXPeer() ) ;
248 wxevent.SetId( impl->GetWXPeer()->GetId() ) ;
249 impl->GetWXPeer()->HandleWindowEvent(wxevent);
c16b2153
SC
250}
251
d3929256 252*/
c16b2153 253
03647350 254void wxOSX_touchEvent(UIView* self, SEL _cmd, NSSet* touches, UIEvent *event )
c16b2153 255{
d3929256
SC
256 wxWidgetIPhoneImpl* impl = (wxWidgetIPhoneImpl* ) wxWidgetImpl::FindFromWXWidget( self );
257 if (impl == NULL)
258 return;
03647350 259
d3929256 260 impl->touchEvent(touches, event, self, _cmd);
c16b2153
SC
261}
262
d3929256 263BOOL wxOSX_becomeFirstResponder(UIView* self, SEL _cmd)
c16b2153 264{
d3929256
SC
265 wxWidgetIPhoneImpl* impl = (wxWidgetIPhoneImpl* ) wxWidgetImpl::FindFromWXWidget( self );
266 if (impl == NULL)
267 return NO;
03647350 268
d3929256 269 return impl->becomeFirstResponder(self, _cmd);
c16b2153
SC
270}
271
d3929256 272BOOL wxOSX_resignFirstResponder(UIView* self, SEL _cmd)
c16b2153 273{
d3929256
SC
274 wxWidgetIPhoneImpl* impl = (wxWidgetIPhoneImpl* ) wxWidgetImpl::FindFromWXWidget( self );
275 if (impl == NULL)
276 return NO;
03647350 277
d3929256 278 return impl->resignFirstResponder(self, _cmd);
c16b2153
SC
279}
280
d3929256 281void wxOSX_drawRect(UIView* self, SEL _cmd, CGRect rect)
c16b2153 282{
d3929256
SC
283 wxWidgetIPhoneImpl* impl = (wxWidgetIPhoneImpl* ) wxWidgetImpl::FindFromWXWidget( self );
284 if (impl == NULL)
285 return;
03647350 286
d3929256 287 return impl->drawRect(&rect, self, _cmd);
c16b2153
SC
288}
289
290
d3929256
SC
291void wxOSXIPhoneClassAddWXMethods(Class c)
292{
293 class_addMethod(c, @selector(touchesBegan:withEvent:), (IMP) wxOSX_touchEvent, "v@:@@");
294 class_addMethod(c, @selector(touchesMoved:withEvent:), (IMP) wxOSX_touchEvent, "v@:@@");
295 class_addMethod(c, @selector(touchesEnded:withEvent:), (IMP) wxOSX_touchEvent, "v@:@@");
296 class_addMethod(c, @selector(becomeFirstResponder), (IMP) wxOSX_becomeFirstResponder, "c@:" );
297 class_addMethod(c, @selector(resignFirstResponder), (IMP) wxOSX_resignFirstResponder, "c@:" );
298 class_addMethod(c, @selector(drawRect:), (IMP) wxOSX_drawRect, "v@:{_CGRect={_CGPoint=ff}{_CGSize=ff}}" );
299}
c16b2153 300
8d7ecd33
SC
301//
302// UIControl extensions
303//
304
305@interface UIControl (wxUIControlActionSupport)
306
307- (void) WX_touchUpInsideAction:(id)sender event:(UIEvent*)event;
308- (void) WX_valueChangedAction:(id)sender event:(UIEvent*)event;
309
310@end
311
312@implementation UIControl (wxUIControlActionSupport)
313
314- (void) WX_touchUpInsideAction:(id)sender event:(UIEvent*)event
315{
316 wxWidgetIPhoneImpl* impl = (wxWidgetIPhoneImpl* ) wxWidgetImpl::FindFromWXWidget( self );
317 if (impl != NULL)
318 impl->controlAction(sender, UIControlEventTouchUpInside, event);
319}
320
321- (void) WX_valueChangedAction:(id)sender event:(UIEvent*)event
322{
323 wxWidgetIPhoneImpl* impl = (wxWidgetIPhoneImpl* ) wxWidgetImpl::FindFromWXWidget( self );
324 if (impl != NULL)
325 impl->controlAction(sender, UIControlEventValueChanged, event);
326}
327
328@end
c16b2153
SC
329
330IMPLEMENT_DYNAMIC_CLASS( wxWidgetIPhoneImpl , wxWidgetImpl )
331
415f4a01
SC
332wxWidgetIPhoneImpl::wxWidgetIPhoneImpl( wxWindowMac* peer , WXWidget w, bool isRootControl, bool isUserPane ) :
333 wxWidgetImpl( peer, isRootControl, isUserPane ), m_osxView(w)
c16b2153
SC
334{
335}
336
03647350 337wxWidgetIPhoneImpl::wxWidgetIPhoneImpl()
c16b2153
SC
338{
339}
340
341void wxWidgetIPhoneImpl::Init()
342{
343 m_osxView = NULL;
344}
345
346wxWidgetIPhoneImpl::~wxWidgetIPhoneImpl()
347{
d3929256
SC
348 RemoveAssociations( this );
349
350 if ( !IsRootControl() )
351 {
352 UIView *sv = [m_osxView superview];
353 if ( sv != nil )
354 [m_osxView removeFromSuperview];
355 }
c16b2153
SC
356 [m_osxView release];
357}
03647350
VZ
358
359bool wxWidgetIPhoneImpl::IsVisible() const
c16b2153 360{
8996460c
SC
361 UIView* view = m_osxView;
362 while ( view != nil && [view isHidden] == NO )
363 {
364 view = [view superview];
8996460c
SC
365 }
366 return view == nil;
c16b2153
SC
367}
368
369void wxWidgetIPhoneImpl::SetVisibility( bool visible )
370{
371 [m_osxView setHidden:(visible ? NO:YES)];
372}
373
374void wxWidgetIPhoneImpl::Raise()
375{
376 [[m_osxView superview] bringSubviewToFront:m_osxView];
377}
03647350 378
c16b2153
SC
379void wxWidgetIPhoneImpl::Lower()
380{
381 [[m_osxView superview] sendSubviewToBack:m_osxView];
382}
383
384void wxWidgetIPhoneImpl::ScrollRect( const wxRect *rect, int dx, int dy )
385{
d3929256 386 SetNeedsDisplay() ;
c16b2153
SC
387}
388
389void wxWidgetIPhoneImpl::Move(int x, int y, int width, int height)
390{
391 CGRect r = CGRectMake( x, y, width, height) ;
392 [m_osxView setFrame:r];
393}
394
f18b5ee7
SC
395
396
c16b2153
SC
397void wxWidgetIPhoneImpl::GetPosition( int &x, int &y ) const
398{
399 CGRect r = [m_osxView frame];
400 x = r.origin.x;
401 y = r.origin.y;
402}
403
404void wxWidgetIPhoneImpl::GetSize( int &width, int &height ) const
405{
406 CGRect rect = [m_osxView frame];
407 width = rect.size.width;
408 height = rect.size.height;
409}
410
411void wxWidgetIPhoneImpl::GetContentArea( int&left, int &top, int &width, int &height ) const
412{
413 left = top = 0;
65536c92
SC
414 CGRect rect = [m_osxView bounds];
415 width = rect.size.width;
416 height = rect.size.height;
c16b2153
SC
417}
418
419void wxWidgetIPhoneImpl::SetNeedsDisplay( const wxRect* where )
420{
421 if ( where )
422 {
423 CGRect r = CGRectMake( where->x, where->y, where->width, where->height) ;
424 [m_osxView setNeedsDisplayInRect:r];
425 }
426 else
427 [m_osxView setNeedsDisplay];
428}
429
430bool wxWidgetIPhoneImpl::GetNeedsDisplay() const
431{
432 return false;
433// return [m_osxView needsDisplay];
434}
435
436bool wxWidgetIPhoneImpl::CanFocus() const
437{
438 return [m_osxView canBecomeFirstResponder] == YES;
439 // ? return [m_osxView isUserInteractionEnabled] == YES;
440}
441
442bool wxWidgetIPhoneImpl::HasFocus() const
443{
444 return [m_osxView isFirstResponder] == YES;
445}
446
03647350 447bool wxWidgetIPhoneImpl::SetFocus()
c16b2153
SC
448{
449// [m_osxView makeKeyWindow] ;
450// TODO
451 return false;
452}
453
454
455void wxWidgetIPhoneImpl::RemoveFromParent()
456{
457 [m_osxView removeFromSuperview];
458}
459
460void wxWidgetIPhoneImpl::Embed( wxWidgetImpl *parent )
461{
462 UIView* container = parent->GetWXWidget() ;
463 wxASSERT_MSG( container != NULL , wxT("No valid mac container control") ) ;
464 [container addSubview:m_osxView];
465}
466
467void wxWidgetImpl::Convert( wxPoint *pt , wxWidgetImpl *from , wxWidgetImpl *to )
468{
469 CGPoint p = CGPointMake( pt->x , pt->y );
03647350 470 p = [from->GetWXWidget() convertPoint:p toView:to->GetWXWidget() ];
c16b2153
SC
471 pt->x = (int)p.x;
472 pt->y = (int)p.y;
473}
474
475void wxWidgetIPhoneImpl::SetBackgroundColour( const wxColour &col )
476{
de7cb655 477 m_osxView.backgroundColor = [[UIColor alloc] initWithCGColor:col.GetCGColor()];
c16b2153
SC
478}
479
8d7ecd33
SC
480bool wxWidgetIPhoneImpl::SetBackgroundStyle(wxBackgroundStyle style)
481{
6c894d4e
SC
482 if ( style == wxBG_STYLE_PAINT )
483 [m_osxView setOpaque: YES ];
484 else
485 {
486 [m_osxView setOpaque: NO ];
487 m_osxView.backgroundColor = [UIColor clearColor];
488 }
489 return true;
8d7ecd33
SC
490}
491
d3929256
SC
492void wxWidgetIPhoneImpl::SetLabel(const wxString& title, wxFontEncoding encoding)
493{
494 if ( [m_osxView respondsToSelector:@selector(setTitle:forState:) ] )
495 {
496 wxCFStringRef cf( title , encoding );
497 [m_osxView setTitle:cf.AsNSString() forState:UIControlStateNormal ];
498 }
933cebdd 499#if 0 // nonpublic API problems
d3929256
SC
500 else if ( [m_osxView respondsToSelector:@selector(setStringValue:) ] )
501 {
502 wxCFStringRef cf( title , encoding );
503 [m_osxView setStringValue:cf.AsNSString()];
504 }
933cebdd 505#endif
d3929256
SC
506}
507
508
509void wxWidgetIPhoneImpl::SetCursor( const wxCursor & cursor )
510{
511}
512
513void wxWidgetIPhoneImpl::CaptureMouse()
514{
515}
516
517void wxWidgetIPhoneImpl::ReleaseMouse()
518{
519}
520
521wxInt32 wxWidgetIPhoneImpl::GetValue() const
522{
523}
524
525void wxWidgetIPhoneImpl::SetValue( wxInt32 v )
526{
527}
528
529void wxWidgetIPhoneImpl::SetBitmap( const wxBitmap& bitmap )
530{
531}
532
9e55f38d
SC
533wxBitmap wxWidgetIPhoneImpl::GetBitmap() const
534{
535 wxBitmap bmp;
536 return bmp;
537}
538
539void wxWidgetIPhoneImpl::SetBitmapPosition( wxDirection dir )
540{
541}
542
d3929256
SC
543void wxWidgetIPhoneImpl::SetupTabs( const wxNotebook &notebook )
544{
545}
546
547void wxWidgetIPhoneImpl::GetBestRect( wxRect *r ) const
548{
549 r->x = r->y = r->width = r->height = 0;
550
551 if ( [m_osxView respondsToSelector:@selector(sizeToFit)] )
552 {
553 CGRect former = [m_osxView frame];
554 [m_osxView sizeToFit];
555 CGRect best = [m_osxView frame];
556 [m_osxView setFrame:former];
557 r->width = best.size.width;
558 r->height = best.size.height;
559 }
560}
561
562bool wxWidgetIPhoneImpl::IsEnabled() const
563{
9d294e51
SC
564 UIView* targetView = m_osxView;
565 // TODO add support for documentViews
566
567 if ( [targetView respondsToSelector:@selector(isEnabled) ] )
568 return [targetView isEnabled];
569
570 return true;
d3929256
SC
571}
572
573void wxWidgetIPhoneImpl::Enable( bool enable )
574{
9d294e51
SC
575 UIView* targetView = m_osxView;
576 // TODO add support for documentViews
577
578 if ( [targetView respondsToSelector:@selector(setEnabled:) ] )
579 [targetView setEnabled:enable];
d3929256
SC
580}
581
582void wxWidgetIPhoneImpl::SetMinimum( wxInt32 v )
583{
584}
585
586void wxWidgetIPhoneImpl::SetMaximum( wxInt32 v )
587{
588}
589
590wxInt32 wxWidgetIPhoneImpl::GetMinimum() const
591{
9d294e51 592 return 0;
d3929256
SC
593}
594
595wxInt32 wxWidgetIPhoneImpl::GetMaximum() const
596{
9d294e51 597 return 0;
d3929256
SC
598}
599
600void wxWidgetIPhoneImpl::PulseGauge()
601{
602}
603
604void wxWidgetIPhoneImpl::SetScrollThumb( wxInt32 value, wxInt32 thumbSize )
605{
606}
607
03647350 608void wxWidgetIPhoneImpl::SetControlSize( wxWindowVariant variant )
d3929256
SC
609{
610}
611
1829d71c 612double wxWidgetIPhoneImpl::GetContentScaleFactor() const
f18b5ee7 613{
f27479e6
SC
614 if ( [m_osxView respondsToSelector:@selector(contentScaleFactor) ])
615 return [m_osxView contentScaleFactor];
616 else
617 return 1.0;
f18b5ee7
SC
618}
619
d3929256
SC
620void wxWidgetIPhoneImpl::SetFont( const wxFont & font , const wxColour& foreground , long windowStyle, bool ignoreBlack )
621{
622}
623
624void wxWidgetIPhoneImpl::InstallEventHandler( WXWidget control )
625{
626 WXWidget c = control ? control : (WXWidget) m_osxView;
627 wxWidgetImpl::Associate( c, this ) ;
8d7ecd33
SC
628
629 if ([c isKindOfClass:[UIControl class] ])
d3929256
SC
630 {
631 UIControl* cc = (UIControl*) c;
8d7ecd33
SC
632 [cc addTarget:cc action:@selector(WX_touchUpInsideAction:event:) forControlEvents:UIControlEventTouchUpInside];
633 [cc addTarget:cc action:@selector(WX_valueChangedAction:event:) forControlEvents:UIControlEventValueChanged];
d3929256
SC
634 }
635}
636
637void wxWidgetIPhoneImpl::DoNotifyFocusEvent(bool receivedFocus, wxWidgetImpl* otherWindow)
638{
639 wxWindow* thisWindow = GetWXPeer();
640 if ( thisWindow->MacGetTopLevelWindow() && NeedsFocusRect() )
641 {
642 thisWindow->MacInvalidateBorders();
643 }
644
645 if ( receivedFocus )
646 {
9a83f860 647 wxLogTrace(wxT("Focus"), wxT("focus set(%p)"), static_cast<void*>(thisWindow));
d3929256
SC
648 wxChildFocusEvent eventFocus((wxWindow*)thisWindow);
649 thisWindow->HandleWindowEvent(eventFocus);
650
651#if wxUSE_CARET
652 if ( thisWindow->GetCaret() )
653 thisWindow->GetCaret()->OnSetFocus();
654#endif
655
656 wxFocusEvent event(wxEVT_SET_FOCUS, thisWindow->GetId());
657 event.SetEventObject(thisWindow);
658 if (otherWindow)
659 event.SetWindow(otherWindow->GetWXPeer());
660 thisWindow->HandleWindowEvent(event) ;
661 }
662 else // !receivedFocuss
663 {
664#if wxUSE_CARET
665 if ( thisWindow->GetCaret() )
666 thisWindow->GetCaret()->OnKillFocus();
667#endif
668
9a83f860 669 wxLogTrace(wxT("Focus"), wxT("focus lost(%p)"), static_cast<void*>(thisWindow));
03647350 670
d3929256
SC
671 wxFocusEvent event( wxEVT_KILL_FOCUS, thisWindow->GetId());
672 event.SetEventObject(thisWindow);
673 if (otherWindow)
674 event.SetWindow(otherWindow->GetWXPeer());
675 thisWindow->HandleWindowEvent(event) ;
676 }
677}
678
679typedef void (*wxOSX_DrawRectHandlerPtr)(UIView* self, SEL _cmd, CGRect rect);
680typedef BOOL (*wxOSX_FocusHandlerPtr)(UIView* self, SEL _cmd);
681
682bool wxWidgetIPhoneImpl::becomeFirstResponder(WXWidget slf, void *_cmd)
683{
684 wxOSX_FocusHandlerPtr superimpl = (wxOSX_FocusHandlerPtr) [[slf superclass] instanceMethodForSelector:(SEL)_cmd];
685 // get the current focus before running becomeFirstResponder
03647350 686 UIView* otherView = FindFocus();
d3929256
SC
687 wxWidgetImpl* otherWindow = FindFromWXWidget(otherView);
688 BOOL r = superimpl(slf, (SEL)_cmd);
689 if ( r )
690 {
691 DoNotifyFocusEvent( true, otherWindow );
692 }
693 return r;
694}
695
696bool wxWidgetIPhoneImpl::resignFirstResponder(WXWidget slf, void *_cmd)
697{
698 wxOSX_FocusHandlerPtr superimpl = (wxOSX_FocusHandlerPtr) [[slf superclass] instanceMethodForSelector:(SEL)_cmd];
699 BOOL r = superimpl(slf, (SEL)_cmd);
700 // get the current focus after running resignFirstResponder
03647350 701 UIView* otherView = FindFocus();
d3929256
SC
702 wxWidgetImpl* otherWindow = FindFromWXWidget(otherView);
703 // NSTextViews have an editor as true responder, therefore the might get the
704 // resign notification if their editor takes over, don't trigger any event hen
705 if ( r && otherWindow != this)
706 {
707 DoNotifyFocusEvent( false, otherWindow );
708 }
709 return r;
710}
711
712void wxWidgetIPhoneImpl::drawRect(CGRect* rect, WXWidget slf, void *WXUNUSED(_cmd))
713{
714 CGContextRef context = (CGContextRef) UIGraphicsGetCurrentContext();
715 CGContextSaveGState( context );
716 // draw background
6c894d4e 717/*
d3929256
SC
718 CGContextSetFillColorWithColor( context, GetWXPeer()->GetBackgroundColour().GetCGColor());
719 CGContextFillRect(context, *rect );
6c894d4e 720*/
d3929256
SC
721 GetWXPeer()->MacSetCGContextRef( context );
722
03647350 723 GetWXPeer()->GetUpdateRegion() =
d3929256
SC
724 wxRegion(rect->origin.x,rect->origin.y,rect->size.width,rect->size.height) ;
725
726 wxRegion updateRgn( wxFromNSRect( slf, *rect ) );
727
728 wxWindow* wxpeer = GetWXPeer();
729 wxpeer->GetUpdateRegion() = updateRgn;
730 wxpeer->MacSetCGContextRef( context );
03647350 731
d3929256 732 bool handled = wxpeer->MacDoRedraw( 0 );
03647350 733
d3929256
SC
734 CGContextRestoreGState( context );
735
736 CGContextSaveGState( context );
737 if ( !handled )
738 {
739 // call super
740 SEL _cmd = @selector(drawRect:);
741 wxOSX_DrawRectHandlerPtr superimpl = (wxOSX_DrawRectHandlerPtr) [[slf superclass] instanceMethodForSelector:_cmd];
8996460c
SC
742 if ( superimpl != wxOSX_drawRect )
743 {
744 superimpl(slf, _cmd, *rect);
745 CGContextRestoreGState( context );
746 CGContextSaveGState( context );
747 }
d3929256
SC
748 }
749 wxpeer->MacPaintChildrenBorders();
750 wxpeer->MacSetCGContextRef( NULL );
751
752 CGContextRestoreGState( context );
753}
754
755void wxWidgetIPhoneImpl::touchEvent(NSSet* touches, UIEvent *event, WXWidget slf, void *WXUNUSED(_cmd))
756{
de7cb655
SC
757 bool inRecursion = false;
758 if ( inRecursion )
759 return;
760
d3929256 761 UITouch *touch = [touches anyObject];
de7cb655
SC
762 CGPoint clickLocation;
763 if ( [touch view] != slf && IsRootControl() )
764 {
765 NSLog(@"self is %@ and touch view is %@",slf,[touch view]);
766 inRecursion = true;
767 inRecursion = false;
768 }
769 else
770 {
771 clickLocation = [touch locationInView:slf];
772 wxPoint pt = wxFromNSPoint( m_osxView, clickLocation );
773
774 wxMouseEvent wxevent(wxEVT_LEFT_DOWN);
775 SetupMouseEvent( wxevent , touches, event ) ;
776 wxevent.m_x = pt.x;
777 wxevent.m_y = pt.y;
778 wxevent.SetEventObject( GetWXPeer() ) ;
779 //?wxevent.SetId( GetWXPeer()->GetId() ) ;
780
781 GetWXPeer()->HandleWindowEvent(wxevent);
782 }
d3929256
SC
783}
784
8d7ecd33 785void wxWidgetIPhoneImpl::controlAction(void* sender, wxUint32 controlEvent, WX_UIEvent rawEvent)
d3929256 786{
8d7ecd33
SC
787 if ( controlEvent == UIControlEventTouchUpInside )
788 GetWXPeer()->OSXHandleClicked(0);
789}
790
791void wxWidgetIPhoneImpl::controlTextDidChange()
792{
793 wxTextCtrl* wxpeer = wxDynamicCast((wxWindow*)GetWXPeer(),wxTextCtrl);
794 if ( wxpeer )
795 {
ce7fe42e 796 wxCommandEvent event(wxEVT_TEXT, wxpeer->GetId());
8d7ecd33
SC
797 event.SetEventObject( wxpeer );
798 event.SetString( wxpeer->GetValue() );
799 wxpeer->HandleWindowEvent( event );
800 }
d3929256
SC
801}
802
c16b2153
SC
803//
804// Factory methods
805//
806
03647350 807wxWidgetImpl* wxWidgetImpl::CreateUserPane( wxWindowMac* wxpeer, wxWindowMac* WXUNUSED(parent),
d3929256
SC
808 wxWindowID WXUNUSED(id), const wxPoint& pos, const wxSize& size,
809 long WXUNUSED(style), long WXUNUSED(extraStyle))
c16b2153
SC
810{
811 UIView* sv = (wxpeer->GetParent()->GetHandle() );
03647350 812
c16b2153
SC
813 CGRect r = CGRectMake( pos.x, pos.y, size.x, size.y) ;
814 // Rect bounds = wxMacGetBoundsForControl( wxpeer, pos , size ) ;
815 wxUIView* v = [[wxUIView alloc] initWithFrame:r];
816 sv.clipsToBounds = YES;
817 sv.contentMode = UIViewContentModeRedraw;
818 sv.clearsContextBeforeDrawing = NO;
d15694e8 819 wxWidgetIPhoneImpl* c = new wxWidgetIPhoneImpl( wxpeer, v, false, true );
c16b2153
SC
820 return c;
821}
822