| 1571 | } |
| 1572 | |
| 1573 | void DrawNodeBaseTest::changeStartAngle(ax::Object* pSender, ax::ui::Slider::EventType type) |
| 1574 | { |
| 1575 | if (type == ax::ui::Slider::EventType::ON_PERCENTAGE_CHANGED) |
| 1576 | { |
| 1577 | slider[sliderType::AngleStart] = dynamic_cast<ax::ui::Slider*>(pSender); |
| 1578 | sliderValue[sliderType::AngleStart] = slider[sliderType::AngleStart]->getPercent() * 3.6; |
| 1579 | sliderLabel[sliderType::AngleStart]->setString("startAngle: (" + |
| 1580 | Value(sliderValue[sliderType::AngleStart]).asString() + ")"); |
| 1581 | } |
| 1582 | } |
| 1583 | |
| 1584 | void DrawNodeBaseTest::changeRotation(ax::Object* pSender, ax::ui::Slider::EventType type) |
| 1585 | { |
nothing calls this directly
no test coverage detected