| 25 | #include <QWidget> |
| 26 | |
| 27 | JoyButtonStatusBox::JoyButtonStatusBox(JoyButton *button, QWidget *parent) |
| 28 | : QPushButton(parent) |
| 29 | { |
| 30 | this->button = button; |
| 31 | isflashing = false; |
| 32 | |
| 33 | setText(QString::number(button->getRealJoyNumber())); |
| 34 | |
| 35 | connect(button, &JoyButton::clicked, this, &JoyButtonStatusBox::flash); |
| 36 | connect(button, &JoyButton::released, this, &JoyButtonStatusBox::unflash); |
| 37 | } |
| 38 | |
| 39 | JoyButton *JoyButtonStatusBox::getJoyButton() const { return button; } |
| 40 |
nothing calls this directly
no test coverage detected