Ensure pointer interaction is not passed to views behind this node.
| 194 | |
| 195 | // Ensure pointer interaction is not passed to views behind this node. |
| 196 | std::optional<wf::scene::input_node_t> find_node_at(const wf::pointf_t& at) override |
| 197 | { |
| 198 | wf::scene::input_node_t result; |
| 199 | result.node = this; |
| 200 | result.local_coords = at; |
| 201 | return result; |
| 202 | } |
| 203 | |
| 204 | std::string stringify() const override |
| 205 | { |
nothing calls this directly
no outgoing calls
no test coverage detected