]> git.saurik.com Git - wxWidgets.git/blame - src/osx/cocoa/textctrl.mm
Remove duplicate wxEVT_COMMAND_TEXT_ENTER generation from wxOSX/Cocoa.
[wxWidgets.git] / src / osx / cocoa / textctrl.mm
CommitLineData
dbeddfb9
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: src/osx/cocoa/textctrl.mm
3// Purpose: wxTextCtrl
4// Author: Stefan Csomor
5// Modified by: Ryan Norton (MLTE GetLineLength and GetLineText)
6// Created: 1998-01-01
7// RCS-ID: $Id: textctrl.cpp 54820 2008-07-29 20:04:11Z SC $
8// Copyright: (c) Stefan Csomor
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#include "wx/wxprec.h"
13
14#if wxUSE_TEXTCTRL
15
16#include "wx/textctrl.h"
17
18#ifndef WX_PRECOMP
19 #include "wx/intl.h"
20 #include "wx/app.h"
21 #include "wx/utils.h"
22 #include "wx/dc.h"
23 #include "wx/button.h"
24 #include "wx/menu.h"
25 #include "wx/settings.h"
26 #include "wx/msgdlg.h"
27 #include "wx/toplevel.h"
28#endif
29
30#ifdef __DARWIN__
31 #include <sys/types.h>
32 #include <sys/stat.h>
33#else
34 #include <stat.h>
35#endif
36
37#if wxUSE_STD_IOSTREAM
38 #if wxUSE_IOSTREAMH
39 #include <fstream.h>
40 #else
41 #include <fstream>
42 #endif
43#endif
44
45#include "wx/filefn.h"
46#include "wx/sysopt.h"
47#include "wx/thread.h"
48
49#include "wx/osx/private.h"
1e181c7a 50#include "wx/osx/cocoa/private/textimpl.h"
dbeddfb9 51
03647350 52@interface NSView(EditableView)
5f65ba36
SC
53- (BOOL)isEditable;
54- (void)setEditable:(BOOL)flag;
55@end
56
57class wxMacEditHelper
58{
59public :
60 wxMacEditHelper( NSView* textView )
61 {
63bcc669
SC
62 m_textView = textView;
63 m_formerState = YES;
5f65ba36
SC
64 if ( textView )
65 {
66 m_formerState = [textView isEditable];
67 [textView setEditable:YES];
68 }
69 }
70
71 ~wxMacEditHelper()
72 {
73 if ( m_textView )
74 [m_textView setEditable:m_formerState];
75 }
76
77protected :
78 BOOL m_formerState ;
79 NSView* m_textView;
80} ;
81
03647350 82@implementation wxNSSecureTextField
dbeddfb9 83
4dd9fdf8
SC
84+ (void)initialize
85{
86 static BOOL initialized = NO;
03647350 87 if (!initialized)
4dd9fdf8
SC
88 {
89 initialized = YES;
90 wxOSXCocoaClassAddWXMethods( self );
91 }
92}
dbeddfb9 93
4d23a0d3
KO
94- (void)controlTextDidChange:(NSNotification *)aNotification
95{
6331c8c0
SC
96 wxUnusedVar(aNotification);
97 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( self );
4d23a0d3 98 if ( impl )
75a2c6a1 99 impl->controlTextDidChange();
4d23a0d3
KO
100}
101
6d109846
SC
102- (void)controlTextDidEndEditing:(NSNotification *)aNotification
103{
104 wxUnusedVar(aNotification);
105 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( self );
106 if ( impl )
107 {
108 impl->DoNotifyFocusEvent( false, NULL );
109 }
110}
111
e32090ba
SC
112@end
113
1087c6c1 114@interface wxNSTextScrollView : NSScrollView
4d23a0d3 115{
4d23a0d3 116}
1087c6c1
SC
117@end
118
1087c6c1 119@implementation wxNSTextScrollView
c824c165
KO
120
121+ (void)initialize
122{
123 static BOOL initialized = NO;
03647350
VZ
124 if (!initialized)
125 {
c824c165
KO
126 initialized = YES;
127 wxOSXCocoaClassAddWXMethods( self );
128 }
129}
130
7cb2a241
SC
131@end
132
133@implementation wxNSTextFieldEditor
134
135- (void) keyDown:(NSEvent*) event
4d23a0d3 136{
9e55f38d 137 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( (WXWidget) [self delegate] );
7cb2a241
SC
138 lastKeyDownEvent = event;
139 if ( impl == NULL || !impl->DoHandleKeyEvent(event) )
140 [super keyDown:event];
141 lastKeyDownEvent = nil;
4d23a0d3 142}
533e2ae1 143
7cb2a241 144- (void) keyUp:(NSEvent*) event
533e2ae1 145{
9e55f38d 146 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( (WXWidget) [self delegate] );
7cb2a241
SC
147 if ( impl == NULL || !impl->DoHandleKeyEvent(event) )
148 [super keyUp:event];
533e2ae1 149}
1087c6c1 150
7cb2a241 151- (void) flagsChanged:(NSEvent*) event
1087c6c1 152{
9e55f38d 153 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( (WXWidget) [self delegate] );
7cb2a241
SC
154 if ( impl == NULL || !impl->DoHandleKeyEvent(event) )
155 [super flagsChanged:event];
1087c6c1 156}
1087c6c1 157
7cb2a241
SC
158- (BOOL) performKeyEquivalent:(NSEvent*) event
159{
160 BOOL retval = [super performKeyEquivalent:event];
161 return retval;
162}
1087c6c1 163
7cb2a241 164- (void) insertText:(id) str
1087c6c1 165{
9e55f38d 166 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( (WXWidget) [self delegate] );
7cb2a241 167 if ( impl == NULL || lastKeyDownEvent==nil || !impl->DoHandleCharEvent(lastKeyDownEvent, str) )
1087c6c1 168 {
7cb2a241 169 [super insertText:str];
1087c6c1 170 }
1087c6c1
SC
171}
172
7cb2a241
SC
173@end
174
175@implementation wxNSTextView
1087c6c1 176
7cb2a241 177+ (void)initialize
1087c6c1 178{
7cb2a241 179 static BOOL initialized = NO;
03647350 180 if (!initialized)
7cb2a241
SC
181 {
182 initialized = YES;
183 wxOSXCocoaClassAddWXMethods( self );
184 }
1087c6c1
SC
185}
186
b9cf2753
KO
187- (void)textDidChange:(NSNotification *)aNotification
188{
75a2c6a1
KO
189 wxUnusedVar(aNotification);
190 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( self );
b9cf2753 191 if ( impl )
75a2c6a1 192 impl->controlTextDidChange();
b9cf2753
KO
193}
194
c824c165
KO
195@end
196
e32090ba 197@implementation wxNSTextField
ffad7b0d 198
e32090ba 199+ (void)initialize
dbeddfb9 200{
e32090ba 201 static BOOL initialized = NO;
03647350 202 if (!initialized)
e32090ba
SC
203 {
204 initialized = YES;
205 wxOSXCocoaClassAddWXMethods( self );
206 }
dbeddfb9 207}
e32090ba 208
7cb2a241
SC
209- (id) initWithFrame:(NSRect) frame
210{
211 self = [super initWithFrame:frame];
212 fieldEditor = nil;
213 return self;
214}
215
af665c2d
SC
216- (void) dealloc
217{
218 [fieldEditor release];
219 [super dealloc];
220}
221
7cb2a241
SC
222- (void) setFieldEditor:(wxNSTextFieldEditor*) editor
223{
224 fieldEditor = editor;
225}
226
227- (wxNSTextFieldEditor*) fieldEditor
228{
229 return fieldEditor;
230}
231
c3e433b1
SC
232- (void) setEnabled:(BOOL) flag
233{
234 [super setEnabled: flag];
235
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
240 if (flag) {
241 [self setTextColor: [NSColor controlTextColor]];
242 } else {
243 [self setTextColor: [NSColor secondarySelectedControlColor]];
244 }
245 }
246}
4d23a0d3 247
ffad7b0d
SC
248- (void)controlTextDidChange:(NSNotification *)aNotification
249{
6331c8c0
SC
250 wxUnusedVar(aNotification);
251 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( self );
ffad7b0d 252 if ( impl )
75a2c6a1 253 impl->controlTextDidChange();
ffad7b0d 254}
dbeddfb9 255
ffad7b0d
SC
256- (void)controlTextDidEndEditing:(NSNotification *)aNotification
257{
6d109846
SC
258 wxUnusedVar(aNotification);
259 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( self );
ffad7b0d
SC
260 if ( impl )
261 {
6d109846 262 impl->DoNotifyFocusEvent( false, NULL );
ffad7b0d
SC
263 }
264}
dbeddfb9
SC
265@end
266
c824c165
KO
267// wxNSTextViewControl
268
c072b9ec
VZ
269wxNSTextViewControl::wxNSTextViewControl( wxTextCtrl *wxPeer, WXWidget w )
270 : wxWidgetCocoaImpl(wxPeer, w),
271 wxTextWidgetImpl(wxPeer)
c824c165 272{
1087c6c1
SC
273 wxNSTextScrollView* sv = (wxNSTextScrollView*) w;
274 m_scrollView = sv;
03647350 275
c824c165
KO
276 [m_scrollView setHasVerticalScroller:YES];
277 [m_scrollView setHasHorizontalScroller:NO];
278 [m_scrollView setAutoresizingMask:NSViewWidthSizable | NSViewHeightSizable];
279 NSSize contentSize = [m_scrollView contentSize];
03647350 280
1087c6c1 281 wxNSTextView* tv = [[wxNSTextView alloc] initWithFrame: NSMakeRect(0, 0,
c824c165 282 contentSize.width, contentSize.height)];
1087c6c1
SC
283 m_textView = tv;
284 [tv setVerticallyResizable:YES];
285 [tv setHorizontallyResizable:NO];
286 [tv setAutoresizingMask:NSViewWidthSizable];
03647350 287
1087c6c1 288 [m_scrollView setDocumentView: tv];
c824c165 289
b9cf2753 290 [tv setDelegate: tv];
03647350
VZ
291
292 InstallEventHandler(tv);
c824c165
KO
293}
294
295wxNSTextViewControl::~wxNSTextViewControl()
296{
297 if (m_textView)
298 [m_textView setDelegate: nil];
299}
300
78a17075
KO
301bool wxNSTextViewControl::CanFocus() const
302{
81533a3a
SC
303 // since this doesn't work (return false), we hardcode
304 // if (m_textView)
305 // return [m_textView canBecomeKeyView];
306 return true;
78a17075
KO
307}
308
03647350 309wxString wxNSTextViewControl::GetStringValue() const
c824c165 310{
03647350 311 if (m_textView)
c824c165 312 {
f66ecdc4 313 wxString result = wxCFStringRef::AsString([m_textView string], m_wxPeer->GetFont().GetEncoding());
50b5e38d
SC
314 wxMacConvertNewlines13To10( &result ) ;
315 return result;
c824c165
KO
316 }
317 return wxEmptyString;
318}
03647350 319void wxNSTextViewControl::SetStringValue( const wxString &str)
c824c165 320{
50b5e38d
SC
321 wxString st = str;
322 wxMacConvertNewlines10To13( &st );
5f65ba36 323 wxMacEditHelper helper(m_textView);
50b5e38d 324
c824c165 325 if (m_textView)
50b5e38d 326 [m_textView setString: wxCFStringRef( st , m_wxPeer->GetFont().GetEncoding() ).AsNSString()];
c824c165 327}
7cb2a241 328
03647350 329void wxNSTextViewControl::Copy()
c824c165
KO
330{
331 if (m_textView)
332 [m_textView copy:nil];
333
334}
335
03647350 336void wxNSTextViewControl::Cut()
c824c165
KO
337{
338 if (m_textView)
339 [m_textView cut:nil];
340}
341
03647350 342void wxNSTextViewControl::Paste()
c824c165
KO
343{
344 if (m_textView)
345 [m_textView paste:nil];
346}
347
03647350
VZ
348bool wxNSTextViewControl::CanPaste() const
349{
c824c165
KO
350 return true;
351}
352
03647350 353void wxNSTextViewControl::SetEditable(bool editable)
c824c165
KO
354{
355 if (m_textView)
356 [m_textView setEditable: editable];
357}
358
03647350 359void wxNSTextViewControl::GetSelection( long* from, long* to) const
c824c165
KO
360{
361 if (m_textView)
362 {
363 NSRange range = [m_textView selectedRange];
364 *from = range.location;
365 *to = range.location + range.length;
366 }
367}
368
369void wxNSTextViewControl::SetSelection( long from , long to )
370{
50b5e38d
SC
371 long textLength = [[m_textView string] length];
372 if ((from == -1) && (to == -1))
373 {
374 from = 0 ;
375 to = textLength ;
376 }
377 else
378 {
379 from = wxMin(textLength,wxMax(from,0)) ;
380 if ( to == -1 )
381 to = textLength;
382 else
383 to = wxMax(0,wxMin(textLength,to)) ;
384 }
385
2d6aa919
KO
386 NSRange selrange = NSMakeRange(from, to-from);
387 [m_textView setSelectedRange:selrange];
388 [m_textView scrollRangeToVisible:selrange];
c824c165
KO
389}
390
03647350 391void wxNSTextViewControl::WriteText(const wxString& str)
c824c165 392{
50b5e38d
SC
393 wxString st = str;
394 wxMacConvertNewlines10To13( &st );
5f65ba36 395 wxMacEditHelper helper(m_textView);
715824d5
SC
396 NSEvent* formerEvent = m_lastKeyDownEvent;
397 m_lastKeyDownEvent = nil;
50b5e38d 398 [m_textView insertText:wxCFStringRef( st , m_wxPeer->GetFont().GetEncoding() ).AsNSString()];
715824d5 399 m_lastKeyDownEvent = formerEvent;
c824c165
KO
400}
401
63bcc669 402void wxNSTextViewControl::SetFont( const wxFont & font , const wxColour& WXUNUSED(foreground) , long WXUNUSED(windowStyle), bool WXUNUSED(ignoreBlack) )
f95dd972
SC
403{
404 if ([m_textView respondsToSelector:@selector(setFont:)])
405 [m_textView setFont: font.OSXGetNSFont()];
406}
407
16671f22
KO
408bool wxNSTextViewControl::GetStyle(long position, wxTextAttr& style)
409{
b9cf2753
KO
410 if (m_textView && position >=0)
411 {
412 NSFont* font = NULL;
413 NSColor* bgcolor = NULL;
414 NSColor* fgcolor = NULL;
415 // NOTE: It appears that other platforms accept GetStyle with the position == length
416 // but that NSTextStorage does not accept length as a valid position.
417 // Therefore we return the default control style in that case.
418 if (position < [[m_textView string] length])
419 {
420 NSTextStorage* storage = [m_textView textStorage];
421 font = [[storage attribute:NSFontAttributeName atIndex:position effectiveRange:NULL] autorelease];
422 bgcolor = [[storage attribute:NSBackgroundColorAttributeName atIndex:position effectiveRange:NULL] autorelease];
423 fgcolor = [[storage attribute:NSForegroundColorAttributeName atIndex:position effectiveRange:NULL] autorelease];
424 }
425 else
426 {
427 NSDictionary* attrs = [m_textView typingAttributes];
428 font = [[attrs objectForKey:NSFontAttributeName] autorelease];
429 bgcolor = [[attrs objectForKey:NSBackgroundColorAttributeName] autorelease];
430 fgcolor = [[attrs objectForKey:NSForegroundColorAttributeName] autorelease];
431 }
432
16671f22
KO
433 if (font)
434 style.SetFont(wxFont(font));
b9cf2753 435
16671f22
KO
436 if (bgcolor)
437 style.SetBackgroundColour(wxColour(bgcolor));
b9cf2753
KO
438
439 if (fgcolor)
440 style.SetTextColour(wxColour(fgcolor));
16671f22
KO
441 return true;
442 }
443
444 return false;
445}
446
447void wxNSTextViewControl::SetStyle(long start,
448 long end,
449 const wxTextAttr& style)
450{
451 if (m_textView) {
452 NSRange range = NSMakeRange(start, end-start);
b9cf2753
KO
453 if (start == -1 && end == -1)
454 range = [m_textView selectedRange];
455
16671f22
KO
456 NSTextStorage* storage = [m_textView textStorage];
457
458 wxFont font = style.GetFont();
b9cf2753
KO
459 if (style.HasFont() && font.IsOk())
460 [storage addAttribute:NSFontAttributeName value:font.OSXGetNSFont() range:range];
16671f22
KO
461
462 wxColour bgcolor = style.GetBackgroundColour();
b9cf2753 463 if (style.HasBackgroundColour() && bgcolor.IsOk())
16671f22
KO
464 [storage addAttribute:NSBackgroundColorAttributeName value:bgcolor.OSXGetNSColor() range:range];
465
466 wxColour fgcolor = style.GetTextColour();
b9cf2753 467 if (style.HasTextColour() && fgcolor.IsOk())
16671f22
KO
468 [storage addAttribute:NSForegroundColorAttributeName value:fgcolor.OSXGetNSColor() range:range];
469 }
470}
f95dd972 471
b9cf2753
KO
472void wxNSTextViewControl::CheckSpelling(bool check)
473{
474 if (m_textView)
475 [m_textView setContinuousSpellCheckingEnabled: check];
476}
477
9ab7ff53
KO
478wxSize wxNSTextViewControl::GetBestSize() const
479{
480 if (m_textView && [m_textView layoutManager])
481 {
482 NSRect rect = [[m_textView layoutManager] usedRectForTextContainer: [m_textView textContainer]];
4a49fa24
VZ
483 return wxSize((int)(rect.size.width + [m_textView textContainerInset].width),
484 (int)(rect.size.height + [m_textView textContainerInset].height));
9ab7ff53 485 }
c8fdb345 486 return wxSize(0,0);
9ab7ff53
KO
487}
488
c824c165
KO
489// wxNSTextFieldControl
490
c072b9ec
VZ
491wxNSTextFieldControl::wxNSTextFieldControl( wxTextCtrl *text, WXWidget w )
492 : wxWidgetCocoaImpl(text, w),
493 wxTextWidgetImpl(text)
494{
c8eab84f 495 Init(w);
c072b9ec
VZ
496}
497
498wxNSTextFieldControl::wxNSTextFieldControl(wxWindow *wxPeer,
499 wxTextEntry *entry,
500 WXWidget w)
501 : wxWidgetCocoaImpl(wxPeer, w),
502 wxTextWidgetImpl(entry)
503{
c8eab84f 504 Init(w);
c072b9ec
VZ
505}
506
507void wxNSTextFieldControl::Init(WXWidget w)
1e181c7a 508{
c8fdb345
SC
509 NSTextField wxOSX_10_6_AND_LATER(<NSTextFieldDelegate>) *tf = (NSTextField*) w;
510 m_textField = tf;
511 [m_textField setDelegate: tf];
50b5e38d 512 m_selStart = m_selEnd = 0;
7cb2a241 513 m_hasEditor = [w isKindOfClass:[NSTextField class]];
1e181c7a
SC
514}
515
516wxNSTextFieldControl::~wxNSTextFieldControl()
517{
c824c165
KO
518 if (m_textField)
519 [m_textField setDelegate: nil];
1e181c7a
SC
520}
521
03647350 522wxString wxNSTextFieldControl::GetStringValue() const
1e181c7a 523{
f66ecdc4 524 return wxCFStringRef::AsString([m_textField stringValue], m_wxPeer->GetFont().GetEncoding());
1e181c7a 525}
50b5e38d 526
03647350 527void wxNSTextFieldControl::SetStringValue( const wxString &str)
1e181c7a 528{
5f65ba36 529 wxMacEditHelper helper(m_textField);
e32090ba 530 [m_textField setStringValue: wxCFStringRef( str , m_wxPeer->GetFont().GetEncoding() ).AsNSString()];
1e181c7a 531}
50b5e38d 532
03647350 533void wxNSTextFieldControl::Copy()
1e181c7a 534{
e32090ba
SC
535 NSText* editor = [m_textField currentEditor];
536 if ( editor )
537 {
538 [editor copy:nil];
539 }
1e181c7a
SC
540}
541
03647350 542void wxNSTextFieldControl::Cut()
1e181c7a 543{
e32090ba
SC
544 NSText* editor = [m_textField currentEditor];
545 if ( editor )
546 {
547 [editor cut:nil];
548 }
1e181c7a
SC
549}
550
03647350 551void wxNSTextFieldControl::Paste()
1e181c7a 552{
e32090ba
SC
553 NSText* editor = [m_textField currentEditor];
554 if ( editor )
555 {
556 [editor paste:nil];
557 }
1e181c7a
SC
558}
559
03647350
VZ
560bool wxNSTextFieldControl::CanPaste() const
561{
e32090ba 562 return true;
1e181c7a
SC
563}
564
03647350 565void wxNSTextFieldControl::SetEditable(bool editable)
1e181c7a 566{
e32090ba 567 [m_textField setEditable:editable];
1e181c7a
SC
568}
569
03647350 570void wxNSTextFieldControl::GetSelection( long* from, long* to) const
1e181c7a 571{
e32090ba
SC
572 NSText* editor = [m_textField currentEditor];
573 if ( editor )
574 {
575 NSRange range = [editor selectedRange];
576 *from = range.location;
577 *to = range.location + range.length;
578 }
50b5e38d
SC
579 else
580 {
581 *from = m_selStart;
582 *to = m_selEnd;
583 }
1e181c7a
SC
584}
585
586void wxNSTextFieldControl::SetSelection( long from , long to )
587{
50b5e38d
SC
588 long textLength = [[m_textField stringValue] length];
589 if ((from == -1) && (to == -1))
590 {
591 from = 0 ;
592 to = textLength ;
593 }
594 else
595 {
596 from = wxMin(textLength,wxMax(from,0)) ;
597 if ( to == -1 )
598 to = textLength;
599 else
600 to = wxMax(0,wxMin(textLength,to)) ;
601 }
602
e32090ba
SC
603 NSText* editor = [m_textField currentEditor];
604 if ( editor )
605 {
606 [editor setSelectedRange:NSMakeRange(from, to-from)];
607 }
50b5e38d
SC
608 else
609 {
610 m_selStart = from;
611 m_selEnd = to;
612 }
1e181c7a
SC
613}
614
03647350 615void wxNSTextFieldControl::WriteText(const wxString& str)
1e181c7a 616{
715824d5
SC
617 NSEvent* formerEvent = m_lastKeyDownEvent;
618 m_lastKeyDownEvent = nil;
50b5e38d
SC
619 NSText* editor = [m_textField currentEditor];
620 if ( editor )
621 {
5f65ba36 622 wxMacEditHelper helper(m_textField);
50b5e38d
SC
623 [editor insertText:wxCFStringRef( str , m_wxPeer->GetFont().GetEncoding() ).AsNSString()];
624 }
625 else
626 {
627 wxString val = GetStringValue() ;
628 long start , end ;
629 GetSelection( &start , &end ) ;
630 val.Remove( start , end - start ) ;
631 val.insert( start , str ) ;
632 SetStringValue( val ) ;
633 SetSelection( start + str.length() , start + str.length() ) ;
634 }
715824d5 635 m_lastKeyDownEvent = formerEvent;
1e181c7a 636}
dbeddfb9 637
03647350 638void wxNSTextFieldControl::controlAction(WXWidget WXUNUSED(slf),
6331c8c0 639 void* WXUNUSED(_cmd), void *WXUNUSED(sender))
e32090ba
SC
640{
641 wxWindow* wxpeer = (wxWindow*) GetWXPeer();
03647350 642 if ( wxpeer && (wxpeer->GetWindowStyle() & wxTE_PROCESS_ENTER) )
e32090ba
SC
643 {
644 wxCommandEvent event(wxEVT_COMMAND_TEXT_ENTER, wxpeer->GetId());
645 event.SetEventObject( wxpeer );
c072b9ec 646 event.SetString( GetTextEntry()->GetValue() );
e32090ba
SC
647 wxpeer->HandleWindowEvent( event );
648 }
649}
650
651//
652//
653//
654
03647350
VZ
655wxWidgetImplType* wxWidgetImpl::CreateTextControl( wxTextCtrl* wxpeer,
656 wxWindowMac* WXUNUSED(parent),
657 wxWindowID WXUNUSED(id),
63bcc669 658 const wxString& WXUNUSED(str),
03647350 659 const wxPoint& pos,
dbeddfb9 660 const wxSize& size,
03647350 661 long style,
6331c8c0 662 long WXUNUSED(extraStyle))
dbeddfb9 663{
dbeddfb9 664 NSRect r = wxOSXGetFrameForControl( wxpeer, pos , size ) ;
c824c165 665 wxWidgetCocoaImpl* c = NULL;
03647350 666
c824c165 667 if ( style & wxTE_MULTILINE || style & wxTE_RICH || style & wxTE_RICH2 )
b15f9375 668 {
1087c6c1
SC
669 wxNSTextScrollView* v = nil;
670 v = [[wxNSTextScrollView alloc] initWithFrame:r];
c824c165 671 c = new wxNSTextViewControl( wxpeer, v );
c824c165 672 }
03647350 673 else
c824c165 674 {
6331c8c0 675 NSTextField* v = nil;
c824c165
KO
676 if ( style & wxTE_PASSWORD )
677 v = [[wxNSSecureTextField alloc] initWithFrame:r];
678 else
679 v = [[wxNSTextField alloc] initWithFrame:r];
03647350 680
c824c165
KO
681 if ( style & wxNO_BORDER )
682 {
683 // FIXME: How can we remove the native control's border?
684 // setBordered is separate from the text ctrl's border.
685 }
3f16e51b
SC
686
687 NSTextFieldCell* cell = [v cell];
688 [cell setScrollable:YES];
689 // TODO: Remove if we definitely are sure, it's not needed
690 // as setting scrolling to yes, should turn off any wrapping
691 // [cell setLineBreakMode:NSLineBreakByClipping];
03647350 692
b15f9375
SC
693 [v setBezeled:NO];
694 [v setBordered:NO];
03647350 695
c072b9ec 696 c = new wxNSTextFieldControl( wxpeer, wxpeer, v );
b15f9375 697 }
03647350 698
dbeddfb9
SC
699 return c;
700}
701
702
703#endif // wxUSE_TEXTCTRL