MCPcopy Create free account
hub / github.com/Artikash/Textractor / Window

Method Window

extensions/regexfilter.cpp:22–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20{
21public:
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 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected