| 63 | } |
| 64 | |
| 65 | void Window::bindViewCore() |
| 66 | { |
| 67 | View::bindViewCore(); |
| 68 | |
| 69 | auto windowCore = View::core<Window::Core>(); |
| 70 | |
| 71 | windowCore->contentView.bind(contentView); |
| 72 | windowCore->title.bind(title); |
| 73 | |
| 74 | windowCore->allowedOrientations.bind(allowedOrientations); //, BindMode::unidirectional); |
| 75 | windowCore->currentOrientation.bind(currentOrientation); //, BindMode::unidirectional); |
| 76 | windowCore->contentGeometry.bind(internalContentGeometry); |
| 77 | } |
| 78 | } |