| 1582 | } |
| 1583 | |
| 1584 | void DrawNodeBaseTest::changeRotation(ax::Object* pSender, ax::ui::Slider::EventType type) |
| 1585 | { |
| 1586 | if (type == ax::ui::Slider::EventType::ON_PERCENTAGE_CHANGED) |
| 1587 | { |
| 1588 | slider[sliderType::Rotation] = dynamic_cast<ax::ui::Slider*>(pSender); |
| 1589 | sliderValue[sliderType::Rotation] = slider[sliderType::Rotation]->getPercent() * 3.6; |
| 1590 | sliderLabel[sliderType::Rotation]->setString("Rotation: (" + |
| 1591 | Value(sliderValue[sliderType::Rotation]).asString() + ")"); |
| 1592 | } |
| 1593 | } |
| 1594 | |
| 1595 | void DrawNodeBaseTest::changeThickness(ax::Object* pSender, ax::ui::Slider::EventType type) |
| 1596 | { |
nothing calls this directly
no test coverage detected