| 256 | } |
| 257 | |
| 258 | mir::optional_value<mi::PointerSettings> mtf::FakeInputDeviceImpl::InputDevice::get_pointer_settings() const |
| 259 | { |
| 260 | mir::optional_value<mi::PointerSettings> ret; |
| 261 | if (!contains(info.capabilities, mi::DeviceCapability::pointer)) |
| 262 | return ret; |
| 263 | |
| 264 | ret = settings; |
| 265 | return ret; |
| 266 | } |
| 267 | |
| 268 | void mtf::FakeInputDeviceImpl::InputDevice::apply_settings(mi::PointerSettings const& settings) |
| 269 | { |