| 1192 | } |
| 1193 | |
| 1194 | void Manager::onBroadcastMouseMessage(WidgetsList& targets) |
| 1195 | { |
| 1196 | // Ask to the first window in the "children" list to know how to |
| 1197 | // propagate mouse messages. |
| 1198 | Widget* widget = UI_FIRST_WIDGET(children()); |
| 1199 | if (widget) |
| 1200 | widget->broadcastMouseMessage(targets); |
| 1201 | } |
| 1202 | |
| 1203 | LayoutIO* Manager::onGetLayoutIO() |
| 1204 | { |
nothing calls this directly
no test coverage detected