| 103 | } |
| 104 | |
| 105 | void View::scheduleLayout() |
| 106 | { |
| 107 | if (auto core = viewCore()) { |
| 108 | core->scheduleLayout(); |
| 109 | } else { |
| 110 | _hasLayoutSchedulePending = true; |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | const std::type_info &View::typeInfoForCoreCreation() const { return typeid(*this); } |
| 115 |