| 13 | } |
| 14 | |
| 15 | void ImageView::bindViewCore() |
| 16 | { |
| 17 | View::bindViewCore(); |
| 18 | |
| 19 | auto imageCore = core<ImageView::Core>(); |
| 20 | |
| 21 | iOriginalSize.bind(imageCore->originalSize, BindMode::unidirectional); |
| 22 | iAspectRatio.bind(imageCore->aspectRatio, BindMode::unidirectional); |
| 23 | |
| 24 | imageCore->url.bind(url); |
| 25 | } |
| 26 | } |