1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/osx/cocoa/textctrl.mm
4 // Author: Stefan Csomor
5 // Modified by: Ryan Norton (MLTE GetLineLength and GetLineText)
7 // RCS-ID: $Id: textctrl.cpp 54820 2008-07-29 20:04:11Z SC $
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
16 #include "wx/textctrl.h"
23 #include "wx/button.h"
25 #include "wx/settings.h"
26 #include "wx/msgdlg.h"
27 #include "wx/toplevel.h"
31 #include <sys/types.h>
37 #if wxUSE_STD_IOSTREAM
45 #include "wx/filefn.h"
46 #include "wx/sysopt.h"
47 #include "wx/thread.h"
49 #include "wx/osx/private.h"
50 #include "wx/osx/cocoa/private/textimpl.h"
52 @interface NSView(EditableView)
54 - (void)setEditable:(BOOL)flag;
60 wxMacEditHelper( NSView* textView )
62 m_textView = textView;
66 m_formerState = [textView isEditable];
67 [textView setEditable:YES];
74 [m_textView setEditable:m_formerState];
82 @implementation wxNSSecureTextField
86 static BOOL initialized = NO;
90 wxOSXCocoaClassAddWXMethods( self );
94 - (void)controlTextDidChange:(NSNotification *)aNotification
96 wxUnusedVar(aNotification);
97 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( self );
99 impl->controlTextDidChange();
102 - (void)controlTextDidEndEditing:(NSNotification *)aNotification
104 wxUnusedVar(aNotification);
105 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( self );
108 impl->DoNotifyFocusEvent( false, NULL );
114 @interface wxNSTextScrollView : NSScrollView
119 @implementation wxNSTextScrollView
123 static BOOL initialized = NO;
127 wxOSXCocoaClassAddWXMethods( self );
133 @implementation wxNSTextFieldEditor
135 - (void) keyDown:(NSEvent*) event
137 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( (WXWidget) [self delegate] );
138 lastKeyDownEvent = event;
139 if ( impl == NULL || !impl->DoHandleKeyEvent(event) )
140 [super keyDown:event];
141 lastKeyDownEvent = nil;
144 - (void) keyUp:(NSEvent*) event
146 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( (WXWidget) [self delegate] );
147 if ( impl == NULL || !impl->DoHandleKeyEvent(event) )
151 - (void) flagsChanged:(NSEvent*) event
153 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( (WXWidget) [self delegate] );
154 if ( impl == NULL || !impl->DoHandleKeyEvent(event) )
155 [super flagsChanged:event];
158 - (BOOL) performKeyEquivalent:(NSEvent*) event
160 BOOL retval = [super performKeyEquivalent:event];
164 - (void) insertText:(id) str
166 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( (WXWidget) [self delegate] );
167 if ( impl == NULL || lastKeyDownEvent==nil || !impl->DoHandleCharEvent(lastKeyDownEvent, str) )
169 [super insertText:str];
175 @implementation wxNSTextView
179 static BOOL initialized = NO;
183 wxOSXCocoaClassAddWXMethods( self );
187 - (void)textDidChange:(NSNotification *)aNotification
189 wxUnusedVar(aNotification);
190 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( self );
192 impl->controlTextDidChange();
197 @implementation wxNSTextField
201 static BOOL initialized = NO;
205 wxOSXCocoaClassAddWXMethods( self );
209 - (id) initWithFrame:(NSRect) frame
211 self = [super initWithFrame:frame];
218 [fieldEditor release];
222 - (void) setFieldEditor:(wxNSTextFieldEditor*) editor
224 fieldEditor = editor;
227 - (wxNSTextFieldEditor*) fieldEditor
232 - (void) setEnabled:(BOOL) flag
234 [super setEnabled: flag];
236 if (![self drawsBackground]) {
237 // Static text is drawn incorrectly when disabled.
238 // For an explanation, see
239 // http://www.cocoabuilder.com/archive/message/cocoa/2006/7/21/168028
241 [self setTextColor: [NSColor controlTextColor]];
243 [self setTextColor: [NSColor secondarySelectedControlColor]];
248 - (void)controlTextDidChange:(NSNotification *)aNotification
250 wxUnusedVar(aNotification);
251 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( self );
253 impl->controlTextDidChange();
256 typedef BOOL (*wxOSX_insertNewlineHandlerPtr)(NSView* self, SEL _cmd, NSControl *control, NSTextView* textView, SEL commandSelector);
258 - (BOOL)control:(NSControl*)control textView:(NSTextView*)textView doCommandBySelector:(SEL)commandSelector
260 wxUnusedVar(textView);
261 wxUnusedVar(control);
262 if (commandSelector == @selector(insertNewline:))
264 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( self );
267 wxWindow* wxpeer = (wxWindow*) impl->GetWXPeer();
268 if ( wxpeer && wxpeer->GetWindowStyle() & wxTE_PROCESS_ENTER )
270 wxCommandEvent event(wxEVT_COMMAND_TEXT_ENTER, wxpeer->GetId());
271 event.SetEventObject( wxpeer );
272 event.SetString( static_cast<wxTextCtrl*>(wxpeer)->GetValue() );
273 wxpeer->HandleWindowEvent( event );
281 - (void)controlTextDidEndEditing:(NSNotification *)aNotification
283 wxUnusedVar(aNotification);
284 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( self );
287 impl->DoNotifyFocusEvent( false, NULL );
292 // wxNSTextViewControl
294 wxNSTextViewControl::wxNSTextViewControl( wxTextCtrl *wxPeer, WXWidget w )
295 : wxWidgetCocoaImpl(wxPeer, w),
296 wxTextWidgetImpl(wxPeer)
298 wxNSTextScrollView* sv = (wxNSTextScrollView*) w;
301 [m_scrollView setHasVerticalScroller:YES];
302 [m_scrollView setHasHorizontalScroller:NO];
303 [m_scrollView setAutoresizingMask:NSViewWidthSizable | NSViewHeightSizable];
304 NSSize contentSize = [m_scrollView contentSize];
306 wxNSTextView* tv = [[wxNSTextView alloc] initWithFrame: NSMakeRect(0, 0,
307 contentSize.width, contentSize.height)];
309 [tv setVerticallyResizable:YES];
310 [tv setHorizontallyResizable:NO];
311 [tv setAutoresizingMask:NSViewWidthSizable];
313 [m_scrollView setDocumentView: tv];
315 [tv setDelegate: tv];
317 InstallEventHandler(tv);
320 wxNSTextViewControl::~wxNSTextViewControl()
323 [m_textView setDelegate: nil];
326 bool wxNSTextViewControl::CanFocus() const
328 // since this doesn't work (return false), we hardcode
330 // return [m_textView canBecomeKeyView];
334 wxString wxNSTextViewControl::GetStringValue() const
338 wxString result = wxCFStringRef::AsString([m_textView string], m_wxPeer->GetFont().GetEncoding());
339 wxMacConvertNewlines13To10( &result ) ;
342 return wxEmptyString;
344 void wxNSTextViewControl::SetStringValue( const wxString &str)
347 wxMacConvertNewlines10To13( &st );
348 wxMacEditHelper helper(m_textView);
351 [m_textView setString: wxCFStringRef( st , m_wxPeer->GetFont().GetEncoding() ).AsNSString()];
354 void wxNSTextViewControl::Copy()
357 [m_textView copy:nil];
361 void wxNSTextViewControl::Cut()
364 [m_textView cut:nil];
367 void wxNSTextViewControl::Paste()
370 [m_textView paste:nil];
373 bool wxNSTextViewControl::CanPaste() const
378 void wxNSTextViewControl::SetEditable(bool editable)
381 [m_textView setEditable: editable];
384 void wxNSTextViewControl::GetSelection( long* from, long* to) const
388 NSRange range = [m_textView selectedRange];
389 *from = range.location;
390 *to = range.location + range.length;
394 void wxNSTextViewControl::SetSelection( long from , long to )
396 long textLength = [[m_textView string] length];
397 if ((from == -1) && (to == -1))
404 from = wxMin(textLength,wxMax(from,0)) ;
408 to = wxMax(0,wxMin(textLength,to)) ;
411 NSRange selrange = NSMakeRange(from, to-from);
412 [m_textView setSelectedRange:selrange];
413 [m_textView scrollRangeToVisible:selrange];
416 void wxNSTextViewControl::WriteText(const wxString& str)
419 wxMacConvertNewlines10To13( &st );
420 wxMacEditHelper helper(m_textView);
421 NSEvent* formerEvent = m_lastKeyDownEvent;
422 m_lastKeyDownEvent = nil;
423 [m_textView insertText:wxCFStringRef( st , m_wxPeer->GetFont().GetEncoding() ).AsNSString()];
424 m_lastKeyDownEvent = formerEvent;
427 void wxNSTextViewControl::SetFont( const wxFont & font , const wxColour& WXUNUSED(foreground) , long WXUNUSED(windowStyle), bool WXUNUSED(ignoreBlack) )
429 if ([m_textView respondsToSelector:@selector(setFont:)])
430 [m_textView setFont: font.OSXGetNSFont()];
433 bool wxNSTextViewControl::GetStyle(long position, wxTextAttr& style)
435 if (m_textView && position >=0)
438 NSColor* bgcolor = NULL;
439 NSColor* fgcolor = NULL;
440 // NOTE: It appears that other platforms accept GetStyle with the position == length
441 // but that NSTextStorage does not accept length as a valid position.
442 // Therefore we return the default control style in that case.
443 if (position < [[m_textView string] length])
445 NSTextStorage* storage = [m_textView textStorage];
446 font = [[storage attribute:NSFontAttributeName atIndex:position effectiveRange:NULL] autorelease];
447 bgcolor = [[storage attribute:NSBackgroundColorAttributeName atIndex:position effectiveRange:NULL] autorelease];
448 fgcolor = [[storage attribute:NSForegroundColorAttributeName atIndex:position effectiveRange:NULL] autorelease];
452 NSDictionary* attrs = [m_textView typingAttributes];
453 font = [[attrs objectForKey:NSFontAttributeName] autorelease];
454 bgcolor = [[attrs objectForKey:NSBackgroundColorAttributeName] autorelease];
455 fgcolor = [[attrs objectForKey:NSForegroundColorAttributeName] autorelease];
459 style.SetFont(wxFont(font));
462 style.SetBackgroundColour(wxColour(bgcolor));
465 style.SetTextColour(wxColour(fgcolor));
472 void wxNSTextViewControl::SetStyle(long start,
474 const wxTextAttr& style)
477 NSRange range = NSMakeRange(start, end-start);
478 if (start == -1 && end == -1)
479 range = [m_textView selectedRange];
481 NSTextStorage* storage = [m_textView textStorage];
483 wxFont font = style.GetFont();
484 if (style.HasFont() && font.IsOk())
485 [storage addAttribute:NSFontAttributeName value:font.OSXGetNSFont() range:range];
487 wxColour bgcolor = style.GetBackgroundColour();
488 if (style.HasBackgroundColour() && bgcolor.IsOk())
489 [storage addAttribute:NSBackgroundColorAttributeName value:bgcolor.OSXGetNSColor() range:range];
491 wxColour fgcolor = style.GetTextColour();
492 if (style.HasTextColour() && fgcolor.IsOk())
493 [storage addAttribute:NSForegroundColorAttributeName value:fgcolor.OSXGetNSColor() range:range];
497 void wxNSTextViewControl::CheckSpelling(bool check)
500 [m_textView setContinuousSpellCheckingEnabled: check];
503 wxSize wxNSTextViewControl::GetBestSize() const
505 if (m_textView && [m_textView layoutManager])
507 NSRect rect = [[m_textView layoutManager] usedRectForTextContainer: [m_textView textContainer]];
508 return wxSize((int)(rect.size.width + [m_textView textContainerInset].width),
509 (int)(rect.size.height + [m_textView textContainerInset].height));
514 // wxNSTextFieldControl
516 wxNSTextFieldControl::wxNSTextFieldControl( wxTextCtrl *text, WXWidget w )
517 : wxWidgetCocoaImpl(text, w),
518 wxTextWidgetImpl(text)
523 wxNSTextFieldControl::wxNSTextFieldControl(wxWindow *wxPeer,
526 : wxWidgetCocoaImpl(wxPeer, w),
527 wxTextWidgetImpl(entry)
532 void wxNSTextFieldControl::Init(WXWidget w)
534 NSTextField wxOSX_10_6_AND_LATER(<NSTextFieldDelegate>) *tf = (NSTextField*) w;
536 [m_textField setDelegate: tf];
537 m_selStart = m_selEnd = 0;
538 m_hasEditor = [w isKindOfClass:[NSTextField class]];
541 wxNSTextFieldControl::~wxNSTextFieldControl()
544 [m_textField setDelegate: nil];
547 wxString wxNSTextFieldControl::GetStringValue() const
549 return wxCFStringRef::AsString([m_textField stringValue], m_wxPeer->GetFont().GetEncoding());
552 void wxNSTextFieldControl::SetStringValue( const wxString &str)
554 wxMacEditHelper helper(m_textField);
555 [m_textField setStringValue: wxCFStringRef( str , m_wxPeer->GetFont().GetEncoding() ).AsNSString()];
558 void wxNSTextFieldControl::Copy()
560 NSText* editor = [m_textField currentEditor];
567 void wxNSTextFieldControl::Cut()
569 NSText* editor = [m_textField currentEditor];
576 void wxNSTextFieldControl::Paste()
578 NSText* editor = [m_textField currentEditor];
585 bool wxNSTextFieldControl::CanPaste() const
590 void wxNSTextFieldControl::SetEditable(bool editable)
592 [m_textField setEditable:editable];
595 void wxNSTextFieldControl::GetSelection( long* from, long* to) const
597 NSText* editor = [m_textField currentEditor];
600 NSRange range = [editor selectedRange];
601 *from = range.location;
602 *to = range.location + range.length;
611 void wxNSTextFieldControl::SetSelection( long from , long to )
613 long textLength = [[m_textField stringValue] length];
614 if ((from == -1) && (to == -1))
621 from = wxMin(textLength,wxMax(from,0)) ;
625 to = wxMax(0,wxMin(textLength,to)) ;
628 NSText* editor = [m_textField currentEditor];
631 [editor setSelectedRange:NSMakeRange(from, to-from)];
640 void wxNSTextFieldControl::WriteText(const wxString& str)
642 NSEvent* formerEvent = m_lastKeyDownEvent;
643 m_lastKeyDownEvent = nil;
644 NSText* editor = [m_textField currentEditor];
647 wxMacEditHelper helper(m_textField);
648 [editor insertText:wxCFStringRef( str , m_wxPeer->GetFont().GetEncoding() ).AsNSString()];
652 wxString val = GetStringValue() ;
654 GetSelection( &start , &end ) ;
655 val.Remove( start , end - start ) ;
656 val.insert( start , str ) ;
657 SetStringValue( val ) ;
658 SetSelection( start + str.length() , start + str.length() ) ;
660 m_lastKeyDownEvent = formerEvent;
663 void wxNSTextFieldControl::controlAction(WXWidget WXUNUSED(slf),
664 void* WXUNUSED(_cmd), void *WXUNUSED(sender))
666 wxWindow* wxpeer = (wxWindow*) GetWXPeer();
667 if ( wxpeer && (wxpeer->GetWindowStyle() & wxTE_PROCESS_ENTER) )
669 wxCommandEvent event(wxEVT_COMMAND_TEXT_ENTER, wxpeer->GetId());
670 event.SetEventObject( wxpeer );
671 event.SetString( GetTextEntry()->GetValue() );
672 wxpeer->HandleWindowEvent( event );
680 wxWidgetImplType* wxWidgetImpl::CreateTextControl( wxTextCtrl* wxpeer,
681 wxWindowMac* WXUNUSED(parent),
682 wxWindowID WXUNUSED(id),
683 const wxString& WXUNUSED(str),
687 long WXUNUSED(extraStyle))
689 NSRect r = wxOSXGetFrameForControl( wxpeer, pos , size ) ;
690 wxWidgetCocoaImpl* c = NULL;
692 if ( style & wxTE_MULTILINE || style & wxTE_RICH || style & wxTE_RICH2 )
694 wxNSTextScrollView* v = nil;
695 v = [[wxNSTextScrollView alloc] initWithFrame:r];
696 c = new wxNSTextViewControl( wxpeer, v );
700 NSTextField* v = nil;
701 if ( style & wxTE_PASSWORD )
702 v = [[wxNSSecureTextField alloc] initWithFrame:r];
704 v = [[wxNSTextField alloc] initWithFrame:r];
706 if ( style & wxNO_BORDER )
708 // FIXME: How can we remove the native control's border?
709 // setBordered is separate from the text ctrl's border.
715 c = new wxNSTextFieldControl( wxpeer, wxpeer, v );
722 #endif // wxUSE_TEXTCTRL