virtual void ShowPosition(long WXUNUSED(pos)) ;
virtual int GetLineLength(long lineNo) const ;
virtual wxString GetLineText(long lineNo) const ;
+ virtual void CheckSpelling(bool check) { }
#ifndef __WXMAC_OSX__
virtual void MacControlUserPaneDrawProc(wxInt16 part) = 0 ;
return false ;
}
+ virtual void CheckSpelling(bool check)
+ {
+#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_4
+ TXNSetSpellCheckAsYouType( m_txn, (Boolean) check );
+#endif
+ }
virtual void Clear() ;
virtual bool CanUndo() const ;
{
}
+void wxTextCtrl::MacCheckSpelling(bool check)
+{
+ GetPeer()->CheckSpelling(check);
+}
+
wxString wxTextCtrl::GetValue() const
{
return GetPeer()->GetStringValue() ;