| 24 | #include <iostream> |
| 25 | |
| 26 | ControllerAxisWidget::ControllerAxisWidget(QWidget *parent) : QWidget(parent) |
| 27 | { |
| 28 | x_axis = y_axis = 0; |
| 29 | |
| 30 | setBackgroundRole(QPalette::Base); |
| 31 | setAutoFillBackground(true); |
| 32 | // when(FL_WHEN_CHANGED); |
| 33 | } |
| 34 | |
| 35 | QSize ControllerAxisWidget::sizeHint() const |
| 36 | { |
nothing calls this directly
no outgoing calls
no test coverage detected