]> git.saurik.com Git - wxWidgets.git/commitdiff
allow native max length support, see #10269
authorStefan Csomor <csomor@advancedconcepts.ch>
Sun, 15 Jan 2012 15:53:56 +0000 (15:53 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Sun, 15 Jan 2012 15:53:56 +0000 (15:53 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70354 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/osx/cocoa/private/textimpl.h
include/wx/osx/core/private.h

index 9eb2c7328e6e4ec867ace0ce8250f1fce4addfde..0cd220b0eaa2bba35e15c08dbfc0f15e3fbb0888 100644 (file)
@@ -28,6 +28,9 @@ public :
     wxNSTextFieldControl( wxWindow *wxPeer, wxTextEntry *entry, WXWidget w );
     virtual ~wxNSTextFieldControl();
 
+    virtual bool CanClipMaxLength() const { return true; }
+    virtual void SetMaxLength(unsigned long len);
+        
     virtual wxString GetStringValue() const ;
     virtual void SetStringValue( const wxString &str) ;
     virtual void Copy() ;
index 7ccc7990b60ac0b2940131748c22126f97501c5a..e1b64182edeb282430fc4c9cbde0524cd3261835 100644 (file)
@@ -631,6 +631,9 @@ public :
     virtual void GetSelection( long* from, long* to ) const = 0 ;
     virtual void WriteText( const wxString& str ) = 0 ;
 
+    virtual bool CanClipMaxLength() const { return false; }
+    virtual void SetMaxLength(unsigned long WXUNUSED(len)) {}
+    
     virtual bool GetStyle( long position, wxTextAttr& style);
     virtual void SetStyle( long start, long end, const wxTextAttr& style ) ;
     virtual void Copy() ;