| 90 | } |
| 91 | |
| 92 | void TextField::onDragHover(const DragHoverEvent& e) { |
| 93 | OpaqueWidget::onDragHover(e); |
| 94 | |
| 95 | if (e.origin == this) { |
| 96 | int pos = getTextPosition(e.pos); |
| 97 | cursor = pos; |
| 98 | } |
| 99 | } |
| 100 | |
| 101 | void TextField::onButton(const ButtonEvent& e) { |
| 102 | OpaqueWidget::onButton(e); |
nothing calls this directly
no outgoing calls
no test coverage detected