public:
wxTextEntry()
+ : m_editable(true),
+ m_maxLength(0)
{ }
-
+
virtual ~wxTextEntry() {};
virtual bool IsEditable() const;
protected:
virtual wxString DoGetValue() const;
-
+
bool m_editable;
// need to make this public because of the current implementation via callbacks
unsigned long m_maxLength;
- virtual void EnableTextChangedEvents(bool enable)
- {
- m_triggerUpdateEvents = enable;
- }
-
- bool m_triggerUpdateEvents ;
-
};
#endif // _WX_OSX_TEXTENTRY_H_