| 20 | { |
| 21 | public: |
| 22 | Window() : QDialog(nullptr, Qt::WindowMinMaxButtonsHint) |
| 23 | { |
| 24 | ui.setupUi(this); |
| 25 | |
| 26 | connect(ui.regexEdit, &QLineEdit::textEdited, this, &Window::SetRegex); |
| 27 | connect(ui.saveButton, &QPushButton::clicked, this, &Window::Save); |
| 28 | |
| 29 | setWindowTitle(REGEX_FILTER); |
| 30 | QMetaObject::invokeMethod(this, &QWidget::show, Qt::QueuedConnection); |
| 31 | } |
| 32 | |
| 33 | void SetRegex(QString regex) |
| 34 | { |
nothing calls this directly
no outgoing calls
no test coverage detected