supporting max len event
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74191 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -111,6 +111,7 @@ NSView* wxMacEditHelper::ms_viewCurrentlyEdited = nil;
|
||||
@interface wxMaximumLengthFormatter : NSFormatter
|
||||
{
|
||||
int maxLength;
|
||||
wxTextEntry* field;
|
||||
}
|
||||
|
||||
@end
|
||||
@@ -148,12 +149,17 @@ NSView* wxMacEditHelper::ms_viewCurrentlyEdited = nil;
|
||||
int len = [*partialStringPtr length];
|
||||
if ( maxLength > 0 && len > maxLength )
|
||||
{
|
||||
// TODO wxEVT_TEXT_MAXLEN
|
||||
field->SendMaxLenEvent();
|
||||
return NO;
|
||||
}
|
||||
return YES;
|
||||
}
|
||||
|
||||
- (void) setTextEntry:(wxTextEntry*) tf
|
||||
{
|
||||
field = tf;
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
@implementation wxNSSecureTextField
|
||||
@@ -805,6 +811,7 @@ void wxNSTextFieldControl::SetMaxLength(unsigned long len)
|
||||
{
|
||||
wxMaximumLengthFormatter* formatter = [[[wxMaximumLengthFormatter alloc] init] autorelease];
|
||||
[formatter setMaxLength:len];
|
||||
[formatter setTextEntry:GetTextEntry()];
|
||||
[m_textField setFormatter:formatter];
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user