| 479 | } |
| 480 | |
| 481 | Align MemberObsolete<ProgressBar>::getProgressStartPoint() const |
| 482 | { |
| 483 | if (static_cast<const ProgressBar*>(this)->getFlowDirection() == FlowDirection::RightToLeft) |
| 484 | return Align::Right; |
| 485 | if (static_cast<const ProgressBar*>(this)->getFlowDirection() == FlowDirection::TopToBottom) |
| 486 | return Align::Top; |
| 487 | if (static_cast<const ProgressBar*>(this)->getFlowDirection() == FlowDirection::BottomToTop) |
| 488 | return Align::Bottom; |
| 489 | |
| 490 | return Align::Left; |
| 491 | } |
| 492 | |
| 493 | |
| 494 | void MemberObsolete<ScrollView>::showVScroll(bool _visible) |
nothing calls this directly
no test coverage detected