+ void MSWDoPopupOrDismiss(bool show);
+
+ // this is the implementation of GetEditHWND() which can also be used when
+ // we don't have the edit control, it simply returns NULL then
+ //
+ // try not to use this function unless absolutely necessary (as in the
+ // message handling code where the edit control might not be created yet
+ // for the messages we receive during the control creation) as normally
+ // just testing for IsEditable() and using GetEditHWND() should be enough
+ WXHWND GetEditHWNDIfAvailable() const;
+
+ virtual void EnableTextChangedEvents(bool enable)
+ {
+ m_allowTextEvents = enable;
+ }