| 18 | } |
| 19 | |
| 20 | void ScrollView::bindViewCore() |
| 21 | { |
| 22 | View::bindViewCore(); |
| 23 | |
| 24 | auto scrollCore = core<ScrollView::Core>(); |
| 25 | scrollCore->contentView.bind(contentView); |
| 26 | scrollCore->horizontalScrollingEnabled.bind(horizontalScrollingEnabled); |
| 27 | scrollCore->verticalScrollingEnabled.bind(verticalScrollingEnabled); |
| 28 | } |
| 29 | |
| 30 | void ScrollView::scrollClientRectToVisible(const Rect &area) |
| 31 | { |