| 4 | #include <QMouseEvent> |
| 5 | |
| 6 | ModeToggleButton::ModeToggleButton(QWidget* parent) |
| 7 | : QWidget(parent) |
| 8 | { |
| 9 | setFixedSize(BUTTON_SIZE, BUTTON_SIZE); |
| 10 | setCursor(Qt::PointingHandCursor); |
| 11 | setAttribute(Qt::WA_Hover, true); |
| 12 | } |
| 13 | |
| 14 | void ModeToggleButton::setModeIcons(const QIcon& mode0Icon, const QIcon& mode1Icon) |
| 15 | { |
nothing calls this directly
no outgoing calls
no test coverage detected