28 #include <wx/textctrl.h>
29 #include "Configuration.h"
36 class wxLogBuffer_noStdErrFlush :
public wxLogBuffer
39 wxLogBuffer_noStdErrFlush(): wxLogBuffer() {};
40 virtual void Flush()
override {}
41 ~wxLogBuffer_noStdErrFlush()
override{};
46 bool Matches(wxString text);
49 void OnTextChange(wxCommandEvent &ev);
56 enum class RegexInputState : int8_t { empty, invalid, valid };
58 RegexInputState m_regexInputState = RegexInputState::empty;
59 RegexInputState GetNewRegexInputState()
const;
61 static wxString RegexTooltip_error;
63 static wxString RegexTooltip_norm;
66 wxDECLARE_EVENT(REGEX_EVENT, wxCommandEvent);