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