| 10 | #include <QtWidgets/QMessageBox> |
| 11 | |
| 12 | OscOutputDialog::OscOutputDialog(QWidget* parent) |
| 13 | : QDialog(parent), |
| 14 | editMode(false) |
| 15 | { |
| 16 | setupUi(this); |
| 17 | |
| 18 | this->lineEditDeviceName->setStyleSheet("border-color: firebrick;"); |
| 19 | this->lineEditAddress->setStyleSheet("border-color: firebrick;"); |
| 20 | |
| 21 | this->lineEditDeviceName->installEventFilter(this); |
| 22 | } |
| 23 | |
| 24 | bool OscOutputDialog::eventFilter(QObject* target, QEvent* event) |
| 25 | { |
nothing calls this directly
no outgoing calls
no test coverage detected