#ifndef __TEXTCTRLEX_H__ #define __TEXTCTRLEX_H__ #include #ifdef __WXMAC__ // Subclassed wxTextCtrl to disable pasting of formatting, we're only ever interested in the text. class wxTextCtrlEx : public wxTextCtrl { public: virtual void Paste(); }; const wxTextAttr& GetDefaultTextCtrlStyle(wxTextCtrl* ctrl); #else #define wxTextCtrlEx wxTextCtrl #endif #endif //__TEXTCTRLEX_H__